diff options
| author | Clint Adams <clint@debian.org> | 2017-07-13 17:07:58 -0400 |
|---|---|---|
| committer | Clint Adams <clint@debian.org> | 2017-07-13 17:07:58 -0400 |
| commit | e30a38d1945cd2f10850d69fb406adadc346da28 (patch) | |
| tree | 9d72c3d2f004a63f4055672c02f660b80d8803d9 /p/haskell-hmt/debian | |
| parent | f94d58e0b0cd220c016c52aac1025f8de394e0a9 (diff) | |
| download | DHG_packages-e30a38d1945cd2f10850d69fb406adadc346da28.tar.gz | |
add hmt
Diffstat (limited to 'p/haskell-hmt/debian')
| -rw-r--r-- | p/haskell-hmt/debian/changelog | 5 | ||||
| -rw-r--r-- | p/haskell-hmt/debian/compat | 1 | ||||
| -rw-r--r-- | p/haskell-hmt/debian/control | 89 | ||||
| -rw-r--r-- | p/haskell-hmt/debian/copyright | 15 | ||||
| -rwxr-xr-x | p/haskell-hmt/debian/rules | 8 | ||||
| -rw-r--r-- | p/haskell-hmt/debian/source/format | 1 | ||||
| -rw-r--r-- | p/haskell-hmt/debian/watch | 2 |
7 files changed, 121 insertions, 0 deletions
diff --git a/p/haskell-hmt/debian/changelog b/p/haskell-hmt/debian/changelog new file mode 100644 index 000000000..58f1830a6 --- /dev/null +++ b/p/haskell-hmt/debian/changelog @@ -0,0 +1,5 @@ +haskell-hmt (0.15-1) unstable; urgency=low + + * Initial release. + + -- Clint Adams <clint@debian.org> Thu, 13 Jul 2017 16:59:40 -0400 diff --git a/p/haskell-hmt/debian/compat b/p/haskell-hmt/debian/compat new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/p/haskell-hmt/debian/compat @@ -0,0 +1 @@ +10 diff --git a/p/haskell-hmt/debian/control b/p/haskell-hmt/debian/control new file mode 100644 index 000000000..abc5981f5 --- /dev/null +++ b/p/haskell-hmt/debian/control @@ -0,0 +1,89 @@ +Source: haskell-hmt +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: Clint Adams <clint@debian.org> +Priority: extra +Section: haskell +Build-Depends: debhelper (>= 10), + haskell-devscripts-minimal | haskell-devscripts (>= 0.8), + cdbs, + ghc, + ghc-prof, + libghc-colour-dev, + libghc-colour-prof, + libghc-data-ordlist-dev, + libghc-data-ordlist-prof, + libghc-lazy-csv-dev, + libghc-lazy-csv-prof, + libghc-logict-dev, + libghc-logict-prof, + libghc-multiset-comb-dev, + libghc-multiset-comb-prof, + libghc-parsec3-dev, + libghc-parsec3-prof, + libghc-permutation-dev, + libghc-permutation-prof, + libghc-primes-dev, + libghc-primes-prof, + libghc-safe-dev, + libghc-safe-prof, + libghc-split-dev, + libghc-split-prof, + libghc-utf8-string-dev, + libghc-utf8-string-prof, +Build-Depends-Indep: ghc-doc, + libghc-colour-doc, + libghc-data-ordlist-doc, + libghc-lazy-csv-doc, + libghc-logict-doc, + libghc-multiset-comb-doc, + libghc-parsec3-doc, + libghc-permutation-doc, + libghc-primes-doc, + libghc-safe-doc, + libghc-split-doc, + libghc-utf8-string-doc, +Standards-Version: 4.0.0 +Homepage: http://rd.slavepianos.org/t/hmt +X-Description: Haskell Music Theory + Music theory operations in Haskell, primarily focused on 'set + theory' and 'common music notation'. + +Package: libghc-hmt-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-hmt-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-hmt-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-hmt/debian/copyright b/p/haskell-hmt/debian/copyright new file mode 100644 index 000000000..4ab5f3668 --- /dev/null +++ b/p/haskell-hmt/debian/copyright @@ -0,0 +1,15 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: hmt +Upstream-Contact: Rohan Drape <rd@slavepianos.org> +Source: https://hackage.haskell.org/package/hmt + +Files: * +Copyright: Rohan Drape, 2006-2014 +License: GPL + +Files: debian/* +Copyright: held by the contributors mentioned in debian/changelog +License: GPL + +License: GPL + See /usr/share/common-licenses/GPL* on your Debian-based system. diff --git a/p/haskell-hmt/debian/rules b/p/haskell-hmt/debian/rules new file mode 100755 index 000000000..3b6750e13 --- /dev/null +++ b/p/haskell-hmt/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +DEB_SETUP_BIN_NAME = debian/hlibrary.setup +DEB_CABAL_PACKAGE = hmt +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-hmt/debian/source/format b/p/haskell-hmt/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-hmt/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-hmt/debian/watch b/p/haskell-hmt/debian/watch new file mode 100644 index 000000000..ce6f32add --- /dev/null +++ b/p/haskell-hmt/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://hackage.haskell.org/package/hmt/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) |
