summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-06-14 10:30:24 +0200
committerMichał Górny <mgorny@gentoo.org>2020-06-14 10:30:24 +0200
commite74911f28acf871a2c73ddf652879a808caf500a (patch)
tree9eefed6bb8fd46d9a7d7f520d3b15d92ed5d1d7d /dev-python
parent9bc0f0c7df6114f6fc7e53b10e6d1bc7d36fe420 (diff)
downloadgentoo-e74911f28acf871a2c73ddf652879a808caf500a.tar.gz
gentoo-e74911f28acf871a2c73ddf652879a808caf500a.tar.bz2
gentoo-e74911f28acf871a2c73ddf652879a808caf500a.zip
dev-python/pyprotocols: Remove last-rited pkg
Closes: https://bugs.gentoo.org/723290 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pyprotocols/Manifest1
-rw-r--r--dev-python/pyprotocols/files/SkipTests.patch25
-rw-r--r--dev-python/pyprotocols/metadata.xml8
-rw-r--r--dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild46
4 files changed, 0 insertions, 80 deletions
diff --git a/dev-python/pyprotocols/Manifest b/dev-python/pyprotocols/Manifest
deleted file mode 100644
index 51aff4c4da9b..000000000000
--- a/dev-python/pyprotocols/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST PyProtocols-1.0a0dev_r2306.tar.gz 218555 BLAKE2B 77862a59343b21a97f1bbc5281f397652108912669e6e550e2ae7ad7f4e95c181b8315a940f5b737e20468fba1bec42b4539571ee8ab54a41737fcdc5e3e7a70 SHA512 1f18be9548ae29b6111dccd158f5706f3a1ed7074152e9ef2e0d17caaad2227d3f613b50b602b3b1d47b5db7f53e583fce4e06b3e23916ac0daf7a92bcd66ccc
diff --git a/dev-python/pyprotocols/files/SkipTests.patch b/dev-python/pyprotocols/files/SkipTests.patch
deleted file mode 100644
index 293f0a2a0626..000000000000
--- a/dev-python/pyprotocols/files/SkipTests.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/src/protocols/tests/__init__.py
-+++ b/src/protocols/tests/__init__.py
-@@ -256,22 +256,6 @@
- makeSuite(GenerationTests,'check'),
- ]
-
-- try:
-- import zope.interface
-- except ImportError:
-- pass
-- else:
-- from protocols.tests import test_zope
-- tests.append( test_zope.test_suite() )
--
-- try:
-- from twisted.python.components import Interface
-- except (ImportError, SystemError):
-- pass
-- else:
-- from protocols.tests import test_twisted
-- tests.append( test_twisted.test_suite() )
--
- return TestSuite(
- tests
- )
diff --git a/dev-python/pyprotocols/metadata.xml b/dev-python/pyprotocols/metadata.xml
deleted file mode 100644
index 9e5274c5b4ae..000000000000
--- a/dev-python/pyprotocols/metadata.xml
+++ /dev/null
@@ -1,8 +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>
-</pkgmetadata>
diff --git a/dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild b/dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild
deleted file mode 100644
index b02638a61800..000000000000
--- a/dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 flag-o-matic
-
-MY_PN="PyProtocols"
-MY_P="${MY_PN}-${PV/_pre/a0dev_r}"
-
-DESCRIPTION="Extends the PEP 246 adapt function with a new 'declaration API'"
-HOMEPAGE="http://peak.telecommunity.com/PyProtocols.html https://pypi.org/project/PyProtocols/ \
- http://svn.eby-sarna.com/PyProtocols/"
-SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
-
-LICENSE="|| ( PSF-2 ZPL )"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE=""
-
-RDEPEND=">=dev-python/decoratortools-1.4[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- >=dev-python/pyrex-0.9.9[${PYTHON_USEDEP}]
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S="${WORKDIR}/${MY_PN}"
-
-PATCHES=( "${FILESDIR}"/SkipTests.patch )
-DOCS=( CHANGES.txt README.txt UPGRADING.txt )
-
-python_prepare_all() {
- # Rm peripheral & rogue failing tests
- rm -f src//protocols/tests/{test_twisted.py,test_zope.py} || die
-
- distutils-r1_python_prepare_all
-}
-
-python_configure_all() {
- append-flags -fno-strict-aliasing
-}
-
-python_test() {
- esetup.py test || die "Tests failed under ${EPYTHON}"
-}