diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-04-12 03:41:30 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-04-12 03:41:30 +0100 |
commit | 623ee73d661e5ed8475cb264511f683407d87365 (patch) | |
tree | 993eb27c93ec7a2d2d19550300d888fc1fed9e69 /dev-python/zc-buildout | |
parent | ceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (diff) |
gentoo Easter resync : 12.04.2020
Diffstat (limited to 'dev-python/zc-buildout')
-rw-r--r-- | dev-python/zc-buildout/Manifest | 3 | ||||
-rw-r--r-- | dev-python/zc-buildout/metadata.xml | 22 | ||||
-rw-r--r-- | dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild | 53 |
3 files changed, 0 insertions, 78 deletions
diff --git a/dev-python/zc-buildout/Manifest b/dev-python/zc-buildout/Manifest deleted file mode 100644 index eb1741316fe7..000000000000 --- a/dev-python/zc-buildout/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST zc.buildout-2.5.3.tar.gz 305163 BLAKE2B 83ef87a8b61e109498117704e4055ac533bec9be9a5d2ceb0a573808f776ca6fe607ef542ef7e7486759612da9041162a44bba19692e8ffc65c4f3cb23f99760 SHA512 a4d4becac815531cd180795372ce5896d1fdab8606fff492502ef1f59d6d1ddd8427bb00ea96d36ec284a18b17b9273d8b94a405ebe410bae7e9a6e47a8dfad7 -EBUILD zc-buildout-2.5.3-r1.ebuild 1159 BLAKE2B d0ec202a6274e0eb276b63f17dfc0e3e68f7b0625dc9b421976e2520d1887f43dd1637a7363d503b66a3d02e2df83db418052cd6c1184180d3b90f4945e2ae0a SHA512 4ae569a72b6de567b491bc1c3010c29e7758f687610e36d4100599f4e60ab3289fd926ea25becc7c9f46dcd5dc0fdb678efb2962fcd8aeb35d5938ae6492fa54 -MISC metadata.xml 1414 BLAKE2B 0a15f64e7b7abac30ebf4264fb998845069e3288f9dd7886cf916c2dd40f85204e00bf3a2f6712b05b00b1139e195c9e08906527df8992fea32aac8ef43842c1 SHA512 a5940bca5da541fbd21a7b1d7c2dd3db0d4415d336974ec1c638ad003e117480a000e780435cf254ee66d61a9f7552a13eaad2209223c5f190c4a9c96603a4e7 diff --git a/dev-python/zc-buildout/metadata.xml b/dev-python/zc-buildout/metadata.xml deleted file mode 100644 index 57406ae085b3..000000000000 --- a/dev-python/zc-buildout/metadata.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> - <longdescription lang="en">Buildout is a system for managing development buildouts. While often identified as a Zope project, -and indeed licensed under the ZPL by Zope creator Jim Fulton, buildout is useful for configurations -beyond Zope, and even, in rare cases, a few that have nothing to do with Python. -The Buildout project provides support for creating applications, especially Python applications. It -provides tools for assembling applications from multiple parts, Python or otherwise. An application -may actually contain multiple programs, processes, and configuration settings. -The word .buildout. refers to a description of a set of parts and the software to create and assemble -them. It is often used informally to refer to an installed system based on a buildout definition. For -example, if we are creating an application named .Foo., then .the Foo buildout. is the collection of -configuration and application-specific software that allows an instance of the application to be -created. We may refer to such an instance of the application informally as .a Foo buildout..</longdescription> - <upstream> - <remote-id type="pypi">zc.buildout</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild deleted file mode 100644 index b67c4242e886..000000000000 --- a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python3_6 pypy3 ) - -inherit distutils-r1 - -MY_PN="${PN/-/.}" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="System for managing development buildouts" -HOMEPAGE="https://pypi.org/project/zc.buildout/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="ZPL" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -# Tests are broken -RESTRICT="test" - -RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )" - -S="${WORKDIR}"/${MY_P} - -DOCS=( README.rst doc/tutorial.txt ) - -# Prevent incorrect installation of data file -python_prepare_all() { - sed -e '/^ include_package_data/d' -i setup.py || die - distutils-r1_python_prepare_all -} - -python_test() { - distutils_install_for_testing - "${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}" -} - -python_install() { - distutils-r1_python_install - - python_moduleinto zc - python_domodule src/zc/__init__.py -} - -python_install_all() { - distutils-r1_python_install_all - - find "${D}" -name '*.pth' -delete || die -} |