[Python-modules-commits] [ldif3] 02/02: Initial release (Closes: #790672).
Michael Fladischer
fladi at moszumanska.debian.org
Tue Jun 30 19:31:07 UTC 2015
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository ldif3.
commit 565acf7031591b4a7eb3a6041e45717d864597bd
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date: Tue Jun 30 21:25:36 2015 +0200
Initial release (Closes: #790672).
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 38 ++++++++++++++++++++++++++++++++++++++
debian/copyright | 33 +++++++++++++++++++++++++++++++++
debian/python-ldif3.docs | 1 +
debian/python3-ldif3.docs | 1 +
debian/rules | 12 ++++++++++++
debian/source/format | 1 +
debian/watch | 3 +++
9 files changed, 95 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6a3925c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ldif3 (3.0.2-1) unstable; urgency=low
+
+ * Initial release (Closes: #790672).
+
+ -- Michael Fladischer <fladi at debian.org> Thu, 02 Apr 2015 15:46:31 +0200
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..77d2cbc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: ldif3
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Section: python
+Priority: extra
+Build-Depends: debhelper (>= 9),
+ python-all,
+ python-setuptools,
+ python3-all,
+ python3-setuptools
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/ldif3.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/ldif3.git
+Homepage: https://github.com/xi/ldif3
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+
+Package: python-ldif3
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends}
+Description: generate and parse LDIF data
+ This module parses and generates LDAP data in the format LDIF. It is
+ implemented in pure Python and does not rely on any non-standard modules. The
+ codebase is a fork of the ldif module from python-ldap with additional
+ python3/unicode support.
+
+Package: python3-ldif3
+Architecture: all
+Depends: ${misc:Depends},
+ ${python3:Depends}
+Description: generate and parse LDIF data (Python3 version)
+ This module parses and generates LDAP data in the format LDIF. It is
+ implemented in pure Python and does not rely on any non-standard modules. The
+ codebase is a fork of the ldif module from python-ldap with additional
+ python3/unicode support.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..73f7cb2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ldif3
+Upstream-Contact: Tobias Bengfort <tobias.bengfort at posteo.de>
+Source: https://github.com/xi/ldif3
+
+Files: *
+Copyright: 2015, Tobias Bengfort <tobias.bengfort at posteo.de>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2015, Michael Fladischer <fladi at debian.org>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+ 2. 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.
+ .
+ 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 HOLDER 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.
diff --git a/debian/python-ldif3.docs b/debian/python-ldif3.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-ldif3.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-ldif3.docs b/debian/python3-ldif3.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-ldif3.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e420019
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=ldif3
+
+%:
+ dh $@ --with=python2,python3 --buildsystem=pybuild
+
+override_dh_installchangelogs:
+ dh_installchangelogs -- CHANGES.rst
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..128c97c
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/ldif3-$1.tar.gz/ \
+https://github.com/xi/ldif3/releases /xi/ldif3/archive/([\d.]+)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/ldif3.git
More information about the Python-modules-commits
mailing list