Étienne Mollier pushed to branch master at Debian Med / wtdbg2
Commits: 743b1fdc by Étienne Mollier at 2025-10-20T22:14:44+02:00 d/patches/*: normalize Last-Update timestamp. - - - - - fd44c5ed by Étienne Mollier at 2025-10-20T22:15:13+02:00 gcc-15.patch: fix build failure with gcc-15. Closes: #1098113 - - - - - 5162502a by Étienne Mollier at 2025-10-20T22:16:17+02:00 d/watch: convert to v5 Github template. - - - - - e48f2606 by Étienne Mollier at 2025-10-20T22:16:43+02:00 d/control: drop redundant Rules-Requires-Root: no. - - - - - 8ddcd83e by Étienne Mollier at 2025-10-20T22:17:01+02:00 d/control: declare compliance to standards version 4.7.2. - - - - - 25b224c2 by Étienne Mollier at 2025-10-20T22:17:38+02:00 d/changelog: ready for upload to unstable. - - - - - 7 changed files: - debian/changelog - debian/control - debian/patches/fix_install.patch - + debian/patches/gcc-15.patch - debian/patches/hardening.patch - debian/patches/series - debian/watch Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,13 @@ +wtdbg2 (2.5-11) unstable; urgency=medium + + * d/patches/*: normalize Last-Update timestamp. + * gcc-15.patch: fix build failure with gcc-15. (Closes: #1098113) + * d/watch: convert to v5 Github template. + * d/control: drop redundant Rules-Requires-Root: no. + * d/control: declare compliance to standards version 4.7.2. + + -- Étienne Mollier <[email protected]> Mon, 20 Oct 2025 22:17:19 +0200 + wtdbg2 (2.5-10) unstable; urgency=medium * d/rules: repair double source builds. ===================================== debian/control ===================================== @@ -7,11 +7,10 @@ Priority: optional Build-Depends: debhelper-compat (= 13), zlib1g-dev, libsimde-dev -Standards-Version: 4.7.0 +Standards-Version: 4.7.2 Vcs-Browser: https://salsa.debian.org/med-team/wtdbg2 Vcs-Git: https://salsa.debian.org/med-team/wtdbg2.git Homepage: https://github.com/ruanjue/wtdbg2 -Rules-Requires-Root: no Package: wtdbg2 Architecture: amd64 ===================================== debian/patches/fix_install.patch ===================================== @@ -1,5 +1,5 @@ Author: Andreas Tille <[email protected]> -Last-Update: Thu, 02 Apr 2020 11:37:59 +0200 +Last-Update: 2020-04-02 Description: Enable installation to different target location --- a/Makefile ===================================== debian/patches/gcc-15.patch ===================================== @@ -0,0 +1,28 @@ +Description: fix build failure with gcc-15. + This change fixes the following failure, captured by gcc-15: + . + wtpoa.h:77:20: error: too many arguments to function ‘init_basebank’; expected 0, have 1 + 77 | ctg->seq = init_basebank(2048); + | ^~~~~~~~~~~~~ ~~~~ + . + The arguments can be safely removed from the callers, because the + function has been define (and not just declared) without arguments. +Author: Étienne Mollier <[email protected]> +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098113 +Forwarded: no +Last-Update: 2025-10-20 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- wtdbg2.orig/wtpoa.h ++++ wtdbg2/wtpoa.h +@@ -74,8 +74,8 @@ + ctg->cidx = cidx; + ctg->rs = init_edgecnsv(2); + ctg->tag = init_string(32); +- ctg->seq = init_basebank(2048); +- ctg->cns = init_basebank(2048); ++ ctg->seq = init_basebank(); ++ ctg->cns = init_basebank(); + ctg->cnt = 0; + return ctg; + } ===================================== debian/patches/hardening.patch ===================================== @@ -1,5 +1,5 @@ Author: Andreas Tille <[email protected]> -Last-Update: Thu, 02 Apr 2020 11:37:59 +0200 +Last-Update: 2020-04-02 Description: Propagate hardening options --- wtdbg2.orig/Makefile ===================================== debian/patches/series ===================================== @@ -2,3 +2,4 @@ fix_install.patch hardening.patch simde scripts-tweak +gcc-15.patch ===================================== debian/watch ===================================== @@ -1,4 +1,5 @@ -version=4 +Version: 5 -opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%@PACKAGE@-$1.tar.gz%" \ - https://github.com/ruanjue/wtdbg2/tags (?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@ +Template: Github +Owner: ruanjue +Project: wtdbg2 View it on GitLab: https://salsa.debian.org/med-team/wtdbg2/-/compare/34f18ba8e6131fb87ef87eb7b847c8c72603e0a5...25b224c2a9d0ec76ae86987ab008c9bd939ae0c7 -- View it on GitLab: https://salsa.debian.org/med-team/wtdbg2/-/compare/34f18ba8e6131fb87ef87eb7b847c8c72603e0a5...25b224c2a9d0ec76ae86987ab008c9bd939ae0c7 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
