diff options
Diffstat (limited to 'p')
-rw-r--r-- | p/haskell-listlike/debian/changelog | 5 | ||||
-rw-r--r-- | p/haskell-listlike/debian/compat | 1 | ||||
-rw-r--r-- | p/haskell-listlike/debian/control | 73 | ||||
-rw-r--r-- | p/haskell-listlike/debian/copyright | 29 | ||||
-rw-r--r-- | p/haskell-listlike/debian/docs | 1 | ||||
-rwxr-xr-x | p/haskell-listlike/debian/rules | 7 | ||||
-rw-r--r-- | p/haskell-listlike/debian/source/format | 1 | ||||
-rw-r--r-- | p/haskell-listlike/debian/watch | 2 |
8 files changed, 119 insertions, 0 deletions
diff --git a/p/haskell-listlike/debian/changelog b/p/haskell-listlike/debian/changelog new file mode 100644 index 000000000..47e0a5c71 --- /dev/null +++ b/p/haskell-listlike/debian/changelog @@ -0,0 +1,5 @@ +haskell-listlike (2.0.1-1) unstable; urgency=low + + * Initial release (Closes: #607161) + + -- TANIGUCHI Takaki <takaki@debian.org> Wed, 15 Dec 2010 11:53:08 +0900 diff --git a/p/haskell-listlike/debian/compat b/p/haskell-listlike/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/p/haskell-listlike/debian/compat @@ -0,0 +1 @@ +7 diff --git a/p/haskell-listlike/debian/control b/p/haskell-listlike/debian/control new file mode 100644 index 000000000..2c832fa01 --- /dev/null +++ b/p/haskell-listlike/debian/control @@ -0,0 +1,73 @@ +Source: haskell-listlike +Section: haskell +Priority: optional +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: TANIGUCHI Takaki <takaki@debian.org> +Build-Depends: cdbs, debhelper (>= 7.0.50~), haskell-devscripts, + ghc6, + ghc6-prof, + ghc6-doc +Standards-Version: 3.9.1 +Homepage: http://software.complete.org/listlike +#Vcs-Git: git://git.debian.org/collab-maint/haskell-listlike.git +#Vcs-Browser: http://git.debian.org/?p=collab-maint/haskell-listlike.git;a=summary + +Package: libghc6-listlike-dev +Architecture: any +Depends: ${haskell:Depends}, ${shlibs:Depends}, ${misc:Depends} +Recommends: ${haskell:Recommends} +Provides: ${haskell:Provides} +Suggests: ${haskell:Suggests} +Description: Generic support for list-like structures + Generic support for list-like structures in Haskell. + . + The ListLike module provides a common interface to the various Haskell + types that are list-like. Predefined interfaces include standard + Haskell lists, Arrays, ByteStrings, and lazy ByteStrings. Custom + types can easily be made ListLike instances as well. + . + ListLike also provides for String-like types, such as String and + ByteString, for types that support input and output, and for types that can + handle infinite lists. + . + This package contains the libraries compiled for GHC 6. + +Package: libghc6-listlike-prof +Architecture: any +Depends: ${haskell:Depends}, ${misc:Depends} +Recommends: ${haskell:Recommends} +Provides: ${haskell:Provides} +Suggests: ${haskell:Suggests} +Description: Generic support for list-like structures; profiling library + Generic support for list-like structures in Haskell. + . + The ListLike module provides a common interface to the various Haskell + types that are list-like. Predefined interfaces include standard + Haskell lists, Arrays, ByteStrings, and lazy ByteStrings. Custom + types can easily be made ListLike instances as well. + . + ListLike also provides for String-like types, such as String and + ByteString, for types that support input and output, and for types that can + handle infinite lists. + . + This package contains the profiling libraries compiled for GHC 6. + +Package: libghc6-listlike-doc +Architecture: all +Section: doc +Depends: ${haskell:Depends}, ${misc:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Description: Generic support for list-like structures; documentation + Generic support for list-like structures in Haskell. + . + The ListLike module provides a common interface to the various Haskell + types that are list-like. Predefined interfaces include standard + Haskell lists, Arrays, ByteStrings, and lazy ByteStrings. Custom + types can easily be made ListLike instances as well. + . + ListLike also provides for String-like types, such as String and + ByteString, for types that support input and output, and for types that can + handle infinite lists. + . + This package contains the library documentation. diff --git a/p/haskell-listlike/debian/copyright b/p/haskell-listlike/debian/copyright new file mode 100644 index 000000000..fe625350b --- /dev/null +++ b/p/haskell-listlike/debian/copyright @@ -0,0 +1,29 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Maintainer: John Lato <jwlato@gmail.com> +Source: http://hackage.haskell.org/package/ListLike +Name: ListLike + +Files: * +Copyright: Copyright (c) 2007-2008 John Goerzen +License: LGPL-2.1+ + +Files: debian/* +Copyright: 2010, TANIGUCHI Takaki <takaki@debian.org> +License: LGPL-2.1+ + +License: GPL-2.1+ + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU Lesser General + Public License can be found in "/usr/share/common-licenses/LGPL-2". diff --git a/p/haskell-listlike/debian/docs b/p/haskell-listlike/debian/docs new file mode 100644 index 000000000..e845566c0 --- /dev/null +++ b/p/haskell-listlike/debian/docs @@ -0,0 +1 @@ +README diff --git a/p/haskell-listlike/debian/rules b/p/haskell-listlike/debian/rules new file mode 100755 index 000000000..b00586532 --- /dev/null +++ b/p/haskell-listlike/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/hlibrary.mk + + +# Add here any variable or target overrides you need. diff --git a/p/haskell-listlike/debian/source/format b/p/haskell-listlike/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-listlike/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-listlike/debian/watch b/p/haskell-listlike/debian/watch new file mode 100644 index 000000000..d26910851 --- /dev/null +++ b/p/haskell-listlike/debian/watch @@ -0,0 +1,2 @@ +version=3 +opts=downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz| http://hackage.haskell.org/packages/archive/ListLike ([\d\.]*\d)/ |