summaryrefslogtreecommitdiff
path: root/p/haskell-pointedlist/debian
diff options
context:
space:
mode:
authorMasayuki Hatta <mhatta@debian.org>2013-02-22 18:00:04 +0400
committerMasayuki Hatta <mhatta@debian.org>2013-02-22 18:00:04 +0400
commitd934dfaed841b8b3dca0fc4755ee7ed81c2836cb (patch)
tree548a193eeb159a65738119f7d3e5d59941695ad9 /p/haskell-pointedlist/debian
parent01b1c1f8ce6b2903fc0fc54ee2d63cb518f09251 (diff)
downloadDHG_packages-d934dfaed841b8b3dca0fc4755ee7ed81c2836cb.tar.gz
haskell-pointedlist: Initial Check-In
Diffstat (limited to 'p/haskell-pointedlist/debian')
-rw-r--r--p/haskell-pointedlist/debian/changelog6
-rw-r--r--p/haskell-pointedlist/debian/compat1
-rw-r--r--p/haskell-pointedlist/debian/control70
-rw-r--r--p/haskell-pointedlist/debian/copyright32
-rwxr-xr-xp/haskell-pointedlist/debian/rules4
-rw-r--r--p/haskell-pointedlist/debian/source/format1
-rw-r--r--p/haskell-pointedlist/debian/watch5
7 files changed, 119 insertions, 0 deletions
diff --git a/p/haskell-pointedlist/debian/changelog b/p/haskell-pointedlist/debian/changelog
new file mode 100644
index 000000000..c3bed28df
--- /dev/null
+++ b/p/haskell-pointedlist/debian/changelog
@@ -0,0 +1,6 @@
+haskell-pointedlist (0.4.0.4-1) UNRELEASED; urgency=low
+
+ * Initial release. (closes: #701174)
+ * Debianization generated by cabal-debian
+
+ -- Masayuki Hatta (mhatta) <mhatta@debian.org> Fri, 22 Feb 2013 20:42:12 +0900
diff --git a/p/haskell-pointedlist/debian/compat b/p/haskell-pointedlist/debian/compat
new file mode 100644
index 000000000..c7930257d
--- /dev/null
+++ b/p/haskell-pointedlist/debian/compat
@@ -0,0 +1 @@
+7 \ No newline at end of file
diff --git a/p/haskell-pointedlist/debian/control b/p/haskell-pointedlist/debian/control
new file mode 100644
index 000000000..a2ea46b3e
--- /dev/null
+++ b/p/haskell-pointedlist/debian/control
@@ -0,0 +1,70 @@
+Source: haskell-pointedlist
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
+Uploaders: Masayuki Hatta (mhatta) <mhatta@debian.org>
+Build-Depends: debhelper (>= 7.0)
+ , haskell-devscripts (>= 0.8)
+ , cdbs
+ , ghc
+ , ghc-prof
+ , libghc-derive-dev
+ , libghc-derive-prof
+ , libghc-fclabels-dev (>= 1.1)
+ , libghc-fclabels-dev (<< 1.2)
+ , libghc-fclabels-prof (>= 1.1)
+ , libghc-fclabels-prof (<< 1.2)
+Build-Depends-Indep: ghc-doc
+ , libghc-derive-doc
+ , libghc-fclabels-doc (>= 1.1)
+ , libghc-fclabels-doc (<< 1.2)
+Standards-Version: 3.9.3
+Homepage: http://hackage.haskell.org/package/pointedlist
+Vcs-Darcs: http://darcs.debian.org/darcs/pkg-haskell/haskell-pointedlist
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-pointedlist
+
+Package: libghc-pointedlist-dev
+Architecture: any
+Depends: ${shlibs:Depends}
+ , ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: zipper-like comonad which works as a list, tracking a position
+ This Haskell library provides PointedList, which tracks the position in a
+ non-empty list which works similarly to a zipper. A current item is always
+ required, and therefore the list may never be empty. A circular PointedList
+ wraps around to the other end when progressing past the actual edge.
+ .
+ This package contains the normal library files.
+
+Package: libghc-pointedlist-prof
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: zipper-like comonad which works as a list, tracking a position
+ This Haskell library provides PointedList, which tracks the position in a
+ non-empty list which works similarly to a zipper. A current item is always
+ required, and therefore the list may never be empty. A circular PointedList
+ wraps around to the other end when progressing past the actual edge.
+ .
+ This package contains the libraries compiled with profiling enabled.
+
+Package: libghc-pointedlist-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: zipper-like comonad which works as a list, tracking a position.
+ This Haskell library provides PointedList, which tracks the position in a
+ non-empty list which works similarly to a zipper. A current item is always
+ required, and therefore the list may never be empty. A circular PointedList
+ wraps around to the other end when progressing past the actual edge.
+ .
+ This package contains the documentation files.
diff --git a/p/haskell-pointedlist/debian/copyright b/p/haskell-pointedlist/debian/copyright
new file mode 100644
index 000000000..44b8c9d32
--- /dev/null
+++ b/p/haskell-pointedlist/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pointedlist
+Upstream-Contact: Jeff Wheeler <jeffwheeler@gmail.com>
+Source: http://hackage.haskell.org/package/pointedlist
+
+Files: *
+Copyright: Copyright 2009 Jeff Wheeler <jeffwheeler@gmail.com>
+License: BSD-3-Clause
+ * Copyright (c) 2009, Jeff Wheeler
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * 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.
+ * * Neither the name of the <organization> nor the
+ * names of its contributors may be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY <copyright holder> ''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 <copyright holder> 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-pointedlist/debian/rules b/p/haskell-pointedlist/debian/rules
new file mode 100755
index 000000000..683e77bcf
--- /dev/null
+++ b/p/haskell-pointedlist/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-pointedlist/debian/source/format b/p/haskell-pointedlist/debian/source/format
new file mode 100644
index 000000000..46ebe0266
--- /dev/null
+++ b/p/haskell-pointedlist/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt) \ No newline at end of file
diff --git a/p/haskell-pointedlist/debian/watch b/p/haskell-pointedlist/debian/watch
new file mode 100644
index 000000000..17accf08e
--- /dev/null
+++ b/p/haskell-pointedlist/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|pointedlist-$1.tar.gz|" \
+ http://hackage.haskell.org/packages/archive/pointedlist \
+ ([\d\.]*\d)/