diff options
author | Wim Muskee <wimmuskee@gmail.com> | 2020-11-15 08:34:34 +0100 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2020-11-18 19:16:07 +0100 |
commit | d2f0fee52fd6284cc9164d75a632b481598a48a0 (patch) | |
tree | 29a0fa3673c821fc4156e708b31153848b5d30fe /dev-python | |
parent | www-apache/mod_qos: Support libressl (diff) | |
download | gentoo-d2f0fee52fd6284cc9164d75a632b481598a48a0.tar.gz gentoo-d2f0fee52fd6284cc9164d75a632b481598a48a0.tar.bz2 gentoo-d2f0fee52fd6284cc9164d75a632b481598a48a0.zip |
dev-python/serpent: version bump to 1.30.2, support PyPy3+Python 3.9
Signed-off-by: Wim Muskee <wimmuskee@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18264
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/serpent/Manifest | 1 | ||||
-rw-r--r-- | dev-python/serpent/serpent-1.30.2.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/serpent/Manifest b/dev-python/serpent/Manifest index 18befa93c2ca..b593b42dfc6e 100644 --- a/dev-python/serpent/Manifest +++ b/dev-python/serpent/Manifest @@ -1 +1,2 @@ +DIST serpent-1.30.2.tar.gz 24182 BLAKE2B 9a7f492dbd06331e7e0b7c264fff2c0b184258565d43773eb75dcdd53b8d74df60995439060af0514904043528757201b8fcea4c9bfa56237efe77849abc582e SHA512 1cbc490deae3fb81c59abf74a98437e8c31f1ad88ce31a96c7ae48f344701dfcd67e973d2829cf793c405c6c1930cb7f15dec129c0a0e1b475286dd4f219ff99 DIST serpent-1.30.tar.gz 24046 BLAKE2B 8a803c9a47ffc9432eb6a48f78d5eb295ad477eef0c24a21c886aaca2cf4e63decf6b1f00d5f71528d867ecbe5789de0c2d19777d651d612f7378f3587a34ab8 SHA512 7ed44f21c9c3079f3423636bb833c49e3eebc89fa4cb6947b01f7cb6cf0161f7a0bf7e8508cef61d9a5475900e3c49d1e72e38cc24614ee99cac449e8b28b975 diff --git a/dev-python/serpent/serpent-1.30.2.ebuild b/dev-python/serpent/serpent-1.30.2.ebuild new file mode 100644 index 000000000000..5e86cffd4c50 --- /dev/null +++ b/dev-python/serpent/serpent-1.30.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A simple serialization library based on ast.literal_eval" +HOMEPAGE="https://pypi.org/project/serpent/ https://github.com/irmen/Serpent" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +distutils_enable_tests setup.py + +BDEPEND=" + test? ( + dev-python/attrs[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + ) +" |