[DHG_packages] 03/03: add simple

Clint Adams clint at moszumanska.debian.org
Tue Feb 2 16:13:43 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 79b4612fd3bdb0100ea167ae3498b7c5b39af27a
Author: Clint Adams <clint at debian.org>
Date:   Tue Feb 2 11:11:51 2016 -0500

    add simple
---
 p/haskell-simple/debian/changelog                |   5 +
 p/haskell-simple/debian/compat                   |   1 +
 p/haskell-simple/debian/control                  | 141 +++++++++++++++++++++++
 p/haskell-simple/debian/copyright                |  15 +++
 p/haskell-simple/debian/rules                    |  10 ++
 p/haskell-simple/debian/simple.haskell-binaries  |   1 +
 p/haskell-simple/debian/simple.install           |   1 +
 p/haskell-simple/debian/simple.lintian-overrides |   1 +
 p/haskell-simple/debian/source/format            |   1 +
 p/haskell-simple/debian/watch                    |   2 +
 10 files changed, 178 insertions(+)

diff --git a/p/haskell-simple/debian/changelog b/p/haskell-simple/debian/changelog
new file mode 100644
index 0000000..0bba512
--- /dev/null
+++ b/p/haskell-simple/debian/changelog
@@ -0,0 +1,5 @@
+haskell-simple (0.11.1-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Tue, 02 Feb 2016 10:38:03 -0500
diff --git a/p/haskell-simple/debian/compat b/p/haskell-simple/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/p/haskell-simple/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-simple/debian/control b/p/haskell-simple/debian/control
new file mode 100644
index 0000000..ab6d5c5
--- /dev/null
+++ b/p/haskell-simple/debian/control
@@ -0,0 +1,141 @@
+Source: haskell-simple
+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.9),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-aeson-dev,
+ libghc-aeson-prof,
+ libghc-base64-bytestring-dev,
+ libghc-base64-bytestring-prof,
+ libghc-blaze-builder-dev,
+ libghc-blaze-builder-prof,
+ libghc-bytestring-dev,
+ libghc-bytestring-prof,
+ libghc-directory-dev,
+ libghc-directory-prof,
+ libghc-filepath-dev,
+ libghc-filepath-prof,
+ libghc-http-types-dev,
+ libghc-http-types-prof,
+ libghc-mime-types-dev,
+ libghc-mime-types-prof,
+ libghc-monad-control-dev (>= 1.0.0.0),
+ libghc-monad-control-prof,
+ libghc-mtl-dev,
+ libghc-mtl-prof,
+ libghc-simple-templates-dev (>= 0.7.0),
+ libghc-simple-templates-prof,
+ libghc-text-dev,
+ libghc-text-prof,
+ libghc-transformers-dev,
+ libghc-transformers-prof,
+ libghc-transformers-base-dev,
+ libghc-transformers-base-prof,
+ libghc-unordered-containers-dev,
+ libghc-unordered-containers-prof,
+ libghc-vector-dev,
+ libghc-vector-prof,
+ libghc-wai-dev (>= 3.0),
+ libghc-wai-prof,
+ libghc-wai-extra-dev,
+ libghc-wai-extra-prof,
+ libghc-attoparsec-dev,
+ libghc-cmdargs-dev,
+ libghc-process-dev,
+ libghc-setenv-dev,
+ libghc-hspec-dev,
+ libghc-hspec-contrib-dev,
+Build-Depends-Indep: ghc-doc,
+ libghc-aeson-doc,
+ libghc-base64-bytestring-doc,
+ libghc-blaze-builder-doc,
+ libghc-bytestring-doc,
+ libghc-directory-doc,
+ libghc-filepath-doc,
+ libghc-http-types-doc,
+ libghc-mime-types-doc,
+ libghc-monad-control-doc,
+ libghc-mtl-doc,
+ libghc-simple-templates-doc,
+ libghc-text-doc,
+ libghc-transformers-doc,
+ libghc-transformers-base-doc,
+ libghc-unordered-containers-doc,
+ libghc-vector-doc,
+ libghc-wai-doc,
+ libghc-wai-extra-doc,
+Standards-Version: 3.9.6
+Homepage: http://simple.cx
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-simple
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-simple
+X-Description: minimalist web framework for the WAI server interface
+ Simple is a "framework-less" web framework for Haskell web applications
+ based on the WAI server interface (f.ex. for use with the warp server).
+ Simple does not enforce a particular structure or paradigm for web
+ applications. Rather, Simple contains tools to help you create your own
+ patterns (or re-create existing ones). Simple is minimalist, providing a
+ lightweight base - the most basic Simple app is little more than a WAI
+ 'Application' with some routing logic. Everything else (f.ex. authentication,
+ controllers, persistence, caching, etc.) is provided in composable units, so
+ you can include only the ones you need in your app, and easily replace
+ them with your own components.
+
+Package: libghc-simple-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-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-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}
+
+Package: simple
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+ ${shlibs:Depends},
+Recommends: ${haskell:Recommends},
+ libghc-simple-dev
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff --git a/p/haskell-simple/debian/copyright b/p/haskell-simple/debian/copyright
new file mode 100644
index 0000000..1436a7a
--- /dev/null
+++ b/p/haskell-simple/debian/copyright
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: simple
+Upstream-Contact: Amit Levy <amit at amitlevy.com>
+Source: https://hackage.haskell.org/package/simple
+
+Files: *
+Copyright: Amit Levy, Daniel B. Giffin
+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/debian/rules b/p/haskell-simple/debian/rules
new file mode 100755
index 0000000..f7438e8
--- /dev/null
+++ b/p/haskell-simple/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_CABAL_PACKAGE = simple
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
+
+build/haskell-simple-utils:: build-ghc-stamp
diff --git a/p/haskell-simple/debian/simple.haskell-binaries b/p/haskell-simple/debian/simple.haskell-binaries
new file mode 100644
index 0000000..2f93f7e
--- /dev/null
+++ b/p/haskell-simple/debian/simple.haskell-binaries
@@ -0,0 +1 @@
+smpl
diff --git a/p/haskell-simple/debian/simple.install b/p/haskell-simple/debian/simple.install
new file mode 100644
index 0000000..43ecc89
--- /dev/null
+++ b/p/haskell-simple/debian/simple.install
@@ -0,0 +1 @@
+./template/*.tmpl usr/share/simple/template
diff --git a/p/haskell-simple/debian/simple.lintian-overrides b/p/haskell-simple/debian/simple.lintian-overrides
new file mode 100644
index 0000000..25d3d4c
--- /dev/null
+++ b/p/haskell-simple/debian/simple.lintian-overrides
@@ -0,0 +1 @@
+binary-or-shlib-defines-rpath
diff --git a/p/haskell-simple/debian/source/format b/p/haskell-simple/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-simple/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-simple/debian/watch b/p/haskell-simple/debian/watch
new file mode 100644
index 0000000..c605f16
--- /dev/null
+++ b/p/haskell-simple/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/simple/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