From 3768c0eba8def828ffd96b4d1435c5143cc69d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 11 Nov 2025 15:48:56 +0100 Subject: [PATCH] dev-python/roman: Bump to 5.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/roman/Manifest | 1 + dev-python/roman/roman-5.2.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 dev-python/roman/roman-5.2.ebuild diff --git a/dev-python/roman/Manifest b/dev-python/roman/Manifest index bcfd52457ea67..a9974e0900dd3 100644 --- a/dev-python/roman/Manifest +++ b/dev-python/roman/Manifest @@ -1 +1,2 @@ DIST roman-5.1.tar.gz 8066 BLAKE2B 4731e6974a5f6f4063af1efe1fd7283031e18b233df83f9edee944e36b2a0f252fdf8c17407babe00102671ff0e8798cf426a9fea56b6612a14ab902e01b29fe SHA512 f8a57d37b46d2f1fb11247d3c461848aac9696798111b3b4db32adfb23b97e3f06bdfa4dceb7a37023ee57552a93afba2bdafb5f6006846b45d4ea6004b80398 +DIST roman-5.2.tar.gz 8185 BLAKE2B 9cac7efaa07218de3ee028409779fead6a16068c3b5f931645fc4239af78826fc69df8836df90afb6ed74c99a5c5fec91d4f34fb86380fd5cce12f89ec1ea7d9 SHA512 60d32796314fc04e5a0b79ef9660f15a850104d582dc1195de820bc5ce977294f9080da9ba2edb9ab6b8187122bc1abd01d46767d39746a64aad58c045b79bd1 diff --git a/dev-python/roman/roman-5.2.ebuild b/dev-python/roman/roman-5.2.ebuild new file mode 100644 index 0000000000000..4da68e592efae --- /dev/null +++ b/dev-python/roman/roman-5.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="An Integer to Roman numerals converter" +HOMEPAGE=" + https://pypi.org/project/roman/ + https://github.com/zopefoundation/roman +" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +distutils_enable_tests unittest + +python_test() { + eunittest -s src +}