summaryrefslogtreecommitdiff
path: root/p/haskell-diff
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2010-02-20 21:21:28 +0300
committerJoachim Breitner <mail@joachim-breitner.de>2010-02-20 21:21:28 +0300
commit8a969d48670bd3e053895dde1e0f72cb05d20342 (patch)
treedb0b03d3f28d663dff5d90623c633a9e34791314 /p/haskell-diff
parent96fc396a874840135033c85eeafe2a19df4e7f4a (diff)
downloadDHG_packages-8a969d48670bd3e053895dde1e0f72cb05d20342.tar.gz
haskell-diff: Initial check-in
Diffstat (limited to 'p/haskell-diff')
-rw-r--r--p/haskell-diff/debian/changelog30
-rw-r--r--p/haskell-diff/debian/compat1
-rw-r--r--p/haskell-diff/debian/control55
-rw-r--r--p/haskell-diff/debian/copyright58
-rwxr-xr-xp/haskell-diff/debian/rules4
-rw-r--r--p/haskell-diff/debian/watch2
6 files changed, 150 insertions, 0 deletions
diff --git a/p/haskell-diff/debian/changelog b/p/haskell-diff/debian/changelog
new file mode 100644
index 000000000..a3766ade0
--- /dev/null
+++ b/p/haskell-diff/debian/changelog
@@ -0,0 +1,30 @@
+haskell-diff (0.1.2-4) unstable; urgency=low
+
+ * Add missing Build-Depends on hscolour. (Closes: #517495)
+ * Bump Build-Depends on ghc6 to 6.10.1+dfsg1-13 and haddock to 2.4.1-4 to
+ prevent arch-dependent issues with ghc6-doc.
+
+ -- Chris Lamb <lamby@debian.org> Sun, 01 Mar 2009 15:31:28 +0000
+
+haskell-diff (0.1.2-3) unstable; urgency=low
+
+ * Add missing Build-Depends on ghc6-prof (Closes: #516830)
+ * Bump GHC requirement to 6.10.1.
+ * Move to hlibrary.mk-based build approach.
+ * Update libghc6-diff-prof's short description.
+
+ -- Chris Lamb <lamby@debian.org> Wed, 25 Feb 2009 22:54:10 +0000
+
+haskell-diff (0.1.2-2) unstable; urgency=low
+
+ * Add GHC profiling package.
+ * Use `dh_prep` over deprecated `dh_clean -k`.
+ * Update location of Git repositories.
+
+ -- Chris Lamb <lamby@debian.org> Mon, 16 Feb 2009 02:16:49 +0000
+
+haskell-diff (0.1.2-1) unstable; urgency=low
+
+ * Initial release. (Closes: #504237)
+
+ -- Chris Lamb <lamby@debian.org> Wed, 05 Nov 2008 22:16:20 +0000
diff --git a/p/haskell-diff/debian/compat b/p/haskell-diff/debian/compat
new file mode 100644
index 000000000..7f8f011eb
--- /dev/null
+++ b/p/haskell-diff/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/p/haskell-diff/debian/control b/p/haskell-diff/debian/control
new file mode 100644
index 000000000..9fee28e48
--- /dev/null
+++ b/p/haskell-diff/debian/control
@@ -0,0 +1,55 @@
+Source: haskell-diff
+Section: devel
+Priority: optional
+Maintainer: Chris Lamb <lamby@debian.org>
+Build-Depends: debhelper (>= 7), cdbs, haskell-devscripts (>= 0.6.15+nmu5), ghc6 (>= 6.10.1+dfsg1-13), haddock (>= 2.4.1-4), ghc6-doc, ghc6-prof, hscolour
+Standards-Version: 3.8.0
+Homepage: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Diff
+Vcs-Git: git://git.chris-lamb.co.uk/debian/pkg-haskell-diff.git
+Vcs-Browser: http://git.chris-lamb.co.uk/?p=debian/pkg-haskell-diff.git
+
+Package: libghc6-diff-dev
+Section: libdevel
+Architecture: any
+Depends: ${haskell:Depends}, ${misc:Depends}
+Description: GHC 6 libraries for the Haskell O(ND) diff algorithm library
+ This is a Haskell library providing an implementation of the O(ND) diff
+ algorithm described in "An O(ND) Difference Algorithm and Its Variations"
+ (1986) by Eugene W. Myers. It is O(mn) in space.
+ .
+ Whilst the algorithm is the same one used by standared Unix diff, the
+ assumption is that users of this library will want to diff over interesting
+ things or perform interesting tasks with the results.
+ .
+ This package contains the libraries compiled for GHC 6.
+
+Package: libghc6-diff-prof
+Section: libdevel
+Architecture: any
+Depends: ${haskell:Depends}, ${misc:Depends}, libghc6-diff-dev (= ${binary:Version})
+Description: GHC 6 profiling libraries for the Haskell O(ND) diff algorithm library
+ This is a Haskell library providing an implementation of the O(ND) diff
+ algorithm described in "An O(ND) Difference Algorithm and Its Variations"
+ (1986) by Eugene W. Myers. It is O(mn) in space.
+ .
+ Whilst the algorithm is the same one used by standared Unix diff, the
+ assumption is that users of this library will want to diff over interesting
+ things or perform interesting tasks with the results.
+ .
+ This package contains additional GHC profiling libraries which can be used with
+ libghc6-diff-dev
+
+Package: libghc6-diff-doc
+Section: doc
+Architecture: all
+Depends: ${haskell:Depends}, ${misc:Depends}
+Description: GHC 6 libraries for the Haskell O(ND) diff algorithm library (documentation)
+ This is a Haskell library providing an implementation of the O(ND) diff
+ algorithm described in "An O(ND) Difference Algorithm and Its Variations"
+ (1986) by Eugene W. Myers. It is O(mn) in space.
+ .
+ Whilst the algorithm is the same one used by standared Unix diff, the
+ assumption is that users of this library will want to diff over interesting
+ things or perform interesting tasks with the results.
+ .
+ This package contains library documentation.
diff --git a/p/haskell-diff/debian/copyright b/p/haskell-diff/debian/copyright
new file mode 100644
index 000000000..4b470acbd
--- /dev/null
+++ b/p/haskell-diff/debian/copyright
@@ -0,0 +1,58 @@
+Author: Sterling Clover <s.clover@gmail.com>
+Download: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Diff
+
+Files: *
+Copyright: © 2008 Stering Clover <s.clover@gmail.com>
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the author nor the names of his contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+Files: debian/*
+Copyright: © 2008 Chris Lamb <lamby@debian.org>
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the author nor the names of his contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
diff --git a/p/haskell-diff/debian/rules b/p/haskell-diff/debian/rules
new file mode 100755
index 000000000..683e77bcf
--- /dev/null
+++ b/p/haskell-diff/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-diff/debian/watch b/p/haskell-diff/debian/watch
new file mode 100644
index 000000000..ecfca5d4e
--- /dev/null
+++ b/p/haskell-diff/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Diff /packages/archive/Diff/[^/]*/Diff-(.*).tar.gz