forked from Lainports/freebsd-ports
Following upstream changes, switch master site to GitHub, including
for hte pre-build PDF manual.
Drop support for python-3.6 -- the software claims to support this
version, but setup.py fails with an obscure error, and considering
that python-3.6 is going out of support at the end of this month, I
could not justify the time to develop a compatibility fix.
Drop the USE_PYTHON 'optsuffix' flag in favour of an explicit
PKGNAMESUFFIX
As reported in PR 260340, appending the python version to the barman
${ETCDIR} doesn't make sense. Fix this by dropping the USE_PYTHON
'concurrent' flag, which doesn't really make sense for end-user
software rather than library modules. (1)
PR: 260340 (1)
Reported by: bsd at abinet.ru
20 lines
551 B
Python
20 lines
551 B
Python
--- setup.py.orig 2021-12-01 11:09:36 UTC
|
|
+++ setup.py
|
|
@@ -61,7 +61,7 @@ setup(
|
|
packages=find_packages(exclude=["tests"]),
|
|
data_files=[
|
|
(
|
|
- "share/man/man1",
|
|
+ "man/man1",
|
|
[
|
|
"doc/barman.1",
|
|
"doc/barman-cloud-backup.1",
|
|
@@ -73,7 +73,7 @@ setup(
|
|
"doc/barman-wal-restore.1",
|
|
],
|
|
),
|
|
- ("share/man/man5", ["doc/barman.5"]),
|
|
+ ("man/man5", ["doc/barman.5"]),
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|