[Pkg-haskell-commits] darcs: haskell-qrencode: Initial Check-In

Raúl Benencia rul at kalgan.cc
Wed Jan 15 20:50:39 UTC 2014


Wed Jan 15 20:37:36 UTC 2014  Ra[_<U+00FA>_]l Benencia <rul at kalgan.cc>
  * Initial Check-In

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Wed Jan 15 20:37:36 UTC 2014  Raúl Benencia <rul at kalgan.cc>
  * Initial Check-In
diff -rN -u old-haskell-qrencode/changelog new-haskell-qrencode/changelog
--- old-haskell-qrencode/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/changelog	2014-01-15 20:50:39.659900264 +0000
@@ -0,0 +1,5 @@
+haskell-qrencode (1.0.4-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Raúl Benencia <rul at kalgan.cc>  Wed, 15 Jan 2014 17:11:00 -0300
diff -rN -u old-haskell-qrencode/compat new-haskell-qrencode/compat
--- old-haskell-qrencode/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/compat	2014-01-15 20:50:39.659900264 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-qrencode/control new-haskell-qrencode/control
--- old-haskell-qrencode/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/control	2014-01-15 20:50:39.659900264 +0000
@@ -0,0 +1,59 @@
+Source: haskell-qrencode
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Raúl Benencia <rul at kalgan.cc>
+Build-Depends: debhelper (>= 9)
+  , cdbs
+  , haskell-devscripts (>= 0.8.15)
+  , ghc
+  , ghc-prof
+Build-Depends-Indep: ghc-doc
+Standards-Version: 3.9.5
+Homepage: http://hackage.haskell.org/package/haskell-qrencode
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-qrencode
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-qrencode
+X-Description: Haskell bindings for libqrencode
+ Libqrencode is a C library for encoding data in a QR Code symbol, a kind
+ of 2D symbology that can be scanned by handy terminals such as a mobile
+ phone with CCD. The capacity of QR Code is up to 7000 digits or 4000
+ characters, and is highly robust.
+ .
+ This package provides Haskell bindings for libqrencode.
+
+Package: libghc-qrencode-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+  , libqrencode-dev
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-qrencode-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-qrencode-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 -rN -u old-haskell-qrencode/copyright new-haskell-qrencode/copyright
--- old-haskell-qrencode/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/copyright	2014-01-15 20:50:39.659900264 +0000
@@ -0,0 +1,37 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: haskell-qrencode
+Upstream-Contact: James Sanders <jimmyjazz14 at gmail.com>
+Source: http://hackage.haskell.org/package/haskell-qrencode
+
+Files: *
+Copyright: 2010 James Sanders
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2014 Raúl Benencia
+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:
+ 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.
+ 3. None of the names of the copyright holders 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 ``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 HOLDERS 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-qrencode/rules new-haskell-qrencode/rules
--- old-haskell-qrencode/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/rules	2014-01-15 20:50:39.663900264 +0000
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# DEB_ENABLE_TESTS = yes
+
+DEB_CABAL_PACKAGE=qrencode
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-qrencode/source/format new-haskell-qrencode/source/format
--- old-haskell-qrencode/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/source/format	2014-01-15 20:50:39.663900264 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-qrencode/watch new-haskell-qrencode/watch
--- old-haskell-qrencode/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-qrencode/watch	2014-01-15 20:50:39.663900264 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/haskell-qrencode/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))




More information about the Pkg-haskell-commits mailing list