summaryrefslogtreecommitdiff
path: root/p/haskell-ansi-wl-pprint
diff options
context:
space:
mode:
authorkiwamu <kiwamu@debian.or.jp>2011-10-21 10:55:32 +0400
committerkiwamu <kiwamu@debian.or.jp>2011-10-21 10:55:32 +0400
commit2f7cf6ac31c13ddecc2a9e295cd4a9d65e6e2870 (patch)
tree0bd9611d41a2fb9edbde067519370f72ed745dc3 /p/haskell-ansi-wl-pprint
parente86f4fb89e7160cf94af5a58057d1061ceb04c86 (diff)
downloadDHG_packages-2f7cf6ac31c13ddecc2a9e295cd4a9d65e6e2870.tar.gz
haskell-ansi-wl-pprint: Initial Check-In
Diffstat (limited to 'p/haskell-ansi-wl-pprint')
-rw-r--r--p/haskell-ansi-wl-pprint/debian/changelog13
-rw-r--r--p/haskell-ansi-wl-pprint/debian/compat1
-rw-r--r--p/haskell-ansi-wl-pprint/debian/control65
-rw-r--r--p/haskell-ansi-wl-pprint/debian/copyright25
-rwxr-xr-xp/haskell-ansi-wl-pprint/debian/rules3
-rw-r--r--p/haskell-ansi-wl-pprint/debian/watch5
6 files changed, 112 insertions, 0 deletions
diff --git a/p/haskell-ansi-wl-pprint/debian/changelog b/p/haskell-ansi-wl-pprint/debian/changelog
new file mode 100644
index 000000000..1e70c06a3
--- /dev/null
+++ b/p/haskell-ansi-wl-pprint/debian/changelog
@@ -0,0 +1,13 @@
+haskell-ansi-wl-pprint (0.6.3-2) UNRELEASED; urgency=low
+
+ * repo is moved to darcs.
+ * change Vcs-* lines on debian/control.
+ * ITP (Closes: #644376)
+
+ -- Kiwamu Okabe <kiwamu@debian.or.jp> Wed, 12 Oct 2011 22:45:11 +0900
+
+haskell-ansi-wl-pprint (0.6.3-1) UNRELEASED; urgency=low
+
+ * Debianization generated by cabal-debian
+
+ -- Kiwamu Okabe <kiwamu@debian.or.jp> Wed, 05 Oct 2011 11:14:50 +0900
diff --git a/p/haskell-ansi-wl-pprint/debian/compat b/p/haskell-ansi-wl-pprint/debian/compat
new file mode 100644
index 000000000..c7930257d
--- /dev/null
+++ b/p/haskell-ansi-wl-pprint/debian/compat
@@ -0,0 +1 @@
+7 \ No newline at end of file
diff --git a/p/haskell-ansi-wl-pprint/debian/control b/p/haskell-ansi-wl-pprint/debian/control
new file mode 100644
index 000000000..7964004ba
--- /dev/null
+++ b/p/haskell-ansi-wl-pprint/debian/control
@@ -0,0 +1,65 @@
+Source: haskell-ansi-wl-pprint
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
+Uploaders: Kiwamu Okabe <kiwamu@debian.or.jp>
+Build-Depends: debhelper (>= 7.0),
+ haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-ansi-terminal-dev (>= 0.4.0),
+ libghc-ansi-terminal-dev (<< 0.6),
+ libghc-ansi-terminal-prof (>= 0.4.0),
+ libghc-ansi-terminal-prof (<< 0.6)
+Build-Depends-Indep: ghc-doc,
+ libghc-ansi-terminal-doc (>= 0.4.0),
+ libghc-ansi-terminal-doc (<< 0.6)
+Standards-Version: 3.9.2
+Homepage: http://github.com/batterseapower/ansi-wl-pprint
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-ansi-wl-pprint
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-ansi-wl-pprint
+DM-Upload-Allowed: yes
+
+Package: libghc-ansi-wl-pprint-dev
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${haskell:Depends},
+ ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Wadler/Leijen Pretty Printer for colored ANSI terminal output
+ This is a pretty printing library based on Wadler's paper
+ "A Prettier Printer". It has been enhanced with support for ANSI terminal
+ colored output using the ansi-terminal package.
+ .
+ This package contains the normal library files.
+
+Package: libghc-ansi-wl-pprint-prof
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Wadler/Leijen Pretty Printer for colored ANSI terminal output; profiling lib
+ This is a pretty printing library based on Wadler's paper
+ "A Prettier Printer". It has been enhanced with support for ANSI terminal
+ colored output using the ansi-terminal package.
+ .
+ This package contains the libraries compiled with profiling enabled.
+
+Package: libghc-ansi-wl-pprint-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+ ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Wadler/Leijen Pretty Printer for colored ANSI terminal output; documentation
+ This is a pretty printing library based on Wadler's paper
+ "A Prettier Printer". It has been enhanced with support for ANSI terminal
+ colored output using the ansi-terminal package.
+ .
+ This package contains the documentation files.
diff --git a/p/haskell-ansi-wl-pprint/debian/copyright b/p/haskell-ansi-wl-pprint/debian/copyright
new file mode 100644
index 000000000..2764d7a3f
--- /dev/null
+++ b/p/haskell-ansi-wl-pprint/debian/copyright
@@ -0,0 +1,25 @@
+Copyright 2008, Daan Leijen and Max Bolingbroke. 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.
+
+This software is provided by the copyright holders "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 copyright holders 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 --git a/p/haskell-ansi-wl-pprint/debian/rules b/p/haskell-ansi-wl-pprint/debian/rules
new file mode 100755
index 000000000..4f5b8e442
--- /dev/null
+++ b/p/haskell-ansi-wl-pprint/debian/rules
@@ -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 --git a/p/haskell-ansi-wl-pprint/debian/watch b/p/haskell-ansi-wl-pprint/debian/watch
new file mode 100644
index 000000000..890211c5f
--- /dev/null
+++ b/p/haskell-ansi-wl-pprint/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|ansi-wl-pprint-$1.tar.gz|" \
+ http://hackage.haskell.org/packages/archive/ansi-wl-pprint \
+ ([\d\.]*\d)/