[Pkg-haskell-commits] r1125 - in /packages/haskell-src-exts/trunk/debian: changelog control rules

arjan at users.alioth.debian.org arjan at users.alioth.debian.org
Fri Mar 21 22:36:41 UTC 2008


Author: arjan
Date: Fri Mar 21 22:36:41 2008
New Revision: 1125

URL: http://svn.debian.org/wsvn/pkg-haskell/?sc=1&rev=1125
Log:
* Bump urgency to high as this upload fixes a RC bug.
* debian/control:
  - Let the Vcs-* fields point to the trunk branch.
  - Change the Section to libdevel as suggested by lintian warning
    "dev-package-should-be-section-libdevel".
* debian/rules:
  - Only optimise on i386, amd64 and ia64 as the optimisation of the
    parses can take a lot of memory. (Closes: #462848)

Modified:
    packages/haskell-src-exts/trunk/debian/changelog
    packages/haskell-src-exts/trunk/debian/control
    packages/haskell-src-exts/trunk/debian/rules

Modified: packages/haskell-src-exts/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-src-exts/trunk/debian/changelog?rev=1125&op=diff
==============================================================================
--- packages/haskell-src-exts/trunk/debian/changelog (original)
+++ packages/haskell-src-exts/trunk/debian/changelog Fri Mar 21 22:36:41 2008
@@ -1,9 +1,17 @@
-haskell-src-exts (0.2.1~darcs20071212-2~pre1) unstable; urgency=low
+haskell-src-exts (0.2.1~darcs20071212-2~pre1) unstable; urgency=high
 
+  * Bump urgency to high as this upload fixes a RC bug.
+  * debian/control:
+    - Let the Vcs-* fields point to the trunk branch.
+    - Change the Section to libdevel as suggested by lintian warning
+      "dev-package-should-be-section-libdevel".
   * debian/mk-haskell-depends: Removed. We use dh_haskell_depends from
     haskell-devscripts.
+  * debian/rules:
+    - Only optimise on i386, amd64 and ia64 as the optimisation of the
+      parses can take a lot of memory. (Closes: #462848)
 
- -- Arjan Oosting <arjan at debian.org>  Thu, 10 Jan 2008 00:42:02 +0100
+ -- Arjan Oosting <arjan at debian.org>  Fri, 21 Mar 2008 23:35:55 +0100
 
 haskell-src-exts (0.2.1~darcs20071212-1) unstable; urgency=low
 

Modified: packages/haskell-src-exts/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-src-exts/trunk/debian/control?rev=1125&op=diff
==============================================================================
--- packages/haskell-src-exts/trunk/debian/control (original)
+++ packages/haskell-src-exts/trunk/debian/control Fri Mar 21 22:36:41 2008
@@ -1,5 +1,5 @@
 Source: haskell-src-exts
-Section: devel
+Section: libdevel
 Priority: optional
 Maintainer: Florian Ragwitz <rafl at debian.org>
 Uploaders: Arjan Oosting <arjan at debian.org>
@@ -8,8 +8,8 @@
 # Build-Depends-Indep: haddock, ghc6-doc
 Standards-Version: 3.7.3
 Homepage: http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-haskell/packages/haskell-src-exts
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-src-exts
+Vcs-Svn: svn://svn.debian.org/svn/pkg-haskell/packages/haskell-src-exts/trunk
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-src-exts/trunk
 
 Package: libghc6-src-exts-dev
 Architecture: any

Modified: packages/haskell-src-exts/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-src-exts/trunk/debian/rules?rev=1125&op=diff
==============================================================================
--- packages/haskell-src-exts/trunk/debian/rules (original)
+++ packages/haskell-src-exts/trunk/debian/rules Fri Mar 21 22:36:41 2008
@@ -34,6 +34,10 @@
 
 # Handle DEB_BUILD_OPTIONS containing noopt
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+GHC6_OPTIONS=-O0
+# Only optimise on the more powerfull architectures,
+# as the optimising of the parser takes quite some memory
+else ifeq (,$(findstring $(DEB_HOST_ARCH),"i386 amd64 ia64"))
 GHC6_OPTIONS=-O0
 else
 GHC6_OPTIONS=




More information about the Pkg-haskell-commits mailing list