[Pkg-haskell-commits] darcs: haskell-cipher-aes128: Initial check-in

Joachim Breitner mail at joachim-breitner.de
Sun Dec 21 17:39:52 UTC 2014


Sun Dec 21 17:36:18 UTC 2014  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

Sun Dec 21 17:36:18 UTC 2014  Joachim Breitner <mail at joachim-breitner.de>
  * Initial check-in
diff -rN -u old-haskell-cipher-aes128/changelog new-haskell-cipher-aes128/changelog
--- old-haskell-cipher-aes128/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/changelog	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1,5 @@
+haskell-cipher-aes128 (0.6.4-1) UNRELEASED; urgency=low
+
+  * Debianization generated by cabal-debian
+
+ -- Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>  Sun, 21 Dec 2014 18:20:15 +0100
diff -rN -u old-haskell-cipher-aes128/compat new-haskell-cipher-aes128/compat
--- old-haskell-cipher-aes128/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/compat	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-cipher-aes128/control new-haskell-cipher-aes128/control
--- old-haskell-cipher-aes128/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/control	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1,69 @@
+Source: haskell-cipher-aes128
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 7.0),
+ haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-cereal-dev,
+ libghc-cereal-prof,
+ libghc-crypto-api-dev (>= 0.13),
+ libghc-crypto-api-prof,
+ libghc-tagged-dev,
+ libghc-tagged-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-cereal-doc,
+ libghc-crypto-api-doc,
+ libghc-tagged-doc,
+Standards-Version: 3.9.5
+Homepage: http://hackage.haskell.org/package/cipher-aes128
+X-Description: AES and common modes using AES-NI when available.
+ Cipher-aes128 is an implementation of AES and common modes of operation.  It borrows Hanquez's C AES code (see 'cipher-aes') but
+ is unique due to including compile-time detection of
+ NI compiler support, a slightly more functional interface
+ for GCM operations, exposure of 'Ptr' based operations via the .Internal module, and build-in crypto-api support.
+ Cipher-aes128 was originally developed as "'cipher-aes' plus trampolines", which has since been adopted into cipher-aes.
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-cipher-aes128
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-cipher-aes128
+
+Package: libghc-cipher-aes128-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-cipher-aes128-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-cipher-aes128-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-cipher-aes128/copyright new-haskell-cipher-aes128/copyright
--- old-haskell-cipher-aes128/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/copyright	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: Thomas M. DuBuisson
+ 2006-2013 Vincent Hanquez <vincent at snarc.org>
+License: BSD3
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD3
+
+License: BSD3
+ 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. Neither the name of the author nor the names of his contributors
+   may be used to endorse or promote products derived from this software
+   without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE 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 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.
diff -rN -u old-haskell-cipher-aes128/rules new-haskell-cipher-aes128/rules
--- old-haskell-cipher-aes128/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/rules	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
+
diff -rN -u old-haskell-cipher-aes128/source/format new-haskell-cipher-aes128/source/format
--- old-haskell-cipher-aes128/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/source/format	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-cipher-aes128/watch new-haskell-cipher-aes128/watch
--- old-haskell-cipher-aes128/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-cipher-aes128/watch	2014-12-21 17:39:52.015891788 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/cipher-aes128/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))




More information about the Pkg-haskell-commits mailing list