From 86013877200e8e53c859bc42b3b2f335ae2ac0c5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 26 Jun 2024 18:05:46 +0200 Subject: Merging debian version 2:4.20.2+dfsg-2. Signed-off-by: Daniel Baumann --- debian/changelog | 6 ++++++ debian/patches/series | 1 + debian/patches/tilde-in-version.diff | 23 +++++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 debian/patches/tilde-in-version.diff diff --git a/debian/changelog b/debian/changelog index 3fa0d90..099a822 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +samba (2:4.20.2+dfsg-2) unstable; urgency=medium + + * tilde-in-version.diff - allow tilde in version string + + -- Michael Tokarev Thu, 20 Jun 2024 09:49:50 +0300 + samba (2:4.20.2+dfsg-1~progress7.99u1) graograman-backports; urgency=medium * Uploading to graograman-backports, remaining changes: diff --git a/debian/patches/series b/debian/patches/series index 681595b..c469cbc 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -26,3 +26,4 @@ edns0.patch passchange-error-message.patch lower-dns-lookup-mismatch-messages.patch make-python-optional.diff +tilde-in-version.diff diff --git a/debian/patches/tilde-in-version.diff b/debian/patches/tilde-in-version.diff new file mode 100644 index 0000000..8182935 --- /dev/null +++ b/debian/patches/tilde-in-version.diff @@ -0,0 +1,23 @@ +From: Michael Tokarev +Subject: handle tilde in version string +Date: Thu, 20 Jun 2024 09:47:47 +0300 +Forwarded: yes + +wafsamba dislikes when version string contains "special" chars. +For some of them, upstream already has code to deal with. +Add handling of tilde (~) to the same places too. + +diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py +index 2d9505d255c..cf7153f25f0 100644 +--- a/buildtools/wafsamba/samba_abi.py ++++ b/buildtools/wafsamba/samba_abi.py +@@ -288,3 +288,3 @@ def abi_build_vscript(task): + def VSCRIPT_MAP_PRIVATE(bld, libname, orig_vscript, version, private_vscript): +- version = version.replace("-", "_").replace("+","_").upper() ++ version = version.replace("-", "_").replace("+","_").replace("~","_").upper() + t = bld.SAMBA_GENERATOR(private_vscript, +@@ -317,3 +317,3 @@ def ABI_VSCRIPT(bld, libname, abi_directory, version, vscript, abi_match=None, p + libname = libname.replace("-", "_").replace("+","_").upper() +- version = version.replace("-", "_").replace("+","_").upper() ++ version = version.replace("-", "_").replace("+","_").replace("~","_").upper() + -- cgit v1.2.3