diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-21 15:00:32 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-21 15:00:32 +0200 |
commit | 5a1659dadf14776dbf122a86eb9e5618e2e87a8e (patch) | |
tree | 517fb5aa6f73367eb4e6cce7e980956ce196f751 /dev-python/astroid | |
parent | dev-python/pylint: Drop old (diff) | |
download | gentoo-5a1659dadf14776dbf122a86eb9e5618e2e87a8e.tar.gz gentoo-5a1659dadf14776dbf122a86eb9e5618e2e87a8e.tar.bz2 gentoo-5a1659dadf14776dbf122a86eb9e5618e2e87a8e.zip |
dev-python/astroid: Drop old
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/astroid')
-rw-r--r-- | dev-python/astroid/Manifest | 3 | ||||
-rw-r--r-- | dev-python/astroid/astroid-1.3.4.ebuild | 44 | ||||
-rw-r--r-- | dev-python/astroid/astroid-1.3.6.ebuild | 44 | ||||
-rw-r--r-- | dev-python/astroid/astroid-1.3.7.ebuild | 46 |
4 files changed, 0 insertions, 137 deletions
diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest index 370c1dd41b0b..3c1bd18e9933 100644 --- a/dev-python/astroid/Manifest +++ b/dev-python/astroid/Manifest @@ -1,4 +1 @@ -DIST astroid-1.3.4.tar.gz 146809 SHA256 0b453eaa4f48aaa25a007ede7165aa424d83d4a14fd3bd636dc9c77f83e8e9bb SHA512 cdb75480402e46e4a18557fcacf320ee79a2b5f37f02a6a0d878ca9406fa598cd9a3eea4b3be16c9d9ff0ac279cf7138b2ebaf71fb256ac52006f09117c3ad30 WHIRLPOOL 909ecefb8ed8fd1ac7b6f543f801d78ea490f15fe2434c58ea6d9b943dd511cc9fc381b72263b81f7e19bfaffad100cfe8014f63fe93f2cff69a51531464269a -DIST astroid-1.3.6.tar.gz 153863 SHA256 1241ef961448c57b4616beb8dcc959724641dca1e22914663f79d67fec26f854 SHA512 a44a17a59834915798b6c672243dccba57a432f646a2bd377e2b067d79d8057b1db0c22107285abcff19b9719d128a5354f9d5a82f65f628ae8beb15cedcbe35 WHIRLPOOL 3c58c450e54f3756a55075b40973174b0b2f8ba4910aa66bb42f0e85c7d9197d0d5154a2776caeed65a47da2276731d970db73fade3cef74ba583a2a7cffe016 -DIST astroid-1.3.7.tar.gz 154919 SHA256 91018b668d94275b9e55b79804a2a248dac1262c581c51fa880fdf57b5004ec8 SHA512 f2557c10c5a3dc6d52a836db8ab6ac1d945d529d5d6501b093ac87887bb445df0f37a54d72b00cd826ce09378abe7cf283b69892852b7fb2ad5d61dee0996162 WHIRLPOOL 53dca23ca45bd81fbd6957c0588f787c8cb18847a963488bc8c9780ca0c05f21d6605a438ae11b79d34a0cb9790dc7f29db1dfa8009b4ef86b21ac032184c040 DIST astroid-1.3.8.tar.gz 155302 SHA256 3971c35c675dc7acfceb636eb1758b7df9fc3ad75b5f81ca89f57ccf51719442 SHA512 316d3a6a12d95b3bebe7ffe47de840cbff96f357c7c324f6684bb713bca191cfaf87fe226c3c1145049611a2035890bdf11845bf923f7d0087a0d1e565d5d5c5 WHIRLPOOL 456ebef20c278047ae0e85fb1386f63eb7c13dda295ddace9704df5255b5004887f6f5201097b2337cc678a9891f33aa5628cbf7acc01c4eb9ff3dc3c091408a diff --git a/dev-python/astroid/astroid-1.3.4.ebuild b/dev-python/astroid/astroid-1.3.4.ebuild deleted file mode 100644 index af4261519d3f..000000000000 --- a/dev-python/astroid/astroid-1.3.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) -RESTRICT="test" # False is not True ;) - -inherit distutils-r1 - -DESCRIPTION="Abstract Syntax Tree for logilab packages" -HOMEPAGE="https://bitbucket.org/logilab/astroid https://pypi.python.org/pypi/astroid" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos" -IUSE="test" - -# Version specified in __pkginfo__.py. -RDEPEND=">=dev-python/logilab-common-0.60.0[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - app-arch/unzip - test? ( ${RDEPEND} - >=dev-python/pylint-1.4.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7) )" -# Required for tests -DISTUTILS_IN_SOURCE_BUILD=1 - -# Restrict to test phase, required because suite fails horribly without it -src_test() { - local DISTUTILS_NO_PARALLEL_BUILD=1 - distutils-r1_src_test -} - -python_test() { - "${PYTHON}" setup.py build - - pushd build/lib > /dev/null - PYTHONPATH=. pytest || die "Tests fail with ${EPYTHON}" - popd > /dev/null -} diff --git a/dev-python/astroid/astroid-1.3.6.ebuild b/dev-python/astroid/astroid-1.3.6.ebuild deleted file mode 100644 index 404c1efa4b17..000000000000 --- a/dev-python/astroid/astroid-1.3.6.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) -RESTRICT="test" # False is not True ;) - -inherit distutils-r1 - -DESCRIPTION="Abstract Syntax Tree for logilab packages" -HOMEPAGE="https://bitbucket.org/logilab/astroid https://pypi.python.org/pypi/astroid" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos" -IUSE="test" - -# Version specified in __pkginfo__.py. -RDEPEND=">=dev-python/logilab-common-0.60.0[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - app-arch/unzip - test? ( ${RDEPEND} - >=dev-python/pylint-1.4.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7) )" -# Required for tests -DISTUTILS_IN_SOURCE_BUILD=1 - -# Restrict to test phase, required because suite fails horribly without it -src_test() { - local DISTUTILS_NO_PARALLEL_BUILD=1 - distutils-r1_src_test -} - -python_test() { - "${PYTHON}" setup.py build - - pushd build/lib > /dev/null - PYTHONPATH=. pytest || die "Tests fail with ${EPYTHON}" - popd > /dev/null -} diff --git a/dev-python/astroid/astroid-1.3.7.ebuild b/dev-python/astroid/astroid-1.3.7.ebuild deleted file mode 100644 index 45443d0bb7ab..000000000000 --- a/dev-python/astroid/astroid-1.3.7.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Abstract Syntax Tree for logilab packages" -HOMEPAGE="https://bitbucket.org/logilab/astroid https://pypi.python.org/pypi/astroid" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos" -IUSE="test" - -# Version specified in __pkginfo__.py. -RDEPEND=" - <=dev-python/logilab-common-0.63.0[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" -DEPEND=" - app-arch/unzip - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( ${RDEPEND} - >=dev-python/pylint-1.4.0[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7) - )" -# Required for tests -DISTUTILS_IN_SOURCE_BUILD=1 - -RESTRICT="test" # False is not True ;) - -# Restrict to test phase, required because suite fails horribly without it -src_test() { - local DISTUTILS_NO_PARALLEL_BUILD=1 - distutils-r1_src_test -} - -python_test() { - pushd build/lib > /dev/null || die - PYTHONPATH=. pytest || die "Tests fail with ${EPYTHON}" - popd > /dev/null || die -} |