Commit 807ef7b0 authored by Ilias Tsitsimpis's avatar Ilias Tsitsimpis
Browse files

mustache: Initial release of v2.3.0

This is a dependency for newer versions of stack (>= 1.7.1).
parent 1b58ae35
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-mustache (2.3.0-1) unstable; urgency=low

  * Initial release (Closes: #912983)

 -- Ilias Tsitsimpis <iliastsi@debian.org>  Mon, 05 Nov 2018 14:41:26 +0200
+1 −0
Original line number Diff line number Diff line
10
+94 −0
Original line number Diff line number Diff line
Source: haskell-mustache
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Ilias Tsitsimpis <iliastsi@debian.org>
Priority: optional
Section: haskell
Rules-Requires-Root: no
Build-Depends: debhelper (>= 10),
 haskell-devscripts (>= 0.13),
 cdbs,
 ghc (>= 8.4.3),
 ghc-prof,
 libghc-aeson-dev,
 libghc-aeson-prof,
 libghc-either-dev,
 libghc-either-prof,
 libghc-scientific-dev,
 libghc-scientific-prof,
 libghc-th-lift-dev,
 libghc-th-lift-prof,
 libghc-unordered-containers-dev,
 libghc-unordered-containers-prof,
 libghc-vector-dev,
 libghc-vector-prof,
 libghc-yaml-dev,
 libghc-yaml-prof,
 libghc-base-unicode-symbols-dev,
 libghc-base-unicode-symbols-prof,
 libghc-hspec-dev,
 libghc-hspec-prof,
 libghc-lens-dev,
 libghc-lens-prof,
 libghc-tar-dev,
 libghc-tar-prof,
 libghc-temporary-dev,
 libghc-temporary-prof,
 libghc-wreq-dev,
 libghc-wreq-prof,
 libghc-zlib-dev,
 libghc-zlib-prof,
Build-Depends-Indep: ghc-doc,
 libghc-aeson-doc,
 libghc-either-doc,
 libghc-scientific-doc,
 libghc-th-lift-doc,
 libghc-unordered-containers-doc,
 libghc-vector-doc,
Standards-Version: 4.2.1
Homepage: https://github.com/JustusAdam/mustache
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-mustache
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-mustache]
X-Description: Haskell implementation of Mustache templates
 This package allows parsing and rendering template files with Mustache markup.
 It implements the Mustache spec version 1.1.3 and it is indented as a
 replacement for hastache.

Package: libghc-mustache-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-mustache-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-mustache-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}
+44 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: mustache
Upstream-Contact: Justus Adam <dev@justus.science>
Source: https://hackage.haskell.org/package/mustache

Files: *
Copyright: (c) 2015-2016 Justus Adam
License: BSD-3-clause

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

License: BSD-3-clause
 Copyright (c) 2015, 2016 Justus Adam
 .
 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.
 .
     * Neither the name of Justus Adam 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.
+16 −0
Original line number Diff line number Diff line
Description: Disable language-specifications testsuite
 Disable language-specifications testsuite which requires network access.
Author: Ilias Tsitsimpis <iliastsi@debian.org>

Index: b/mustache.cabal
===================================================================
--- a/mustache.cabal
+++ b/mustache.cabal
@@ -89,6 +89,7 @@ executable haskell-mustache
 test-suite language-specifications
   type: exitcode-stdio-1.0
   main-is: Language.hs
+  buildable: False
   hs-source-dirs:
       test/integration
   build-depends:
Loading