git: f8de28e40192 - main - net-mgmt/py-aggregate6: Moved man to share/man

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Thu, 01 Feb 2024 20:15:07 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f8de28e40192090b9c4d1e3a7e5fb5c07322dd32

commit f8de28e40192090b9c4d1e3a7e5fb5c07322dd32
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2024-01-31 16:07:41 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2024-02-01 20:00:49 +0000

    net-mgmt/py-aggregate6: Moved man to share/man
    
    Approved by:    portmgr (blanket)
---
 net-mgmt/py-aggregate6/Makefile             | 1 +
 net-mgmt/py-aggregate6/files/patch-setup.py | 8 +++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

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'
+ )