From 1ce80d4a4c68c755d3b772d5daef3ef5877a30ea Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Thu, 13 Aug 2015 13:48:15 +0200 Subject: log-domain: 0.10.2 --- p/haskell-log-domain/debian/changelog | 5 ++ p/haskell-log-domain/debian/compat | 1 + p/haskell-log-domain/debian/control | 95 ++++++++++++++++++++++ p/haskell-log-domain/debian/copyright | 56 +++++++++++++ .../debian/patches/fix-doctests.diff | 16 ++++ p/haskell-log-domain/debian/patches/series | 1 + p/haskell-log-domain/debian/rules | 6 ++ p/haskell-log-domain/debian/source/format | 1 + p/haskell-log-domain/debian/watch | 2 + 9 files changed, 183 insertions(+) create mode 100644 p/haskell-log-domain/debian/changelog create mode 100644 p/haskell-log-domain/debian/compat create mode 100644 p/haskell-log-domain/debian/control create mode 100644 p/haskell-log-domain/debian/copyright create mode 100644 p/haskell-log-domain/debian/patches/fix-doctests.diff create mode 100644 p/haskell-log-domain/debian/patches/series create mode 100755 p/haskell-log-domain/debian/rules create mode 100644 p/haskell-log-domain/debian/source/format create mode 100644 p/haskell-log-domain/debian/watch (limited to 'p') diff --git a/p/haskell-log-domain/debian/changelog b/p/haskell-log-domain/debian/changelog new file mode 100644 index 000000000..5b0598779 --- /dev/null +++ b/p/haskell-log-domain/debian/changelog @@ -0,0 +1,5 @@ +haskell-log-domain (0.10.2-1) unstable; urgency=low + + * Initial release. + + -- Clint Adams Thu, 13 Aug 2015 13:28:26 +0200 diff --git a/p/haskell-log-domain/debian/compat b/p/haskell-log-domain/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/p/haskell-log-domain/debian/compat @@ -0,0 +1 @@ +9 diff --git a/p/haskell-log-domain/debian/control b/p/haskell-log-domain/debian/control new file mode 100644 index 000000000..c88b7f7e8 --- /dev/null +++ b/p/haskell-log-domain/debian/control @@ -0,0 +1,95 @@ +Source: haskell-log-domain +Section: haskell +Priority: extra +Maintainer: Debian Haskell Group +Uploaders: Clint Adams +Build-Depends: debhelper (>= 9) + , cdbs + , haskell-devscripts (>= 0.8.15) + , ghc + , ghc-prof + , libghc-bytes-dev (>= 0.7) + , libghc-bytes-dev (<< 1) + , libghc-bytes-prof + , libghc-cereal-dev (>= 0.3.5) + , libghc-cereal-dev (<< 0.5) + , libghc-cereal-prof + , libghc-comonad-dev (>= 4) + , libghc-comonad-dev (<< 5) + , libghc-comonad-prof + , libghc-distributive-dev (>= 0.3) + , libghc-distributive-dev (<< 1) + , libghc-distributive-prof + , libghc-generic-deriving-dev (>= 1.4) + , libghc-generic-deriving-dev (<< 1.9) + , libghc-generic-deriving-prof + , libghc-hashable-dev (>= 1.1.2.3) + , libghc-hashable-dev (<< 1.3) + , libghc-hashable-prof + , libghc-hashable-extras-dev (>= 0.2) + , libghc-hashable-extras-dev (<< 1) + , libghc-hashable-extras-prof + , libghc-safecopy-dev (>= 0.8.1) + , libghc-safecopy-dev (<< 0.9) + , libghc-safecopy-prof + , libghc-semigroupoids-dev (>= 0.8.4) + , libghc-semigroupoids-dev (<< 1) + , libghc-semigroupoids-prof + , libghc-vector-dev (>= 0.9) + , libghc-vector-dev (<< 0.11) + , libghc-vector-prof + , libghc-doctest-dev (>= 0.9.1) + , libghc-simple-reflect-dev (>= 0.3.1) +Build-Depends-Indep: ghc-doc + , libghc-bytes-doc + , libghc-cereal-doc + , libghc-comonad-doc + , libghc-distributive-doc + , libghc-generic-deriving-doc + , libghc-hashable-doc + , libghc-hashable-extras-doc + , libghc-safecopy-doc + , libghc-semigroupoids-doc + , libghc-vector-doc +Standards-Version: 3.9.6 +Homepage: http://hackage.haskell.org/package/log-domain +Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-log-domain +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-log-domain +X-Description: Log-domain arithmetic + This package provides log-domain floats, doubles and complex numbers. + +Package: libghc-log-domain-dev +Architecture: any +Depends: ${haskell:Depends} + , ${shlibs:Depends} + , ${misc:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Provides: ${haskell:Provides} +Description: ${haskell:ShortDescription}${haskell:ShortBlurb} + ${haskell:LongDescription} + . + ${haskell:Blurb} + +Package: libghc-log-domain-prof +Architecture: any +Depends: ${haskell:Depends} + , ${misc:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Provides: ${haskell:Provides} +Description: ${haskell:ShortDescription}${haskell:ShortBlurb} + ${haskell:LongDescription} + . + ${haskell:Blurb} + +Package: libghc-log-domain-doc +Section: doc +Architecture: all +Depends: ${misc:Depends}, ${haskell:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Description: ${haskell:ShortDescription}${haskell:ShortBlurb} + ${haskell:LongDescription} + . + ${haskell:Blurb} diff --git a/p/haskell-log-domain/debian/copyright b/p/haskell-log-domain/debian/copyright new file mode 100644 index 000000000..3cb4145a1 --- /dev/null +++ b/p/haskell-log-domain/debian/copyright @@ -0,0 +1,56 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: log-domain +Upstream-Contact: Edward A. Kmett +Source: http://hackage.haskell.org/package/log-domain + +Files: * +Copyright: 2011-2015 Edward Kmett +License: BSD-2-clause + +Files: debian/* +Copyright: 2015 Clint Adams +License: Expat + +License: BSD-2-clause + 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. + +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-log-domain/debian/patches/fix-doctests.diff b/p/haskell-log-domain/debian/patches/fix-doctests.diff new file mode 100644 index 000000000..214b698db --- /dev/null +++ b/p/haskell-log-domain/debian/patches/fix-doctests.diff @@ -0,0 +1,16 @@ +Index: log-domain-0.10.2/tests/doctests.hsc +=================================================================== +--- log-domain-0.10.2.orig/tests/doctests.hsc ++++ log-domain-0.10.2/tests/doctests.hsc +@@ -54,9 +54,9 @@ withUnicode m = m + main :: IO () + main = withUnicode $ getSources >>= \sources -> doctest $ + "-isrc" +- : "-idist/build/autogen" ++ : "-idist-ghc/build/autogen" + : "-optP-include" +- : "-optPdist/build/autogen/cabal_macros.h" ++ : "-optPdist-ghc/build/autogen/cabal_macros.h" + : "-hide-all-packages" + : "-Iincludes" + : map ("-package="++) deps ++ sources diff --git a/p/haskell-log-domain/debian/patches/series b/p/haskell-log-domain/debian/patches/series new file mode 100644 index 000000000..7bd1f898d --- /dev/null +++ b/p/haskell-log-domain/debian/patches/series @@ -0,0 +1 @@ +fix-doctests.diff diff --git a/p/haskell-log-domain/debian/rules b/p/haskell-log-domain/debian/rules new file mode 100755 index 000000000..01f1aaf04 --- /dev/null +++ b/p/haskell-log-domain/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +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-log-domain/debian/source/format b/p/haskell-log-domain/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-log-domain/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-log-domain/debian/watch b/p/haskell-log-domain/debian/watch new file mode 100644 index 000000000..d29476b3b --- /dev/null +++ b/p/haskell-log-domain/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://hackage.haskell.org/package/log-domain/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- cgit v1.2.3