[Pkg-haskell-commits] darcs: haskell-language-haskell-extract: Initial Check-In

kiwamu at debian.or.jp kiwamu at debian.or.jp
Wed Nov 2 06:00:51 UTC 2011


Wed Nov  2 06:00:26 UTC 2011  kiwamu at debian.or.jp
  * Initial Check-In
  Ignore-this: a7c4bc064fcbe1a5c02a0bfaa573661

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Wed Nov  2 06:00:26 UTC 2011  kiwamu at debian.or.jp
  * Initial Check-In
  Ignore-this: a7c4bc064fcbe1a5c02a0bfaa573661
diff -rN -u old-haskell-language-haskell-extract//changelog new-haskell-language-haskell-extract//changelog
--- old-haskell-language-haskell-extract//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//changelog	2011-11-02 06:00:51.235721283 +0000
@@ -0,0 +1,14 @@
+haskell-language-haskell-extract (0.2.1-2) UNRELEASED; urgency=low
+
+  * repo is moved to darcs.
+  * change Vcs-* lines on debian/control.
+  * ITP (Closes: #644378)
+
+ -- Kiwamu Okabe <kiwamu at debian.or.jp>  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 <kiwamu at debian.or.jp>  Wed, 05 Oct 2011 11:26:44 +0900
+
diff -rN -u old-haskell-language-haskell-extract//compat new-haskell-language-haskell-extract//compat
--- old-haskell-language-haskell-extract//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//compat	2011-11-02 06:00:51.239673152 +0000
@@ -0,0 +1 @@
+7
\ No newline at end of file
diff -rN -u old-haskell-language-haskell-extract//control new-haskell-language-haskell-extract//control
--- old-haskell-language-haskell-extract//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//control	2011-11-02 06:00:51.239673152 +0000
@@ -0,0 +1,113 @@
+Source: haskell-language-haskell-extract
+Priority: extra
+Section: haskell
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Kiwamu Okabe <kiwamu at debian.or.jp>
+Build-Depends: debhelper (>= 7.0),
+               haskell-devscripts (>= 0.8),
+               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.2
+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.
diff -rN -u old-haskell-language-haskell-extract//copyright new-haskell-language-haskell-extract//copyright
--- old-haskell-language-haskell-extract//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//copyright	2011-11-02 06:00:51.239673152 +0000
@@ -0,0 +1,24 @@
+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.
\ No newline at end of file
diff -rN -u old-haskell-language-haskell-extract//rules new-haskell-language-haskell-extract//rules
--- old-haskell-language-haskell-extract//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//rules	2011-11-02 06:00:51.239673152 +0000
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-language-haskell-extract//source/format new-haskell-language-haskell-extract//source/format
--- old-haskell-language-haskell-extract//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//source/format	2011-11-02 06:00:51.239673152 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-language-haskell-extract//watch new-haskell-language-haskell-extract//watch
--- old-haskell-language-haskell-extract//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-language-haskell-extract//watch	2011-11-02 06:00:51.243674186 +0000
@@ -0,0 +1,5 @@
+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)/





More information about the Pkg-haskell-commits mailing list