[Pkg-haskell-commits] darcs: haskell-bytestring-mmap: Initial Check-In

kiwamu at debian.or.jp kiwamu at debian.or.jp
Thu Dec 29 05:57:17 UTC 2011


Thu Dec 29 05:54:44 UTC 2011  kiwamu at debian.or.jp
  * Initial Check-In
  Ignore-this: 7843d92a3c98c77b26a9d6449690f3b5

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

Thu Dec 29 05:54:44 UTC 2011  kiwamu at debian.or.jp
  * Initial Check-In
  Ignore-this: 7843d92a3c98c77b26a9d6449690f3b5
diff -rN -u old-haskell-bytestring-mmap//changelog new-haskell-bytestring-mmap//changelog
--- old-haskell-bytestring-mmap//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//changelog	2011-12-29 05:57:17.447671681 +0000
@@ -0,0 +1,6 @@
+haskell-bytestring-mmap (0.2.2-1) unstable; urgency=low
+
+  * Debianization generated by cabal-debian
+  * ITP (Closes: #653537)
+
+ -- Kiwamu Okabe <kiwamu at debian.or.jp>  Thu, 29 Dec 2011 14:54:09 +0900
diff -rN -u old-haskell-bytestring-mmap//compat new-haskell-bytestring-mmap//compat
--- old-haskell-bytestring-mmap//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//compat	2011-12-29 05:57:17.447671681 +0000
@@ -0,0 +1 @@
+7
\ No newline at end of file
diff -rN -u old-haskell-bytestring-mmap//control new-haskell-bytestring-mmap//control
--- old-haskell-bytestring-mmap//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//control	2011-12-29 05:57:17.447671681 +0000
@@ -0,0 +1,62 @@
+Source: haskell-bytestring-mmap
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Kiwamu Okabe <kiwamu at debian.or.jp>
+Build-Depends: debhelper (>= 7.0),
+               haskell-devscripts (>= 0.8),
+               cdbs,
+               ghc,
+               ghc-prof
+Build-Depends-Indep: ghc-doc
+Standards-Version: 3.9.2
+Homepage: http://code.haskell.org/~dons/code/bytestring-mmap/
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-bytestring-mmap
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-bytestring-mmap
+DM-Upload-Allowed: yes
+
+Package: libghc-bytestring-mmap-dev
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: mmap support for strict ByteStrings
+ This library provides a wrapper to mmap(2), allowing files or
+ devices to be lazily loaded into memory as strict or lazy
+ ByteStrings, using the virtual memory subsystem to do on-demand
+ loading.
+ .
+ This package contains the normal library files.
+
+Package: libghc-bytestring-mmap-prof
+Architecture: any
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: mmap support for strict ByteStrings; profiling libraries
+ This library provides a wrapper to mmap(2), allowing files or
+ devices to be lazily loaded into memory as strict or lazy
+ ByteStrings, using the virtual memory subsystem to do on-demand
+ loading.
+ .
+ This package contains the libraries compiled with profiling enabled.
+
+Package: libghc-bytestring-mmap-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: mmap support for strict ByteStrings; documentation
+ This library provides a wrapper to mmap(2), allowing files or
+ devices to be lazily loaded into memory as strict or lazy
+ ByteStrings, using the virtual memory subsystem to do on-demand
+ loading.
+ .
+ This package contains the documentation files.
diff -rN -u old-haskell-bytestring-mmap//copyright new-haskell-bytestring-mmap//copyright
--- old-haskell-bytestring-mmap//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//copyright	2011-12-29 05:57:17.447671681 +0000
@@ -0,0 +1,27 @@
+Copyright (c) 2011, Don Stewart
+
+All rights reserved.
+
+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 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.
diff -rN -u old-haskell-bytestring-mmap//rules new-haskell-bytestring-mmap//rules
--- old-haskell-bytestring-mmap//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//rules	2011-12-29 05:57:17.447671681 +0000
@@ -0,0 +1,3 @@
+#!/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-bytestring-mmap//source/format new-haskell-bytestring-mmap//source/format
--- old-haskell-bytestring-mmap//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//source/format	2011-12-29 05:57:17.447671681 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-bytestring-mmap//watch new-haskell-bytestring-mmap//watch
--- old-haskell-bytestring-mmap//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-bytestring-mmap//watch	2011-12-29 05:57:17.451670487 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|bytestring-mmap-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/bytestring-mmap \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list