From: Manuel RĂ¼ger Date: Tue, 16 May 2017 19:54:31 +0000 (+0200) Subject: dev-python/distro: Version bump to 1.0.4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f649a9c5092665bcfc922f28ec1fc338f30cfa93;p=gentoo.git dev-python/distro: Version bump to 1.0.4 Package-Manager: Portage-2.3.5, Repoman-2.3.2 --- diff --git a/dev-python/distro/Manifest b/dev-python/distro/Manifest index c7fac573015c..7bbb2edb16a2 100644 --- a/dev-python/distro/Manifest +++ b/dev-python/distro/Manifest @@ -1 +1,2 @@ DIST distro-1.0.2.tar.gz 27787 SHA256 77ec1f3695eed4dcda4e0e89d04dfcd91a20d3080d34f9294c5da47235382745 SHA512 df29ca40c1e7dd6e370396ceca684f5ce41fe50450faea104132d0e5dee05a91a525db715835c7efbca020e9c2e063bde9a6da07967eda6bfa8180856e175abb WHIRLPOOL 064c3ad4e0b82249a70dcb45d1b70ed3122209378fc83564060eeb815731b7454fa5952f794a4438a6f24b7cabfe6576c629598bc8f6f93ea2867a0f771856ee +DIST distro-1.0.4.tar.gz 28772 SHA256 9b000b0d637bb0cbd130a7a4835681e6993e309a85564dfea9d884825fe46954 SHA512 466f2e14b169998e3ff7420e12bf270ad9f934962ae92c2d24bdd747897ad66cb348194dd1376b8b53ed298ea02039943c80d9ccc6b8a01c2bd0c6d2be82c7f6 WHIRLPOOL 61aac16fe7f4cf2ad6a28cbd45001424081dc5b931716883a7822318e06d189742651a3f7de09d7aeef1d792ffb7615dca4b3f2becd2b4f93a18fb0411467c11 diff --git a/dev-python/distro/distro-1.0.4.ebuild b/dev-python/distro/distro-1.0.4.ebuild new file mode 100644 index 000000000000..5953b7c8d536 --- /dev/null +++ b/dev-python/distro/distro-1.0.4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Reliable machine-readable Linux distribution information for Python" +HOMEPAGE="http://distro.readthedocs.io/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +RESTRICT="test" # incomplete test resources + +python_test() { + py.test || die +}