[med-svn] [Git][med-team/pyqi][master] 2 commits: d/patches/fix-syntax-warning.patch: Add patch to fix SyntaxWarning (Closes: #1085822).
Emmanuel Arias (@eamanu)
gitlab at salsa.debian.org
Tue Dec 10 00:07:56 GMT 2024
Emmanuel Arias pushed to branch master at Debian Med / pyqi
Commits:
3e32929c by Emmanuel Arias at 2024-12-09T20:59:17-03:00
d/patches/fix-syntax-warning.patch: Add patch to fix SyntaxWarning (Closes: #1085822).
- - - - -
81519ac5 by Emmanuel Arias at 2024-12-09T20:59:48-03:00
prepare for upload
- - - - -
3 changed files:
- debian/changelog
- + debian/patches/fix-syntax-warning.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,9 +1,16 @@
-pyqi (0.3.2+dfsg-11) UNRELEASED; urgency=medium
+pyqi (0.3.2+dfsg-12) unstable; urgency=medium
+ * Team upload.
+
+ [ Andreas Tille ]
* Remove Tim Booth <tbooth at ceh.ac.uk> since address is bouncing
(Thank you for your work on this package, Tim)
- -- Andreas Tille <tille at debian.org> Mon, 16 Sep 2024 10:11:36 +0200
+ [ Emmanuel Arias ]
+ * d/patches/fix-syntax-warning.patch: Add patch to fix SyntaxWarning
+ (Closes: #1085822).
+
+ -- Emmanuel Arias <eamanu at debian.org> Mon, 09 Dec 2024 20:56:31 -0300
pyqi (0.3.2+dfsg-10) unstable; urgency=medium
=====================================
debian/patches/fix-syntax-warning.patch
=====================================
@@ -0,0 +1,92 @@
+Description: Fix SyntaxWarning
+ Fix SyntaxWarning emited during the build.
+Author: Emmanuel Arias <eamanu at debian.org>
+Forwarded: no
+Last-Update: 2024-12-09
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/pyqi/commands/make_release.py
++++ b/pyqi/commands/make_release.py
+@@ -52,7 +52,7 @@
+ with open('ChangeLog.md') as f:
+ lineiter = iter(f)
+ for line in lineiter:
+- match = re.search('^%s\s+(.*)' % pkg_name, line.strip())
++ match = re.search(r'^%s\s+(.*)' % pkg_name, line.strip())
+ if match is None:
+ continue
+ length = len(match.group(1))
+@@ -118,7 +118,7 @@
+ cmd = [sys.executable, 'setup.py', 'sdist', 'upload']
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False,
+ dry_run=not self.RealRun)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("build and upload failed,\nSTDOUT:\n%s\n\nSTDERR:\n%s",
+ stdout, stderr)
+
+@@ -136,7 +136,7 @@
+ cmd = ['git', 'tag']
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False,
+ dry_run=not self.RealRun)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("Could not git tag, \nSTDOUT:\n%s\n\nSTDERR:\n%s",
+ stdout, stderr)
+
+@@ -154,7 +154,7 @@
+ cmd = ['git', 'commit', '-am', message]
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False,
+ dry_run=not self.RealRun)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("Could not git commit, \nSTDOUT:\n%s\n\nSTDERR:\n%s",
+ stdout, stderr)
+
+@@ -163,7 +163,7 @@
+ cmd = ['git', 'tag', tag]
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False,
+ dry_run=not self.RealRun)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("Could not git tag, \nSTDOUT:\n%s\n\nSTDERR:\n%s",stdout,
+ stderr)
+
+@@ -172,7 +172,7 @@
+
+ # ignoring self.RealRun, always execute
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("Could not get git branch, \nSTDOUT:\n%s\n\nSTDERR:\n%s",
+ stdout, stderr)
+ return stdout.strip()
+@@ -183,7 +183,7 @@
+ cmd = ['git','push','upstream', branch]
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False,
+ dry_run=not self.RealRun)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("Could not push branch %s, \nSTDOUT:\n%s\n\nSTDERR:\n%s",
+ stdout, stderr, branch)
+
+@@ -192,7 +192,7 @@
+ cmd = ['git','push','upstream',tag]
+ stdout, stderr, retval = pyqi_system_call(cmd, shell=False,
+ dry_run=not self.RealRun)
+- if retval is not 0:
++ if retval != 0:
+ self._fail("Could not push tag %s, \nSTDOUT:\n%s\n\nSTDERR:\n%s",
+ stdout, stderr, tag)
+
+--- a/pyqi/core/interfaces/html/__init__.py
++++ b/pyqi/core/interfaces/html/__init__.py
+@@ -355,7 +355,7 @@
+ write('<table>')
+ for i in self._get_inputs():
+ full_name = self._html_input_prefix + i.Name
+- if full_name in postvars and i.Type is not 'upload_file':
++ if full_name in postvars and i.Type != 'upload_file':
+ default = i.cast_value(postvars[full_name])
+ write(i.get_html(self._html_input_prefix, value=default))
+ else:
=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
2to3.patch
fix_sphinx_htmlhelp.patch
+fix-syntax-warning.patch
View it on GitLab: https://salsa.debian.org/med-team/pyqi/-/compare/b0f425fd8644eef2998774ea35da13f1c12c6774...81519ac5661f7e1c4bb30f75bc73277722b3b9cf
--
View it on GitLab: https://salsa.debian.org/med-team/pyqi/-/compare/b0f425fd8644eef2998774ea35da13f1c12c6774...81519ac5661f7e1c4bb30f75bc73277722b3b9cf
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/20241210/618e8afd/attachment-0001.htm>
More information about the debian-med-commit
mailing list