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