[Pkg-haskell-commits] darcs: haskell-yesod-markdown: Initial Check-In

Clint Adams clint at debian.org
Fri Mar 16 17:08:34 UTC 2012


Fri Mar 16 17:08:18 UTC 2012  Clint Adams <clint at debian.org>
  * Initial Check-In
  Ignore-this: 3a71f5776c8daa90b4635c510a0a8967

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

Fri Mar 16 17:08:18 UTC 2012  Clint Adams <clint at debian.org>
  * Initial Check-In
  Ignore-this: 3a71f5776c8daa90b4635c510a0a8967
diff -rN -u old-haskell-yesod-markdown//changelog new-haskell-yesod-markdown//changelog
--- old-haskell-yesod-markdown//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//changelog	2012-03-16 17:08:34.458255759 +0000
@@ -0,0 +1,5 @@
+haskell-yesod-markdown (0.3.3-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Fri, 16 Mar 2012 12:52:51 -0400
diff -rN -u old-haskell-yesod-markdown//compat new-haskell-yesod-markdown//compat
--- old-haskell-yesod-markdown//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//compat	2012-03-16 17:08:34.458255759 +0000
@@ -0,0 +1 @@
+7
\ No newline at end of file
diff -rN -u old-haskell-yesod-markdown//control new-haskell-yesod-markdown//control
--- old-haskell-yesod-markdown//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//control	2012-03-16 17:08:34.458255759 +0000
@@ -0,0 +1,85 @@
+Source: haskell-yesod-markdown
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Build-Depends: debhelper (>= 7.0)
+ , haskell-devscripts (>= 0.8)
+ , cdbs
+ , ghc
+ , ghc-prof
+ , libghc-blaze-html-dev (>> 0.4)
+ , libghc-blaze-html-dev (<< 0.5)
+ , libghc-blaze-html-prof
+ , libghc-hamlet-dev
+ , libghc-hamlet-prof
+ , libghc-pandoc-dev (>> 1.9)
+ , libghc-pandoc-dev (<< 1.10)
+ , libghc-pandoc-prof
+ , libghc-persistent-dev
+ , libghc-persistent-prof
+ , libghc-text-dev (>> 0.11)
+ , libghc-text-dev (<< 0.12)
+ , libghc-text-prof
+ , libghc-xss-sanitize-dev (>> 0.3.1)
+ , libghc-xss-sanitize-dev (<< 0.4)
+ , libghc-xss-sanitize-prof
+ , libghc-yesod-core-dev (>> 0.10)
+ , libghc-yesod-core-dev (<< 0.11)
+ , libghc-yesod-core-prof
+ , libghc-yesod-form-dev (>> 0.4)
+ , libghc-yesod-form-dev (<< 0.5)
+ , libghc-yesod-form-prof
+Build-Depends-Indep: ghc-doc
+ , libghc-blaze-html-doc
+ , libghc-hamlet-doc
+ , libghc-pandoc-doc
+ , libghc-persistent-doc
+ , libghc-text-doc
+ , libghc-xss-sanitize-doc
+ , libghc-yesod-core-doc
+ , libghc-yesod-form-doc
+Standards-Version: 3.9.3
+Homepage: http://hackage.haskell.org/package/yesod-markdown
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-yesod-markdown
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-yesod-markdown
+
+Package: libghc-yesod-markdown-dev
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: tools for using Markdown in a Yesod application
+ yesod-markdown provides a subset of Pandoc functionality useful for Markdown
+ processing in Yesod applications.
+ .
+ This package contains the normal library files.
+
+Package: libghc-yesod-markdown-prof
+Architecture: any
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: tools for using Markdown in a Yesod application; profiling libraries
+ yesod-markdown provides a subset of Pandoc functionality useful for Markdown
+ processing in Yesod applications.
+ .
+ This package contains the libraries compiled with profiling enabled.
+
+Package: libghc-yesod-markdown-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+         ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: tools for using Markdown in a Yesod application; documentation
+ yesod-markdown provides a subset of Pandoc functionality useful for Markdown
+ processing in Yesod applications.
+ .
+ This package contains the documentation files.
diff -rN -u old-haskell-yesod-markdown//copyright new-haskell-yesod-markdown//copyright
--- old-haskell-yesod-markdown//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//copyright	2012-03-16 17:08:34.458255759 +0000
@@ -0,0 +1,5 @@
+This software is by Alexander Dunlap and Patrick Brisbin.
+
+and released under the GNU GPL v2 or later.
+You can find the complete text of the GPL
+on your Debian system in /usr/share/common-licenses/GPL-2.
diff -rN -u old-haskell-yesod-markdown//rules new-haskell-yesod-markdown//rules
--- old-haskell-yesod-markdown//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//rules	2012-03-16 17:08:34.462251926 +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-yesod-markdown//source/format new-haskell-yesod-markdown//source/format
--- old-haskell-yesod-markdown//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//source/format	2012-03-16 17:08:34.462251926 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-yesod-markdown//watch new-haskell-yesod-markdown//watch
--- old-haskell-yesod-markdown//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yesod-markdown//watch	2012-03-16 17:08:34.462251926 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|yesod-markdown-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/yesod-markdown \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list