diff options
author | Clint Adams <clint@debian.org> | 2015-12-05 18:09:19 -0500 |
---|---|---|
committer | Clint Adams <clint@debian.org> | 2015-12-05 18:33:38 -0500 |
commit | b1dab6d8c7c476ce032cc9d8a804516902229e79 (patch) | |
tree | a500546d3adb6fc759f8531471d60c8d091bf0d3 | |
parent | 66863be4ecd98ec1a11d0068a81d4d8c23df301a (diff) | |
download | DHG_packages-b1dab6d8c7c476ce032cc9d8a804516902229e79.tar.gz |
add text-show
-rw-r--r-- | p/haskell-text-show/debian/changelog | 5 | ||||
-rw-r--r-- | p/haskell-text-show/debian/compat | 1 | ||||
-rw-r--r-- | p/haskell-text-show/debian/control | 95 | ||||
-rw-r--r-- | p/haskell-text-show/debian/copyright | 40 | ||||
-rw-r--r-- | p/haskell-text-show/debian/patches/no-nats | 36 | ||||
-rw-r--r-- | p/haskell-text-show/debian/patches/series | 1 | ||||
-rwxr-xr-x | p/haskell-text-show/debian/rules | 8 | ||||
-rw-r--r-- | p/haskell-text-show/debian/source/format | 1 | ||||
-rw-r--r-- | p/haskell-text-show/debian/watch | 2 |
9 files changed, 189 insertions, 0 deletions
diff --git a/p/haskell-text-show/debian/changelog b/p/haskell-text-show/debian/changelog new file mode 100644 index 000000000..1eacbbd03 --- /dev/null +++ b/p/haskell-text-show/debian/changelog @@ -0,0 +1,5 @@ +haskell-text-show (2.1.1-1) unstable; urgency=low + + * Initial release + + -- Clint Adams <clint@debian.org> Sat, 05 Dec 2015 17:50:52 -0500 diff --git a/p/haskell-text-show/debian/compat b/p/haskell-text-show/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/p/haskell-text-show/debian/compat @@ -0,0 +1 @@ +9 diff --git a/p/haskell-text-show/debian/control b/p/haskell-text-show/debian/control new file mode 100644 index 000000000..2185969d9 --- /dev/null +++ b/p/haskell-text-show/debian/control @@ -0,0 +1,95 @@ +Source: haskell-text-show +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: Clint Adams <clint@debian.org> +Priority: extra +Section: haskell +Build-Depends: debhelper (>= 9), + haskell-devscripts (>= 0.9), + cdbs, + ghc, + ghc-prof, + libghc-base-compat-dev (>= 0.8.1), + libghc-base-compat-dev (<< 1), + libghc-base-compat-prof, + libghc-bytestring-builder-dev, + libghc-bytestring-builder-prof, + libghc-generic-deriving-dev (>= 1.8), + libghc-generic-deriving-dev (<< 2), + libghc-generic-deriving-prof, + libghc-nats-dev (>= 0.1), + libghc-nats-dev (<< 2), + libghc-nats-prof, + libghc-semigroups-dev (>= 0.16.1), + libghc-semigroups-dev (<< 1), + libghc-semigroups-prof, + libghc-tagged-dev (>= 0.4.4), + libghc-tagged-dev (<< 1), + libghc-tagged-prof, + libghc-text-dev (>= 0.11.1), + libghc-text-dev (<< 1.3), + libghc-text-prof, + libghc-void-dev (>= 0.5), + libghc-void-dev (<< 1), + libghc-void-prof, + libghc-hspec-dev (>= 2), + libghc-hspec-dev (<< 3), + libghc-quickcheck-dev (>= 2.5), + libghc-quickcheck-dev (<< 3), + libghc-quickcheck-instances-dev (>= 0.1), + libghc-quickcheck-instances-dev (<< 0.4), +Build-Depends-Indep: ghc-doc, + libghc-base-compat-doc, + libghc-bytestring-builder-doc, + libghc-generic-deriving-doc, + libghc-nats-doc, + libghc-semigroups-doc, + libghc-tagged-doc, + libghc-text-doc, + libghc-void-doc, +Standards-Version: 3.9.6 +Homepage: https://github.com/RyanGlScott/text-show +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/ +Vcs-Git: git://git.debian.org/git/pkg-haskell/DHG_packages.git +X-Description: Efficient conversion of values into Text + A replacement for the Show typeclass intended for use with Text + instead of Strings, in the spirit of bytestring-show. + +Package: libghc-text-show-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-text-show-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-text-show-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-text-show/debian/copyright b/p/haskell-text-show/debian/copyright new file mode 100644 index 000000000..7c9abfd1e --- /dev/null +++ b/p/haskell-text-show/debian/copyright @@ -0,0 +1,40 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: text-show +Upstream-Contact: Ryan Scott <ryan.gl.scott@ku.edu> +Source: https://hackage.haskell.org/package/text-show + +Files: * +Copyright: 2014-2015 Ryan Scott +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. + . + * Neither the name of Ryan Scott nor the names of other + contributors may 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. diff --git a/p/haskell-text-show/debian/patches/no-nats b/p/haskell-text-show/debian/patches/no-nats new file mode 100644 index 000000000..99de88664 --- /dev/null +++ b/p/haskell-text-show/debian/patches/no-nats @@ -0,0 +1,36 @@ +--- a/text-show.cabal ++++ b/text-show.cabal +@@ -133,7 +133,7 @@ + TextShow.TH.Names + TextShow.Utils + build-depends: array >= 0.3 && < 0.6 +- , base >= 4.3 && < 5 ++ , base >= 4.8 && < 5 + , base-compat >= 0.8.1 && < 1 + , bytestring >= 0.9 && < 0.11 + , bytestring-builder +@@ -141,7 +141,6 @@ + , generic-deriving >= 1.8 && < 2 + , ghc-prim + , integer-gmp +- , nats >= 0.1 && < 2 + , semigroups >= 0.16.1 && < 1 + , tagged >= 0.4.4 && < 1 + , text >= 0.11.1 && < 1.3 +@@ -300,7 +299,7 @@ + + TransformersCompat + build-depends: array >= 0.3 && < 0.6 +- , base >= 4.3 && < 5 ++ , base >= 4.8 && < 5 + , base-compat >= 0.8.2 && < 1 + , base-orphans >= 0.4.2 && < 1 + , bifunctors >= 5 && < 6 +@@ -309,7 +308,6 @@ + , generic-deriving >= 1.8.0 && < 2 + , ghc-prim + , hspec >= 2 && < 3 +- , nats >= 0.1 && < 2 + , QuickCheck >= 2.5 && < 3 + , quickcheck-instances >= 0.1 && < 0.4 + , tagged >= 0.8.1 && < 1 diff --git a/p/haskell-text-show/debian/patches/series b/p/haskell-text-show/debian/patches/series new file mode 100644 index 000000000..ddd7d5bb4 --- /dev/null +++ b/p/haskell-text-show/debian/patches/series @@ -0,0 +1 @@ +no-nats diff --git a/p/haskell-text-show/debian/rules b/p/haskell-text-show/debian/rules new file mode 100755 index 000000000..f6a66da16 --- /dev/null +++ b/p/haskell-text-show/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +DEB_CABAL_PACKAGE = text-show +DEB_DEFAULT_COMPILER = ghc +DEB_ENABLE_TESTS = yes + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/hlibrary.mk diff --git a/p/haskell-text-show/debian/source/format b/p/haskell-text-show/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-text-show/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-text-show/debian/watch b/p/haskell-text-show/debian/watch new file mode 100644 index 000000000..3eb1bd54a --- /dev/null +++ b/p/haskell-text-show/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://hackage.haskell.org/package/text-show/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) |