Package: openscad
Version: 2019.05-2

The openscad build is failing on some builders in Ubuntu, it seems to be
because it uses more memory than available. The attached patch makes it
build with --no-parallel which workarounds the issue, what would you
think to apply it to Debian as well (the problem could happen there & it
would allow the package to stay in sync between the distributions)?

Thanks,


diff -Nru openscad-2019.05/debian/changelog openscad-2019.05/debian/changelog
--- openscad-2019.05/debian/changelog	2019-08-06 23:19:39.000000000 +0200
+++ openscad-2019.05/debian/changelog	2019-11-20 18:11:02.000000000 +0100
@@ -1,3 +1,11 @@
+openscad (2019.05-3) unstable; urgency=medium
+
+  * debian/rules:
+    - build with --no-parallel to workaround builders failing the build
+      due to lack on memory on some architectures
+
+ -- Sebastien Bacher <[email protected]>  Wed, 20 Nov 2019 16:01:50 +0100
+
 openscad (2019.05-2) unstable; urgency=medium
 
   * Fix some testsuite failures (Closes: #795300).
diff -Nru openscad-2019.05/debian/rules openscad-2019.05/debian/rules
--- openscad-2019.05/debian/rules	2019-08-06 23:01:34.000000000 +0200
+++ openscad-2019.05/debian/rules	2019-11-20 16:04:35.000000000 +0100
@@ -22,7 +22,7 @@
 export QT_SELECT = qt5
 
 %:
-	dh $@ --buildsystem=qmake
+	dh $@ --no-parallel --buildsystem=qmake
 
 override_dh_auto_configure:
 	dh_auto_configure -- \

Reply via email to