aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2024-01-31 16:07:41 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2024-02-01 20:00:49 +0000
commitf8de28e40192090b9c4d1e3a7e5fb5c07322dd32 (patch)
tree63f7e40b113f631c3b2fceae26925e090e684b3b
parent2e9d17b85c0f82b1bcae397572047ac10f51457c (diff)
downloadports-f8de28e40192090b9c4d1e3a7e5fb5c07322dd32.tar.gz
ports-f8de28e40192090b9c4d1e3a7e5fb5c07322dd32.zip
net-mgmt/py-aggregate6: Moved man to share/man
Approved by: portmgr (blanket)
-rw-r--r--net-mgmt/py-aggregate6/Makefile1
-rw-r--r--net-mgmt/py-aggregate6/files/patch-setup.py8
2 files changed, 8 insertions, 1 deletions
diff --git a/net-mgmt/py-aggregate6/Makefile b/net-mgmt/py-aggregate6/Makefile
index 27c44815965b..53844a248cf2 100644
--- a/net-mgmt/py-aggregate6/Makefile
+++ b/net-mgmt/py-aggregate6/Makefile
@@ -1,5 +1,6 @@
PORTNAME= aggregate6
PORTVERSION= 1.0.12
+PORTREVISION= 1
CATEGORIES= net-mgmt python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/net-mgmt/py-aggregate6/files/patch-setup.py b/net-mgmt/py-aggregate6/files/patch-setup.py
index 42a57573eabd..9d3b01234a87 100644
--- a/net-mgmt/py-aggregate6/files/patch-setup.py
+++ b/net-mgmt/py-aggregate6/files/patch-setup.py
@@ -1,6 +1,6 @@
--- setup.py.orig 2017-12-01 09:46:38 UTC
+++ setup.py
-@@ -70,8 +70,7 @@ setup(
+@@ -70,13 +70,12 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
@@ -10,3 +10,9 @@
["future", "ipaddress"] if sys.version_info.major == 2 else []
),
packages=find_packages(exclude=['tests', 'tests.*']),
+ entry_points={'console_scripts':
+ ['aggregate6 = aggregate6.aggregate6:main']},
+- data_files = [('man/man7', ['aggregate6.7'])],
++ data_files = [('share/man/man7', ['aggregate6.7'])],
+ test_suite='nose.collector'
+ )