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

add prettyprinter-ansi-terminal

parent 6778c3ea
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-prettyprinter-ansi-terminal (1.1.1.2-1) unstable; urgency=low

  * Initial release.

 -- Clint Adams <clint@debian.org>  Sat, 28 Apr 2018 19:29:05 -0400
+1 −0
Original line number Diff line number Diff line
9
+67 −0
Original line number Diff line number Diff line
Source: haskell-prettyprinter-ansi-terminal
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 (>= 0.4.0),
 libghc-ansi-terminal-prof (>= 0.4.0),
 libghc-prettyprinter-dev (>= 1.1.1),
 libghc-prettyprinter-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-prettyprinter-doc,
 libghc-text-doc,
Standards-Version: 4.1.4
Homepage: http://github.com/quchen/prettyprinter
X-Description: ANSI terminal backend for prettyprinter
 This package defines a renderer for documents generated by the
 prettyprinter package, suitable for displaying them on ANSI-compatible
 terminals, including colors, boldening, underlining and italication.

Package: libghc-prettyprinter-ansi-terminal-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-ansi-terminal-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-ansi-terminal-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-ansi-terminal
Upstream-Contact: David Luposchainsky <dluposchainsky@google.com>
Source: https://hackage.haskell.org/package/prettyprinter-ansi-terminal

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-ansi-terminal
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