[Pkg-haskell-commits] darcs: haskell-quickcheck-unicode: Initial check-in
Joachim Breitner
mail at joachim-breitner.de
Fri Apr 17 09:19:42 UTC 2015
Fri Apr 17 09:19:30 UTC 2015 Joachim Breitner <mail at joachim-breitner.de>
* Initial check-in
A ./changelog
A ./compat
A ./control
A ./copyright
A ./rules
A ./source/
A ./source/format
A ./watch
Fri Apr 17 09:19:30 UTC 2015 Joachim Breitner <mail at joachim-breitner.de>
* Initial check-in
diff -rN -u old-haskell-quickcheck-unicode/changelog new-haskell-quickcheck-unicode/changelog
--- old-haskell-quickcheck-unicode/changelog 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/changelog 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1,5 @@
+haskell-quickcheck-unicode (1.0.0.1-1) UNRELEASED; urgency=low
+
+ * Initial release
+
+ -- Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org> Fri, 17 Apr 2015 11:18:13 +0200
diff -rN -u old-haskell-quickcheck-unicode/compat new-haskell-quickcheck-unicode/compat
--- old-haskell-quickcheck-unicode/compat 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/compat 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-quickcheck-unicode/control new-haskell-quickcheck-unicode/control
--- old-haskell-quickcheck-unicode/control 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/control 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1,63 @@
+Source: haskell-quickcheck-unicode
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Joachim Breitner <nomeata at debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 9),
+ haskell-devscripts (>= 0.9),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-quickcheck2-dev (>= 2.7),
+ libghc-quickcheck2-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-quickcheck2-doc,
+Standards-Version: 3.9.6
+Homepage: https://github.com/bos/quickcheck-unicode
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-quickcheck-unicode
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-quickcheck-unicode
+X-Description: Generator and shrink functions for testing Unicode-related software.
+ The default Arbitrary instance for the Char type intentionally generates only
+ ASCII values. This can lead to a false sense of security in cases where
+ Unicode compliance is required, as encodings that span multiple bytes or code
+ units will simply not be exercised at all.
+
+Package: libghc-quickcheck-unicode-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-quickcheck-unicode-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-quickcheck-unicode-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 -rN -u old-haskell-quickcheck-unicode/copyright new-haskell-quickcheck-unicode/copyright
--- old-haskell-quickcheck-unicode/copyright 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/copyright 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1,39 @@
+Just Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: quickcheck-unicode
+Upstream-Contact: Bryan O'Sullivan <bos at serpentine.com>
+Source: https://hackage.haskell.org/package/quickcheck-unicode
+
+Files: *
+Copyright: 2014 Bryan O'Sullivan
+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.
+ .
+ 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 -rN -u old-haskell-quickcheck-unicode/rules new-haskell-quickcheck-unicode/rules
--- old-haskell-quickcheck-unicode/rules 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/rules 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+DEB_CABAL_PACKAGE = quickcheck-unicode
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-quickcheck-unicode/source/format new-haskell-quickcheck-unicode/source/format
--- old-haskell-quickcheck-unicode/source/format 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/source/format 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-quickcheck-unicode/watch new-haskell-quickcheck-unicode/watch
--- old-haskell-quickcheck-unicode/watch 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-quickcheck-unicode/watch 2015-04-17 09:19:42.210986052 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/quickcheck-unicode/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
More information about the Pkg-haskell-commits
mailing list