[Git][haskell-team/DHG_packages][master] add multistate

Clint Adams gitlab at salsa.debian.org
Fri Jun 26 19:50:58 BST 2020



Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
41e3e7b2 by Clint Adams at 2020-06-26T14:50:44-04:00
add multistate

- - - - -


9 changed files:

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


Changes:

=====================================
p/haskell-multistate/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-multistate (0.8.0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Clint Adams <clint at debian.org>  Fri, 26 Jun 2020 14:31:47 -0400


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


=====================================
p/haskell-multistate/debian/control
=====================================
@@ -0,0 +1,76 @@
+Source: haskell-multistate
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Priority: optional
+Section: haskell
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-monad-control-dev (>= 1.0),
+ libghc-monad-control-dev (<< 1.1),
+ libghc-monad-control-prof (>= 1.0),
+ libghc-monad-control-prof (<< 1.1),
+ libghc-tagged-dev (>= 0.7),
+ libghc-tagged-dev (<< 0.9),
+ libghc-tagged-prof (>= 0.7),
+ libghc-tagged-prof (<< 0.9),
+ libghc-transformers-base-dev (<< 0.5),
+ libghc-transformers-base-prof (<< 0.5),
+ libghc-hspec-dev (>= 2),
+ libghc-hspec-prof (>= 2),
+Build-Depends-Indep: ghc-doc,
+ libghc-monad-control-doc,
+ libghc-tagged-doc,
+ libghc-transformers-base-doc,
+Standards-Version: 4.5.0
+Homepage: https://github.com/lspitzner/multistate
+X-Description: equivalent of multiple RWST in the same stack
+ When using multiple Read/Write/State transformers in the same monad
+ stack, it becomes necessary to lift the operations in order to affect
+ a specific transformer.
+ Using heterogeneous lists (and all kinds of GHC extensions magic),
+ this package provides transformers that remove that necessity:
+ MultiReaderT/MultiWriterT/MultiStateT/MultiRWST can contain a
+ heterogeneous list of values.
+
+Package: libghc-multistate-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-multistate-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-multistate-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-multistate/debian/copyright
=====================================
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: multistate
+Upstream-Contact: Lennart Spitzner <hexagoxel at hexagoxel.de>
+Source: https://hackage.haskell.org/package/multistate
+
+Files: *
+Copyright: 2013 Jan Bracker
+           2013-2018 Lennart Spitzner
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ 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.
+   * The names of this library's contributors may not be used to endorse or
+     promote products derived from this software without specific prior
+     written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 COPYRIGHT OWNER 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-multistate/debian/patches/newer-deps
=====================================
@@ -0,0 +1,20 @@
+--- a/multistate.cabal
++++ b/multistate.cabal
+@@ -69,7 +69,7 @@
+   other-modules:
+     Control.Monad.Trans.MultiGST.Common
+   build-depends:
+-    base         >= 4.9   && <4.13,
++    base         >= 4.9   && <5,
+     mtl          >= 2.1   && <2.3,
+     transformers >= 0.3   && <0.6,
+     tagged       >= 0.7   && <0.9,
+@@ -107,7 +107,7 @@
+     multistate,
+     base <999,
+     transformers <0.6,
+-    hspec >=2 && <2.6
++    hspec >=2
+   ghc-options:      -Wall
+   main-is:          Test.hs
+   hs-source-dirs:   test


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


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


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


=====================================
p/haskell-multistate/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/multistate/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/41e3e7b2633a90b6e56dd9683c6112198c6b2227

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/41e3e7b2633a90b6e56dd9683c6112198c6b2227
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/20200626/0146615c/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list