diff options
author | Alastair Hogge <agh@riseup.net> | 2025-05-18 11:25:08 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-05-18 11:35:27 +0800 |
commit | e8bd2f02e263b211376cd50364730576dfb8f747 (patch) | |
tree | cf546836e35ea5c10f0418563b34bfccfa90ab98 | |
parent | net/pecl-radius: Fix runtime (diff) |
devel/py-autocommand: Fix build with newer py-setuptools
- Bump PORTREVISION for package change
PR: 285433
Obtained from: https://github.com/Lucretiel/autocommand/pull/33
-rw-r--r-- | devel/py-autocommand/Makefile | 2 | ||||
-rw-r--r-- | devel/py-autocommand/files/patch-setup.py | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/devel/py-autocommand/Makefile b/devel/py-autocommand/Makefile index d42bca56e4f6..eba3662cb1fb 100644 --- a/devel/py-autocommand/Makefile +++ b/devel/py-autocommand/Makefile @@ -1,6 +1,6 @@ PORTNAME= autocommand PORTVERSION= 2.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-autocommand/files/patch-setup.py b/devel/py-autocommand/files/patch-setup.py new file mode 100644 index 000000000000..28522fb9517b --- /dev/null +++ b/devel/py-autocommand/files/patch-setup.py @@ -0,0 +1,10 @@ +--- setup.py.orig 2022-11-18 19:13:19 UTC ++++ setup.py +@@ -13,7 +13,6 @@ setup( + ], + package_dir={'': 'src'}, + platforms='any', +- license='LGPLv3', + author='Nathan West', + url='https://github.com/Lucretiel/autocommand', + description='A library to create a command-line program from a function', |