[Pkg-haskell-commits] darcs: haskell-incremental-parser: Initial Check-In

Clint Adams clint at debian.org
Fri Jan 31 00:10:36 UTC 2014


Fri Jan 31 00:09:24 UTC 2014  Clint Adams <clint at debian.org>
  * Initial Check-In

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

Fri Jan 31 00:09:24 UTC 2014  Clint Adams <clint at debian.org>
  * Initial Check-In
diff -rN -u old-haskell-incremental-parser/changelog new-haskell-incremental-parser/changelog
--- old-haskell-incremental-parser/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/changelog	2014-01-31 00:10:36.515187270 +0000
@@ -0,0 +1,5 @@
+haskell-incremental-parser (0.2.3.2-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Thu, 30 Jan 2014 18:22:48 -0500
diff -rN -u old-haskell-incremental-parser/compat new-haskell-incremental-parser/compat
--- old-haskell-incremental-parser/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/compat	2014-01-31 00:10:36.515187270 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-incremental-parser/control new-haskell-incremental-parser/control
--- old-haskell-incremental-parser/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/control	2014-01-31 00:10:36.515187270 +0000
@@ -0,0 +1,63 @@
+Source: haskell-incremental-parser
+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 (>= 9)
+  , cdbs
+  , haskell-devscripts (>= 0.8.15)
+  , ghc
+  , ghc-prof
+  , libghc-monoid-subclasses-dev (<< 0.4)
+  , libghc-monoid-subclasses-prof
+Build-Depends-Indep: ghc-doc
+  , libghc-monoid-subclasses-doc
+Standards-Version: 3.9.5
+Homepage: http://hackage.haskell.org/package/incremental-parser
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-incremental-parser
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-incremental-parser
+X-Description: generic incremental parsers
+ Incremental parsers can provide partial results from partial input.
+ This parser library is implemented using the concept of Brzozowski
+ derivatives, tweaked and optimized to work with any monoidal input
+ type. Lists, ByteString, and Text are supported out of the box, as
+ well as any other data type for which the monoid-subclasses package
+ defines instances.  If the parser result is also a monoid, the
+ parser can provide it incrementally, before the complete input is
+ parsed.
+
+Package: libghc-incremental-parser-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-incremental-parser-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-incremental-parser-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff -rN -u old-haskell-incremental-parser/copyright new-haskell-incremental-parser/copyright
--- old-haskell-incremental-parser/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/copyright	2014-01-31 00:10:36.515187270 +0000
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: incremental-parser
+Upstream-Contact: Mario Blazevic <blamario at yahoo.com>
+Source: http://hackage.haskell.org/package/incremental-parser
+
+Files: *
+Copyright: 2010-2013 Mario Blazevic
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2014 Clint Adams
+License: GPL-3+
+
+License: GPL-3+
+ See /usr/share/common-licenses/GPL-3
diff -rN -u old-haskell-incremental-parser/rules new-haskell-incremental-parser/rules
--- old-haskell-incremental-parser/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/rules	2014-01-31 00:10:36.519187272 +0000
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+# DEB_ENABLE_TESTS = yes
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-incremental-parser/source/format new-haskell-incremental-parser/source/format
--- old-haskell-incremental-parser/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/source/format	2014-01-31 00:10:36.519187272 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-incremental-parser/watch new-haskell-incremental-parser/watch
--- old-haskell-incremental-parser/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-incremental-parser/watch	2014-01-31 00:10:36.519187272 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/incremental-parser/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))




More information about the Pkg-haskell-commits mailing list