Commit 6f5de4ee authored by Clint Adams's avatar Clint Adams
Browse files

add prettyprinter-convert-ansi-wl-pprint

parent 682f3ca9
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-prettyprinter-convert-ansi-wl-pprint (1.1-1) unstable; urgency=low

  * Initial release.

 -- Clint Adams <clint@debian.org>  Fri, 11 May 2018 23:43:27 -0400
+1 −0
Original line number Diff line number Diff line
9
+80 −0
Original line number Diff line number Diff line
Source: haskell-prettyprinter-convert-ansi-wl-pprint
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Clint Adams <clint@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 9),
 haskell-devscripts (>= 0.8),
 cdbs,
 ghc,
 ghc-prof,
 libghc-ansi-terminal-dev,
 libghc-ansi-terminal-prof,
 libghc-ansi-wl-pprint-dev (>= 0.6.8),
 libghc-ansi-wl-pprint-prof (>= 0.6.8),
 libghc-prettyprinter-dev (>= 1),
 libghc-prettyprinter-prof (>= 1),
 libghc-prettyprinter-ansi-terminal-dev (>= 1.1.1),
 libghc-prettyprinter-ansi-terminal-prof (>= 1.1.1),
 libghc-text-dev (>= 1.2),
 libghc-text-prof (>= 1.2),
 libghc-doctest-dev (>= 0.9),
Build-Depends-Indep: ghc-doc,
 libghc-ansi-terminal-doc,
 libghc-ansi-wl-pprint-doc,
 libghc-prettyprinter-doc,
 libghc-prettyprinter-ansi-terminal-doc,
 libghc-text-doc,
Standards-Version: 4.1.4
Homepage: https://github.com/quchen/prettyprinter
X-Description: convert documents between ansi-wl-pprint and prettyprinter
 This package defines a converter from the old ansi-wl-pprint document
 type to the new prettyprinter one. Its purpose is making packages
 that only generate ansi-wl-pprint data available to the prettyprinter
 ecosystem.
 .
 Note the difference to the prettyprinter-compat-ansi-wl-pprint
 package, which does not convert any data, and instead provides an API
 that mimics ansi-wl-pprint, while secretly being prettyprinter-based
 behind the curtains. This package on the other hand does a proper
 conversion.

Package: libghc-prettyprinter-convert-ansi-wl-pprint-dev
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
 ${shlibs:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-prettyprinter-convert-ansi-wl-pprint-prof
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-prettyprinter-convert-ansi-wl-pprint-doc
Architecture: all
Section: doc
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}
+36 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: prettyprinter-convert-ansi-wl-pprint
Upstream-Contact: David Luposchainsky <dluposchainsky@google.com>
Source: https://hackage.haskell.org/package/prettyprinter-convert-ansi-wl-pprint

Files: *
Copyright: 2008 Daan Leijen
           2008 Max Bolingbroke
	   2016 David Luposchainsky
License: BSD-2-clause

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: BSD-2-clause

License: BSD-2-clause
 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.
+11 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

DEB_ENABLE_TESTS = yes
DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = prettyprinter-convert-ansi-wl-pprint
DEB_DEFAULT_COMPILER = ghc

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk

build-haddock-stamp: export LC_ALL := C.UTF-8
Loading