[Pkg-haskell-commits] darcs: haskell-mtlparse: Initial check-in
Joachim Breitner
mail at joachim-breitner.de
Thu May 26 08:17:23 UTC 2011
Thu May 26 08:16:44 UTC 2011 Joachim Breitner <mail at joachim-breitner.de>
* Initial check-in
Ignore-this: 878b371a9d1aa1964119a4c949ecb0d6
A ./changelog
A ./compat
A ./control
A ./copyright
A ./rules
A ./source/
A ./source/format
A ./watch
Thu May 26 08:16:44 UTC 2011 Joachim Breitner <mail at joachim-breitner.de>
* Initial check-in
Ignore-this: 878b371a9d1aa1964119a4c949ecb0d6
diff -rN -u old-haskell-mtlparse//changelog new-haskell-mtlparse//changelog
--- old-haskell-mtlparse//changelog 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//changelog 2011-05-26 08:17:22.913321474 +0000
@@ -0,0 +1,18 @@
+haskell-mtlparse (0.1.1-3) unstable; urgency=low
+
+ * Fix wrong URL in watch file.
+ * Foist maintainership onto the Debian Haskell Group.
+
+ -- Clint Adams <clint at debian.org> Wed, 25 May 2011 21:55:17 -0400
+
+haskell-mtlparse (0.1.1-2) unstable; urgency=low
+
+ * Remove spurious dependency of -dev package.
+
+ -- Clint Adams <clint at debian.org> Tue, 24 May 2011 22:51:51 -0400
+
+haskell-mtlparse (0.1.1-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Clint Adams <clint at debian.org> Mon, 23 May 2011 17:15:06 -0400
diff -rN -u old-haskell-mtlparse//compat new-haskell-mtlparse//compat
--- old-haskell-mtlparse//compat 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//compat 2011-05-26 08:17:22.913321474 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-mtlparse//control new-haskell-mtlparse//control
--- old-haskell-mtlparse//control 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//control 2011-05-26 08:17:22.913321474 +0000
@@ -0,0 +1,59 @@
+Source: haskell-mtlparse
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Build-Depends: debhelper (>= 7)
+ , cdbs
+ , haskell-devscripts (>= 0.8)
+ , ghc
+ , ghc-prof
+ , libghc-mtl-dev
+ , libghc-mtl-prof
+Build-Depends-Indep: ghc-doc
+ , libghc-mtl-doc
+Standards-Version: 3.9.2
+Homepage: http://hackage.haskell.org/package/mtlparse
+Vcs-Git: git://git.debian.org/git/collab-maint/haskell-mtlparse.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/collab-maint/haskell-mtlparse.git
+
+Package: libghc-mtlparse-dev
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${shlibs:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Parser combinators for monad transformation
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This package eases implementation of look-ahead and look-behind.
+
+Package: libghc-mtlparse-prof
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Parser combinators for monad transformation; 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 eases implementation of look-ahead and look-behind.
+
+Package: libghc-mtlparse-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Parser combinators for monad transformation; 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 eases implementation of look-ahead and look-behind.
diff -rN -u old-haskell-mtlparse//copyright new-haskell-mtlparse//copyright
--- old-haskell-mtlparse//copyright 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//copyright 2011-05-26 08:17:22.913321474 +0000
@@ -0,0 +1,19 @@
+This package was debianized by Clint Adams <clint at debian.org> on
+Mon, 23 May 2011 17:07:28 -0000
+
+It was downloaded from
+http://hackage.haskell.org/package/mtlparse
+
+Upstream Author:
+
+ Yoshikuni Jujo <PAF01143 at nifty.ne.jp>
+
+Copyright:
+
+ Author: Yoshikuni Jujo <PAF01143 at nifty.ne.jp>
+
+License:
+
+ LGPLv3 or later
+
+See `/usr/share/common-licenses/LGPL-3'.
diff -rN -u old-haskell-mtlparse//rules new-haskell-mtlparse//rules
--- old-haskell-mtlparse//rules 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//rules 2011-05-26 08:17:22.913321474 +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-mtlparse//source/format new-haskell-mtlparse//source/format
--- old-haskell-mtlparse//source/format 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//source/format 2011-05-26 08:17:22.917295336 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-mtlparse//watch new-haskell-mtlparse//watch
--- old-haskell-mtlparse//watch 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-mtlparse//watch 2011-05-26 08:17:22.917295336 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|mtlparse-$1.tar.gz|" \
+ http://hackage.haskell.org/packages/archive/mtlparse \
+ ([\d\.]*\d)/
More information about the Pkg-haskell-commits
mailing list