[Git][haskell-team/DHG_packages][master] 2 commits: Add tz

Scott Talbert (@swt2c) gitlab at salsa.debian.org
Mon Jun 20 00:32:47 BST 2022



Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
ef38d8d8 by Robert Greener at 2022-06-19T23:32:43+00:00
Add tz

- - - - -
acb394f3 by Scott Talbert at 2022-06-19T23:32:43+00:00
Merge branch 'add-tz' into 'master'

Add tz

See merge request haskell-team/DHG_packages!34
- - - - -


12 changed files:

- + p/haskell-tz/debian/changelog
- + p/haskell-tz/debian/compat
- + p/haskell-tz/debian/control
- + p/haskell-tz/debian/copyright
- + p/haskell-tz/debian/libghc-tz-dev.examples
- + p/haskell-tz/debian/libghc-tz-dev.lintian-overrides
- + p/haskell-tz/debian/libghc-tz-prof.lintian-overrides
- + p/haskell-tz/debian/rules
- + p/haskell-tz/debian/source/format
- + p/haskell-tz/debian/source/lintian-overrides
- + p/haskell-tz/debian/upstream/metadata
- + p/haskell-tz/debian/watch


Changes:

=====================================
p/haskell-tz/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-tz (0.1.3.6-1) unstable; urgency=low
+
+  * Initial release (Closes: #1012167)
+
+ -- Robert Greener <rob at robgreener.com>  Tue, 31 May 2022 09:18:49 +0100


=====================================
p/haskell-tz/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-tz/debian/control
=====================================
@@ -0,0 +1,87 @@
+Source: haskell-tz
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Robert Greener <rob at robgreener.com>
+Priority: optional
+Section: haskell
+Rules-Requires-Root: no
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-data-default-dev (>= 0.5),
+ libghc-data-default-dev (<< 0.8),
+ libghc-data-default-prof,
+ libghc-tzdata-dev (>= 0.1),
+ libghc-tzdata-dev (<< 0.3),
+ libghc-tzdata-prof,
+ libghc-vector-dev (>= 0.9),
+ libghc-vector-dev (<< 0.13),
+ libghc-vector-prof,
+ libghc-hunit-dev (>= 1.2),
+ libghc-hunit-dev (<< 1.7),
+ libghc-hunit-prof,
+ libghc-quickcheck2-dev (>= 2.4),
+ libghc-quickcheck2-dev (<< 3),
+ libghc-quickcheck2-prof,
+ libghc-tasty-dev,
+ libghc-tasty-prof,
+ libghc-tasty-hunit-dev,
+ libghc-tasty-hunit-prof,
+ libghc-tasty-quickcheck-dev,
+ libghc-tasty-quickcheck-prof,
+ libghc-tasty-th-dev,
+ libghc-tasty-th-prof,
+ libghc-tzdata-dev,
+Build-Depends-Indep: ghc-doc,
+ libghc-data-default-doc,
+ libghc-tzdata-doc,
+ libghc-vector-doc,
+Standards-Version: 4.6.0.1
+Homepage: https://github.com/ysangkok/haskell-tz
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-tz
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-tz]
+X-Description: Efficient time zone handling
+ The goal of this package is to provide a library that can read time
+ zone info files (aka. Olson files), and does time zone conversions
+ in a /pure/ and /efficient/ way.
+
+Package: libghc-tz-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-tz-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-tz-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}


=====================================
p/haskell-tz/debian/copyright
=====================================
@@ -0,0 +1,15 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: tz
+Upstream-Contact: Janus Troelsen <ysangkok at gmail.com>
+Source: https://hackage.haskell.org/package/tz
+
+Files: *
+Copyright: Copyright 2022 Janus Troelsen, Mihaly Barasz, Gergely Risko
+License: Apache
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: Apache
+
+License: Apache
+ See /usr/share/common-licenses/Apache-2.0


=====================================
p/haskell-tz/debian/libghc-tz-dev.examples
=====================================
@@ -0,0 +1 @@
+examples/*


=====================================
p/haskell-tz/debian/libghc-tz-dev.lintian-overrides
=====================================
@@ -0,0 +1,4 @@
+# This is intended
+custom-library-search-path
+# This is intended
+repeated-path-segment


=====================================
p/haskell-tz/debian/libghc-tz-prof.lintian-overrides
=====================================
@@ -0,0 +1,2 @@
+# This is intended
+repeated-path-segment


=====================================
p/haskell-tz/debian/rules
=====================================
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = tz
+DEB_DEFAULT_COMPILER = ghc
+
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


=====================================
p/haskell-tz/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-tz/debian/source/lintian-overrides
=====================================
@@ -0,0 +1,6 @@
+# Not possible with hackage
+debian-watch-does-not-check-gpg-signature
+# Not possible to use later with haskell-devscripts
+package-uses-old-debhelper-compat-version
+# In error
+redundant-control-relation


=====================================
p/haskell-tz/debian/upstream/metadata
=====================================
@@ -0,0 +1,6 @@
+Archive: hackage
+Bug-Database: https://github.com/ysangkok/haskell-tz/issues
+Bug-Submit: https://github.com/ysangkok/haskell-tz/issues/new
+Documentation: https://hackage.haskell.org/package/tz/docs
+Repository: https://github.com/ysangkok/haskell-tz.git
+Repository-Browse: https://github.com/ysangkok/haskell-tz


=====================================
p/haskell-tz/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=4
+https://hackage.haskell.org/package/tz/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/compare/4d1549fae83a304f4e1629dff70564c98716ea19...acb394f3e60dc92c9edf67fd4f04992000265aa7

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/compare/4d1549fae83a304f4e1629dff70564c98716ea19...acb394f3e60dc92c9edf67fd4f04992000265aa7
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20220619/0a0f66f6/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list