[med-svn] [Git][med-team/bbmap][master] 4 commits: d/control: add myself to uploaders
Étienne Mollier (@emollier)
gitlab at salsa.debian.org
Wed Oct 6 23:01:36 BST 2021
Étienne Mollier pushed to branch master at Debian Med / bbmap
Commits:
87cb6c17 by Étienne Mollier at 2021-10-06T23:06:32+02:00
d/control: add myself to uploaders
- - - - -
fe3bb659 by Étienne Mollier at 2021-10-06T23:53:10+02:00
add 32bit.patch; fixes autpkgtest failures
- - - - -
6ceae569 by Étienne Mollier at 2021-10-06T23:54:52+02:00
update changelog
- - - - -
50270121 by Étienne Mollier at 2021-10-06T23:59:34+02:00
routine-update: Ready to upload to unstable
- - - - -
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/32bit.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+bbmap (38.94+dfsg-2) unstable; urgency=medium
+
+ * d/control: add myself to uploaders.
+ * add 32bit.patch; fixes autpkgtest failures on at least i386 and armhf.
+
+ -- Étienne Mollier <emollier at debian.org> Wed, 06 Oct 2021 23:55:25 +0200
+
bbmap (38.94+dfsg-1) unstable; urgency=medium
* Team upload.
=====================================
debian/control
=====================================
@@ -1,6 +1,7 @@
Source: bbmap
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>,
+ Étienne Mollier <emollier at debian.org>
Section: science
Priority: optional
Build-Depends: debhelper-compat (= 13),
=====================================
debian/patches/32bit.patch
=====================================
@@ -0,0 +1,23 @@
+Description: fix autopkgtest failure on 32-bit architectures
+ The memory calculation system may erroneously attribute far more memory than
+ is addressable on 32-bit platforms. This adjustment makes sure the calculated
+ amount of RAM is capped appropriately on such platforms.
+Author: Étienne Mollier <emollier at debian.org>
+Forwarded: no
+Last-Update: 2021-10-06
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- bbmap.orig/calcmem.sh
++++ bbmap/calcmem.sh
+@@ -203,6 +203,11 @@
+ # available (ram - 500k) * 85% / 1024kb = megs of ram to use
+ # not sure where this formula came from
+ RAM=$(( ((x-500000)*mult/100)/1024 ))
++ # cap to 2.2GiB on 32bit systems
++ if [ "$(dpkg-architecture -qDEB_HOST_ARCH_BITS)" = 32 ] \
++ && [ "$RAM" -gt "2200" ]
++ then RAM="2200"
++ fi
+ #echo $RAM
+ fi
+ #local z="-Xmx${RAM}m"
=====================================
debian/patches/series
=====================================
@@ -1 +1,2 @@
debug_symbols.patch
+32bit.patch
View it on GitLab: https://salsa.debian.org/med-team/bbmap/-/compare/b1ecb941d0f6c194e443e492425e1c2d1f6bb918...50270121c282c63544af377831fb29d1b46a9989
--
View it on GitLab: https://salsa.debian.org/med-team/bbmap/-/compare/b1ecb941d0f6c194e443e492425e1c2d1f6bb918...50270121c282c63544af377831fb29d1b46a9989
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/20211006/b51b9068/attachment-0001.htm>
More information about the debian-med-commit
mailing list