diff options
author | 2016-02-18 13:28:34 +0100 | |
---|---|---|
committer | 2016-02-18 13:37:40 +0100 | |
commit | a1a54581e1af8c2213ea9ebab3a8a51178f8458e (patch) | |
tree | 16eded56b32f16f0cadb3ddfa21557ba002ca7d6 /dev-python/contextlib2 | |
parent | dev-python/colander: Bump (diff) | |
download | gentoo-a1a54581e1af8c2213ea9ebab3a8a51178f8458e.tar.gz gentoo-a1a54581e1af8c2213ea9ebab3a8a51178f8458e.tar.bz2 gentoo-a1a54581e1af8c2213ea9ebab3a8a51178f8458e.zip |
dev-python/contextlib2: Bump
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-python/contextlib2')
-rw-r--r-- | dev-python/contextlib2/Manifest | 1 | ||||
-rw-r--r-- | dev-python/contextlib2/contextlib2-0.5.1.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/contextlib2/Manifest b/dev-python/contextlib2/Manifest index a2aa4e4db776..4317aad9de2c 100644 --- a/dev-python/contextlib2/Manifest +++ b/dev-python/contextlib2/Manifest @@ -1 +1,2 @@ DIST contextlib2-0.4.0.tar.gz 18741 SHA256 55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732 SHA512 622762c5490f0ff3e4b421a63bccce8fe0753977112ee0db9640dad31093c40c8a331f3d7cade9925f17903eaeaa376925ef607d7a440170c7c5ec1c8e04f56a WHIRLPOOL b1b2b753b15cb5124ebc378acf6b959839e727a53d3a096eea5b04404fc059f6a1b49b9fa23cc6310ad1b9bcfa655a82088af0906a74f8326d7bf57f3793440c +DIST contextlib2-0.5.1.tar.gz 25186 SHA256 227c79e126e8a8904a81d162750581ed3d49af2395a3100be7067b7296d33d45 SHA512 da3a954a52a0f036e0b2d949bf4e73f4551eb637944eae5f6f421a1c22b2177dcfa56984a6c77692bb92713cf73a0df02b9159268b428550651fb7be97074613 WHIRLPOOL b970100478d107ce89ea9a21d670767cae8921acc095922fb82a3b1c19eeecb98bc326888e97ac9fd5b9dec71f2a69b769693f2a07ecb48060b3b76353ad1ade diff --git a/dev-python/contextlib2/contextlib2-0.5.1.ebuild b/dev-python/contextlib2/contextlib2-0.5.1.ebuild new file mode 100644 index 000000000000..5d90531dfab7 --- /dev/null +++ b/dev-python/contextlib2/contextlib2-0.5.1.ebuild @@ -0,0 +1,24 @@ +# 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 ) + +inherit distutils-r1 + +DESCRIPTION="Backports and enhancements for the contextlib module" +HOMEPAGE="https://pypi.python.org/pypi/contextlib2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2.4" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/unittest2[${PYTHON_USEDEP}] )" + +python_test() { + "${PYTHON}" test_contextlib2.py || die "Tests fail for ${EPYTHON}" +} |