diff --git a/net/py-ripe.atlas.tools/Makefile b/net/py-ripe.atlas.tools/Makefile index 139f777b9a27..2d57cf6a5fd3 100644 --- a/net/py-ripe.atlas.tools/Makefile +++ b/net/py-ripe.atlas.tools/Makefile @@ -1,37 +1,35 @@ PORTNAME= ripe.atlas.tools DISTVERSION= 3.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= eduardo@FreeBSD.org COMMENT= Official command-line client for RIPE Atlas WWW= https://github.com/RIPE-NCC/ripe-atlas-tools LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipy>0:net-mgmt/py-ipy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>=0.13:security/py-openssl@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-dateutil>0:devel/py-python-dateutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyyaml>=0:devel/py-pyyaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.7.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ripe.atlas.cousteau>=2.0.0:net/py-ripe.atlas.cousteau@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ripe.atlas.sagan>=1.3.1:net/py-ripe.atlas.sagan@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.10.0:devel/py-typing-extensions@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tzlocal>0:devel/py-tzlocal@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} USES= python USE_PYTHON= autoplist pep517 pytest PYTEST_IGNORED_TESTS= test_arg_radius test_html_documentation \ test_text_documentation test_basic #WIP -CONFLICTS_INSTALL= c-ares # bin/adig - NO_ARCH= yes .include diff --git a/net/py-ripe.atlas.tools/files/patch-setup.py b/net/py-ripe.atlas.tools/files/patch-setup.py new file mode 100644 index 000000000000..c7ed8a8e9dfd --- /dev/null +++ b/net/py-ripe.atlas.tools/files/patch-setup.py @@ -0,0 +1,23 @@ +--- setup.py.orig 2025-04-05 17:55:07 UTC ++++ setup.py +@@ -47,12 +47,6 @@ setup( + "fast": ["ujson"], + }, + scripts=[ +- "scripts/aping", +- "scripts/atraceroute", +- "scripts/adig", +- "scripts/asslcert", +- "scripts/ahttp", +- "scripts/antp", + "scripts/ripe-atlas", + ], + keywords=["RIPE", "RIPE NCC", "RIPE Atlas", "Command Line"], +@@ -65,6 +59,7 @@ setup( + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ++ "Programming Language :: Python :: 3.11", + "Topic :: Internet :: WWW/HTTP", + ], + )