[Git][haskell-team/DHG_packages][master] Add concurrent-supply package

Scott Talbert (@swt2c) gitlab at salsa.debian.org
Wed Apr 27 19:57:55 BST 2022



Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
79d1f69f by Scott Talbert at 2022-04-27T14:56:02-04:00
Add concurrent-supply package

- - - - -


9 changed files:

- + p/haskell-concurrent-supply/debian/changelog
- + p/haskell-concurrent-supply/debian/compat
- + p/haskell-concurrent-supply/debian/control
- + p/haskell-concurrent-supply/debian/copyright
- + p/haskell-concurrent-supply/debian/patches/newer-deps
- + p/haskell-concurrent-supply/debian/patches/series
- + p/haskell-concurrent-supply/debian/rules
- + p/haskell-concurrent-supply/debian/source/format
- + p/haskell-concurrent-supply/debian/watch


Changes:

=====================================
p/haskell-concurrent-supply/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-concurrent-supply (0.1.8-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Scott Talbert <swt at techie.net>  Wed, 27 Apr 2022 14:45:38 -0400


=====================================
p/haskell-concurrent-supply/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-concurrent-supply/debian/control
=====================================
@@ -0,0 +1,64 @@
+Source: haskell-concurrent-supply
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Scott Talbert <swt at techie.net>
+Priority: optional
+Section: haskell
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-hashable-dev (>= 1.1),
+ libghc-hashable-dev (<< 1.4),
+ libghc-hashable-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-hashable-doc,
+Standards-Version: 4.6.0
+Homepage: https://github.com/ekmett/concurrent-supply
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-concurrent-supply
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git
+X-Description: A fast concurrent unique identifier supply with a pure API
+ A fast supply of concurrent unique identifiers suitable for use
+ within a single process. Once the initial 'Supply' has been initialized,
+ the remainder of the API is pure. See "Control.Concurrent.Supply" for
+ details.
+
+Package: libghc-concurrent-supply-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-concurrent-supply-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-concurrent-supply-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}


=====================================
p/haskell-concurrent-supply/debian/copyright
=====================================
@@ -0,0 +1,40 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: concurrent-supply
+Upstream-Contact: Edward A. Kmett <ekmett at gmail.com>
+Source: https://hackage.haskell.org/package/concurrent-supply
+
+Files: *
+Copyright: Copyright (C) 2011 Edward A. Kmett
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Copyright 2011-2013 Edward Kmett
+ .
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ .
+ 2. 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.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS OR 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.


=====================================
p/haskell-concurrent-supply/debian/patches/newer-deps
=====================================
@@ -0,0 +1,11 @@
+--- a/concurrent-supply.cabal
++++ b/concurrent-supply.cabal
+@@ -35,7 +35,7 @@ library
+   ghc-options: -Wall
+   build-depends:
+     base     >= 4 && < 5,
+-    hashable >= 1.1 && < 1.3,
++    hashable >= 1.1 && < 1.4,
+     ghc-prim
+ 
+ test-suite properties


=====================================
p/haskell-concurrent-supply/debian/patches/series
=====================================
@@ -0,0 +1 @@
+newer-deps


=====================================
p/haskell-concurrent-supply/debian/rules
=====================================
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = concurrent-supply
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


=====================================
p/haskell-concurrent-supply/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-concurrent-supply/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/concurrent-supply/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/79d1f69ff3fbbdefea1153c46d6b463cc8bd7334

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/79d1f69ff3fbbdefea1153c46d6b463cc8bd7334
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20220427/06933c6e/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list