[Pkg-haskell-commits] darcs: haskell-primitive: Initial version.

Marco Túlio Gontijo e Silva marcot at debian.org
Fri May 21 00:23:05 UTC 2010


Fri May 21 00:16:43 UTC 2010  Marco T[_\c3_][_\ba_]lio Gontijo e Silva <marcot at debian.org>
  * Initial version.
  Ignore-this: eb007012918ab1d8e831067d523025cf

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

Fri May 21 00:16:43 UTC 2010  Marco Túlio Gontijo e Silva <marcot at debian.org>
  * Initial version.
  Ignore-this: eb007012918ab1d8e831067d523025cf
diff -rN -u old-haskell-primitive/changelog new-haskell-primitive/changelog
--- old-haskell-primitive/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/changelog	2010-05-21 00:23:05.321870843 +0000
@@ -0,0 +1,5 @@
+haskell-primitive (0.3-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #582470)
+
+ -- Marco Túlio Gontijo e Silva <marcot at debian.org>  Thu, 20 May 2010 21:11:18 -0300
diff -rN -u old-haskell-primitive/compat new-haskell-primitive/compat
--- old-haskell-primitive/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/compat	2010-05-21 00:23:05.313870418 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-primitive/control new-haskell-primitive/control
--- old-haskell-primitive/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/control	2010-05-21 00:23:05.309870206 +0000
@@ -0,0 +1,58 @@
+Source: haskell-primitive
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Marco Túlio Gontijo e Silva <marcot at debian.org>
+Build-Depends: debhelper (>= 7)
+  , cdbs
+  , haskell-devscripts (>= 0.7)
+  , ghc6
+  , ghc6-prof
+Build-Depends-Indep: ghc6-doc
+Standards-Version: 3.8.4
+Homepage: http://code.haskell.org/primitive
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-primitive
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-primitive
+
+Package: libghc6-primitive-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Wrappers for primitive operations
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This package contains Haskell bindings for the functions and data structures
+ defined in the primitive C library.
+
+Package: libghc6-primitive-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Wrappers for primitive operations; profiling libraries
+ This package provides a library for the Haskell programming language,
+ compiled for profiling.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This package provides wrappers for primitive array operations from GHC.Prim.
+
+Package: libghc6-primitive-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Wrappers for primitive operations; documentation
+ This package provides the documentation for a library for the Haskell
+ programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This package provides wrappers for primitive array operations from GHC.Prim.
diff -rN -u old-haskell-primitive/copyright new-haskell-primitive/copyright
--- old-haskell-primitive/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/copyright	2010-05-21 00:23:05.309870206 +0000
@@ -0,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: primitive
+Maintainer: Roman Leshchinskiy <rl at cse.unsw.edu.au>
+Source: http://hackage.haskell.org/packages/archive/primitive/0.3/primitive-0.3.tar.gz
+
+Copyright: 2009-2010, Roman Leshchinskiy
+License: BSD3
+ Copyright (c) 2008-2009, Roman Leshchinskiy
+ 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.
+
+ - Neither name of the University nor the names of its contributors may be
+ used to endorse or promote products derived from this software without
+ specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY COURT OF THE UNIVERSITY OF
+ GLASGOW AND 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
+ UNIVERSITY COURT OF THE UNIVERSITY OF GLASGOW OR THE 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-primitive/rules new-haskell-primitive/rules
--- old-haskell-primitive/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/rules	2010-05-21 00:23:05.309870206 +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-primitive/source/format new-haskell-primitive/source/format
--- old-haskell-primitive/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/source/format	2010-05-21 00:23:05.309870206 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-primitive/watch new-haskell-primitive/watch
--- old-haskell-primitive/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-primitive/watch	2010-05-21 00:23:05.309870206 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|primitive-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/primitive \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list