From 73280989afb3d7b438de986c5259145b33e591fa Mon Sep 17 00:00:00 2001 From: Po-Chuan Hsieh Date: Fri, 19 Dec 2025 19:10:31 +0800 Subject: [PATCH] textproc/py-roman-numerals: Add py-roman-numerals 4.0.0 This project provides utilities manipulating well-formed Roman numerals, in various programming languages. Currently, there are implementations in Python and Rust. --- textproc/Makefile | 1 + textproc/py-roman-numerals/Makefile | 23 +++++++++++++++++++++++ textproc/py-roman-numerals/distinfo | 3 +++ textproc/py-roman-numerals/pkg-descr | 3 +++ 4 files changed, 30 insertions(+) create mode 100644 textproc/py-roman-numerals/Makefile create mode 100644 textproc/py-roman-numerals/distinfo create mode 100644 textproc/py-roman-numerals/pkg-descr diff --git a/textproc/Makefile b/textproc/Makefile index a1cc6b39f624..56228b7295cb 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1608,6 +1608,7 @@ SUBDIR += py-rich-cli SUBDIR += py-rich-rst SUBDIR += py-rnc2rng + SUBDIR += py-roman-numerals SUBDIR += py-roman-numerals-py SUBDIR += py-rouge-score SUBDIR += py-rst2ansi diff --git a/textproc/py-roman-numerals/Makefile b/textproc/py-roman-numerals/Makefile new file mode 100644 index 000000000000..5fc2da599965 --- /dev/null +++ b/textproc/py-roman-numerals/Makefile @@ -0,0 +1,23 @@ +PORTNAME= roman-numerals +PORTVERSION= 4.0.0 +CATEGORIES= textproc python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= roman_numerals-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Manipulate well-formed Roman numerals +WWW= https://github.com/AA-Turner/roman-numerals + +LICENSE= BSD0CLAUSE CC0-1.0 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENCE.rst + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.12<4:devel/py-flit-core@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +.include diff --git a/textproc/py-roman-numerals/distinfo b/textproc/py-roman-numerals/distinfo new file mode 100644 index 000000000000..36457d5a829e --- /dev/null +++ b/textproc/py-roman-numerals/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1766036339 +SHA256 (roman_numerals-4.0.0.tar.gz) = 231287018a8788bf8c0718482a08c15b90458523ea1d840a18a791a86d4583b3 +SIZE (roman_numerals-4.0.0.tar.gz) = 9027 diff --git a/textproc/py-roman-numerals/pkg-descr b/textproc/py-roman-numerals/pkg-descr new file mode 100644 index 000000000000..9cc2b0f8a5ad --- /dev/null +++ b/textproc/py-roman-numerals/pkg-descr @@ -0,0 +1,3 @@ +This project provides utilities manipulating well-formed Roman numerals, in +various programming languages. Currently, there are implementations in Python +and Rust.