[Pkg-haskell-commits] darcs: haskell-hashable: Fix mmap patch to use Cabal-compatible architecture names; "mips" is already aliased to cover both big- and little-endian variants, and "powerpc" and "powerpc64" are spelled "ppc" and "ppc64" respectively.

Colin Watson cjwatson at debian.org
Fri Oct 25 14:51:03 UTC 2013


Fri Oct 25 14:50:53 UTC 2013  Colin Watson <cjwatson at debian.org>
  * Fix mmap patch to use Cabal-compatible architecture names; "mips" is already aliased to cover both big- and little-endian variants, and "powerpc" and "powerpc64" are spelled "ppc" and "ppc64" respectively.

    M ./changelog +8
    M ./patches/disable_mmap_on_some_arches -3 +3

Fri Oct 25 14:50:53 UTC 2013  Colin Watson <cjwatson at debian.org>
  * Fix mmap patch to use Cabal-compatible architecture names; "mips" is already aliased to cover both big- and little-endian variants, and "powerpc" and "powerpc64" are spelled "ppc" and "ppc64" respectively.
diff -rN -u old-haskell-hashable/changelog new-haskell-hashable/changelog
--- old-haskell-hashable/changelog	2013-10-25 14:51:03.361543280 +0000
+++ new-haskell-hashable/changelog	2013-10-25 14:51:03.365537364 +0000
@@ -1,3 +1,11 @@
+haskell-hashable (1.2.1.0-4) UNRELEASED; urgency=low
+
+  * Fix mmap patch to use Cabal-compatible architecture names; "mips" is
+    already aliased to cover both big- and little-endian variants, and
+    "powerpc" and "powerpc64" are spelled "ppc" and "ppc64" respectively.
+
+ -- Colin Watson <cjwatson at debian.org>  Fri, 25 Oct 2013 15:47:02 +0100
+
 haskell-hashable (1.2.1.0-3) unstable; urgency=low
 
   * Disable also on powerpc64, maybe there is some arch name confusion
diff -rN -u old-haskell-hashable/patches/disable_mmap_on_some_arches new-haskell-hashable/patches/disable_mmap_on_some_arches
--- old-haskell-hashable/patches/disable_mmap_on_some_arches	2013-10-25 14:51:03.345552685 +0000
+++ new-haskell-hashable/patches/disable_mmap_on_some_arches	2013-10-25 14:51:03.369540661 +0000
@@ -5,14 +5,14 @@
 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
 Index: haskell-hashable-1.2.1.0/hashable.cabal
 ===================================================================
---- haskell-hashable-1.2.1.0.orig/hashable.cabal	2013-10-24 19:17:20.175994877 +0200
-+++ haskell-hashable-1.2.1.0/hashable.cabal	2013-10-24 19:17:39.491994704 +0200
+--- haskell-hashable-1.2.1.0.orig/hashable.cabal
++++ haskell-hashable-1.2.1.0/hashable.cabal
 @@ -77,7 +77,7 @@
                       QuickCheck >= 2.4.0.1,
                       random == 1.0.*,
                       text >= 0.11.0.5
 -  if !os(windows)
-+  if !os(windows) && !(arch(arm) || arch(mips) || arch(mipsel) || arch(powerpc) || arch(powerpc64))
++  if !os(windows) && !(arch(arm) || arch(mips) || arch(ppc) || arch(ppc64))
      Build-depends:   unix
      CPP-options:     -DHAVE_MMAP
      Other-modules:   Regress.Mmap




More information about the Pkg-haskell-commits mailing list