[MLton-commit] r7304
Wesley Terpstra
wesley at mlton.org
Wed Oct 21 02:56:48 PDT 2009
Ready for another debian upload!
----------------------------------------------------------------------
U mlton/trunk/package/debian/changelog
U mlton/trunk/package/debian/heap-size
----------------------------------------------------------------------
Modified: mlton/trunk/package/debian/changelog
===================================================================
--- mlton/trunk/package/debian/changelog 2009-10-21 09:55:05 UTC (rev 7303)
+++ mlton/trunk/package/debian/changelog 2009-10-21 09:56:48 UTC (rev 7304)
@@ -1,9 +1,10 @@
-mlton (20091019) unstable; urgency=low
+mlton (20091021) unstable; urgency=low
* Revised the heap-size script again to ensure 300m free for the OS.
- * Got fano.debian.org black-listed (1.5G freebsd-amd64).
- * Got nautilus.debian.org black-listed (1G for amd64).
- * Got rem.debian.org black-listed (0.5G for mips).
+ * Got these buildds black-listed for low ram: fano, nautilus, rem
+ * Changed s390 alignment to 8 to fix Real64 regressions.
+ * Filled in regression tests for alpha, hppa, mips/el, powerpc, and s390.
+ * Added option DEB_BUILD_HEAP to override debian/heap-size defaults.
-- Wesley W. Terpstra (Debian) <terpstra at debian.org> Mon, 19 Oct 2009 14:37:57 +0200
Modified: mlton/trunk/package/debian/heap-size
===================================================================
--- mlton/trunk/package/debian/heap-size 2009-10-21 09:55:05 UTC (rev 7303)
+++ mlton/trunk/package/debian/heap-size 2009-10-21 09:56:48 UTC (rev 7304)
@@ -19,8 +19,9 @@
# -3.5g (penalosa, peri)
# => 1.5g heap
# hurd-i386
-# - 400m ??? (rossini, sthibault, bach)
-# - 800m (mozart)
+# -400m (rossini) UNUSABLE / black-listed
+# - 1g- (bach) UNUSABLE / black-listed
+# - 1g+ (mozart)
# => 650m heap
# i386 - 16g (murphy)
# - 4g (puccini)
@@ -53,7 +54,7 @@
if dpkg-architecture -ealpha; then result=3g; fi
if dpkg-architecture -eamd64; then result=1.7g; fi
if dpkg-architecture -ehppa; then result=1.5g; fi
-if dpkg-architecture -ehurd-i386; then result=650m; fi
+if dpkg-architecture -ehurd-i386; then result=700m; fi
if dpkg-architecture -ei386; then result=1.5g; fi
if dpkg-architecture -eia64; then result=3g; fi
if dpkg-architecture -ekfreebsd-amd64; then result=1.7g; fi
@@ -67,4 +68,7 @@
# Default to more
if test -z "$result"; then result=2g; echo "Warning: Unknown architecture." >&2; fi
+# Allow buildd admin to override heap-size with environment variable
+if test -n "$DEB_BUILD_HEAP"; then result="$DEB_BUILD_HEAP"; fi
+
echo "$result"
More information about the MLton-commit
mailing list