[med-svn] [Git][med-team/obitools][master] 3 commits: Add patch to fix FTBFS (Closes: #1022427)
Nilesh Patra (@nilesh)
gitlab at salsa.debian.org
Mon Oct 24 07:44:11 BST 2022
Nilesh Patra pushed to branch master at Debian Med / obitools
Commits:
97610703 by Nilesh Patra at 2022-10-24T12:08:01+05:30
Add patch to fix FTBFS (Closes: #1022427)
- - - - -
586ab1d7 by Nilesh Patra at 2022-10-24T12:08:43+05:30
Bump Standards-Version to 4.6.1 (no changes needed)
- - - - -
23d03345 by Nilesh Patra at 2022-10-24T12:08:43+05:30
Upload to unstable
- - - - -
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/deocde-bytes-to-str.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,9 +1,15 @@
-obitools (1.2.13+dfsg-5) UNRELEASED; urgency=medium
+obitools (1.2.13+dfsg-5) unstable; urgency=medium
+ [ Andreas Tille ]
+ * Team Upload.
* Disable build package on i386 on Salsa CI
* Disable blhc on Salsa CI
- -- Andreas Tille <tille at debian.org> Tue, 14 Dec 2021 16:07:43 +0100
+ [ Nilesh Patra ]
+ * Add patch to fix FTBFS (Closes: #1022427)
+ * Bump Standards-Version to 4.6.1 (no changes needed)
+
+ -- Nilesh Patra <nilesh at debian.org> Mon, 24 Oct 2022 12:08:04 +0530
obitools (1.2.13+dfsg-4) unstable; urgency=medium
=====================================
debian/control
=====================================
@@ -12,7 +12,7 @@ Build-Depends: debhelper-compat (= 13),
ipython3,
python3-wheel,
python3-virtualenv
-Standards-Version: 4.6.0
+Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/med-team/obitools
Vcs-Git: https://salsa.debian.org/med-team/obitools.git
Homepage: https://pypi.python.org/pypi/OBITools
=====================================
debian/patches/deocde-bytes-to-str.patch
=====================================
@@ -0,0 +1,17 @@
+Description: The readline function is somehow returning bytes instead of str, and so just decode
+ to get string if readline returns bytes
+Author: Nilesh Patra <nilesh at debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1022427
+Last-Update: 2022-10-24
+--- a/distutils.ext/obidistutils/command/build_scripts.py
++++ b/distutils.ext/obidistutils/command/build_scripts.py
+@@ -53,7 +53,8 @@
+ if not first_line:
+ self.warn("%s is an empty file (skipping)" % script)
+ continue
+-
++ if isinstance(first_line, bytes):
++ first_line = first_line.decode()
+ match = first_line_re.match(first_line)
+ if match:
+ adjust = 1
=====================================
debian/patches/series
=====================================
@@ -2,3 +2,4 @@ use_debian_libs
fix_path_interpreter
2to3.patch
port_python3.patch
+deocde-bytes-to-str.patch
View it on GitLab: https://salsa.debian.org/med-team/obitools/-/compare/eb25eb7f920e1cd1e66d191a4876e57d7e47d988...23d033450fd90053a2ac225c70e478e11776b4e6
--
View it on GitLab: https://salsa.debian.org/med-team/obitools/-/compare/eb25eb7f920e1cd1e66d191a4876e57d7e47d988...23d033450fd90053a2ac225c70e478e11776b4e6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20221024/daeeae62/attachment-0001.htm>
More information about the debian-med-commit
mailing list