r312 - in /packages/flasm/trunk/debian: README.source changelog control rules

pabs at users.alioth.debian.org pabs at users.alioth.debian.org
Sun Feb 22 06:28:48 UTC 2009


Author: pabs
Date: Sun Feb 22 06:28:48 2009
New Revision: 312

URL: http://svn.debian.org/wsvn/pkg-flash/?sc=1&rev=312
Log:
* Implement support for parallel=n in DEB_BUILD_OPTIONS
* Add a README.source pointing at the quilt README.source
* Bump Standards-Version for the above changes

Added:
    packages/flasm/trunk/debian/README.source
Modified:
    packages/flasm/trunk/debian/changelog
    packages/flasm/trunk/debian/control
    packages/flasm/trunk/debian/rules

Added: packages/flasm/trunk/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-flash/packages/flasm/trunk/debian/README.source?rev=312&op=file
==============================================================================
--- packages/flasm/trunk/debian/README.source (added)
+++ packages/flasm/trunk/debian/README.source Sun Feb 22 06:28:48 2009
@@ -1,0 +1,3 @@
+Please see the quilt README.source:
+
+/usr/share/doc/quilt/README.source

Modified: packages/flasm/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-flash/packages/flasm/trunk/debian/changelog?rev=312&op=diff
==============================================================================
--- packages/flasm/trunk/debian/changelog (original)
+++ packages/flasm/trunk/debian/changelog Sun Feb 22 06:28:48 2009
@@ -2,6 +2,9 @@
 
   * Fix src pkg to work with dpkg-source 3.0 (quilt) (Closes: #485343)
   * Fix FTBFS with new version of bison (2.4.1) (patch from Gentoo/Fedora)
+  * Implement support for parallel=n in DEB_BUILD_OPTIONS
+  * Add a README.source pointing at the quilt README.source
+  * Bump Standards-Version for the above changes
 
  -- Paul Wise <pabs at debian.org>  Thu, 19 Feb 2009 14:30:19 +0900
 

Modified: packages/flasm/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-flash/packages/flasm/trunk/debian/control?rev=312&op=diff
==============================================================================
--- packages/flasm/trunk/debian/control (original)
+++ packages/flasm/trunk/debian/control Sun Feb 22 06:28:48 2009
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Paul Wise <pabs at debian.org>
 Build-Depends: debhelper (>= 5.0.0), quilt (>= 0.40), flex, bison, gperf, zlib1g-dev
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://flasm.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-flash/packages/flasm/trunk
 Vcs-Browser: http://svn.debian.org/svn/pkg-flash/packages/flasm/trunk/?op=log

Modified: packages/flasm/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-flash/packages/flasm/trunk/debian/rules?rev=312&op=diff
==============================================================================
--- packages/flasm/trunk/debian/rules (original)
+++ packages/flasm/trunk/debian/rules Sun Feb 22 06:28:48 2009
@@ -5,10 +5,16 @@
 include /usr/share/quilt/quilt.make
 
 CFLAGS = -Wall -g -DCONFIG_PATH=\\\"/etc/flasm.ini\\\"
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0
 else
 	CFLAGS += -O2
+endif
+
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+	NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+	MAKEFLAGS += -j$(NUMJOBS)
 endif
 
 build: build-stamp




More information about the pkg-flash-devel mailing list