adddir ./debian addfile ./debian/changelog addfile ./debian/compat addfile ./debian/control addfile ./debian/copyright addfile ./debian/haskell-memotrie-doc.postinst addfile ./debian/haskell-memotrie-doc.postrm addfile ./debian/rules hunk ./debian/changelog 1 +haskell-memotrie (0.0) unstable; urgency=low + + * Debianization generated by cabal-debian + + -- Clifford Beshers Sat, 19 Jul 2008 14:56:04 -0700 + hunk ./debian/compat 1 +5 hunk ./debian/control 1 +Source: haskell-memotrie +Priority: optional +Section: misc +Maintainer: Clifford Beshers +Build-Depends: debhelper (>= 5.0), + haskell-devscripts-cdbs, + cabal-debian, + ghc6 (>= 6.8), + ghc6-doc, + haddock (>= 2.1.0), + ghc6-prof +Standards-Version: 3.7.2.2 +Homepage: http://haskell.org/haskellwiki/MemoTrie + +Package: libghc6-memotrie-dev +Architecture: any +Section: libdevel +Depends: ${haskell:Depends} +Description: Trie-based memo functions + MemoTrie provides a basis for memoized functions over some domains, + using tries. It's based on some code I got from Spencer Janssen. + . + Project wiki page: + . + The module documentation pages have links to colorized source code and + to wiki pages where you can read and contribute user comments. Enjoy! + . + © 2008 by Conal Elliott; BSD3 license. + . + Author: Conal Elliott + Upstream-Maintainer: conal@conal.net + Url: http://code.haskell.org/MemoTrie + . + This package contains the normal library files. + +Package: libghc6-memotrie-prof +Architecture: any +Section: libdevel +Depends: ${haskell:Depends} +Description: Trie-based memo functions + MemoTrie provides a basis for memoized functions over some domains, + using tries. It's based on some code I got from Spencer Janssen. + . + Project wiki page: + . + The module documentation pages have links to colorized source code and + to wiki pages where you can read and contribute user comments. Enjoy! + . + © 2008 by Conal Elliott; BSD3 license. + . + Author: Conal Elliott + Upstream-Maintainer: conal@conal.net + Url: http://code.haskell.org/MemoTrie + . + This package contains the libraries compiled with profiling enabled. + +Package: haskell-memotrie-doc +Architecture: all +Section: libdevel +Depends: ${haskell:Depends} +Description: Trie-based memo functions + MemoTrie provides a basis for memoized functions over some domains, + using tries. It's based on some code I got from Spencer Janssen. + . + Project wiki page: + . + The module documentation pages have links to colorized source code and + to wiki pages where you can read and contribute user comments. Enjoy! + . + © 2008 by Conal Elliott; BSD3 license. + . + Author: Conal Elliott + Upstream-Maintainer: conal@conal.net + Url: http://code.haskell.org/MemoTrie + . + This package contains the documentation files. hunk ./debian/copyright 1 - +BSD hunk ./debian/haskell-memotrie-doc.postinst 1 +#! /bin/sh +# Generic doc postinst script for Haskell cabal libraries v9 by Ian Lynagh. +# +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure|abort-upgrade|abort-remove|abort-deconfigure) + cd /usr/share/doc/ghc6-doc/libraries + /usr/lib/ghc6-doc/gen_contents_index + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 hunk ./debian/haskell-memotrie-doc.postrm 1 +#! /bin/sh +# Generic doc postrm script for Haskell cabal libraries v9 by Ian Lynagh. + +set -e + +DIR=/usr/share/doc/ghc6-doc/libraries +GEN=/usr/lib/ghc6-doc/gen_contents_index + +case "$1" in + *) + [ -d $DIR ] && [ -e $GEN ] && cd $DIR && $GEN + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + hunk ./debian/rules 1 +#!/usr/bin/make -f +include /usr/share/haskell-devscripts/hlibrary.mk