[Pkg-haskell-commits] darcs: haskell-strict-concurrency: Initial import

mascellani at poisson.phc.unipi.it mascellani at poisson.phc.unipi.it
Fri Jun 4 10:52:16 UTC 2010


Fri Jun  4 10:48:10 UTC 2010  mascellani at poisson.phc.unipi.it
  * Initial import
  Ignore-this: 233fea122384518b9569ee75489e4fd2

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

Fri Jun  4 10:48:10 UTC 2010  mascellani at poisson.phc.unipi.it
  * Initial import
  Ignore-this: 233fea122384518b9569ee75489e4fd2
diff -rN -u old-haskell-strict-concurrency/changelog new-haskell-strict-concurrency/changelog
--- old-haskell-strict-concurrency/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/changelog	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1,5 @@
+haskell-strict-concurrency (0.2.3-1) UNRELEASED; urgency=low
+
+  * Initial release. (closes: #584286)
+
+ -- Giovanni Mascellani <gio at debian.org>  Thu, 03 Jun 2010 12:24:02 +0200
diff -rN -u old-haskell-strict-concurrency/compat new-haskell-strict-concurrency/compat
--- old-haskell-strict-concurrency/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/compat	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1 @@
+7
\ No newline at end of file
diff -rN -u old-haskell-strict-concurrency/control new-haskell-strict-concurrency/control
--- old-haskell-strict-concurrency/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/control	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1,72 @@
+Source: haskell-strict-concurrency
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Giovanni Mascellani <gio at debian.org>
+Build-Depends:
+ debhelper (>= 7),
+ haskell-devscripts,
+ cdbs,
+ ghc6,
+ ghc6-prof,
+ libghc6-parallel-dev,
+ libghc6-parallel-prof
+Build-Depends-Indep:
+ ghc6-doc,
+ libghc6-parallel-doc
+Standards-Version: 3.8.4
+Homepage: http://hackage.haskell.org/package/strict-concurrency
+Vcs-Darcs: http://darcs.debian.org/darcs/pkg-haskell/haskell-strict-concurrency
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-strict-concurrency
+
+Package: libghc6-strict-concurrency-dev
+Architecture: any
+Depends:
+ ${haskell:Depends},
+ ${misc:Depends},
+ ${shlibs:Depends}
+Suggests: ${haskell:Suggests}
+Recommends: ${haskell:Recommends}
+Provides: ${haskell:Provides}
+Description: Haskell strict concurrency abstractions - GHC 6 libraries
+ This package provides head normal form strict versions of some standard
+ Haskell concurrency abstractions (MVars,Chans), which provide control
+ over where evaluation takes place not offered by the default lazy types.
+ This may be useful for deciding when and where evaluation occurs,
+ leading to improved time or space use, depending on the circumstances.
+ .
+ This package contains the libraries compiled for GHC 6.
+
+Package: libghc6-strict-concurrency-prof
+Architecture: any
+Depends:
+ ${haskell:Depends},
+ ${misc:Depends}
+Suggests: ${haskell:Suggests}
+Recommends: ${haskell:Recommends}
+Provides: ${haskell:Provides}
+Description: Haskell strict concurrency abstractions - GHC 6 profiling libraries
+ This package provides head normal form strict versions of some standard
+ Haskell concurrency abstractions (MVars,Chans), which provide control
+ over where evaluation takes place not offered by the default lazy types.
+ This may be useful for deciding when and where evaluation occurs,
+ leading to improved time or space use, depending on the circumstances.
+ .
+ This package contains the profiling libraries compiled for GHC 6.
+
+Package: libghc6-strict-concurrency-doc
+Section: doc
+Architecture: all
+Depends:
+ ${haskell:Depends},
+ ${misc:Depends}
+Suggests: ${haskell:Suggests}
+Recommends: ${haskell:Recommends}
+Description: Haskell strict concurrency abstractions - documentation
+ This package provides head normal form strict versions of some standard
+ Haskell concurrency abstractions (MVars,Chans), which provide control
+ over where evaluation takes place not offered by the default lazy types.
+ This may be useful for deciding when and where evaluation occurs,
+ leading to improved time or space use, depending on the circumstances.
+ .
+ This package contains the library documentation.
diff -rN -u old-haskell-strict-concurrency/copyright new-haskell-strict-concurrency/copyright
--- old-haskell-strict-concurrency/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/copyright	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1,46 @@
+Format-Specification: http://dep.debian.net/deps/dep5
+Name: Haskell strict concurrency abstractions
+Maintainer: Don Stewart <dons at galois.com>
+Source: http://hackage.haskell.org/package/strict-concurrency
+
+Files: *
+Copyright: © 2007, Don Stewart <dons at galois.com>
+           © 2001, The University of Glasgow
+           © Lennart Kolmodin
+License: BSD
+ 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 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.
+
+Files: debian/*
+Copyright: © 2010 Giovanni Mascellani <gio at debian.org>
+License: GPL-3+
+ The Debian packaging information is under the GPL, version 3 or later.  On
+ Debian GNU/Linux systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
diff -rN -u old-haskell-strict-concurrency/rules new-haskell-strict-concurrency/rules
--- old-haskell-strict-concurrency/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/rules	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1,4 @@
+#!/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-strict-concurrency/source/format new-haskell-strict-concurrency/source/format
--- old-haskell-strict-concurrency/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/source/format	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-strict-concurrency/watch new-haskell-strict-concurrency/watch
--- old-haskell-strict-concurrency/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-strict-concurrency/watch	2010-06-04 10:52:16.474161880 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|strict-concurrency-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/strict-concurrency \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list