dev-python/raet: Clean old up

This commit is contained in:
Michał Górny
2018-01-06 10:16:52 +01:00
parent dca9fa76c3
commit 8acf35f52e
2 changed files with 0 additions and 35 deletions

View File

@@ -1,2 +1 @@
DIST raet-0.6.7.tar.gz 806490 BLAKE2B 5ef8ecdfdd12bbcea9bc401b732e1b6d1bdb59329d6bdeb539edd002eaa6eaf2b58f639f09bb3b598adf2f68827f0d057324783bdc90dcefec5b77a0efe2c7a0 SHA512 a6148424a18d216ab787801ef6cbc73431321ebe0b360808661b67159f895f351918c3f8a6922aacc560f7e610c1db90ee554823460120148eb493970b90c957
DIST raet-0.6.8.tar.gz 807419 BLAKE2B 2370eb55b76a52cf89363f9891a411ea7fa2f27b84bd216c44010fd9afb5dcd9261570f916db00ff7bd922c485cd6123b3a6522154b6e05f7869d7e790177f7b SHA512 01279e7414ec3edc9f2bc0641cb9e0606ebf5700b5ce37a05fd5919f3274b3b43aad64110baf4c4b1fda3843cb1a87b6be4ab592a8f62e82b3a716a86ae61b20

View File

@@ -1,34 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
inherit distutils-r1
DESCRIPTION="Reliable Asynchronous Event Transport Protocol"
HOMEPAGE="https://github.com/RaetProtocol/raet"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=">=dev-python/six-1.6.1[${PYTHON_USEDEP}]
>=dev-python/libnacl-1.4.3[${PYTHON_USEDEP}]
>=dev-python/ioflo-1.5[${PYTHON_USEDEP}]
python_targets_python2_7? ( >=dev-python/enum34-1.0.4[$(python_gen_usedep 'python2*')] )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
python_prepare_all() {
distutils-r1_python_prepare_all
sed -i -e "/setuptools_git/d" setup.py || die
}
python_test() {
pushd "${BUILD_DIR}"/lib || die
${EPYTHON} ${PN}/test/__init__.py || die "tests failed for ${EPYTHON}"
popd || die
}