[DHG_packages] 01/03: Initial packaging of iso8601-time-0.1.4
James McCoy
jamessan at debian.org
Sun May 1 02:24:46 UTC 2016
This is an automated email from the git hooks/post-receive script.
jamessan pushed a commit to branch master
in repository DHG_packages.
commit 75668c562ff358ee144bd9effe80bf8e4e948ace
Author: James McCoy <jamessan at jamessan.com>
Date: Fri Apr 29 23:35:05 2016 -0400
Initial packaging of iso8601-time-0.1.4
---
p/haskell-iso8601-time/debian/changelog | 5 +++
p/haskell-iso8601-time/debian/compat | 1 +
p/haskell-iso8601-time/debian/control | 64 +++++++++++++++++++++++++++++
p/haskell-iso8601-time/debian/copyright | 12 ++++++
p/haskell-iso8601-time/debian/rules | 9 ++++
p/haskell-iso8601-time/debian/source/format | 1 +
p/haskell-iso8601-time/debian/watch | 2 +
7 files changed, 94 insertions(+)
diff --git a/p/haskell-iso8601-time/debian/changelog b/p/haskell-iso8601-time/debian/changelog
new file mode 100644
index 0000000..6d0cea6
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/changelog
@@ -0,0 +1,5 @@
+haskell-iso8601-time (0.1.4-1) UNRELEASED; urgency=low
+
+ * Initial release
+
+ -- James McCoy <jamessan at debian.org> Fri, 29 Apr 2016 23:35:04 -0400
diff --git a/p/haskell-iso8601-time/debian/compat b/p/haskell-iso8601-time/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-iso8601-time/debian/control b/p/haskell-iso8601-time/debian/control
new file mode 100644
index 0000000..e6022ec
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/control
@@ -0,0 +1,64 @@
+Source: haskell-iso8601-time
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: James McCoy <jamessan at debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 9),
+ haskell-devscripts (>= 0.9),
+ cabal-install,
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-hspec-dev (>= 1.3.0.1),
+ libghc-hunit-dev (>= 1.2),
+ libghc-time-dev,
+ libghc-time-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-time-doc,
+Standards-Version: 3.9.8
+Homepage: https://github.com/nh2/iso8601-time
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-iso8601-time
+Vcs-Git: https://anonscm.debian.org/git/pkg-haskell/DHG_packages.git
+X-Description: Convert to/from the ISO 8601 time format
+ Conversion functions between Haskell time types and the ISO 8601 format,
+ which is often used for printing times, e.g. JavaScript's @new Date().toISOString()@.
+
+Package: libghc-iso8601-time-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-iso8601-time-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-iso8601-time-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-iso8601-time/debian/copyright b/p/haskell-iso8601-time/debian/copyright
new file mode 100644
index 0000000..8cd8717
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/copyright
@@ -0,0 +1,12 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: iso8601-time
+Upstream-Contact: Niklas Hambüchen <mail at nh2.me>
+Source: https://hackage.haskell.org/package/iso8601-time
+
+Files: *
+Copyright: 2013 Niklas Hambüchen <mail at nh2.me>
+License: MIT
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: MIT
diff --git a/p/haskell-iso8601-time/debian/rules b/p/haskell-iso8601-time/debian/rules
new file mode 100755
index 0000000..7a72ab6
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_SETUP_BIN_NAME = cabal
+DEB_CABAL_PACKAGE = iso8601-time
+DEB_DEFAULT_COMPILER = ghc
+DEB_ENABLE_TESTS = yes
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-iso8601-time/debian/source/format b/p/haskell-iso8601-time/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-iso8601-time/debian/watch b/p/haskell-iso8601-time/debian/watch
new file mode 100644
index 0000000..1be5a77
--- /dev/null
+++ b/p/haskell-iso8601-time/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/iso8601-time/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