debian/0000755000000000000000000000000012236202625007166 5ustar debian/watch0000644000000000000000000000037412036250572010225 0ustar version=3 opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\ filenamemangle=s|(.*)/$|language-haskell-extract-$1.tar.gz|" \ http://hackage.haskell.org/packages/archive/language-haskell-extract \ ([\d\.]*\d)/ debian/rules0000755000000000000000000000015412036250572010250 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/hlibrary.mk debian/copyright0000644000000000000000000000272412036250572011130 0ustar Copyright (c) 2010, Oscar Finnsson 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 Oscar Finnsson 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 THE COPYRIGHT HOLDERS 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 Oscar Finnsson 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.debian/source/0000755000000000000000000000000012036250572010470 5ustar debian/source/format0000644000000000000000000000001412036250572011676 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212147620566010375 0ustar 9 debian/control0000644000000000000000000000770712147621357010614 0ustar Source: haskell-language-haskell-extract Priority: extra Section: haskell Maintainer: Debian Haskell Group Uploaders: Kiwamu Okabe Build-Depends: debhelper (>= 9), haskell-devscripts (>= 0.8.13), cdbs, ghc, ghc-prof, libghc-src-exts-dev, libghc-src-exts-prof, libghc-regex-posix-dev, libghc-regex-posix-prof Build-Depends-Indep: ghc-doc, libghc-src-exts-doc, libghc-regex-posix-doc Standards-Version: 3.9.4 Homepage: http://github.com/finnsson/template-helper Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-language-haskell-extract Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-language-haskell-extract DM-Upload-Allowed: yes Package: libghc-language-haskell-extract-dev Architecture: any Depends: ${shlibs:Depends}, ${haskell:Depends}, ${misc:Depends} Recommends: ${haskell:Recommends} Suggests: ${haskell:Suggests} Provides: ${haskell:Provides} Description: automatically extract functions from the local code. language-haskell-extract contains some useful helper functions on top of Template Haskell. functionExtractor extracts all functions after a regexp-pattern. . > foo = "test" > boo = "testing" > bar = $(functionExtractor "oo$") . will automagically extract the functions ending with "oo" such as . > bar = [("foo",foo), ("boo",boo)] . This can be useful if you wish to extract all functions beginning with test (for a test-framework) or all functions beginning with wc (for a web service). . functionExtractorMap works like functionsExtractor but applies a function over all function-pairs. This functions is useful if the common return type of the functions is a type class. . This package contains the normal library files. Package: libghc-language-haskell-extract-prof Architecture: any Depends: ${haskell:Depends}, ${misc:Depends} Recommends: ${haskell:Recommends} Suggests: ${haskell:Suggests} Provides: ${haskell:Provides} Description: automatically extract functions from the local code.; profiling libraries language-haskell-extract contains some useful helper functions on top of Template Haskell. functionExtractor extracts all functions after a regexp-pattern. . > foo = "test" > boo = "testing" > bar = $(functionExtractor "oo$") . will automagically extract the functions ending with "oo" such as . > bar = [("foo",foo), ("boo",boo)] . This can be useful if you wish to extract all functions beginning with test (for a test-framework) or all functions beginning with wc (for a web service). . functionExtractorMap works like functionsExtractor but applies a function over all function-pairs. This functions is useful if the common return type of the functions is a type class. . This package contains the libraries compiled with profiling enabled. Package: libghc-language-haskell-extract-doc Architecture: all Section: doc Depends: ${haskell:Depends}, ${misc:Depends} Recommends: ${haskell:Recommends} Suggests: ${haskell:Suggests} Description: automatically extract functions from the local code.; documentation language-haskell-extract contains some useful helper functions on top of Template Haskell. functionExtractor extracts all functions after a regexp-pattern. . > foo = "test" > boo = "testing" > bar = $(functionExtractor "oo$") . will automagically extract the functions ending with "oo" such as . > bar = [("foo",foo), ("boo",boo)] . This can be useful if you wish to extract all functions beginning with test (for a test-framework) or all functions beginning with wc (for a web service). . functionExtractorMap works like functionsExtractor but applies a function over all function-pairs. This functions is useful if the common return type of the functions is a type class. . This package contains the documentation files. debian/changelog0000644000000000000000000000256512236202625011050 0ustar haskell-language-haskell-extract (0.2.1-6build1) trusty; urgency=low * Rebuild for new GHC ABIs. -- Colin Watson Tue, 05 Nov 2013 14:49:57 +0000 haskell-language-haskell-extract (0.2.1-6) unstable; urgency=low * Enable compat level 9 -- Joachim Breitner Fri, 24 May 2013 12:51:14 +0200 haskell-language-haskell-extract (0.2.1-5) experimental; urgency=low * Depend on haskell-devscripts 0.8.13 to ensure this packages is built against experimental * Bump standards version, no change -- Joachim Breitner Wed, 17 Oct 2012 21:25:08 +0200 haskell-language-haskell-extract (0.2.1-4) unstable; urgency=low * Sourceful upload to rebuild documentation package -- Iain Lane Thu, 23 Feb 2012 11:16:58 +0000 haskell-language-haskell-extract (0.2.1-3) unstable; urgency=low * first release. * ITP (Closes: #644378) -- Kiwamu Okabe Wed, 02 Nov 2011 15:02:25 +0900 haskell-language-haskell-extract (0.2.1-2) UNRELEASED; urgency=low * repo is moved to darcs. * change Vcs-* lines on debian/control. -- Kiwamu Okabe Wed, 12 Oct 2011 23:10:14 +0900 haskell-language-haskell-extract (0.2.1-1) UNRELEASED; urgency=low * Debianization generated by cabal-debian -- Kiwamu Okabe Wed, 05 Oct 2011 11:26:44 +0900