[Pkg-haskell-commits] darcs: pretty-show: Initial commit.

Erik de Castro Lopo erikd at mega-nerd.com
Sat Jul 24 11:50:25 UTC 2010


Sat Jul 24 11:49:57 UTC 2010  Erik de Castro Lopo <erikd at mega-nerd.com>
  * Initial commit.
  Ignore-this: 4f72e0e09bd7ec5748d3151c359eefa7

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./ppsh.1
    A ./ppsh.install
    A ./ppsh.manpages
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Sat Jul 24 11:49:57 UTC 2010  Erik de Castro Lopo <erikd at mega-nerd.com>
  * Initial commit.
  Ignore-this: 4f72e0e09bd7ec5748d3151c359eefa7
diff -rN -u old-pretty-show/changelog new-pretty-show/changelog
--- old-pretty-show/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/changelog	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1,6 @@
+haskell-pretty-show (1.1.1-1) unstable; urgency=low
+
+  * Initial debian package. (Closes: #590042)
+
+ -- Erik de Castro Lopo <erikd at mega-nerd.com>  Sat, 24 Jul 2010 21:45:32 +1000
+
diff -rN -u old-pretty-show/compat new-pretty-show/compat
--- old-pretty-show/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/compat	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-pretty-show/control new-pretty-show/control
--- old-pretty-show/control	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/control	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1,72 @@
+Source: haskell-pretty-show
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Erik de Castro Lopo <erikd at mega-nerd.com>
+Build-Depends: debhelper (>= 7)
+  , cdbs
+  , haskell-devscripts (>= 0.7)
+  , ghc6
+  , ghc6-prof
+  , libghc6-haskell-lexer-dev
+  , libghc6-haskell-lexer-prof
+  , libghc6-haskell-lexer-doc
+Build-Depends-Indep: ghc6-doc
+Standards-Version: 3.9.0
+Homepage: http://hackage.haskell.org/package/pretty-show
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-pretty-show
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-pretty-show
+
+Package: ppsh
+Architecture: any
+Depends: ${shlibs:Depends}
+  , ${misc:Depends}
+Description: Program to parse and pretty print arbitrary Haskell Show output
+ The ppsh program takes the output of an arbitrary Haskell Show output on
+ stdin and pretty prints it to stdout. It uses the library provided in the
+ libghc6-pretty-show-dev package to parse the input and pretty print the
+ output.
+
+Package: libghc6-pretty-show-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: A Haskell library for pretty printing data structures
+ A library that can parse derived Show instances into a generic data structure
+ which can then be pretty printed. For complex data structures, the pretty
+ printed version is significantly more readable that the standard Show output.
+ .
+ This package contains the libraries compiled for GHC 6.
+
+Package: libghc6-pretty-show-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Profiling libraries for pretty printing Haskell data structures
+ A library that can parse derived Show instances into a generic data structure
+ which can then be pretty printed. For complex data structures, the pretty
+ printed version is significantly more readable that the standard Show output.
+ .
+ This package contains the profiling libraries compiled for GHC 6.
+
+Package: libghc6-pretty-show-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Documentation for Haskell pretty printing library
+ A library that can parse derived Show instances into a generic data structure
+ which can then be pretty printed. For complex data structures, the pretty
+ printed version is significantly more readable that the standard Show output.
+ .
+ This package contains the library documentation.
+
diff -rN -u old-pretty-show/copyright new-pretty-show/copyright
--- old-pretty-show/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/copyright	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1,24 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: pretty-show
+Maintainer: copyright
+Source: http://hackage.haskell.org/package/pretty-show
+
+Copyright: Copyright (c) 2008 Iavor S. Diatchki
+License: BSD3 style
+  Permission is hereby granted, free of charge, to any person obtaining a copy of
+  this software and associated documentation files (the "Software"), to deal in
+  the Software without restriction, including without limitation the rights to
+  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+  of the Software, and to permit persons to whom the Software is furnished to do
+  so, subject to the following conditions:
+
+  The above copyright notice and this permission notice shall be included in all
+  copies or substantial portions of the Software.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+  SOFTWARE.
diff -rN -u old-pretty-show/ppsh.1 new-pretty-show/ppsh.1
--- old-pretty-show/ppsh.1	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/ppsh.1	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1,16 @@
+.TH PPSH 1 "July 23, 2010"
+.SH NAME
+ppsh \- Parse and pretty print arbitrary Haskell Show output
+.SH SYNOPSIS
+.B ppsh
+
+.SH DESCRIPTION
+The ppsh program takes the output of an arbitrary Haskell Show output on
+stdin and pretty prints it to stdout. It uses the library provided in the
+libghc6-pretty-show-dev package to parse the input and pretty print the
+output.
+
+.SH AUTHOR
+This manual page was written by Erik de Castro Lopo <erikd at mega-nerd.com>
+and is released under the same license as the pretty-show package.
+
diff -rN -u old-pretty-show/ppsh.install new-pretty-show/ppsh.install
--- old-pretty-show/ppsh.install	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/ppsh.install	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1 @@
+dist-ghc6/build/ppsh/ppsh	usr/bin
diff -rN -u old-pretty-show/ppsh.manpages new-pretty-show/ppsh.manpages
--- old-pretty-show/ppsh.manpages	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/ppsh.manpages	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1,2 @@
+debian/ppsh.1
+
diff -rN -u old-pretty-show/rules new-pretty-show/rules
--- old-pretty-show/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/rules	2010-07-24 11:50:25.728577023 +0000
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+DEB_BUILD_DEPENDENCIES = build-arch
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-pretty-show/source/format new-pretty-show/source/format
--- old-pretty-show/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/source/format	2010-07-24 11:50:25.724576810 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-pretty-show/watch new-pretty-show/watch
--- old-pretty-show/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-pretty-show/watch	2010-07-24 11:50:25.724576810 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|pretty-show-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/pretty-show \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list