[DHG_packages] 01/01: Reintroduce murmur-hash due to ada dependency

Gianfranco Costamagna locutusofborg at moszumanska.debian.org
Thu Jul 6 08:35:41 UTC 2017


This is an automated email from the git hooks/post-receive script.

locutusofborg pushed a commit to branch master
in repository DHG_packages.

commit d7902c8b97b871cd46a7b2c1876a79753504e262
Author: Gianfranco Costamagna <costamagnagianfranco at yahoo.it>
Date:   Thu Jul 6 10:34:36 2017 +0200

    Reintroduce murmur-hash due to ada dependency
---
 p/haskell-murmur-hash/debian/changelog     | 54 ++++++++++++++++++++++++
 p/haskell-murmur-hash/debian/compat        |  1 +
 p/haskell-murmur-hash/debian/control       | 66 ++++++++++++++++++++++++++++++
 p/haskell-murmur-hash/debian/copyright     | 29 +++++++++++++
 p/haskell-murmur-hash/debian/rules         |  3 ++
 p/haskell-murmur-hash/debian/source/format |  1 +
 p/haskell-murmur-hash/debian/watch         |  2 +
 7 files changed, 156 insertions(+)

diff --git a/p/haskell-murmur-hash/debian/changelog b/p/haskell-murmur-hash/debian/changelog
new file mode 100644
index 0000000..ec5f45e
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/changelog
@@ -0,0 +1,54 @@
+haskell-murmur-hash (0.1.0.9-1) unstable; urgency=medium
+
+  * Reintroduce the package in Debian
+  * Bump compat level to 10
+  * Bump std-version to 4.0.0
+
+ -- Gianfranco Costamagna <locutusofborg at debian.org>  Thu, 06 Jul 2017 10:25:42 +0200
+
+haskell-murmur-hash (0.1.0.7-3) unstable; urgency=medium
+
+  * Upload to unstable
+
+ -- Joachim Breitner <nomeata at debian.org>  Mon, 27 Apr 2015 11:51:51 +0200
+
+haskell-murmur-hash (0.1.0.7-2) experimental; urgency=medium
+
+  * Depend on haskell-devscripts 0.9, found in experimental
+
+ -- Joachim Breitner <nomeata at debian.org>  Sat, 20 Dec 2014 17:11:29 +0100
+
+haskell-murmur-hash (0.1.0.7-1) unstable; urgency=low
+
+  * Adjust watch file to new hackage layout
+  * New upstream release
+
+ -- Joachim Breitner <nomeata at debian.org>  Mon, 04 Aug 2014 23:52:51 +0200
+
+haskell-murmur-hash (0.1.0.6-2) unstable; urgency=low
+
+  * Enable compat level 9
+
+ -- Joachim Breitner <nomeata at debian.org>  Fri, 24 May 2013 12:51:29 +0200
+
+haskell-murmur-hash (0.1.0.6-1) experimental; urgency=low
+
+  * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
+    against experimental
+  * Bump standards version, no change
+  * New upstream release
+
+ -- Joachim Breitner <nomeata at debian.org>  Fri, 19 Oct 2012 22:54:08 +0200
+
+haskell-murmur-hash (0.1.0.5-2) unstable; urgency=low
+
+  * Sourceful upload to rebuild documentation package
+
+ -- Joachim Breitner <nomeata at debian.org>  Mon, 06 Feb 2012 18:01:04 +0100
+
+haskell-murmur-hash (0.1.0.5-1) unstable; urgency=low
+
+  * Debianization generated by cabal-debian
+  * ITP (Closes: #653456)
+
+ -- Kiwamu Okabe <kiwamu at debian.or.jp>  Thu, 29 Dec 2011 01:20:09 +0900
diff --git a/p/haskell-murmur-hash/debian/compat b/p/haskell-murmur-hash/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/p/haskell-murmur-hash/debian/control b/p/haskell-murmur-hash/debian/control
new file mode 100644
index 0000000..ff5345a
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/control
@@ -0,0 +1,66 @@
+Source: haskell-murmur-hash
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 10),
+               haskell-devscripts (>= 0.9),
+               cdbs,
+               ghc,
+               ghc-prof
+Build-Depends-Indep: ghc-doc
+Standards-Version: 4.0.0
+Homepage: http://github.com/nominolo/murmur-hash
+Vcs-Git: https://anonscm.debian.org/git/pkg-haskell/DHG_packages.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-murmur-hash
+
+Package: libghc-murmur-hash-dev
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: MurmurHash2 implementation for Haskell.
+ Implements MurmurHash2, a good, fast, general-purpose,
+ non-cryptographic hashing function.  See
+ <http://murmurhash.googlepages.com/> for details.
+ .
+ This implementation is pure Haskell, so it might be a bit slower
+ than a C FFI binding.
+ .
+ This package contains the normal library files.
+
+Package: libghc-murmur-hash-prof
+Architecture: any
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: MurmurHash2 implementation for Haskell.; profiling libraries
+ Implements MurmurHash2, a good, fast, general-purpose,
+ non-cryptographic hashing function.  See
+ <http://murmurhash.googlepages.com/> for details.
+ .
+ This implementation is pure Haskell, so it might be a bit slower
+ than a C FFI binding.
+ .
+ This package contains the libraries compiled with profiling enabled.
+
+Package: libghc-murmur-hash-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: MurmurHash2 implementation for Haskell.; documentation
+ Implements MurmurHash2, a good, fast, general-purpose,
+ non-cryptographic hashing function.  See
+ <http://murmurhash.googlepages.com/> for details.
+ .
+ This implementation is pure Haskell, so it might be a bit slower
+ than a C FFI binding.
+ .
+ This package contains the documentation files.
diff --git a/p/haskell-murmur-hash/debian/copyright b/p/haskell-murmur-hash/debian/copyright
new file mode 100644
index 0000000..b766824
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/copyright
@@ -0,0 +1,29 @@
+Copyright (c) 2010, Thomas Schilling
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+- Redistributions of source code must retain the above copyright notice,
+this list of conditions and the following disclaimer.
+ 
+- Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+ 
+- Neither name of the author nor the names of its contributors may be
+used to endorse or promote products derived from this software without
+specific prior written permission. 
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND THE CONTRIBUTORS "AS
+IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
+COURT OF THE UNIVERSITY OF GLASGOW OR THE CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
+IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/p/haskell-murmur-hash/debian/rules b/p/haskell-murmur-hash/debian/rules
new file mode 100755
index 0000000..4f5b8e4
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/rules
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-murmur-hash/debian/source/format b/p/haskell-murmur-hash/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-murmur-hash/debian/watch b/p/haskell-murmur-hash/debian/watch
new file mode 100644
index 0000000..e1a9415
--- /dev/null
+++ b/p/haskell-murmur-hash/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/murmur-hash/distro-monitor .*-([0-9\.]+).(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list