[DHG_packages] 01/01: add th-abstraction
Clint Adams
clint at moszumanska.debian.org
Fri Jul 7 00:51:18 UTC 2017
This is an automated email from the git hooks/post-receive script.
clint pushed a commit to branch master
in repository DHG_packages.
commit fa4b23ca872bfbc937ebe96e2d781ed858b94726
Author: Clint Adams <clint at debian.org>
Date: Thu Jul 6 20:50:36 2017 -0400
add th-abstraction
---
p/haskell-th-abstraction/debian/changelog | 5 +++
p/haskell-th-abstraction/debian/compat | 1 +
p/haskell-th-abstraction/debian/control | 59 +++++++++++++++++++++++++++
p/haskell-th-abstraction/debian/copyright | 25 ++++++++++++
p/haskell-th-abstraction/debian/rules | 9 ++++
p/haskell-th-abstraction/debian/source/format | 1 +
p/haskell-th-abstraction/debian/watch | 2 +
7 files changed, 102 insertions(+)
diff --git a/p/haskell-th-abstraction/debian/changelog b/p/haskell-th-abstraction/debian/changelog
new file mode 100644
index 0000000..b43a878
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/changelog
@@ -0,0 +1,5 @@
+haskell-th-abstraction (0.2.3.0-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Clint Adams <clint at debian.org> Thu, 06 Jul 2017 20:45:55 -0400
diff --git a/p/haskell-th-abstraction/debian/compat b/p/haskell-th-abstraction/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/p/haskell-th-abstraction/debian/control b/p/haskell-th-abstraction/debian/control
new file mode 100644
index 0000000..75bf828
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/control
@@ -0,0 +1,59 @@
+Source: haskell-th-abstraction
+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 (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+Build-Depends-Indep: ghc-doc,
+Standards-Version: 4.0.0
+Homepage: https://github.com/glguy/th-abstraction
+X-Description: nicer interface for reified information about data types
+ This package normalizes variations in the interface for
+ inspecting datatype information via Template Haskell
+ so that packages and support a single, easier to use
+ informational datatype while supporting many versions
+ of Template Haskell.
+
+Package: libghc-th-abstraction-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-th-abstraction-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-th-abstraction-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-th-abstraction/debian/copyright b/p/haskell-th-abstraction/debian/copyright
new file mode 100644
index 0000000..e155771
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/copyright
@@ -0,0 +1,25 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: th-abstraction
+Upstream-Contact: Eric Mertens <emertens at gmail.com>
+Source: https://hackage.haskell.org/package/th-abstraction
+
+Files: *
+Copyright: 2017 Eric Mertens
+License: ISC
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: ISC
+
+License: ISC
+ Permission to use, copy, modify, and/or distribute this software for any purpose
+ with or without fee is hereby granted, provided that the above copyright notice
+ and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+ THIS SOFTWARE.
diff --git a/p/haskell-th-abstraction/debian/rules b/p/haskell-th-abstraction/debian/rules
new file mode 100755
index 0000000..93867f5
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = th-abstraction
+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-th-abstraction/debian/source/format b/p/haskell-th-abstraction/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-th-abstraction/debian/watch b/p/haskell-th-abstraction/debian/watch
new file mode 100644
index 0000000..e373153
--- /dev/null
+++ b/p/haskell-th-abstraction/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/th-abstraction/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