dev-python/pkgconfig: Clean old versions up

This commit is contained in:
Michał Górny
2017-05-02 19:16:33 +02:00
parent 010d0d811a
commit 7a1bda67b6
2 changed files with 0 additions and 33 deletions

View File

@@ -1,2 +1 @@
DIST pkgconfig-1.1.0.tar.gz 3887 SHA256 709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df SHA512 77a551ca797723682c06a2e153ec1fde9468b655a108bebd666e8439f62f958a4edc8c916755ec0913c815b7c80e763b838005d9ef6d833ff4c4ad7c298a7957 WHIRLPOOL 5aeecb80bb58e208266c49c6bf374452e069af01f1890965ba125ff73467ebac0e6ba8e62c0c5492afd11ec3e152ca808dfb603dc6e0073cd0ac412254fb015a
DIST pkgconfig-1.2.2.tar.gz 5305 SHA256 3685ba02a9b72654a764b728b559f327e1dbd7dc6ebc310a1bd429666ee202aa SHA512 88cfb27755297871c500f37c422da5d4ae30a14e0b9974afbe63f22c59746be0d175b65d9e3d2ed315b4d942046e7c18be062aef914199c99070a2767699848b WHIRLPOOL ac20a0eaeae63d661901d1055505f5cbc2f094674d40651aafbff0e9e36715f39ba55ebbae19b61d972e4713eed2ba2fc6e027a7a3eba1f7525f4ffd9d9cd5bb

View File

@@ -1,32 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
inherit distutils-r1
DESCRIPTION="Interface Python with pkg-config"
HOMEPAGE="https://pypi.python.org/pypi/pkgconfig/ https://github.com/matze/pkgconfig"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( >=dev-python/nose-1[${PYTHON_USEDEP}] )
"
python_prepare_all() {
sed -e '/nose/d' -i setup.py || die
distutils-r1_python_prepare_all
}
python_test() {
nosetests || die
}