[med-svn] [Git][med-team/murasaki][master] 3 commits: d/p/gcc11.patch: Fix gcc-11 FTBFS
Nilesh Patra
gitlab at salsa.debian.org
Fri Apr 16 11:55:08 BST 2021
Nilesh Patra pushed to branch master at Debian Med / murasaki
Commits:
9f9af718 by Nilesh Patra at 2021-04-16T15:48:15+05:30
d/p/gcc11.patch: Fix gcc-11 FTBFS
- - - - -
bcb60a68 by Nilesh Patra at 2021-04-16T15:49:32+05:30
Add myself to uploaders
- - - - -
5b7d7616 by Nilesh Patra at 2021-04-16T16:24:49+05:30
Interim changelog entry
- - - - -
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/gcc11.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+murasaki (1.68.6-13) UNRELEASED; urgency=medium
+
+ * d/p/gcc11.patch: Fix gcc-11 FTBFS
+ * Add myself to uploaders
+
+ -- Nilesh Patra <nilesh at debian.org> Fri, 16 Apr 2021 16:24:36 +0530
+
murasaki (1.68.6-12) unstable; urgency=medium
* Team Upload.
=====================================
debian/control
=====================================
@@ -1,6 +1,6 @@
Source: murasaki
Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
-Uploaders: Andreas Tille <tille at debian.org>
+Uploaders: Andreas Tille <tille at debian.org>, Nilesh Patra <nilesh at debian.org>
Section: science
Priority: optional
Build-Depends: debhelper-compat (= 13),
=====================================
debian/patches/gcc11.patch
=====================================
@@ -0,0 +1,21 @@
+Description: Set bool values, do not increment bool with ++
+Author: Nilesh Patra <nilesh at debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984250
+Last-Update: 2021-04-16
+--- a/src/murasaki_mpi.cc
++++ b/src/murasaki_mpi.cc
+@@ -1017,12 +1017,12 @@
+ word mpi_extract_checkSentQueue(vector<list<AnchorBlock*> > &sent,vector<multimap<int,int>::iterator> &bufferItes,multimap<int,int> &buffers){
+ MPI_Status status;
+ int bodyStored;
+- bool packetsLeft=0;
++ bool packetsLeft=false;
+
+ for(uint receiver=0;receiver<sent.size();receiver++)
+ for(list<AnchorBlock* >::iterator ite=sent[receiver].begin();
+ ite!=sent[receiver].end();){
+- packetsLeft++;
++ packetsLeft=true;
+ AnchorBlock& block=**ite;
+ if(!block.headerStored)
+ MPI_Test(&block.headerReq,&block.headerStored,&status);
=====================================
debian/patches/series
=====================================
@@ -1,3 +1,4 @@
+gcc11.patch
use_proper_libboost_names.patch
include_libpstream.patch
hardening.patch
View it on GitLab: https://salsa.debian.org/med-team/murasaki/-/compare/3a517cef9c7b942085ddba120b177a9aca6b077f...5b7d76168fad6e3030adc0e9c36360ecafc4f8b8
--
View it on GitLab: https://salsa.debian.org/med-team/murasaki/-/compare/3a517cef9c7b942085ddba120b177a9aca6b077f...5b7d76168fad6e3030adc0e9c36360ecafc4f8b8
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/20210416/9c4a2d66/attachment-0001.htm>
More information about the debian-med-commit
mailing list