[Python-modules-commits] [python-jellyfish] 02/02: Initial debian/ import

Víctor Cuadrado Juan viccuad-guest at moszumanska.debian.org
Mon Feb 29 12:16:46 UTC 2016


This is an automated email from the git hooks/post-receive script.

viccuad-guest pushed a commit to branch master
in repository python-jellyfish.

commit 42a71d365d15ff057748e771a22059c40ee0f240
Author: Víctor Cuadrado Juan <me at viccuad.me>
Date:   Mon Feb 29 13:13:22 2016 +0100

    Initial debian/ import
---
 debian/changelog     |  6 +++++
 debian/compat        |  1 +
 debian/control       | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 64 +++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules         | 19 +++++++++++++++
 debian/source/format |  1 +
 debian/watch         |  3 +++
 7 files changed, 162 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8a66692
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-jellyfish (0.5.2-1) unstable; urgency=medium
+
+  [ Víctor Cuadrado Juan ]
+  * Initial release. (Closes: #816273)
+
+ -- Víctor Cuadrado Juan <me at viccuad.me>  Mon, 29 Feb 2016 12:47:40 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f86f2c7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,68 @@
+Source: python-jellyfish
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Víctor Cuadrado Juan <me at viccuad.me>
+Build-Depends:
+ debhelper (>=9),
+ dh-python,python-all (>= 2.6.6-3~),
+ python-setuptools,
+ python3-all,
+ python3-setuptools,
+# for C headers:
+ python-dev,
+ python3-dev,
+# for tests:
+ python-pytest,
+ python3-pytest,
+ python-unicodecsv,
+ python3-unicodecsv
+Standards-Version: 3.9.7
+Homepage: https://github.com/jamesturk/jellyfish
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-jellyfish.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-jellyfish.git
+
+
+Package: python-jellyfish
+Architecture: any
+Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Description: Library for doing approximate and phonetic matching of strings (Python 2)
+ It uses the following string comparison Algorithms
+ (it provides C and Python implementation):
+  * Levenshtein Distance
+  * Damerau-Levenshtein Distance
+  * Jaro Distance
+  * Jaro-Winkler Distance
+  * Match Rating Approach Comparison
+  * Hamming Distance
+ .
+ Supports the following phonetic encoding:
+  * American Soundex
+  * Metaphone
+  * NYSIIS (New York State Identification and Intelligence System)
+  * Match Rating Codex
+ .
+ This package installs the library for Python 2.
+
+Package: python3-jellyfish
+Architecture: any
+Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Description: Library for doing approximate and phonetic matching of strings (Python 3)
+ It uses the following string comparison Algorithms
+ (it provides C and Python implementation):
+  * Levenshtein Distance
+  * Damerau-Levenshtein Distance
+  * Jaro Distance
+  * Jaro-Winkler Distance
+  * Match Rating Approach Comparison
+  * Hamming Distance
+ .
+ Supports the following phonetic encoding:
+  * American Soundex
+  * Metaphone
+  * NYSIIS (New York State Identification and Intelligence System)
+  * Match Rating Codex
+ .
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..20a316c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,64 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: James Turk
+Upstream-Contact: james.p.turk at gmail.com
+Source: https://github.com/jamesturk/jellyfish
+
+
+Files: *
+Copyright: 2015 James Turk
+           2015 Sunlight Foundation
+License: BSD-2-clause
+
+Files: jellyfish/test.py
+Copyright: 2015 James Turk
+           2010 Michael Stephens
+License: BSD-2-clause
+
+Files: setup.py
+Copyright: 2015 James Turk
+           2010 Michael Stephens
+           2012 Petr Hosek
+License: BSD-2-clause
+
+Files:
+ cjellyfish/mra.c
+ cjellyfish/damerau_levenshtein.c
+Copyright: 2015 James Turk
+           2013 Danrich Parrol
+License: BSD-2-clause
+
+Files: cjellyfish/porter.c
+Copyright: 2015 Martin Porter
+License: BSD-2-clause
+Comment:
+ The original author licenses it as:
+ "The software is completely free for any purpose, unless notes at the head of the
+ program text indicates otherwise (which is rare). In any case, the notes about
+ licensing are never more restrictive than the BSD License."
+ .
+ (see: http://tartarus.org/~martin/PorterStemmer/ ,FAQ, #1 )
+ .
+ The current author licenses it as the rest of the project.
+
+
+Files: debian/*
+Copyright: 2016 Víctor Cuadrado Juan
+License: BSD-2-clause
+
+
+License: BSD-2-clause
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU 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 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 <https://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..fb4f658
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME=jellyfish
+
+%:
+	dh $@  --with python2,python3 --buildsystem=pybuild
+
+
+# If you need to rebuild the Sphinx documentation
+# Add spinxdoc to the dh --with line
+#override_dh_auto_build:
+#	dh_auto_build
+#	PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bhtml        docs/ build/html # HTML generator
+#	PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bman        docs/ build/man # Manpage generator
+
+override_dh_auto_test:
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6cf0d6c
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/jellyfish/jellyfish-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-jellyfish.git



More information about the Python-modules-commits mailing list