diff options
| author | Joachim Breitner <mail@joachim-breitner.de> | 2015-08-15 18:34:13 +0000 |
|---|---|---|
| committer | Joachim Breitner <mail@joachim-breitner.de> | 2015-08-15 23:40:54 +0200 |
| commit | 5e1e57b513a102da53d1d556ededefdea2607cfc (patch) | |
| tree | 676561dc2d472b6d89af350d892d63cf79db5abe /p/haskell-io-streams/debian | |
| parent | 388fdfc4e0c4f80af01c8690f7313ce163d7093a (diff) | |
| download | DHG_packages-5e1e57b513a102da53d1d556ededefdea2607cfc.tar.gz | |
Initial packaging of io-streams-1.3.2.0
Diffstat (limited to 'p/haskell-io-streams/debian')
| -rw-r--r-- | p/haskell-io-streams/debian/changelog | 5 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/compat | 1 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/control | 83 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/copyright | 42 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/patches/no-bytestring-builder | 20 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/patches/series | 1 | ||||
| -rwxr-xr-x | p/haskell-io-streams/debian/rules | 7 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/source/format | 1 | ||||
| -rw-r--r-- | p/haskell-io-streams/debian/watch | 2 |
9 files changed, 162 insertions, 0 deletions
diff --git a/p/haskell-io-streams/debian/changelog b/p/haskell-io-streams/debian/changelog new file mode 100644 index 000000000..30b3d1e2d --- /dev/null +++ b/p/haskell-io-streams/debian/changelog @@ -0,0 +1,5 @@ +haskell-io-streams (1.3.2.0-1) unstable; urgency=low + + * Initial release + + -- Joachim Breitner <nomeata@debian.org> Sat, 15 Aug 2015 18:34:13 +0000 diff --git a/p/haskell-io-streams/debian/compat b/p/haskell-io-streams/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/p/haskell-io-streams/debian/compat @@ -0,0 +1 @@ +9 diff --git a/p/haskell-io-streams/debian/control b/p/haskell-io-streams/debian/control new file mode 100644 index 000000000..37d2a8ae1 --- /dev/null +++ b/p/haskell-io-streams/debian/control @@ -0,0 +1,83 @@ +Source: haskell-io-streams +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: Joachim Breitner <nomeata@debian.org> +Priority: extra +Section: haskell +Build-Depends: debhelper (>= 9), + haskell-devscripts (>= 0.9), + cdbs, + ghc, + ghc-prof, + libghc-attoparsec-dev (>= 0.10), + libghc-attoparsec-dev (<< 0.14), + libghc-attoparsec-prof, + libghc-network-dev (>= 2.3), + libghc-network-dev (<< 2.7), + libghc-network-prof, + libghc-primitive-dev (>= 0.2), + libghc-primitive-dev (<< 0.7), + libghc-primitive-prof, + libghc-text-dev (>= 0.10), + libghc-text-dev (<< 1.3), + libghc-text-prof, + libghc-vector-dev (>= 0.7), + libghc-vector-dev (<< 0.12), + libghc-vector-prof, + libghc-zlib-bindings-dev (>= 0.1), + libghc-zlib-bindings-dev (<< 0.2), + libghc-zlib-bindings-prof, +Build-Depends-Indep: ghc-doc, + libghc-attoparsec-doc, + libghc-network-doc, + libghc-primitive-doc, + libghc-text-doc, + libghc-vector-doc, + libghc-zlib-bindings-doc, +Standards-Version: 3.9.6 +Homepage: http://hackage.haskell.org/package/io-streams +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-io-streams +Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-io-streams +X-Description: Simple, composable, and easy-to-use stream I/O + The io-streams library contains simple and easy-to-use primitives for I/O + using streams. Most users will want to import the top-level convenience + module "System.IO.Streams", which re-exports most of the library. + +Package: libghc-io-streams-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-io-streams-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-io-streams-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-io-streams/debian/copyright b/p/haskell-io-streams/debian/copyright new file mode 100644 index 000000000..d4f5a141c --- /dev/null +++ b/p/haskell-io-streams/debian/copyright @@ -0,0 +1,42 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: io-streams +Upstream-Contact: Gregory Collins <greg@gregorycollins.net> +Source: https://hackage.haskell.org/package/io-streams + +Files: * +Copyright: + 2012, Google, Inc. + 2012, Erudify AG +License: BSD3 + +Files: debian/* +Copyright: held by the contributors mentioned in debian/changelog +License: BSD3 + +License: BSD3 + 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 the names of Google, Erudify, 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 HOLDER 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-io-streams/debian/patches/no-bytestring-builder b/p/haskell-io-streams/debian/patches/no-bytestring-builder new file mode 100644 index 000000000..3d16c19f7 --- /dev/null +++ b/p/haskell-io-streams/debian/patches/no-bytestring-builder @@ -0,0 +1,20 @@ +Index: haskell-io-streams/io-streams.cabal +=================================================================== +--- haskell-io-streams.orig/io-streams.cabal 2015-08-15 20:34:13.426298999 +0200 ++++ haskell-io-streams/io-streams.cabal 2015-08-15 20:35:38.632619684 +0200 +@@ -120,7 +120,6 @@ + Build-depends: base >= 4 && <5, + attoparsec >= 0.10 && <0.14, + bytestring >= 0.9 && <0.11, +- bytestring-builder >= 0.10 && <0.11, + network >= 2.3 && <2.7, + primitive >= 0.2 && <0.7, + process >= 1.1 && <1.3, +@@ -201,7 +200,6 @@ + Build-depends: base >= 4 && <5, + attoparsec >= 0.10 && <0.14, + bytestring >= 0.9 && <0.11, +- bytestring-builder >= 0.10 && <0.11, + deepseq >= 1.2 && <1.5, + directory >= 1.1 && <2, + filepath >= 1.2 && <2, diff --git a/p/haskell-io-streams/debian/patches/series b/p/haskell-io-streams/debian/patches/series new file mode 100644 index 000000000..d61cbb2d4 --- /dev/null +++ b/p/haskell-io-streams/debian/patches/series @@ -0,0 +1 @@ +no-bytestring-builder diff --git a/p/haskell-io-streams/debian/rules b/p/haskell-io-streams/debian/rules new file mode 100755 index 000000000..62e37d9d5 --- /dev/null +++ b/p/haskell-io-streams/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +DEB_CABAL_PACKAGE = io-streams +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-io-streams/debian/source/format b/p/haskell-io-streams/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-io-streams/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-io-streams/debian/watch b/p/haskell-io-streams/debian/watch new file mode 100644 index 000000000..bbb3699ba --- /dev/null +++ b/p/haskell-io-streams/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://hackage.haskell.org/package/io-streams/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) |
