summaryrefslogtreecommitdiff
path: root/p/haskell-hashable
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-10-25 18:50:53 +0400
committerColin Watson <cjwatson@debian.org>2013-10-25 18:50:53 +0400
commit18e3116ff6922b1938d4f5a5bcff5289fa9ec27e (patch)
tree3c84bc20497cebd7c70737de8f764f6337241455 /p/haskell-hashable
parenta97f6a3994e6f996e2ab0061b9781bf13240e33c (diff)
downloadDHG_packages-18e3116ff6922b1938d4f5a5bcff5289fa9ec27e.tar.gz
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.
Diffstat (limited to 'p/haskell-hashable')
-rw-r--r--p/haskell-hashable/debian/changelog8
-rw-r--r--p/haskell-hashable/debian/patches/disable_mmap_on_some_arches6
2 files changed, 11 insertions, 3 deletions
diff --git a/p/haskell-hashable/debian/changelog b/p/haskell-hashable/debian/changelog
index 2db8827ba..d22d7e0d8 100644
--- a/p/haskell-hashable/debian/changelog
+++ b/p/haskell-hashable/debian/changelog
@@ -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@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 --git a/p/haskell-hashable/debian/patches/disable_mmap_on_some_arches b/p/haskell-hashable/debian/patches/disable_mmap_on_some_arches
index 7aff08169..3bcd011dd 100644
--- a/p/haskell-hashable/debian/patches/disable_mmap_on_some_arches
+++ b/p/haskell-hashable/debian/patches/disable_mmap_on_some_arches
@@ -5,14 +5,14 @@ Author: Louis Bettens <louis@bettens.info>
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