dev-python/roman: version bump to 3.3

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber@gmx.ch>
Closes: https://github.com/gentoo/gentoo/pull/18088
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Andreas Zuber
2020-10-31 10:40:59 +01:00
committed by Sam James
parent 99f16d40e8
commit 38f30372d9
2 changed files with 25 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST roman-3.2.tar.gz 7156 BLAKE2B ba7233366ab9bea9f0de4ab02ddbff4a3fbcc35792165d59f291dc837f4a8a7e681f1be89bcbb9746beb88fd7ae57b4ab57934e8d72a73bbdf223840e37cc18e SHA512 142904551745c8b7874d52c8d04f483b0c18b18ba8bc3d3a51fcf509e09b3a3f8a28d0b88bdd8282957bf3d698b1bab86de7fb4808cde9b0e5cfb910deca35ab
DIST roman-3.3.tar.gz 7577 BLAKE2B 651d30154e01c9bc61326581c5600efb5f717b2c21cb6345d51ba5aa44d79bff00e66492d3962ed4c9682103a9c00af8205ae9d90b30b9a3f13dc2d18e6f1592 SHA512 8d2952640519052ce629a3881cb871448fc7921eb5f45525305c43ef9fb2672062d0ca96ab16d7aaa95f5eebcad028fdcf519f224f3631734fbb6a4a314f3a49

View File

@@ -0,0 +1,24 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
DISTUTILS_USE_SETUPTOOLS=rdepend
DESCRIPTION="An Integer to Roman numerals converter"
HOMEPAGE="https://pypi.org/project/roman/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
distutils_enable_tests setup.py
python_prepare_all() {
mv "${S}/src/tests.py" . || die "moving test file failed"
distutils-r1_python_prepare_all
}