From 1e51c4dafba3bd5f775c1568d1b6c45cc56df5c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:54:58 +0200 Subject: Updating PEP440 version handling to fix FTBFS with Progress Linux versions. Signed-off-by: Daniel Baumann --- debian/patches/progress-linux/0002-pep440.patch | 14 ++++++++++++++ debian/patches/series | 1 + 2 files changed, 15 insertions(+) create mode 100644 debian/patches/progress-linux/0002-pep440.patch (limited to 'debian/patches') diff --git a/debian/patches/progress-linux/0002-pep440.patch b/debian/patches/progress-linux/0002-pep440.patch new file mode 100644 index 0000000..b048b68 --- /dev/null +++ b/debian/patches/progress-linux/0002-pep440.patch @@ -0,0 +1,14 @@ +Author: Daniel Baumann +Description: Updating PEP440 version handling to fix FTBFS with Progress Linux versions. + +diff -Naurp devscripts.orig/scripts/setup.py devscripts/scripts/setup.py +--- devscripts.orig/scripts/setup.py ++++ devscripts/scripts/setup.py +@@ -27,6 +27,7 @@ def make_pep440_compliant(version: str) + if not local: + return version + sanitized_local = re.sub("[+~]+", ".", local).strip(".") ++ sanitized_local = re.sub("-", ".", sanitized_local).strip(".") + pep440_version = f"{public}+{sanitized_local}" + assert re.match( + "^[a-zA-Z0-9.]+$", sanitized_local diff --git a/debian/patches/series b/debian/patches/series index 8a36847..80b5737 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ progress-linux/0001-wget.patch +progress-linux/0002-pep440.patch -- cgit v1.2.3