Étienne Mollier pushed to branch master at Debian Med / savvy
Commits: 187d3907 by Étienne Mollier at 2024-08-06T20:39:03+02:00 gcc-14.patch: new: fix an improper assignment in an assert. Closes: #1075487 - - - - - f5d88fee by Étienne Mollier at 2024-08-06T20:40:45+02:00 d/control: add myself to uploaders. - - - - - 9aea416d by Étienne Mollier at 2024-08-06T20:40:57+02:00 d/control: declare compliance to standards version 4.7.0. - - - - - 8f2a5bc7 by Étienne Mollier at 2024-08-06T20:55:41+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,12 @@ +savvy (2.1.0-3) unstable; urgency=medium + + * gcc-14.patch: new: fix an improper assignment in an assert. + (Closes: #1075487) + * d/control: add myself to uploaders. + * d/control: declare compliance to standards version 4.7.0. + + -- Étienne Mollier <[email protected]> Tue, 06 Aug 2024 20:55:26 +0200 + savvy (2.1.0-2) unstable; urgency=medium [ Nilesh Patra ] ===================================== debian/control ===================================== @@ -2,13 +2,14 @@ Source: savvy Section: science Priority: optional Maintainer: Debian Med Packaging Team <[email protected]> -Uploaders: Andreas Tille <[email protected]> +Uploaders: Andreas Tille <[email protected]>, + Étienne Mollier <[email protected]> Build-Depends: debhelper-compat (= 13), cmake, libshrinkwrap-dev, libzstd-dev, zlib1g-dev -Standards-Version: 4.6.1 +Standards-Version: 4.7.0 Vcs-Browser: https://salsa.debian.org/med-team/savvy Vcs-Git: https://salsa.debian.org/med-team/savvy.git Homepage: https://github.com/statgen/savvy ===================================== debian/patches/gcc-14.patch ===================================== @@ -0,0 +1,19 @@ +Description: Fixes assert in dot_slow(). +Author: Jonathon LeFaive +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075487 +Forwarded: https://github.com/statgen/savvy/commit/5d0cd9da476223e2bbe1c85d02601fbe148aadbb +Reviewed-By: Étienne Mollier <[email protected]> +Last-Update: 2024-08-06 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- savvy.orig/include/savvy/compressed_vector.hpp ++++ savvy/include/savvy/compressed_vector.hpp +@@ -421,7 +421,7 @@ + template <typename AggregateT> + AggregateT dot_slow(const self_type& other, AggregateT ret) const + { +- assert(size_ = other.size_); ++ assert(size_ == other.size_); + if (non_zero_size() < other.non_zero_size()) + { + auto beg_it = offsets_.begin(); ===================================== debian/patches/series ===================================== @@ -1,2 +1,3 @@ enable_zstd.patch remove-arch-check.patch +gcc-14.patch View it on GitLab: https://salsa.debian.org/med-team/savvy/-/compare/f820fd3192325750d135106625e04476d9b74610...8f2a5bc7bca80447c6ba12c4ac228813dd1cb6fe -- View it on GitLab: https://salsa.debian.org/med-team/savvy/-/compare/f820fd3192325750d135106625e04476d9b74610...8f2a5bc7bca80447c6ba12c4ac228813dd1cb6fe 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
