summaryrefslogtreecommitdiff
path: root/p/haskell-data-inttrie
diff options
context:
space:
mode:
authorclint <clint@debian.org>2011-06-17 17:24:52 +0400
committerclint <clint@debian.org>2011-06-17 17:24:52 +0400
commit3f652905d89469d0e66170fb31b946fba97de733 (patch)
tree79ff9808e4f5388983551c29c0dcaef0488501dd /p/haskell-data-inttrie
parent5da2850430453ab4804dca046b58041b2fcf22e6 (diff)
downloadDHG_packages-3f652905d89469d0e66170fb31b946fba97de733.tar.gz
haskell-data-inttrie: Initial Check-In
Diffstat (limited to 'p/haskell-data-inttrie')
-rw-r--r--p/haskell-data-inttrie/debian/changelog5
-rw-r--r--p/haskell-data-inttrie/debian/compat1
-rw-r--r--p/haskell-data-inttrie/debian/control56
-rw-r--r--p/haskell-data-inttrie/debian/copyright20
-rwxr-xr-xp/haskell-data-inttrie/debian/rules4
-rw-r--r--p/haskell-data-inttrie/debian/source/format1
-rw-r--r--p/haskell-data-inttrie/debian/watch5
7 files changed, 92 insertions, 0 deletions
diff --git a/p/haskell-data-inttrie/debian/changelog b/p/haskell-data-inttrie/debian/changelog
new file mode 100644
index 000000000..b79485ecd
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/changelog
@@ -0,0 +1,5 @@
+haskell-data-inttrie (0.0.4-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Clint Adams <clint@debian.org> Wed, 15 Jun 2011 13:49:38 -0400
diff --git a/p/haskell-data-inttrie/debian/compat b/p/haskell-data-inttrie/debian/compat
new file mode 100644
index 000000000..7f8f011eb
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/p/haskell-data-inttrie/debian/control b/p/haskell-data-inttrie/debian/control
new file mode 100644
index 000000000..c02182a9e
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/control
@@ -0,0 +1,56 @@
+Source: haskell-data-inttrie
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
+Uploaders: Clint Adams <clint@debian.org>
+Build-Depends: debhelper (>= 7)
+ , cdbs
+ , haskell-devscripts (>= 0.8)
+ , ghc
+ , ghc-prof
+Build-Depends-Indep: ghc-doc
+Standards-Version: 3.9.2
+Homepage: http://hackage.haskell.org/package/data-inttrie
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-data-inttrie
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-data-inttrie
+
+Package: libghc-data-inttrie-dev
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${shlibs:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Lazy, infinite trie of integers library
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ It implements a simple, lazy, infinite trie from integers.
+
+Package: libghc-data-inttrie-prof
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Lazy, infinite trie of integers library; profiling libraries
+ This package provides a library for the Haskell programming language,
+ compiled for profiling.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ It implements a simple, lazy, infinite trie from integers.
+
+Package: libghc-data-inttrie-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Lazy, infinite trie of integers library; documentation
+ This package provides the documentation for a library for the Haskell
+ programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ It implements a simple, lazy, infinite trie from integers.
diff --git a/p/haskell-data-inttrie/debian/copyright b/p/haskell-data-inttrie/debian/copyright
new file mode 100644
index 000000000..d05bada20
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/copyright
@@ -0,0 +1,20 @@
+This package was debianized by Clint Adams <clint@debian.org> on
+Wed, 15 Jun 2011 17:49:38 -0000
+
+It was downloaded from
+http://hackage.haskell.org/package/data-inttrie
+
+Upstream Author:
+
+ Luke Palmer <lrpalmer@gmail.com>
+
+Copyright:
+
+ 2010 Luke Palmer
+
+License:
+
+data-inttrie is under a 3-clause BSD license.
+
+You can find a 3-clause BSD license text on your Debian system in
+/usr/share/common-licenses/BSD
diff --git a/p/haskell-data-inttrie/debian/rules b/p/haskell-data-inttrie/debian/rules
new file mode 100755
index 000000000..683e77bcf
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-data-inttrie/debian/source/format b/p/haskell-data-inttrie/debian/source/format
new file mode 100644
index 000000000..163aaf8d8
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-data-inttrie/debian/watch b/p/haskell-data-inttrie/debian/watch
new file mode 100644
index 000000000..66ea4de40
--- /dev/null
+++ b/p/haskell-data-inttrie/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|data-inttrie-$1.tar.gz|" \
+ http://hackage.haskell.org/packages/archive/data-inttrie \
+ ([\d\.]*\d)/