Commit 4773097e authored by Clint Adams's avatar Clint Adams
Browse files

add xml-html-qq

parent c253a875
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-xml-html-qq (0.1.0.1-1) unstable; urgency=low

  * Initial release.

 -- Clint Adams <clint@debian.org>  Mon, 17 Dec 2018 20:12:26 -0500
+1 −0
Original line number Diff line number Diff line
10
+94 −0
Original line number Diff line number Diff line
Source: haskell-xml-html-qq
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Clint Adams <clint@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 10),
 haskell-devscripts-minimal | haskell-devscripts (>= 0.8),
 cdbs,
 ghc,
 ghc-prof,
 libghc-blaze-markup-dev,
 libghc-blaze-markup-prof,
 libghc-conduit-dev,
 libghc-conduit-prof,
 libghc-data-default-dev,
 libghc-data-default-prof,
 libghc-from-sum-dev,
 libghc-from-sum-prof,
 libghc-heterocephalus-dev (>= 1.0.4.0),
 libghc-heterocephalus-prof (>= 1.0.4.0),
 libghc-html-conduit-dev,
 libghc-html-conduit-prof,
 libghc-resourcet-dev,
 libghc-resourcet-prof,
 libghc-th-lift-dev,
 libghc-th-lift-prof,
 libghc-th-lift-instances-dev,
 libghc-th-lift-instances-prof,
 libghc-xml-conduit-dev,
 libghc-xml-conduit-prof,
 libghc-glob-dev,
 libghc-glob-prof,
 libghc-doctest-dev,
 libghc-doctest-prof,
 libghc-tasty-dev,
 libghc-tasty-prof,
 libghc-tasty-hunit-dev,
 libghc-tasty-hunit-prof,
Build-Depends-Indep: ghc-doc,
 libghc-blaze-markup-doc,
 libghc-conduit-doc,
 libghc-data-default-doc,
 libghc-from-sum-doc,
 libghc-heterocephalus-doc,
 libghc-html-conduit-doc,
 libghc-resourcet-doc,
 libghc-th-lift-doc,
 libghc-th-lift-instances-doc,
 libghc-xml-conduit-doc,
Standards-Version: 4.2.1
Homepage: https://github.com/cdepillabout/xml-html-qq
X-Description: quasi-quoters for XML and HTML Documents
 This package provides quasi-quoters for HTML and XML, both
 with and without variable interpolation and control statements.

Package: libghc-xml-html-qq-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-xml-html-qq-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-xml-html-qq-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}
+40 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: xml-html-qq
Upstream-Contact: cdep.illabout@gmail.com
Source: https://hackage.haskell.org/package/xml-html-qq

Files: *
Copyright: 2017 Dennis Gosnell
License: BSD-3-clause

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

License: BSD-3-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.
 .
     * Neither the name of Author name here nor the names of other
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "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
 OWNER OR CONTRIBUTORS 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.
+9 −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 = xml-html-qq
DEB_DEFAULT_COMPILER = ghc

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