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

kiwamu at debian.or.jp kiwamu at debian.or.jp
Wed Dec 28 13:49:28 UTC 2011


Wed Dec 28 13:45:42 UTC 2011  kiwamu at debian.or.jp
  * Initial Check-In
  Ignore-this: 192c4b2cdb2a03181e30bb9fdae7221f

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

Wed Dec 28 13:45:42 UTC 2011  kiwamu at debian.or.jp
  * Initial Check-In
  Ignore-this: 192c4b2cdb2a03181e30bb9fdae7221f
diff -rN -u old-haskell-psqueue//changelog new-haskell-psqueue//changelog
--- old-haskell-psqueue//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//changelog	2011-12-28 13:49:28.411669741 +0000
@@ -0,0 +1,6 @@
+haskell-psqueue (1.1-1) UNRELEASED; urgency=low
+
+  * Debianization generated by cabal-debian
+
+ -- Kiwamu Okabe <kiwamu at debian.or.jp>  Wed, 28 Dec 2011 22:33:56 +0900
+
diff -rN -u old-haskell-psqueue//compat new-haskell-psqueue//compat
--- old-haskell-psqueue//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//compat	2011-12-28 13:49:28.411669741 +0000
@@ -0,0 +1 @@
+7
\ No newline at end of file
diff -rN -u old-haskell-psqueue//control new-haskell-psqueue//control
--- old-haskell-psqueue//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//control	2011-12-28 13:49:28.415670383 +0000
@@ -0,0 +1,71 @@
+Source: haskell-psqueue
+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://hackage.haskell.org/package/PSQueue
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-psqueue
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-psqueue
+DM-Upload-Allowed: yes
+
+Package: libghc-psqueue-dev
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Priority Search Queue
+ A /priority search queue/ efficiently supports the
+ opperations of both a search tree and a priority queue. A
+ 'Binding' is a product of a key and a priority.  Bindings
+ can be inserted, deleted, modified and queried in
+ logarithmic time, and the binding with the least priority
+ can be retrieved in constant time.  A queue can be built
+ from a list of bindings, sorted by keys, in linear time.
+ .
+ This package contains the normal library files.
+
+Package: libghc-psqueue-prof
+Architecture: any
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Priority Search Queue; profiling libraries
+ A /priority search queue/ efficiently supports the
+ opperations of both a search tree and a priority queue. A
+ 'Binding' is a product of a key and a priority.  Bindings
+ can be inserted, deleted, modified and queried in
+ logarithmic time, and the binding with the least priority
+ can be retrieved in constant time.  A queue can be built
+ from a list of bindings, sorted by keys, in linear time.
+ .
+ This package contains the libraries compiled with profiling enabled.
+
+Package: libghc-psqueue-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Priority Search Queue; documentation
+ A /priority search queue/ efficiently supports the
+ opperations of both a search tree and a priority queue. A
+ 'Binding' is a product of a key and a priority.  Bindings
+ can be inserted, deleted, modified and queried in
+ logarithmic time, and the binding with the least priority
+ can be retrieved in constant time.  A queue can be built
+ from a list of bindings, sorted by keys, in linear time.
+ .
+ This package contains the documentation files.
diff -rN -u old-haskell-psqueue//copyright new-haskell-psqueue//copyright
--- old-haskell-psqueue//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//copyright	2011-12-28 13:49:28.415670383 +0000
@@ -0,0 +1,24 @@
+Copyright (c) 2008, Ralf Hinze
+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.
+    * The names of the contributors may not be used to endorse or promote products
+      derived from this software without specific prior written permission.
+
+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-psqueue//rules new-haskell-psqueue//rules
--- old-haskell-psqueue//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//rules	2011-12-28 13:49:28.415670383 +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-psqueue//source/format new-haskell-psqueue//source/format
--- old-haskell-psqueue//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//source/format	2011-12-28 13:49:28.415670383 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-psqueue//watch new-haskell-psqueue//watch
--- old-haskell-psqueue//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-psqueue//watch	2011-12-28 13:49:28.415670383 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|PSQueue-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/PSQueue \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list