dev-python/extras: add version 1.0.0

Package-Manager: portage-2.3.0_rc1
This commit is contained in:
Alex Brandt
2016-05-28 10:25:48 -05:00
parent 100538ac51
commit cfe0bd4f12
2 changed files with 28 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST extras-0.0.3.tar.gz 6231 SHA256 7a60d84cb661b477c41a5ea35e931ae93860af8cd259ecc0a38a32ef1ae9ffc0 SHA512 7b08d094717a27fbb522d49c0c538e98baccef6540216479d176b55b94f3f0b97c4b70ed48f3802a1bf08a58fe9a319a113d4ca04d9dadcb85e3a99bf7490a3c WHIRLPOOL a80db53c4b536d1a98c03237cc56607ca477619d1789a4a4c4795c843212eb1bdc64f0fe2a0ae1d4a4bab351ec68e07acb9ae494e537630ba841826116121d2c
DIST extras-1.0.0.tar.gz 6759 SHA256 132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e SHA512 510c796628f28db90bb96c7c9ba5fc9b2b950d2968e219efe67f3899bbe7ef68fe5de1494f8fd640f13a1ccd329e7dac9cd38aa965ab1e07c4cd287c04da50fb WHIRLPOOL e6b09b2be7225022587d26b5749e4b26282188c177c228e595843bf70c4eaa282698d9cea85afd23beef25ad97ee64dec0275957928be910e49c13e5e395f69d

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 pypy pypy3 )
inherit distutils-r1
DESCRIPTION="Useful extra bits for Python that should be in the standard library"
HOMEPAGE="https://github.com/testing-cabal/extras/ https://pypi.python.org/pypi/extras/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="test"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/testtools[${PYTHON_USEDEP}] )"
RDEPEND=""
python_test() {
"${PYTHON}" ${PN}/tests/test_extras.py || die
}