diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2016-10-24 16:10:35 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2016-10-24 16:16:02 -0700 |
commit | c9a278adfe18c17ef66e87379aa49a19cf66fd2b (patch) | |
tree | 515533633c25fa9bd652d91e4e3020ebd3e772f8 /dev-python/hyper-h2 | |
parent | dev-python/aplpy: version bump (diff) | |
download | gentoo-c9a278adfe18c17ef66e87379aa49a19cf66fd2b.tar.gz gentoo-c9a278adfe18c17ef66e87379aa49a19cf66fd2b.tar.bz2 gentoo-c9a278adfe18c17ef66e87379aa49a19cf66fd2b.zip |
dev-python/hyper-h2: Version bump, bugfix release
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/hyper-h2')
-rw-r--r-- | dev-python/hyper-h2/Manifest | 1 | ||||
-rw-r--r-- | dev-python/hyper-h2/hyper-h2-2.4.1.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/hyper-h2/Manifest b/dev-python/hyper-h2/Manifest index 5dad240cbf79..ebdc53b09d99 100644 --- a/dev-python/hyper-h2/Manifest +++ b/dev-python/hyper-h2/Manifest @@ -1 +1,2 @@ DIST hyper-h2-2.4.0.tar.gz 77440 SHA256 c673efad0b8ee3c3c604375dd5e0c3dbc74f3c4e0385dae120d22b7d6f6ec301 SHA512 76835d6c97d4aed515b460bdbbcb8aea1ea061a416386cadf66a0e9b3c213a9ffe67948ce49b922d99e1895615a03159aa6aed198857e1ce73eb734b8bd9a016 WHIRLPOOL 9a5c1d313f53ee842403c77a8324aa432ff3d04d3d3737f6f7da83e5ff85e51ea6794419fa8886368cf34d4a7be3ff3b7ed19eb13a74ef8318fad738a71b9ef4 +DIST hyper-h2-2.4.1.tar.gz 78056 SHA256 a914161895f60a16d7049386c77f2eee72af7fd49b117856033906e16110c9f4 SHA512 f7a29350a3f31740acf6fc199fb5f3fa06d751abcfbf5a2742370c40c656417ccc659d49b9754e5faeb09ad121c362a478076af81325644d04473d56fc83b07a WHIRLPOOL 4917deb305cca78a6cc8fcfeb34e8f4ef8982c213edc7c3f242422e992d1105ccb151168ad7387fd53faca6061a693cf76f7cb3f91880470cd7bf03bb7a73b26 diff --git a/dev-python/hyper-h2/hyper-h2-2.4.1.ebuild b/dev-python/hyper-h2/hyper-h2-2.4.1.ebuild new file mode 100644 index 000000000000..fbf71d6f3c2e --- /dev/null +++ b/dev-python/hyper-h2/hyper-h2-2.4.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy) + +inherit distutils-r1 + +MY_PN="h2" + +DESCRIPTION="HTTP/2 State-Machine based protocol implementation" +HOMEPAGE="http://python-hyper.org/h2 https://pypi.python.org/pypi/h2" +SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=dev-python/hyperframe-4.0.1[${PYTHON_USEDEP}] + <dev-python/hyperframe-5.0.0[${PYTHON_USEDEP}] + >=dev-python/hpack-2.2.0[${PYTHON_USEDEP}] + <dev-python/hpack-3.0.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep '>=dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' python2_7) + $(python_gen_cond_dep '<dev-python/enum34-2.0.0[${PYTHON_USEDEP}]' python2_7) +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_PN}-${PV} |