[med-svn] [Git][med-team/quicktree][master] 4 commits: Update Standards-Version to 4.6.2
Lance Lin (@linqigang)
gitlab at salsa.debian.org
Thu Sep 28 15:51:25 BST 2023
Lance Lin pushed to branch master at Debian Med / quicktree
Commits:
74b254fe by Lance Lin at 2023-09-28T21:44:09+07:00
Update Standards-Version to 4.6.2
- - - - -
adbe9875 by Lance Lin at 2023-09-28T21:47:33+07:00
Clean autogenerated file and ignore changes to source files
- - - - -
7303f048 by Lance Lin at 2023-09-28T21:48:03+07:00
Update year for debian/* files to 2023
- - - - -
946ae62e by Lance Lin at 2023-09-28T21:48:38+07:00
Fix minor build warnings for incorrect format type and suggested parentheses
- - - - -
7 changed files:
- debian/changelog
- debian/control
- debian/copyright
- + debian/patches/fix_build_warnings.patch
- debian/patches/series
- debian/rules
- + debian/source/options
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,15 @@
+quicktree (2.5-6) unstable; urgency=medium
+
+ * Team upload.
+ * d/control: Update Standards-Version to 4.6.2
+ * d/rules: Clean libquicktree.a (Closes: #1048270)
+ * d/source/options: Ignore changes to source files
+ * d/copyright: Update year for debian/* files to 2023
+ * d/patches/fix_build_warnings.patch: Fix minor build warnings for
+ incorrect format type and suggested parentheses
+
+ -- Lance Lin <lq27267 at gmail.com> Wed, 27 Sep 2023 20:38:55 +0700
+
quicktree (2.5-5) unstable; urgency=medium
* Team Upload.
=====================================
debian/control
=====================================
@@ -6,7 +6,7 @@ Uploaders: Steffen Moeller <moeller at debian.org>
Build-Depends: debhelper-compat (= 13),
help2man,
dh-exec
-Standards-Version: 4.5.0
+Standards-Version: 4.6.2
Homepage: https://github.com/khowe/quicktree/
Vcs-Browser: https://salsa.debian.org/med-team/quicktree
Vcs-Git: https://salsa.debian.org/med-team/quicktree.git
=====================================
debian/copyright
=====================================
@@ -9,6 +9,7 @@ License: Apache-2.0
Files: debian/*
Copyright: 2020 Steffen Moeller <moeller at debian.org>
+ 2023 Lance Lin <lq27267 at gmail.com>
License: Apache-2.0
License: Apache-2.0
=====================================
debian/patches/fix_build_warnings.patch
=====================================
@@ -0,0 +1,25 @@
+Description: Fix minor build warnings for incorrect format type and add
+ suggested parentheses
+Author: Lance Lin <lq27267 at gmail.com>
+Date: 2023-09-27
+
+--- a/src/distancemat.c
++++ b/src/distancemat.c
+@@ -386,7 +386,7 @@
+ double dist;
+
+ /* The size of the matrix will be on the first line on its own */
+- if (! fscanf( handle, "%d", &size ))
++ if (! fscanf( handle, "%u", &size ))
+ fatal_util( "Parse error: The first line should contain the size of matrix");
+
+ *aln_loc = (struct Alignment *) malloc_util( sizeof(struct Alignment ));
+@@ -407,7 +407,7 @@
+ if (! fscanf( handle, " %c", identifier))
+ fatal_util( "Parse error: failed to read the matrix name");
+ cidx = 1;
+- while(c = fgetc(handle)) {
++ while((c = fgetc(handle))) {
+ if (c == '\n')
+ newline = 1;
+ if (isspace(c))
=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
fixMake.patch
create_lib.patch
+fix_build_warnings.patch
=====================================
debian/rules
=====================================
@@ -16,3 +16,4 @@ override_dh_auto_build:
override_dh_auto_clean:
dh_auto_clean
rm -f quicktree.1
+ rm -f libquicktree.a
=====================================
debian/source/options
=====================================
@@ -0,0 +1 @@
+extend-diff-ignore = "(^|/)(src\/quicktree\.c|src\/tree\.c)$"
View it on GitLab: https://salsa.debian.org/med-team/quicktree/-/compare/9156abdb1bf346e1ca04a98cc46e7fd2b3d7a375...946ae62ea9830179ad02229362e41361c134a8db
--
View it on GitLab: https://salsa.debian.org/med-team/quicktree/-/compare/9156abdb1bf346e1ca04a98cc46e7fd2b3d7a375...946ae62ea9830179ad02229362e41361c134a8db
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/20230928/8d635d89/attachment-0001.htm>
More information about the debian-med-commit
mailing list