[Pkg-haskell-commits] darcs: haskell-edit-distance: debianization

Joey Hess joey at kitenet.net
Fri Jan 4 14:49:48 UTC 2013


Fri Apr  6 19:05:07 UTC 2012  Joey Hess <joey at kitenet.net>
  * debianization
  Ignore-this: 746391d60b6e5f021abbedd46290cccd

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

Fri Apr  6 19:05:07 UTC 2012  Joey Hess <joey at kitenet.net>
  * debianization
  Ignore-this: 746391d60b6e5f021abbedd46290cccd
diff -rN -u old-haskell-edit-distance//changelog new-haskell-edit-distance//changelog
--- old-haskell-edit-distance//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//changelog	2013-01-04 14:49:48.346234201 +0000
@@ -0,0 +1,5 @@
+haskell-edit-distance (0.2.1-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Joey Hess <joeyh at debian.org>  Fri, 06 Apr 2012 15:02:18 -0400
diff -rN -u old-haskell-edit-distance//compat new-haskell-edit-distance//compat
--- old-haskell-edit-distance//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//compat	2013-01-04 14:49:48.335234195 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-edit-distance//control new-haskell-edit-distance//control
--- old-haskell-edit-distance//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//control	2013-01-04 14:49:48.339233853 +0000
@@ -0,0 +1,54 @@
+Source: haskell-edit-distance
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Joey Hess <joeyh at debian.org>
+Build-Depends: debhelper (>= 9)
+  , cdbs
+  , haskell-devscripts (>= 0.8)
+  , ghc
+  , ghc-prof
+Build-Depends-Indep: ghc-doc
+Standards-Version: 3.9.3
+Homepage: http://hackage.haskell.org/package/edit-distance
+Vcs-Git: http://anonscm.debian.org/git/pkg-haskell/haskell-edit-distance.git/
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-haskell/haskell-edit-distance.git;a=summary
+
+Package: libghc-edit-distance-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Haskell fuzzy matching - GHC libraries
+ Optimized edit distances for fuzzy matching, including Levenshtein
+ and restricted Damerau-Levenshtein algorithms.
+ .
+ This package contains the libraries compiled for GHC.
+
+Package: libghc-edit-distance-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Haskell fuzzy matching - GHC profiling libraries
+ Optimized edit distances for fuzzy matching, including Levenshtein
+ and restricted Damerau-Levenshtein algorithms.
+ .
+ This package contains the profiling libraries compiled for GHC.
+
+Package: libghc-edit-distance-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Haskell fuzzy matching - documentation
+ Optimized edit distances for fuzzy matching, including Levenshtein
+ and restricted Damerau-Levenshtein algorithms.
+ .
+ This package contains the library documentation.
diff -rN -u old-haskell-edit-distance//copyright new-haskell-edit-distance//copyright
--- old-haskell-edit-distance//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//copyright	2013-01-04 14:49:48.335234195 +0000
@@ -0,0 +1,35 @@
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Upstream-Name: edit-distance
+Upstream-Contact: Maximilian Bolingbroke
+Source: http://hackage.haskell.org/package/edit-distance
+
+Copyright: 2008 Maximilian Bolingbroke
+License: BSD
+ 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 Maximilian Bolingbroke nor the names of other 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 THE COPYRIGHT OWNER OR
+ CONTRIBUTORS 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.
+
+Files: debian/*
+Copyright: © 2012 Joey Hess <joeyh at debian.org>
+License: GPL-3+
+ The Debian packaging information is under the GPL, version 3 or later.  On
+ Debian GNU/Linux systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
diff -rN -u old-haskell-edit-distance//docs new-haskell-edit-distance//docs
--- old-haskell-edit-distance//docs	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//docs	2013-01-04 14:49:48.335234195 +0000
@@ -0,0 +1 @@
+README.textile
diff -rN -u old-haskell-edit-distance//rules new-haskell-edit-distance//rules
--- old-haskell-edit-distance//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//rules	2013-01-04 14:49:48.335234195 +0000
@@ -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 -rN -u old-haskell-edit-distance//source/format new-haskell-edit-distance//source/format
--- old-haskell-edit-distance//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//source/format	2013-01-04 14:49:48.339233853 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-edit-distance//watch new-haskell-edit-distance//watch
--- old-haskell-edit-distance//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-edit-distance//watch	2013-01-04 14:49:48.339233853 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|edit-distance-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/edit-distance \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list