diff options
Diffstat (limited to '')
-rw-r--r-- | debian/patches/progress-linux/0002-pep440.patch | 14 |
1 files changed, 14 insertions, 0 deletions
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 <daniel.baumann@progress-linux.org> +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 |