[DHG_packages] 01/01: add store-core

Clint Adams clint at moszumanska.debian.org
Wed Jun 21 01:25:54 UTC 2017


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

clint pushed a commit to branch master
in repository DHG_packages.

commit a2c407b257045b432b7916d477575b98f8c59fcd
Author: Clint Adams <clint at debian.org>
Date:   Tue Jun 20 21:25:21 2017 -0400

    add store-core
---
 p/haskell-store-core/debian/changelog       |  5 +++
 p/haskell-store-core/debian/compat          |  1 +
 p/haskell-store-core/debian/control         | 65 +++++++++++++++++++++++++++++
 p/haskell-store-core/debian/copyright       | 31 ++++++++++++++
 p/haskell-store-core/debian/patches/no-fail | 10 +++++
 p/haskell-store-core/debian/patches/series  |  1 +
 p/haskell-store-core/debian/rules           |  8 ++++
 p/haskell-store-core/debian/source/format   |  1 +
 p/haskell-store-core/debian/watch           |  2 +
 9 files changed, 124 insertions(+)

diff --git a/p/haskell-store-core/debian/changelog b/p/haskell-store-core/debian/changelog
new file mode 100644
index 0000000..1fb421c
--- /dev/null
+++ b/p/haskell-store-core/debian/changelog
@@ -0,0 +1,5 @@
+haskell-store-core (0.4.1-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Tue, 20 Jun 2017 21:12:01 -0400
diff --git a/p/haskell-store-core/debian/compat b/p/haskell-store-core/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/p/haskell-store-core/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/p/haskell-store-core/debian/control b/p/haskell-store-core/debian/control
new file mode 100644
index 0000000..361337d
--- /dev/null
+++ b/p/haskell-store-core/debian/control
@@ -0,0 +1,65 @@
+Source: haskell-store-core
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-primitive-dev (>= 0.6),
+ libghc-primitive-dev (<< 1.0),
+ libghc-primitive-prof (>= 0.6),
+ libghc-primitive-prof (<< 1.0),
+ libghc-text-dev (>= 1.2.0.4),
+ libghc-text-dev (<< 2.0),
+ libghc-text-prof (>= 1.2.0.4),
+ libghc-text-prof (<< 2.0),
+Build-Depends-Indep: ghc-doc,
+ libghc-primitive-doc,
+ libghc-text-doc,
+Standards-Version: 4.0.0
+Homepage: https://github.com/fpco/store#readme
+X-Description: fast and lightweight binary serialization
+ This is a lightweight core used by the store package.
+
+Package: libghc-store-core-dev
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+ ${shlibs:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-store-core-prof
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-store-core-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff --git a/p/haskell-store-core/debian/copyright b/p/haskell-store-core/debian/copyright
new file mode 100644
index 0000000..0e248c6
--- /dev/null
+++ b/p/haskell-store-core/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: store-core
+Upstream-Contact: Michael Sloan <sloan at fpcomplete.com>
+Source: https://hackage.haskell.org/package/store-core
+
+Files: *
+Copyright: 2016 FP Complete
+License: Expat
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/p/haskell-store-core/debian/patches/no-fail b/p/haskell-store-core/debian/patches/no-fail
new file mode 100644
index 0000000..46bd5a7
--- /dev/null
+++ b/p/haskell-store-core/debian/patches/no-fail
@@ -0,0 +1,10 @@
+--- a/store-core.cabal
++++ b/store-core.cabal
+@@ -34,7 +34,6 @@
+       base >=4.7 && <5
+     , primitive >=0.6 && < 1.0
+     , bytestring >=0.10.4.0 && < 1.0
+-    , fail
+     , transformers >=0.3.0.0 && < 1.0
+     , ghc-prim >=0.3.1.0 && < 1.0
+     , text >=1.2.0.4 && < 2.0
diff --git a/p/haskell-store-core/debian/patches/series b/p/haskell-store-core/debian/patches/series
new file mode 100644
index 0000000..aa19642
--- /dev/null
+++ b/p/haskell-store-core/debian/patches/series
@@ -0,0 +1 @@
+no-fail
diff --git a/p/haskell-store-core/debian/rules b/p/haskell-store-core/debian/rules
new file mode 100755
index 0000000..c656a0b
--- /dev/null
+++ b/p/haskell-store-core/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = store-core
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-store-core/debian/source/format b/p/haskell-store-core/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-store-core/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-store-core/debian/watch b/p/haskell-store-core/debian/watch
new file mode 100644
index 0000000..9f563d9
--- /dev/null
+++ b/p/haskell-store-core/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/store-core/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