diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-07-25 14:53:04 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-07-25 14:53:04 +0200 |
commit | 1e02d5a6ef7f029df7f6bd3080e09f36ad904571 (patch) | |
tree | f016b1a40aae466f1cb4cfffea2de8de74803ffe | |
parent | 14bd2fe36d8ed6f726897e563741699d6df90b64 (diff) |
add Debian packaging
git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@11 9dea7c4f-944c-4273-ac1a-574ede026edc
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 24 | ||||
-rw-r--r-- | debian/copyright | 19 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rwxr-xr-x | debian/rules | 3 | ||||
-rw-r--r-- | debian/source/format | 1 |
7 files changed, 55 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3aaf8b4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-stdnum (0.1) unstable; urgency=low + + * Initial release. + + -- Arthur de Jong <adejong@debian.org> Sat, 24 Jul 2010 00:55:41 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..344af00 --- /dev/null +++ b/debian/control @@ -0,0 +1,24 @@ +Source: python-stdnum +Section: python +Priority: optional +Maintainer: Arthur de Jong <adejong@debian.org> +Standards-Version: 3.9.0 +Build-Depends: debhelper (>= 7.0.50~), python-setuptools +Build-Depends-Indep: python, python-support (>= 0.6.4) +XS-Python-Version: >= 2.5 +Homepage: http://arthurdejong.org/python-stdnum/ +Vcs-Svn: http://arthurdejong.org/svn/python-stdnum/python-stdnum/ +Vcs-Browser: http://arthurdejong.org/viewcvs/python-stdnum/python-stdnum/ + +Package: python-stdnum +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Description: Python module to handle standardized numbers and codes + A Python module to parse, validate and reformat standard numbers and codes + in different formats. + . + Currently this module supports the following formats: + . + * ISBN (International Standard Book Number) + * ISSN (International Standard Serial Number) + * BSN (Burgerservicenummer, the Ducth national identification number) diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d998c7c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,19 @@ +This is python-stdnum, a library for parsing and validating standard +number. + +Files: * +Copyright: Copyright (C) 2010 Arthur de Jong +License: LGPL-2.1+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + . + This library 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 + Lesser General Public License for more details. + . + On Debian GNU/Linux systems, the complete text of + the GNU Lesser General Public License can be found in + /usr/share/common-licenses/LGPL-2.1. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..9eafbe1 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README +NEWS diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cbe925d --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |