[Python-apps-commits] r9496 - in packages/mypaint/trunk/debian (changelog rules)

achadwick-guest at users.alioth.debian.org achadwick-guest at users.alioth.debian.org
Wed Mar 20 13:10:40 UTC 2013


    Date: Wednesday, March 20, 2013 @ 13:10:38
  Author: achadwick-guest
Revision: 9496

rules: address a potential FTBFS (RAM requirements)

Comment out an upstream test which requires > 2GiB of RAM. Some of the ARM
buildbots have <= 512MiB all told.

Modified:
  packages/mypaint/trunk/debian/changelog
  packages/mypaint/trunk/debian/rules

Modified: packages/mypaint/trunk/debian/changelog
===================================================================
--- packages/mypaint/trunk/debian/changelog	2013-03-19 23:08:25 UTC (rev 9495)
+++ packages/mypaint/trunk/debian/changelog	2013-03-20 13:10:38 UTC (rev 9496)
@@ -1,6 +1,5 @@
-mypaint (1.1.0-1) UNRELEASED; urgency=low
+mypaint (1.1.0-1) unstable; urgency=low
 
-  * NOT RELEASED YET
   * New upstream version.
   * New upstream has an updated ru_RU.UTF-8 translation (closes: Bug#685254).
   * Standards bump and check 3.9.2 -> 3.9.4.
@@ -18,12 +17,13 @@
   * Backport removal of deprecated Encoding key from upstream (lintian).
   * Build with hardening flags.
   * Patch in upstream test suite fixes, and run tests during build.
+  * (Only the one which will run with <= 512M RAM, e.g. some ARM buildbots.)
   * (19 Jan) Move development to Debian VCS (requirement of python apps team).
   * Add python-matplotlib and python-tk in build-depends (test suite reqs);
   * Lowercase first letter of each short package description (best practice).
   * Newlines for Build-Depends and Depends (sponsor preference).
 
- -- Andrew Chadwick <a.t.chadwick at gmail.com>  Sat, 26 Jan 2013 22:40:52 +0000
+ -- Andrew Chadwick <a.t.chadwick at gmail.com>  Wed, 20 Mar 2013 13:08:23 +0000
 
 mypaint (1.0.0-1) unstable; urgency=low
 

Modified: packages/mypaint/trunk/debian/rules
===================================================================
--- packages/mypaint/trunk/debian/rules	2013-03-19 23:08:25 UTC (rev 9495)
+++ packages/mypaint/trunk/debian/rules	2013-03-20 13:10:38 UTC (rev 9496)
@@ -22,8 +22,11 @@
 	dh_testdir
 	scons $(MYPAINT_SCONSOPTS)
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	# Max-RSS: ~74000 kbytes
 	MPLCONFIGDIR=`mktemp -d` python tests/test_mypaintlib.py
-	MPLCONFIGDIR=`mktemp -d` python tests/test_brushlib.py
+	# Max-RSS: ~2800000 kbytes - ouch!
+	# MPLCONFIGDIR=`mktemp -d` python tests/test_brushlib.py
+	# Commented out because it'll FTBFS on 512M Debian ARM buildbots.
 endif
 	touch $@
 




More information about the Python-apps-commits mailing list