[med-svn] [Git][med-team/daligner][master] 3 commits: d/control: declare compliance to standards version 4.7.0.

Étienne Mollier (@emollier) gitlab at salsa.debian.org
Wed Jul 3 21:46:43 BST 2024



Étienne Mollier pushed to branch master at Debian Med / daligner


Commits:
df1dd760 by Étienne Mollier at 2024-07-03T22:21:48+02:00
d/control: declare compliance to standards version 4.7.0.

- - - - -
54f78f98 by Étienne Mollier at 2024-07-03T22:45:32+02:00
gcc-14.patch: fix build failure with gcc-14.

Closes: #1074900

- - - - -
76c1feb3 by Étienne Mollier at 2024-07-03T22:46:08+02:00
ready to upload to unstable.

- - - - -


4 changed files:

- debian/changelog
- debian/control
- + debian/patches/gcc-14.patch
- debian/patches/series


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+daligner (1.0+git20240119.335105d-3) unstable; urgency=medium
+
+  * d/control: declare compliance to standards version 4.7.0.
+  * gcc-14.patch: fix build failure with gcc-14. (Closes: #1074900)
+
+ -- Étienne Mollier <emollier at debian.org>  Wed, 03 Jul 2024 22:45:58 +0200
+
 daligner (1.0+git20240119.335105d-2) unstable; urgency=medium
 
   * fix-missing-include.patch: new: fix ftbfs with dpkg. (Closes: #1066534)


=====================================
debian/control
=====================================
@@ -5,7 +5,7 @@ Uploaders: Andreas Tille <tille at debian.org>,
 Section: science
 Priority: optional
 Build-Depends: debhelper-compat (= 13)
-Standards-Version: 4.6.2
+Standards-Version: 4.7.0
 Vcs-Browser: https://salsa.debian.org/med-team/daligner
 Vcs-Git: https://salsa.debian.org/med-team/daligner.git
 Homepage: https://dazzlerblog.wordpress.com


=====================================
debian/patches/gcc-14.patch
=====================================
@@ -0,0 +1,40 @@
+Description: fix build failure with gcc 14.
+ Since gcc 14, incompatible pointer type casting is now an error.  In
+ the case of daligner, the build results in the following errors:
+ .
+  ONE2LA.c:135:13: error: assignment to ‘int64 *’ {aka ‘long long int *’} from incompatible pointer type ‘I64 *’ {aka ‘long int *’} [-Wincompatible-pointer-types]
+    135 |       list  = oneIntList(file1);
+        |             ^
+  ONE2LA.c:202:20: error: assignment to ‘int64 *’ {aka ‘long long int *’} from incompatible pointer type ‘I64 *’ {aka ‘long int *’} [-Wincompatible-pointer-types]
+    202 |               list = oneIntList(file1);
+        |                    ^
+  ONE2LA.c:210:20: error: assignment to ‘int64 *’ {aka ‘long long int *’} from incompatible pointer type ‘I64 *’ {aka ‘long int *’} [-Wincompatible-pointer-types]
+    210 |               list = oneIntList(file1);
+        |                    ^
+  ONE2LA.c:220:20: error: assignment to ‘int64 *’ {aka ‘long long int *’} from incompatible pointer type ‘I64 *’ {aka ‘long int *’} [-Wincompatible-pointer-types]
+    220 |               list = oneIntList(file1);
+        |                    ^
+  ONE2LA.c:227:20: error: assignment to ‘int64 *’ {aka ‘long long int *’} from incompatible pointer type ‘I64 *’ {aka ‘long int *’} [-Wincompatible-pointer-types]
+    227 |               list = oneIntList(file1);
+        |                    ^
+ .
+ Typing the list the same way as the return type of the oneIntList
+ function is one possible way of resolving the issue.
+
+Author: Étienne Mollier <emollier at debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074900
+Forwarded: https://github.com/thegenemyers/DALIGNER/pull/97
+Last-Update: 2024-07-03
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- daligner.orig/ONE2LA.c
++++ daligner/ONE2LA.c
+@@ -31,7 +31,7 @@
+ 
+   OneFile   *file1;
+   OneSchema *schema;
+-  int64     *list;
++  I64       *list;
+   char      *string, *command;
+ 
+   int t, i, j, k;


=====================================
debian/patches/series
=====================================
@@ -4,3 +4,4 @@ destdir-install.patch
 cross.patch
 cppflags.patch
 fix-missing-include.patch
+gcc-14.patch



View it on GitLab: https://salsa.debian.org/med-team/daligner/-/compare/37e4c0f24f82bdfda5c672519d7b29cb80b78efa...76c1feb382c68b2f1cf1537682b7351be58adef2

-- 
This project does not include diff previews in email notifications.
View it on GitLab: https://salsa.debian.org/med-team/daligner/-/compare/37e4c0f24f82bdfda5c672519d7b29cb80b78efa...76c1feb382c68b2f1cf1537682b7351be58adef2
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/20240703/aa48f32d/attachment-0001.htm>


More information about the debian-med-commit mailing list