[DHG_packages] 01/01: add simple-templates

Clint Adams clint at moszumanska.debian.org
Mon Feb 1 03:12:51 UTC 2016


This is an automated email from the git hooks/post-receive script.

clint pushed a commit to branch master
in repository DHG_packages.

commit 1bf4e1bb58e30d7eb933b65d9b08a8f19bb7aa3d
Author: Clint Adams <clint at debian.org>
Date:   Sun Jan 31 22:12:20 2016 -0500

    add simple-templates
---
 p/haskell-simple-templates/debian/changelog     |  5 ++
 p/haskell-simple-templates/debian/compat        |  1 +
 p/haskell-simple-templates/debian/control       | 80 +++++++++++++++++++++++++
 p/haskell-simple-templates/debian/copyright     | 15 +++++
 p/haskell-simple-templates/debian/rules         |  8 +++
 p/haskell-simple-templates/debian/source/format |  1 +
 p/haskell-simple-templates/debian/watch         |  2 +
 7 files changed, 112 insertions(+)

diff --git a/p/haskell-simple-templates/debian/changelog b/p/haskell-simple-templates/debian/changelog
new file mode 100644
index 0000000..425e359
--- /dev/null
+++ b/p/haskell-simple-templates/debian/changelog
@@ -0,0 +1,5 @@
+haskell-simple-templates (0.8.0.1-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Sun, 31 Jan 2016 22:01:14 -0500
diff --git a/p/haskell-simple-templates/debian/compat b/p/haskell-simple-templates/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/p/haskell-simple-templates/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-simple-templates/debian/control b/p/haskell-simple-templates/debian/control
new file mode 100644
index 0000000..deacb3b
--- /dev/null
+++ b/p/haskell-simple-templates/debian/control
@@ -0,0 +1,80 @@
+Source: haskell-simple-templates
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 9),
+ haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-aeson-dev (>= 0.7),
+ libghc-aeson-prof,
+ libghc-attoparsec-dev,
+ libghc-attoparsec-prof,
+ libghc-scientific-dev,
+ libghc-scientific-prof,
+ libghc-text-dev,
+ libghc-text-prof,
+ libghc-unordered-containers-dev,
+ libghc-unordered-containers-prof,
+ libghc-vector-dev,
+ libghc-vector-prof,
+ libghc-hunit-dev,
+ libghc-hspec-dev,
+Build-Depends-Indep: ghc-doc,
+ libghc-aeson-doc,
+ libghc-attoparsec-doc,
+ libghc-scientific-doc,
+ libghc-text-doc,
+ libghc-unordered-containers-doc,
+ libghc-vector-doc,
+Standards-Version: 3.9.6
+Homepage: http://simple.cx
+X-Description: basic template language for the Simple web framework
+ Basic template language for the Simple web framework. The language supports
+ variable substitution, function invocation, loops and conditionals.
+ .
+ Web.Simple.Templates documents how to integrate into an app, while
+ Web.Simple.Templates.Language documents the templating language syntax
+ and semantics.
+
+Package: libghc-simple-templates-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-simple-templates-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-simple-templates-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}
diff --git a/p/haskell-simple-templates/debian/copyright b/p/haskell-simple-templates/debian/copyright
new file mode 100644
index 0000000..5b092df
--- /dev/null
+++ b/p/haskell-simple-templates/debian/copyright
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: simple-templates
+Upstream-Contact: Amit Aryeh Levy <amit at amitlevy.com>
+Source: https://hackage.haskell.org/package/simple-templates
+
+Files: *
+Copyright: Amit Aryeh Levy
+License: LGPL-3+
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: LGPL-3+
+
+License: LGPL-3+
+  See /usr/share/common-licenses/LGPL-3 on your Debian system.
diff --git a/p/haskell-simple-templates/debian/rules b/p/haskell-simple-templates/debian/rules
new file mode 100755
index 0000000..231b9b0
--- /dev/null
+++ b/p/haskell-simple-templates/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_CABAL_PACKAGE = simple-templates
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-simple-templates/debian/source/format b/p/haskell-simple-templates/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-simple-templates/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-simple-templates/debian/watch b/p/haskell-simple-templates/debian/watch
new file mode 100644
index 0000000..cdc7333
--- /dev/null
+++ b/p/haskell-simple-templates/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/simple-templates/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list