From: Mikle Kolyada Date: Fri, 28 Feb 2020 07:26:50 +0000 (+0300) Subject: dev-python: remove last-rited packages X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b4185f9dfee9a296fd449527bc9e2a0639e6ad53;p=gentoo.git dev-python: remove last-rited packages Signed-off-by: Mikle Kolyada --- diff --git a/dev-python/axiom/Manifest b/dev-python/axiom/Manifest deleted file mode 100644 index e0579ee6c03e..000000000000 --- a/dev-python/axiom/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST Axiom-0.7.2.tar.gz 201850 BLAKE2B 210c0905f462fbd7dba81347575e151d2ced648fb429a2527ff3f2076f30703398f9f22077df3fd7af418323249553967480c440b0dee5c23488a4cd3bb1db70 SHA512 b8aba9b1b69141ad93759255f8eb169d815565d4b5b5f813b9afadb1158960ead859c896c2f26797fa1953c5cc35729dfbbb942077530402372030f85e85f3a5 -DIST Axiom-0.7.5.tar.gz 203526 BLAKE2B 4cd6c5749a780376e514906e2c54570a986ecc4d9aa7893fad9d488b5fcba16ae5315eb2601c37d8766ea7ec3cdfc8bfcaf8be1583dbfb8cd66f921896fa8d38 SHA512 6a868fce245c64f791b8340e5f04a87e18ee1b528ff248b0b3f54f5ddf8a3b68903946dfa7291c4d902b76e7240abd864166463949cfd913a9d38b1439fa2f9f diff --git a/dev-python/axiom/axiom-0.7.2.ebuild b/dev-python/axiom/axiom-0.7.2.ebuild deleted file mode 100644 index be028747221f..000000000000 --- a/dev-python/axiom/axiom-0.7.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="sqlite" - -inherit twisted-r1 - -DESCRIPTION="Object database implemented on top of SQLite" -HOMEPAGE="https://github.com/twisted/axiom https://pypi.org/project/Axiom/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 sparc x86" -IUSE="" - -RDEPEND=">=dev-python/epsilon-0.7.0[${PYTHON_USEDEP}] - >=dev-python/twisted-core-13.2.0[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-0.5.30-sqlite3_3.6.4.patch" ) - -TWISTED_PLUGINS+=( axiom.plugins ) - -python_install() { - distutils-r1_python_install - - touch "${D}$(python_get_sitedir)"/axiom/plugins/dropin.cache || die -} diff --git a/dev-python/axiom/axiom-0.7.5.ebuild b/dev-python/axiom/axiom-0.7.5.ebuild deleted file mode 100644 index 163466a47772..000000000000 --- a/dev-python/axiom/axiom-0.7.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="sqlite" - -inherit twisted-r1 - -DESCRIPTION="Object database implemented on top of SQLite" -HOMEPAGE="https://github.com/twisted/axiom https://pypi.org/project/Axiom/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -RDEPEND=">=dev-python/epsilon-0.7.0[${PYTHON_USEDEP}] - || ( - dev-python/twisted[${PYTHON_USEDEP}] - >=dev-python/twisted-core-13.2.0[${PYTHON_USEDEP}] - )" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-0.5.30-sqlite3_3.6.4.patch" ) - -TWISTED_PLUGINS+=( axiom.plugins ) - -python_install() { - distutils-r1_python_install - - touch "${D}$(python_get_sitedir)"/axiom/plugins/dropin.cache || die -} diff --git a/dev-python/axiom/files/axiom-0.5.30-sqlite3_3.6.4.patch b/dev-python/axiom/files/axiom-0.5.30-sqlite3_3.6.4.patch deleted file mode 100644 index cfa465ce656c..000000000000 --- a/dev-python/axiom/files/axiom-0.5.30-sqlite3_3.6.4.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- axiom/_schema.py (revision 17031) -+++ axiom/_schema.py (working copy) -@@ -28,7 +28,7 @@ - CREATE TABLE *DATABASE*.axiom_attributes ( - type_id INTEGER, - row_offset INTEGER, -- indexed BOOLEAN, -+ "indexed" BOOLEAN, - sqltype VARCHAR, - allow_none BOOLEAN, - pythontype VARCHAR, -@@ -47,13 +47,13 @@ - HAS_SCHEMA_FEATURE = ("SELECT COUNT(oid) FROM *DATABASE*.sqlite_master " - "WHERE type = ? AND name = ?") - --IDENTIFYING_SCHEMA = ('SELECT indexed, sqltype, allow_none, attribute ' -+IDENTIFYING_SCHEMA = ('SELECT "indexed", sqltype, allow_none, attribute ' - 'FROM *DATABASE*.axiom_attributes WHERE type_id = ? ' - 'ORDER BY row_offset') - - ADD_SCHEMA_ATTRIBUTE = ( - 'INSERT INTO *DATABASE*.axiom_attributes ' -- '(type_id, row_offset, indexed, sqltype, allow_none, attribute, docstring, pythontype) ' -+ '(type_id, row_offset, "indexed", sqltype, allow_none, attribute, docstring, pythontype) ' - 'VALUES (?, ?, ?, ?, ?, ?, ?, ?)') - - ALL_TYPES = 'SELECT oid, module, typename, version FROM *DATABASE*.axiom_types' -@@ -61,7 +61,7 @@ - GET_GREATER_VERSIONS_OF_TYPE = ('SELECT version FROM *DATABASE*.axiom_types ' - 'WHERE typename = ? AND version > ?') - --SCHEMA_FOR_TYPE = ('SELECT indexed, pythontype, attribute, docstring ' -+SCHEMA_FOR_TYPE = ('SELECT "indexed", pythontype, attribute, docstring ' - 'FROM *DATABASE*.axiom_attributes ' - 'WHERE type_id = ?') - diff --git a/dev-python/axiom/metadata.xml b/dev-python/axiom/metadata.xml deleted file mode 100644 index b01dd3db29a6..000000000000 --- a/dev-python/axiom/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - python@gentoo.org - Python - - Axiom is an object database, or alternatively, an object-relational - mapper. Its primary goal is to provide an object-oriented layer with - what we consider to be the key aspects of OO, i.e. polymorphism and - message dispatch, without hindering the power of an RDBMS. It is - designed to "feel pythonic", without encouraging the typical ORM - behavior such as potato programming. - - Axiom - twisted/axiom - - diff --git a/dev-python/epsilon/Manifest b/dev-python/epsilon/Manifest deleted file mode 100644 index fd34543f9494..000000000000 --- a/dev-python/epsilon/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST Epsilon-0.7.0.tar.gz 81218 BLAKE2B c4cb4290087bb7d929dc793c190c26a0e90c1de89dc6c990dc3b53bd42499bc1979e7541bd8c416e15b10ff7478ff57b79896b88f6d1e72642dcfd20e1a9e488 SHA512 d1927ca431df3233a94296ca9e1f5dd70d6d61091d23f77df2222c6472d9a5f7b55c5c8dd2a75d0fead41af862c9e3a6a0ea9a31e21447459d5182f0d677d9b2 -DIST Epsilon-0.7.1.tar.gz 96820 BLAKE2B c856492f58e7e5ee35fdde51e876f7b4a93992e9cea556f5775d0017fc086fb7934ce9f892672331b8e363e9247bf8576a839d20fb7f5dea8f99b8c51bd5042d SHA512 ecf34a402208e514c430b4b3785df9b29f3708026ceba1301a2db8760b55111f59e7c40f868f4b642e4c7dd6c78735edbc32b2ef96ec3582e90aa2d978f06842 diff --git a/dev-python/epsilon/epsilon-0.7.0.ebuild b/dev-python/epsilon/epsilon-0.7.0.ebuild deleted file mode 100644 index b8ce29ccc22b..000000000000 --- a/dev-python/epsilon/epsilon-0.7.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 eutils - -DESCRIPTION="Epsilon is a Python utilities package, most famous for its Time class" -HOMEPAGE="https://github.com/twisted/epsilon https://pypi.org/project/Epsilon/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -KEYWORDS="amd64 ppc ppc64 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-python/twisted-core-13.2.0[${PYTHON_USEDEP}] - >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] ) - ${DEPEND}" - -PATCHES=( "${FILESDIR}/epsilon_plugincache_portagesandbox.patch" ) - -# epsilon doesn't install any plugins, so override the default -TWISTED_PLUGINS=() - -python_prepare_all() { - # Rename to avoid file-collisions - mv bin/benchmark bin/epsilon-benchmark - sed -i \ - -e "s#bin/benchmark#bin/epsilon-benchmark#" \ - setup.py || die "sed failed" - - #These test are removed upstream - rm -f epsilon/test/test_sslverify.py epsilon/sslverify.py || die - #See bug 357157 comment 5 for Ian Delaney's explanation of this fix - sed -e 's:month) 2004 9:month) 2004 14:' \ - -i epsilon/test/test_extime.py || die - # Release tests need DivmodCombinator. - rm -f epsilon/test/test_release.py* epsilon/release.py || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - dodoc NAME.txt NEWS.txt - - distutils-r1_python_install_all -} - -#Lets run some tests, having prepped them -python_test() { - # No testrunner seems stipulated within the source; pytest and nosetests both work - nosetests ${PN}/test || die "testsuite failed under ${EPYTHON}" -} diff --git a/dev-python/epsilon/epsilon-0.7.1.ebuild b/dev-python/epsilon/epsilon-0.7.1.ebuild deleted file mode 100644 index 9960fd9f5824..000000000000 --- a/dev-python/epsilon/epsilon-0.7.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Epsilon is a Python utilities package, most famous for its Time class" -HOMEPAGE="https://github.com/twisted/epsilon https://pypi.org/project/Epsilon/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - || ( - dev-python/twisted[${PYTHON_USEDEP}] - >=dev-python/twisted-core-13.2.0[${PYTHON_USEDEP}] - ) - >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] ) - ${DEPEND}" - -PATCHES=( "${FILESDIR}/epsilon_plugincache_portagesandbox.patch" ) - -# epsilon doesn't install any plugins, so override the default -TWISTED_PLUGINS=() - -python_prepare_all() { - # Rename to avoid file-collisions - mv bin/benchmark bin/epsilon-benchmark - sed -i \ - -e "s#bin/benchmark#bin/epsilon-benchmark#" \ - setup.py || die "sed failed" - - #These test are removed upstream - rm -f epsilon/test/test_sslverify.py epsilon/sslverify.py || die - #See bug 357157 comment 5 for Ian Delaney's explanation of this fix - sed -e 's:month) 2004 9:month) 2004 14:' \ - -i epsilon/test/test_extime.py || die - # Release tests need DivmodCombinator. - rm -f epsilon/test/test_release.py* epsilon/release.py || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - dodoc NAME.txt NEWS.txt - - distutils-r1_python_install_all -} - -#Lets run some tests, having prepped them -python_test() { - # No testrunner seems stipulated within the source; pytest and nosetests both work - nosetests ${PN}/test || die "testsuite failed under ${EPYTHON}" -} diff --git a/dev-python/epsilon/files/epsilon_plugincache_portagesandbox.patch b/dev-python/epsilon/files/epsilon_plugincache_portagesandbox.patch deleted file mode 100644 index 06bd55732011..000000000000 --- a/dev-python/epsilon/files/epsilon_plugincache_portagesandbox.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- epsilon/setuphelper.py.orig 2009-02-11 08:15:39.000000000 +0100 -+++ epsilon/setuphelper.py 2009-02-11 08:18:56.000000000 +0100 -@@ -21,6 +21,9 @@ - def _regeneratePluginCache(pluginPackages): - print 'Regenerating cache with path: ', - pprint.pprint(sys.path) -+ if os.getenv("PORTAGE_PLUGINCACHE_NOOP") != None: -+ print 'Not regenerating plugin cache for portage sandbox usage.' -+ return - from twisted import plugin - for pluginModule in pluginModules([ - p + ".plugins" for p in pluginPackages]): diff --git a/dev-python/epsilon/metadata.xml b/dev-python/epsilon/metadata.xml deleted file mode 100644 index 223df38b1fda..000000000000 --- a/dev-python/epsilon/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - python@gentoo.org - Python - - A small utility package that depends on tools too recent for Twisted - (like datetime in python2.4) but performs generic enough functions - that it can be used in projects that don't want to share Divmod's - other projects' large footprint. - - Epsilon - twisted/epsilon - - diff --git a/dev-python/pyutil/Manifest b/dev-python/pyutil/Manifest deleted file mode 100644 index 994798d8e327..000000000000 --- a/dev-python/pyutil/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pyutil-2.0.0.tar.gz 125079 BLAKE2B cac7ce94671dbb2b4070aac76da2d9f8b3a48640a2422e8f9fd0dbd6a61eee43636b9b8a003ee3c528ffa7e866baf0254c4a2369ba8038c63aa072e2df9556ac SHA512 3704c028fdc3894ae635dabd2bace1af1e805f4158dc6d67eac0c38fa8e7959cd093ad39cb2f539e59dd74e957947464cc8c7aed727835e127311062ed27e60b diff --git a/dev-python/pyutil/metadata.xml b/dev-python/pyutil/metadata.xml deleted file mode 100644 index 5d4021ab5e7d..000000000000 --- a/dev-python/pyutil/metadata.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - pyutil -- a library of useful Python functions and classes - ========================================================== - - Many of these utilities (or their ancestors) were developed for - the Mojo - Nation, Mnet, Allmydata.com "Mountain View", Tahoe-LAFS, or - SimpleGeo's - products. (In the case where the code was developed for a - for-profit - company, the copyright holder donated the pyutil code to the - public under - these open source licences.) - - - pyutil - - diff --git a/dev-python/pyutil/pyutil-2.0.0-r1.ebuild b/dev-python/pyutil/pyutil-2.0.0-r1.ebuild deleted file mode 100644 index 1e1608682b1b..000000000000 --- a/dev-python/pyutil/pyutil-2.0.0-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 ) -inherit distutils-r1 - -DESCRIPTION="A collection of utilities for Python programmers" -HOMEPAGE="https://tahoe-lafs.org/trac/pyutil https://pypi.org/project/pyutil/" -SRC_URI="mirror://pypi/p/pyutil/pyutil-${PV}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - dev-python/simplejson[${PYTHON_USEDEP}] - || ( dev-python/twisted[${PYTHON_USEDEP}] dev-python/twisted-core[${PYTHON_USEDEP}] ) -" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -src_install() { - distutils-r1_src_install - rm -rf "${ED}"/usr/share/doc/${PN} -} diff --git a/dev-python/twisted-conch/Manifest b/dev-python/twisted-conch/Manifest deleted file mode 100644 index 794a42135170..000000000000 --- a/dev-python/twisted-conch/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedConch-13.2.0.tar.bz2 243977 BLAKE2B 96e11e1777b32b71dc7fc2c0af444ccbee0a7bbabc33cc45ea844818a3270bfb6877eee8442d4388530fbd55494d54d07b5e78759c8ae37f830a16b27c283e9d SHA512 3e9cfe76b5fdd8e18732d554721d493bed70b757b21029f8e126d486011b41da26a34409062cb5ffe4283a57b6d342434c84959b78b2781f069e22d2da610043 -DIST TwistedConch-15.2.1.tar.bz2 222736 BLAKE2B c4de3ffff523b8bb12918a5eab0b662e32f3e08985c0698b5a70167f9d655bbfb63e1c0c58e35be8e4042df4ea041c25bf421162220005caff369490b42c5d49 SHA512 d21879801e3cc925345e6528a84fa031f5cc1c8a2b5aebc5d3540fdd356d9743fe827ab8060db13b462a6d8986ac23307feaf78725950cef462f06b4edb93df7 diff --git a/dev-python/twisted-conch/metadata.xml b/dev-python/twisted-conch/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-conch/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-conch/twisted-conch-13.2.0.ebuild b/dev-python/twisted-conch/twisted-conch-13.2.0.ebuild deleted file mode 100644 index f2f060717e4f..000000000000 --- a/dev-python/twisted-conch/twisted-conch-13.2.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted SSHv2 implementation" - -KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - dev-python/pyasn1[${PYTHON_USEDEP}] - dev-python/pycrypto[${PYTHON_USEDEP}] -" -RDEPEND="${DEPEND} - !dev-python/twisted -" - -python_prepare_all() { - if [[ "${EUID}" -eq 0 ]]; then - # Disable tests failing with root permissions. - sed -e "s/test_checkKeyAsRoot/_&/" -i twisted/conch/test/test_checkers.py - sed -e "s/test_getPrivateKeysAsRoot/_&/" -i twisted/conch/test/test_openssh_compat.py - fi - - distutils-r1_python_prepare_all -} diff --git a/dev-python/twisted-conch/twisted-conch-15.2.1.ebuild b/dev-python/twisted-conch/twisted-conch-15.2.1.ebuild deleted file mode 100644 index 8e8991d4a234..000000000000 --- a/dev-python/twisted-conch/twisted-conch-15.2.1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted SSHv2 implementation" - -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - dev-python/pyasn1[${PYTHON_USEDEP}] - dev-python/pycryptodome[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-core/Manifest b/dev-python/twisted-core/Manifest deleted file mode 100644 index 13d78bf9531f..000000000000 --- a/dev-python/twisted-core/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedCore-13.2.0.tar.bz2 1496299 BLAKE2B a7034a23c4ad890a8591e7ef1de1c3ba1dc486ac6f3d1987cfc280756323d3e968a913bc4291ef8dede295a12c02b8e166a27f665ce7f4a1c536e6e7a6991e53 SHA512 90cf2019f0d5b125c7bbb5a9e3e7d2dedcd8efd5f9b2ab057e0b41f899d394b995fe599128223c82b1a634fb881ad7ae8ddc5b86b26adb28a3834c05da45f2c6 -DIST TwistedCore-15.2.1.tar.bz2 1179442 BLAKE2B 39c9d3646fbd31225dca1a4888ee177c9547b7a9809c57e2e9577c90c02f2b64e74cfa3b8410513b7645312d39ebb292fdc8dced26a9dd29abe95dad24a8b870 SHA512 c5923d71903afac7dec15d130ff3bd247dc1a6cdeb35cc642912a43f1e5640088971ddfc7abe3e18ca1853e59ba6a417d4b465fb422aba1a052bc156d7c6e820 diff --git a/dev-python/twisted-core/files/twistd.conf b/dev-python/twisted-core/files/twistd.conf deleted file mode 100644 index 53788cd0017e..000000000000 --- a/dev-python/twisted-core/files/twistd.conf +++ /dev/null @@ -1,7 +0,0 @@ - -# These are passed to twistd. -# TWISTD_OPTS="--no_save --logfile=/var/log/twistd -y /etc/twistd.tac" -# TWISTD_OPTS="--no_save --logfile=/var/log/twistd -f /etc/twistd.tap" - -# Make any additions to PYTHONPATH the twistd needs here. -# PYTHONPATH="/path/to/extra/python/modules" diff --git a/dev-python/twisted-core/files/twistd.init b/dev-python/twisted-core/files/twistd.init deleted file mode 100644 index b031b0020c6e..000000000000 --- a/dev-python/twisted-core/files/twistd.init +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/openrc-run - -depend() { - need net -} - -start() { - if [ -z "${TWISTD_OPTS}" ]; then - eerror "TWISTD_OPTS is not set!" - eerror "You need to configure twistd in /etc/conf.d/twistd." - return 1 - fi - export PYTHONPATH - ebegin "Starting twistd" - start-stop-daemon --start --quiet --pidfile /var/run/twistd.pid \ - --exec /usr/bin/twistd -- --pidfile /var/run/twistd.pid \ - ${TWISTD_OPTS} - eend $? "Failed to start twistd" -} - -stop() { - ebegin "Stopping twistd" - start-stop-daemon --stop --quiet --pidfile /var/run/twistd.pid - eend $? "Failed to stop twistd" -} diff --git a/dev-python/twisted-core/files/twisted-core-12.1.0-remove-tests-conch-dependency.patch b/dev-python/twisted-core/files/twisted-core-12.1.0-remove-tests-conch-dependency.patch deleted file mode 100644 index db2e2454bbc6..000000000000 --- a/dev-python/twisted-core/files/twisted-core-12.1.0-remove-tests-conch-dependency.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: twisted/test/test_strcred.py -=================================================================== ---- twisted/test/test_strcred.py (revision 34525) -+++ twisted/test/test_strcred.py (working copy) -@@ -352,6 +352,10 @@ - except ImportError: - skip = "PyCrypto is not available" - -+ try: -+ from twisted import conch -+ except ImportError: -+ skip = "Twisted Conch is not available" - - def test_isChecker(self): - """ diff --git a/dev-python/twisted-core/files/twisted-core-2.1.0-echo-less.patch b/dev-python/twisted-core/files/twisted-core-2.1.0-echo-less.patch deleted file mode 100644 index c180a111021d..000000000000 --- a/dev-python/twisted-core/files/twisted-core-2.1.0-echo-less.patch +++ /dev/null @@ -1,13 +0,0 @@ -=== modified file 'twisted/test/test_process.py' ---- twisted/test/test_process.py -+++ twisted/test/test_process.py -@@ -76,7 +76,7 @@ - - class EchoProtocol(protocol.ProcessProtocol): - -- s = "1234567" * 1001 -+ s = "1234567" * 11 - n = 10 - finished = 0 - - diff --git a/dev-python/twisted-core/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch b/dev-python/twisted-core/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch deleted file mode 100644 index 2fe22f1640b1..000000000000 --- a/dev-python/twisted-core/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- twisted/plugin.py -+++ twisted/plugin.py -@@ -174,7 +174,7 @@ - if pluginKey not in existingKeys: - del dropinDotCache[pluginKey] - needsWrite = True -- if needsWrite: -+ if needsWrite and os.environ.get("TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE") is None: - try: - dropinPath.setContent(pickle.dumps(dropinDotCache)) - except: diff --git a/dev-python/twisted-core/metadata.xml b/dev-python/twisted-core/metadata.xml deleted file mode 100644 index 28680e22a671..000000000000 --- a/dev-python/twisted-core/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - python@gentoo.org - Python - - - include serial port support - - - Twisted is an asynchronous networking framework written in Python, - supporting TCP, UDP, multicast, SSL/TLS, serial communication and - more. It is used by most of the servers, clients and protocols that - are part of other Twisted projects. - - diff --git a/dev-python/twisted-core/twisted-core-13.2.0.ebuild b/dev-python/twisted-core/twisted-core-13.2.0.ebuild deleted file mode 100644 index f78ea7e26866..000000000000 --- a/dev-python/twisted-core/twisted-core-13.2.0.ebuild +++ /dev/null @@ -1,120 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="threads(+)" - -inherit eutils flag-o-matic twisted-r1 - -DESCRIPTION="An asynchronous networking framework written in Python" - -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="crypt gtk serial" - -DEPEND=" - >=dev-python/zope-interface-3.6.0[${PYTHON_USEDEP}] - crypt? ( >=dev-python/pyopenssl-0.10[${PYTHON_USEDEP}] ) - gtk? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )" -RDEPEND="${DEPEND} - !dev-python/twisted -" - -PATCHES=( - # Give a load-sensitive test a better chance of succeeding. - "${FILESDIR}/${PN}-2.1.0-echo-less.patch" - - # Skip a test if twisted conch is not available - # (see Twisted ticket #5703) - "${FILESDIR}/${PN}-12.1.0-remove-tests-conch-dependency.patch" - - # Respect TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE variable. - "${FILESDIR}/${PN}-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch" -) - -python_prepare_all() { - if [[ "${EUID}" -eq 0 ]]; then - # Disable tests failing with root permissions. - sed \ - -e "s/test_newPluginsOnReadOnlyPath/_&/" \ - -e "s/test_deployedMode/_&/" \ - -i twisted/test/test_plugin.py - fi - - distutils-r1_python_prepare_all -} - -python_compile() { - if ! python_is_python3; then - # Needed to make the sendmsg extension work - # (see http://twistedmatrix.com/trac/ticket/5701 ) - - local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" - local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" - fi - - distutils-r1_python_compile -} - -python_test() { - # NOTE: on pypy a couple of failures (refcounting, version-checking) is - # expected - - distutils_install_for_testing - - pushd "${TEST_DIR}"/lib > /dev/null || die - - # Skip broken tests. - - # http://twistedmatrix.com/trac/ticket/5375 - sed -e "/class ZshIntegrationTestCase/,/^$/d" -i twisted/scripts/test/test_scripts.py \ - || die "sed failed" - - # tap2rpm is already skipped if rpm is not installed, but fails for me on a Gentoo box with it present. - # I currently lack the cycles to track this failure down. - rm twisted/scripts/test/test_tap2rpm.py - - # Prevent it from pulling in plugins from already installed twisted packages. - rm -f twisted/plugins/__init__.py - - # An empty file doesn't work because the tests check for doc strings in all packages. - echo "'''plugins stub'''" > twisted/plugins/__init__.py || die - - # https://twistedmatrix.com/trac/ticket/6920 - sed -e 's:test_basicOperation:_&:' -i twisted/scripts/test/test_tap2deb.py || die - sed -e 's:test_inspectCertificate:_&:' -i twisted/test/test_sslverify.py || die - - # Requires twisted-web creating a cric. dep - rm -f twisted/python/test/test_release.py || die - - # Requires connection to the network - sed -e 's:test_multiListen:_&:' -i twisted/test/test_udp.py || die - - if ! "${TEST_DIR}"/scripts/trial twisted; then - die "Tests failed with ${EPYTHON}" - fi - - popd > /dev/null || die -} - -python_install() { - distutils-r1_python_install - - cd "${D%/}$(python_get_sitedir)" || die - - # create 'Twisted' egg wrt bug #299736 - local egg=( Twisted_Core*.egg-info ) - [[ -f ${egg[0]} ]] || die "Twisted_Core*.egg-info not found" - ln -s "${egg[0]}" "${egg[0]/_Core/}" || die - - # own the dropin.cache so we don't leave orphans - touch twisted/plugins/dropin.cache || die -} - -python_install_all() { - distutils-r1_python_install_all - - newconfd "${FILESDIR}/twistd.conf" twistd - newinitd "${FILESDIR}/twistd.init" twistd -} diff --git a/dev-python/twisted-core/twisted-core-15.2.1.ebuild b/dev-python/twisted-core/twisted-core-15.2.1.ebuild deleted file mode 100644 index a209312861f5..000000000000 --- a/dev-python/twisted-core/twisted-core-15.2.1.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="threads(+)" - -inherit eutils flag-o-matic twisted-r1 - -DESCRIPTION="An asynchronous networking framework written in Python" - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="crypt gtk serial test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-python/zope-interface-3.6.0[${PYTHON_USEDEP}] - crypt? ( >=dev-python/pyopenssl-0.10[${PYTHON_USEDEP}] - dev-python/service_identity[${PYTHON_USEDEP}] ) - gtk? ( dev-python/pygtk:2[${PYTHON_USEDEP}] ) - serial? ( dev-python/pyserial[${PYTHON_USEDEP}] )" -DEPEND=" - test? ( ${RDEPEND} ) -" -RDEPEND+=" !dev-python/twisted" - -PATCHES=( - # Respect TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE variable. - "${FILESDIR}/${PN}-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch" -) - -python_prepare_all() { - if [[ "${EUID}" -eq 0 ]]; then - # Disable tests failing with root permissions. - sed \ - -e "s/test_newPluginsOnReadOnlyPath/_&/" \ - -e "s/test_deployedMode/_&/" \ - -i twisted/test/test_plugin.py - fi - - distutils-r1_python_prepare_all -} - -python_compile() { - if ! python_is_python3; then - # Needed to make the sendmsg extension work - # (see http://twistedmatrix.com/trac/ticket/5701 ) - local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" - local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" - fi - - distutils-r1_python_compile -} - -python_test() { - distutils_install_for_testing - - pushd "${TEST_DIR}"/lib > /dev/null || die - - # Skip broken tests. - - # http://twistedmatrix.com/trac/ticket/5375 - sed -e "/class ZshIntegrationTestCase/,/^$/d" -i twisted/scripts/test/test_scripts.py \ - || die "sed failed" - - # Prevent it from pulling in plugins from already installed twisted packages. - rm -f twisted/plugins/__init__.py - - # An empty file doesn't work because the tests check for doc strings in all packages. - echo "'''plugins stub'''" > twisted/plugins/__init__.py || die - - # https://twistedmatrix.com/trac/ticket/6920 6921 - # Just re-exposing them to list a full list of deficits -# sed -e 's:test_basicOperation:_&:' -i twisted/scripts/test/test_tap2deb.py || die -# sed -e 's:test_inspectCertificate:_&:' -i twisted/test/test_sslverify.py || die - - # Requires twisted-web, twisted-lore and twisted-names, creating a circ. dep and fail even if installed. - # test_loreDeprecation and test_exist failures appeared in version 14.0.0. - # Possibly due to over taxing of the distutils_install_for_testing function - rm -f twisted/python/test/test_release.py || die - sed -e 's:test_loreDeprecation:_&:' -i twisted/test/test_twisted.py || die - sed -e 's:test_exist:_&:' -i twisted/python/test/test_dist3.py || die - - # Requires connection to the network - sed -e 's:test_multiListen:_&:' -i twisted/test/test_udp.py || die - - # Appeared in version 14.0.0; https://twistedmatrix.com/trac/ticket/7422; known failures - # Upstream somewhat unreceptive - # The last of these invokes a hang or a long delay - sed -e 's:test_dataReceivedThrows:_&:' \ - -e 's:test_resumeProducingThrows:_&:' \ - -e 's:test_resumeProducingAbortLater:_&:' \ - -e 's:test_resumeProducingAbort:_&:' \ - -e 's:test_fullWriteBufferAfterByteExchange:_&:' \ - -i twisted/internet/test/test_tcp.py || die - sed -e 's:test_logPrefix:_&:' -i twisted/internet/test/connectionmixins.py || die - - if ! "${TEST_DIR}"/scripts/trial twisted; then - die "Tests failed with ${EPYTHON}" - fi - - popd > /dev/null || die -} - -python_install() { - distutils-r1_python_install - - cd "${D%/}$(python_get_sitedir)" || die - - # create 'Twisted' egg wrt bug #299736 - local egg=( Twisted_Core*.egg-info ) - [[ -f ${egg[0]} ]] || die "Twisted_Core*.egg-info not found" - ln -s "${egg[0]}" "${egg[0]/_Core/}" || die - - # own the dropin.cache so we don't leave orphans - touch twisted/plugins/dropin.cache || die -} - -python_install_all() { - distutils-r1_python_install_all - - newconfd "${FILESDIR}/twistd.conf" twistd - newinitd "${FILESDIR}/twistd.init" twistd -} diff --git a/dev-python/twisted-lore/Manifest b/dev-python/twisted-lore/Manifest deleted file mode 100644 index 1e1515477c38..000000000000 --- a/dev-python/twisted-lore/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedLore-13.2.0.tar.bz2 88616 BLAKE2B 9505d0bdbb61f2ca1bc852e49a6d46a41cb921443d10c3409f91d793cb4f68c3e15363caf022eca9d5782bf250e42f2b855abe31005834e6a98c52dc8bc6e5e4 SHA512 a05752e2854c404da30562062e1d72d0376ebd5b82c3371183023936851bb6394dc3ff95160efc3e7e7781624ac48485d7c102e4487cf3bfda2a086bcc596ff6 -DIST TwistedLore-15.2.1.tar.bz2 54070 BLAKE2B cc99513a90e07793f91741d4ab43ff5ced78b3df5b9f686799eef6aec54b9833604b25c2de509d170c95449f02c90f03fb2b807f4a036c2f689afd07287dba12 SHA512 9d9c45443f702e527f82dd25b7ed73af24b1ff16d266eb0cb6cb5be230939ed2ba07dfcd9d7b02d48823043b64b33df916b58dd1d1280d3f4e4f7c3cec851d7a diff --git a/dev-python/twisted-lore/metadata.xml b/dev-python/twisted-lore/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-lore/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-lore/twisted-lore-13.2.0.ebuild b/dev-python/twisted-lore/twisted-lore-13.2.0.ebuild deleted file mode 100644 index 7f7a75d8b582..000000000000 --- a/dev-python/twisted-lore/twisted-lore-13.2.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted documentation system" - -KEYWORDS="~alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-web-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-lore/twisted-lore-15.2.1.ebuild b/dev-python/twisted-lore/twisted-lore-15.2.1.ebuild deleted file mode 100644 index 5338dc85639c..000000000000 --- a/dev-python/twisted-lore/twisted-lore-15.2.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted documentation system" - -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-web-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-mail/Manifest b/dev-python/twisted-mail/Manifest deleted file mode 100644 index d0919208558a..000000000000 --- a/dev-python/twisted-mail/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedMail-13.2.0.tar.bz2 160046 BLAKE2B d13c04c2544f59711de980bc3902e65997f02aa389ec2b59cded133dbf931f1cb24f3d1b7bf100af7ac91b7a39b02d87959fed32ac218486918630afe911096d SHA512 399e34dbf674e3e30acf49769fbb9c188f1dfc00187b82e67865490b5a9f2847ad1d70fc1bb930a50b4b77b3e017212590c93f3077a8464d9e1f662750f37314 -DIST TwistedMail-15.2.1.tar.bz2 161891 BLAKE2B 5ca48f016ba7fa5612b6a0dcc2d5244ef0bc87c312840f641ec62a78949fa4519c3ea246030da656a663d044bfe58cce9d720093471baa5b07848ec8a0c2bbc9 SHA512 d3c29ad842610dde6697e76456125716a8657f9e7938ac6e66fd3c226fc339e04551a2074c8af8627882c2a761414d5f856fe647b3900ed4eae0fbe7fb5bba23 diff --git a/dev-python/twisted-mail/metadata.xml b/dev-python/twisted-mail/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-mail/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-mail/twisted-mail-13.2.0.ebuild b/dev-python/twisted-mail/twisted-mail-13.2.0.ebuild deleted file mode 100644 index 2f357a596a64..000000000000 --- a/dev-python/twisted-mail/twisted-mail-13.2.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="A Twisted Mail library, server and client" - -KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-names-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-mail/twisted-mail-15.2.1.ebuild b/dev-python/twisted-mail/twisted-mail-15.2.1.ebuild deleted file mode 100644 index 31dca25f16f2..000000000000 --- a/dev-python/twisted-mail/twisted-mail-15.2.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="A Twisted Mail library, server and client" - -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-names-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-names/Manifest b/dev-python/twisted-names/Manifest deleted file mode 100644 index 0c2da0c8a267..000000000000 --- a/dev-python/twisted-names/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedNames-13.2.0.tar.bz2 71127 BLAKE2B bf84c95a42b3738c5764d22acd259ccd443e236fcb8c87f383a2de46cdd5c9859b09be57630a11595be125ed74ce5fe4dd0783af2dc76dfc802a873dd17e55f3 SHA512 1dc7ac69f51a41f3fa6472ae633649d61935ca0c64233a86c69755e8a53100402842712beb2b555dfbf493696bcb4a0fa7d70fa2d3450fe0448b680f85eb9fb5 -DIST TwistedNames-15.2.1.tar.bz2 88688 BLAKE2B d6256bda4c674f0aedd5fe871c1ce3d2c6780c7d8c32c26598b47e1840d9061323e925a44aae4f02ef2537a20ec947a54eaabc4daf7d45465843c48b76132ab7 SHA512 2ca2c4e4e9a49e82246f781f2fd1eb86a85d78236251e085dc88a8b52b7b58964cac4ff2db75a97ea652350f650bc06fcc4d4964747b7e9c5a6631c2ea6aed80 diff --git a/dev-python/twisted-names/metadata.xml b/dev-python/twisted-names/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-names/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-names/twisted-names-13.2.0.ebuild b/dev-python/twisted-names/twisted-names-13.2.0.ebuild deleted file mode 100644 index cdcd519f4d49..000000000000 --- a/dev-python/twisted-names/twisted-names-13.2.0.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="A Twisted DNS implementation" - -KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-names/twisted-names-15.2.1.ebuild b/dev-python/twisted-names/twisted-names-15.2.1.ebuild deleted file mode 100644 index faf83b7a046c..000000000000 --- a/dev-python/twisted-names/twisted-names-15.2.1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="A Twisted DNS implementation" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-news/Manifest b/dev-python/twisted-news/Manifest deleted file mode 100644 index 9ca608315fe1..000000000000 --- a/dev-python/twisted-news/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedNews-13.2.0.tar.bz2 19706 BLAKE2B 42969d66d60d5bb228e4565c775b8d3e10acd2fd833d3b48e08d773b72bd01dd9d71d5fbdf1d4db767219d5d7f9949214bf5dda0d487c76434db3fc8c9dbc124 SHA512 439f35b882f28be1fa466fabe93c06cd688662a44dd21f58a3c2d9670f95910c038bb30b79c88f661f50be7eb9bb820f6d89a94fbf61bde2d8bb46af574c9274 -DIST TwistedNews-15.2.1.tar.bz2 19889 BLAKE2B 4043b76752dfcc8205f8b978cd87267d1fb31c1c794c65678e3a1fec1aac3b8131dd55550acf69909149873eaf55fc69f232083cebb46224ab2b23d95374188d SHA512 faa3a2b7c6acf2d9f8a63ef79bf36fecc2d48101b701bf679b4837e54f8327e5dda75e207ac2cb03a35671781c9221f62f60885a0459e970f15d660d214e7342 diff --git a/dev-python/twisted-news/metadata.xml b/dev-python/twisted-news/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-news/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-news/twisted-news-13.2.0.ebuild b/dev-python/twisted-news/twisted-news-13.2.0.ebuild deleted file mode 100644 index 04532e3e2cdf..000000000000 --- a/dev-python/twisted-news/twisted-news-13.2.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted News is an NNTP server and programming library" - -KEYWORDS="~alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-mail-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-news/twisted-news-15.2.1.ebuild b/dev-python/twisted-news/twisted-news-15.2.1.ebuild deleted file mode 100644 index 8e0abf2fd8eb..000000000000 --- a/dev-python/twisted-news/twisted-news-15.2.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted News is an NNTP server and programming library" - -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-mail-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-pair/Manifest b/dev-python/twisted-pair/Manifest deleted file mode 100644 index 28e7e29bc3d2..000000000000 --- a/dev-python/twisted-pair/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedPair-13.2.0.tar.bz2 9251 BLAKE2B 6aeb447bc9adf890829ba4341e6ed33dc0d08be2e431a2d0cbc5d28019701b42086189ddd8b69926ace2ea8a8c1099d78ceea8649e2fe481594ff116c265c627 SHA512 931b2564e66d5056ce10695e7d9884b55d42c1081feaf9edc011aef9dff21f40e628312a89970f83619611967f155f26f4bbd9d1a325d30670e245e00f47e2d0 -DIST TwistedPair-15.2.1.tar.bz2 21755 BLAKE2B 4e006c24e5daa77188dc72e9559f86b6acda10a3b843acc8f312285d299f22a86f29ee946d709c63160e39b38312e612ce88d306ab3a37ad91f4e94bc7835c6b SHA512 e7e9c8d88ca490c5e9f41ade6aede36dc23ea935f7c1658355bf685e21000e4e20ee1a3ccc3ebdba312fe026a8b7b25f2bcf51c3761668c2c3ce86b37ad3c725 diff --git a/dev-python/twisted-pair/files/14.0.0-tests.patch b/dev-python/twisted-pair/files/14.0.0-tests.patch deleted file mode 100644 index 0ec7a032eb71..000000000000 --- a/dev-python/twisted-pair/files/14.0.0-tests.patch +++ /dev/null @@ -1,26 +0,0 @@ -Allows user to access /dev/net/tun ---- twisted/pair/test/test_tuntap.py.orig 2014-05-27 22:55:56.230232748 -0400 -+++ twisted/pair/test/test_tuntap.py 2014-05-27 23:30:02.769956742 -0400 -@@ -10,7 +10,7 @@ - import os - import struct - import socket --from errno import EPERM, EBADF, EINVAL, EAGAIN, EWOULDBLOCK, ENOENT, ENODEV -+from errno import EPERM, EBADF, EINVAL, EAGAIN, EWOULDBLOCK, ENOENT, ENODEV, EACCES - from random import randrange - from collections import deque - from itertools import cycle -@@ -582,8 +582,11 @@ - except OSError as e: - # The device file may simply be missing. The device file may also - # exist but be unsupported by the kernel. -- if e.errno in (ENOENT, ENODEV) and filename == b"/dev/net/tun": -- raise SkipTest("Platform lacks /dev/net/tun") -+ if filename == b"/dev/net/tun": -+ if e.errno in (ENOENT, ENODEV): -+ raise SkipTest("Platform lacks /dev/net/tun") -+ elif e.errno == EACCES: -+ raise SkipTest("Access denied opening /dev/net/tun") - raise - - diff --git a/dev-python/twisted-pair/metadata.xml b/dev-python/twisted-pair/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-pair/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-pair/twisted-pair-13.2.0.ebuild b/dev-python/twisted-pair/twisted-pair-13.2.0.ebuild deleted file mode 100644 index d5057737aa8d..000000000000 --- a/dev-python/twisted-pair/twisted-pair-13.2.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted low-level networking" - -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - dev-python/eunuchs[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-pair/twisted-pair-15.2.1.ebuild b/dev-python/twisted-pair/twisted-pair-15.2.1.ebuild deleted file mode 100644 index 3e67a014357a..000000000000 --- a/dev-python/twisted-pair/twisted-pair-15.2.1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted low-level networking" - -KEYWORDS="~amd64 ~arm ~sparc ~x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - dev-python/eunuchs[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" - -# https://twistedmatrix.com/trac/ticket/7433 -PATCHES=( "${FILESDIR}"/14.0.0-tests.patch ) diff --git a/dev-python/twisted-runner/Manifest b/dev-python/twisted-runner/Manifest deleted file mode 100644 index 36dfa7c649b9..000000000000 --- a/dev-python/twisted-runner/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedRunner-13.2.0.tar.bz2 12944 BLAKE2B 98060e134cb928897c4a49a66928be645c4dd48d6581792fb699900599d653882b96dfab91d50480928473b5f33eec21f891663f5eef520e43b45119b5c424e0 SHA512 1ede91957ecf349164fb63e284896f8909c88e54c032c6c326aabe2efa3058b5b9ba232e5ca60e71776dff4514a6c23483d9720e815f07c48c10232831741489 -DIST TwistedRunner-15.2.1.tar.bz2 13041 BLAKE2B 212c846c0aa6ecb1e8cae8f13dd016addba200575b13d58b028277d91b95e311d47ae30b260be05ae8404bdd6558119a785a1d3f16535537d0ccd04415ce92b8 SHA512 9cf94b62cf978f0a11dcba7ee18632d94dbf27bf629f5632f6bdbfa21096a4a8ff5298df9e7e42f03469cf3b89dccc537b983cfb198e35ba01e0ef530baa3867 diff --git a/dev-python/twisted-runner/metadata.xml b/dev-python/twisted-runner/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-runner/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-runner/twisted-runner-13.2.0.ebuild b/dev-python/twisted-runner/twisted-runner-13.2.0.ebuild deleted file mode 100644 index 95a51a89b390..000000000000 --- a/dev-python/twisted-runner/twisted-runner-13.2.0.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted Runner is a process management library and inetd replacement" - -KEYWORDS="~alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-runner/twisted-runner-15.2.1.ebuild b/dev-python/twisted-runner/twisted-runner-15.2.1.ebuild deleted file mode 100644 index 65c836eaca72..000000000000 --- a/dev-python/twisted-runner/twisted-runner-15.2.1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted Runner is a process management library and inetd replacement" - -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-web/Manifest b/dev-python/twisted-web/Manifest deleted file mode 100644 index ca24ed478a06..000000000000 --- a/dev-python/twisted-web/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedWeb-13.2.0.tar.bz2 403931 BLAKE2B b003889c566b9063ffbef9eeb3f98af22eff4ba1b10cf2db1eb76ff3da08ac45d3892790943348c0d1cf4a28d8e66050aca9281409b47e48df42ec036a25e1af SHA512 69e721ec456214d000f88268340b7cf21186073af11e7f906bf95c9a1bfaf49fdc5832b4e39586ebdddd3f1378bf823ab147de58d7aa9e8491a2561a54389a1f -DIST TwistedWeb-15.2.1.tar.bz2 231092 BLAKE2B 2bd561f973f0ce8ac67c1ee947f07b9b4fb82f7cff6e543ad324d8ef3e60d3be28b6290abd173362d49d824d4d4c23223361d30d94702176c385f5b9a7c048f3 SHA512 e2b155deed9b240f92f173e0fb188c1538ef2275cc6564b838dac8a5ac4c460e664791623cd3e3cde996b63f1619eff8d62636c2813e8b81da5054b8eea365e1 diff --git a/dev-python/twisted-web/metadata.xml b/dev-python/twisted-web/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-web/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-web/twisted-web-13.2.0.ebuild b/dev-python/twisted-web/twisted-web-13.2.0.ebuild deleted file mode 100644 index 4761ea14b8ce..000000000000 --- a/dev-python/twisted-web/twisted-web-13.2.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -MY_PN="TwistedWeb" -DESCRIPTION="Twisted web server, programmable in Python" - -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="soap" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - dev-python/pyopenssl[${PYTHON_USEDEP}] - soap? ( dev-python/soappy[${PYTHON_USEDEP}] )" -RDEPEND="${DEPEND} - !dev-python/twisted -" - -python_prepare_all() { - if [[ "${EUID}" -eq 0 ]]; then - # Disable tests failing with root permissions. - sed -e "s/test_forbiddenResource/_&/" -i twisted/web/test/test_static.py - sed -e "s/testDownloadPageError3/_&/" -i twisted/web/test/test_webclient.py - fi - - distutils-r1_python_prepare_all -} -# testsuite has a PYTHONPATH oddity, currently appears to require a system install to effectively import, -# putting in question as to whether it is a testsuite diff --git a/dev-python/twisted-web/twisted-web-15.2.1.ebuild b/dev-python/twisted-web/twisted-web-15.2.1.ebuild deleted file mode 100644 index b4c867d94319..000000000000 --- a/dev-python/twisted-web/twisted-web-15.2.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -MY_PN="TwistedWeb" -DESCRIPTION="Twisted web server, programmable in Python" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="soap" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - dev-python/pyopenssl[${PYTHON_USEDEP}] - soap? ( dev-python/soappy[${PYTHON_USEDEP}] )" -RDEPEND="${DEPEND} - !dev-python/twisted -" - -python_prepare_all() { - if [[ "${EUID}" -eq 0 ]]; then - # Disable tests failing with root permissions. - sed -e "s/test_forbiddenResource/_&/" -i twisted/web/test/test_static.py - sed -e "s/testDownloadPageError3/_&/" -i twisted/web/test/test_webclient.py - fi - - distutils-r1_python_prepare_all -} -# testsuite has a PYTHONPATH oddity, currently appears to require a system install to effectively import, -# putting in question as to whether it is a testsuite diff --git a/dev-python/twisted-words/Manifest b/dev-python/twisted-words/Manifest deleted file mode 100644 index 39f9663b7783..000000000000 --- a/dev-python/twisted-words/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST TwistedWords-13.2.0.tar.bz2 176411 BLAKE2B a8972dc504fd03a5d3eda5a6c908989ca6561124617b12cca5b1379fb1cf5ee37aa52c798b08023d1e381e4738c784091188c2f07952bb2192ba25d027907b4c SHA512 84ff45f86a0c3d7074fdfcd01159833b461780b75c5135d7a1cc2b3c4c918ad2299c217e8f5ef8e9a71f87a005ec1037fcf870e56601fcee50347ac2e1c39105 -DIST TwistedWords-15.2.1.tar.bz2 168483 BLAKE2B 55d83e146b83212ad42d25479fe59b88f885e948127ee7f52afe69da9d5513ee709c7ad8bcc564e1e77cdcfd63f3f1592624e7dd7d957bc18a753a94a4ef76aa SHA512 aca278a69f5c4deceab0e6f1c6461186131e4b9e7558970175cd5a70232eb7096c3c10fd300a9d22612e97dceeba71765118af45eed7a610678f66d9036452e7 diff --git a/dev-python/twisted-words/metadata.xml b/dev-python/twisted-words/metadata.xml deleted file mode 100644 index 7f4f33c6dbc9..000000000000 --- a/dev-python/twisted-words/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - python@gentoo.org - Python - - diff --git a/dev-python/twisted-words/twisted-words-13.2.0.ebuild b/dev-python/twisted-words/twisted-words-13.2.0.ebuild deleted file mode 100644 index af46094d46c0..000000000000 --- a/dev-python/twisted-words/twisted-words-13.2.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted Words contains Instant Messaging implementations" - -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-web-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/twisted-words/twisted-words-15.2.1.ebuild b/dev-python/twisted-words/twisted-words-15.2.1.ebuild deleted file mode 100644 index df635df64b35..000000000000 --- a/dev-python/twisted-words/twisted-words-15.2.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="Twisted Words contains Instant Messaging implementations" - -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -DEPEND=" - =dev-python/twisted-core-${TWISTED_RELEASE}*[${PYTHON_USEDEP}] - =dev-python/twisted-web-${TWISTED_RELEASE}*[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - !dev-python/twisted -" diff --git a/dev-python/vertex/Manifest b/dev-python/vertex/Manifest deleted file mode 100644 index e16b99facd34..000000000000 --- a/dev-python/vertex/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST Vertex-0.3.0.tar.gz 84997 BLAKE2B 8f6a2955c4674888f7608590390f4cfbf5063e08281fc2a49a4cf9543a7b769df6e355bd87044f6eb23009ab50e7efbbbf5d0a471627780e9869008c764f0e8b SHA512 206d142cc72b2d77ed8c8fe222770eabc1a8c179238f46554abc5d833669f27bd286565e20ccaf5594d456b23b54455b23ab0eca5b8b4f72a7961924e7167676 -DIST Vertex-0.3.1.tar.gz 89909 BLAKE2B d26b73c5079f0401185e534aa9c35f7fd490eae9b27cd36915e3f2508b1ff6feda3a900bc3230d7f24f563546d6a966441b8618d066f28f647878597df4b9df7 SHA512 7e9b96a7ba493254ff58e8f75da6517c09c4502c21702a96c29525a78569ff7d988cd7278dd87983485b6da30a607820a7edb28375e37d5e059d6f0638a1b1c9 diff --git a/dev-python/vertex/metadata.xml b/dev-python/vertex/metadata.xml deleted file mode 100644 index 903c836f7a27..000000000000 --- a/dev-python/vertex/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - python@gentoo.org - Python - - Vertex is an implementation of the Q2Q protocol (sort of like P2P, - but one better). There are a few moving parts in Vertex: PTCP is a - protocol which is nearly identical to TCP, but which runs over - UDP. This lets Q2Q penetrate most NAT configurations. JUICE - ([JU]ice [I]s [C]oncurrent [E]vents) is a very simple but immensely - flexible protocol which forms the basis of the high-level aspects of - Q2Q. vertex is a command line tool which exposes a few features - useful in many situations (such as registration and authentication). - - Vertex - - diff --git a/dev-python/vertex/vertex-0.3.0-r1.ebuild b/dev-python/vertex/vertex-0.3.0-r1.ebuild deleted file mode 100644 index b550fbcaed83..000000000000 --- a/dev-python/vertex/vertex-0.3.0-r1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="An implementation of the Q2Q protocol" -HOMEPAGE="https://github.com/twisted/vertex https://pypi.org/project/Vertex/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="dev-libs/openssl:0 - >=dev-python/epsilon-0.6.0-r1[${PYTHON_USEDEP}] - >=dev-python/pyopenssl-0.13-r1[${PYTHON_USEDEP}] - dev-python/twisted-core[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" - -python_install_all() { - distutils-r1_python_install_all - - dodoc NAME.txt -} diff --git a/dev-python/vertex/vertex-0.3.1-r1.ebuild b/dev-python/vertex/vertex-0.3.1-r1.ebuild deleted file mode 100644 index 63a926e81a05..000000000000 --- a/dev-python/vertex/vertex-0.3.1-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="An implementation of the Q2Q protocol" -HOMEPAGE="https://github.com/twisted/vertex https://pypi.org/project/Vertex/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -KEYWORDS="~amd64 ~x86" -IUSE="libressl test" -RESTRICT="!test? ( test )" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) - >=dev-python/epsilon-0.6.0-r1[${PYTHON_USEDEP}] - >=dev-python/pyopenssl-0.13-r1[${PYTHON_USEDEP}] - || ( - dev-python/twisted[${PYTHON_USEDEP}] - dev-python/twisted-core[${PYTHON_USEDEP}] - )" -DEPEND="${RDEPEND} - test? ( dev-python/pretend[${PYTHON_USEDEP}] )" - -python_install_all() { - distutils-r1_python_install_all - - dodoc NAME.txt -} diff --git a/dev-python/zbase32/Manifest b/dev-python/zbase32/Manifest deleted file mode 100644 index 9e71925ea304..000000000000 --- a/dev-python/zbase32/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST zbase32-1.1.5.tar.gz 21745 BLAKE2B 42813eaf21da0b486e43dde3999d0f9bc04f28dc9f465ce5bf4ba5526dde70c85203c8c3341ba9ae49d4d54d91cb81fffbd5004fe08f2b73c5abc514d814ea09 SHA512 b2b049cdbc312cb56656b611d726527cdb0f598e5c8e0a646d1a144f863698404d8784d477f64402b0e3efd2d0ef5927a74ff0370a1742c1b7a5ad257bdc4f11 diff --git a/dev-python/zbase32/metadata.xml b/dev-python/zbase32/metadata.xml deleted file mode 100644 index 97a9d1ac26d2..000000000000 --- a/dev-python/zbase32/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - zbase32 - - diff --git a/dev-python/zbase32/zbase32-1.1.5.ebuild b/dev-python/zbase32/zbase32-1.1.5.ebuild deleted file mode 100644 index 0eaf7ba10da1..000000000000 --- a/dev-python/zbase32/zbase32-1.1.5.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="base32 encoder/decoder (not RFC 3548 compliant)" -HOMEPAGE="https://pypi.org/project/zbase32/" -SRC_URI="mirror://pypi/z/zbase32/zbase32-${PV}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-python/pyutil[${PYTHON_USEDEP}]"