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 <[email protected]> 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 <[email protected]> -Uploaders: Andreas Tille <[email protected]> +Uploaders: Andreas Tille <[email protected]>, Nilesh Patra <[email protected]> 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 <[email protected]> +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.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
