summaryrefslogtreecommitdiff
path: root/sysutils/duplicity
diff options
context:
space:
mode:
authorNuno Teixeira <eduardo@FreeBSD.org>2024-03-21 07:29:46 +0000
committerNuno Teixeira <eduardo@FreeBSD.org>2024-03-21 07:31:44 +0000
commitce8e56bbdb097855b92ce6f1dcab8d50bb4aceef (patch)
tree17c01bdb7c00a0d88c260fa2d1356ca4cec91606 /sysutils/duplicity
parentsecurity/git-credential-gopass: Mark broken, does not fetch (diff)
sysutils/duplicity: Update to 2.2.3
- Remove setuptools_scm dependency ChangeLog: https://gitlab.com/duplicity/duplicity/-/blob/main/CHANGELOG.md
Diffstat (limited to 'sysutils/duplicity')
-rw-r--r--sysutils/duplicity/Makefile3
-rw-r--r--sysutils/duplicity/distinfo6
-rw-r--r--sysutils/duplicity/files/extra-patch-setup.py13
3 files changed, 11 insertions, 11 deletions
diff --git a/sysutils/duplicity/Makefile b/sysutils/duplicity/Makefile
index e6793d8d32cc..52b288f85c8b 100644
--- a/sysutils/duplicity/Makefile
+++ b/sysutils/duplicity/Makefile
@@ -1,5 +1,5 @@
PORTNAME= duplicity
-DISTVERSION= 2.2.2
+DISTVERSION= 2.2.3
CATEGORIES= sysutils
MASTER_SITES= PYPI
@@ -11,7 +11,6 @@ LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
- ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=8.0:devel/py-setuptools-scm@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
LIB_DEPENDS= librsync.so:net/librsync
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fasteners>=0:devel/py-fasteners@${PY_FLAVOR} \
diff --git a/sysutils/duplicity/distinfo b/sysutils/duplicity/distinfo
index 23163269b581..45add1b2d565 100644
--- a/sysutils/duplicity/distinfo
+++ b/sysutils/duplicity/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1707206291
-SHA256 (duplicity-2.2.2.tar.gz) = 833ef5fa922d559be1c4f6a0f61315e8cb26da409f2024bcf310ba3fb9486d27
-SIZE (duplicity-2.2.2.tar.gz) = 1978264
+TIMESTAMP = 1710967459
+SHA256 (duplicity-2.2.3.tar.gz) = 4ad43f93601b1a41fb5f642bdda1706a1fb75f8ef1d6d482dd7f23107eaee87d
+SIZE (duplicity-2.2.3.tar.gz) = 1978008
diff --git a/sysutils/duplicity/files/extra-patch-setup.py b/sysutils/duplicity/files/extra-patch-setup.py
index b9b8c66d973d..18af0c97b3be 100644
--- a/sysutils/duplicity/files/extra-patch-setup.py
+++ b/sysutils/duplicity/files/extra-patch-setup.py
@@ -1,6 +1,6 @@
---- setup.py.orig 2023-12-25 18:14:22 UTC
+--- setup.py.orig 2024-03-20 20:49:22 UTC
+++ setup.py
-@@ -105,27 +105,6 @@ def get_data_files():
+@@ -111,28 +111,6 @@ def get_data_files():
if os.environ.get("READTHEDOCS") == "True":
return data_files
@@ -14,8 +14,8 @@
- os.mkdir(os.path.join("po", lang))
- except os.error:
- pass
-- assert not os.system(f"cp po/{lang}.po po/{lang}"), lang
-- assert not os.system(f"msgfmt po/{lang}.po -o po/{lang}/duplicity.mo"), lang
+- subprocess.run(f"cp po/{lang}.po po/{lang}", shell=True, check=True)
+- subprocess.run(f"msgfmt po/{lang}.po -o po/{lang}/duplicity.mo", shell=True, check=True)
-
- for root, dirs, files in os.walk("po"):
- for file in files:
@@ -25,6 +25,7 @@
- data_files.append((f"share/locale/{lang}/LC_MESSAGES", [f"po/{lang}/duplicity.mo"]))
-
- return data_files
+-
-
- def VersionedCopy(source, dest):
+ def cleanup():
+ if os.path.exists("po/LINGUAS"):