[Python-modules-commits] [python-intervaltree] 02/02: Initial packaging

Afif Elghraoui afif-guest at moszumanska.debian.org
Thu Dec 17 07:31:50 UTC 2015


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

afif-guest pushed a commit to branch master
in repository python-intervaltree.

commit 827a60bdd374e15e36d3f631e773ebf65a6a53a0
Author: Afif Elghraoui <afif at ghraoui.name>
Date:   Wed Dec 16 23:30:31 2015 -0800

    Initial packaging
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 29 +++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/rules         | 10 ++++++++++
 debian/source/format |  1 +
 debian/watch         |  4 ++++
 8 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f1ee643
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-intervaltree (2.1.0-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #807804)
+
+ -- Afif Elghraoui <afif at ghraoui.name>  Sat, 12 Dec 2015 16:02:45 -0800
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..1425371
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,49 @@
+Source: python-intervaltree
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Afif Elghraoui <afif at ghraoui.name>
+Build-Depends:
+	debhelper (>= 9),
+	dh-python,
+	python-all,
+	python-setuptools,
+	python-sortedcontainers,
+	python3-all,
+	python3-setuptools,
+	python3-sortedcontainers,
+# Test-Depends:
+	python-pytest,
+	python3-pytest,
+Standards-Version: 3.9.6
+Homepage: https://github.com/chaimleib/intervaltree
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/python-intervaltree.git
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/python-intervaltree.git
+
+Package: python-intervaltree
+Architecture: all
+Depends:
+	${misc:Depends},
+	${python:Depends},
+Description: mutable, self-balancing interval tree -- Python 2 library
+ A mutable, self-balancing interval tree for Python 2 and 3
+ where queries may be by point, by range overlap, or by range
+ envelopment. This library was designed to allow tagging text
+ and time intervals, where the intervals include the lower bound
+ but not the upper bound.
+ .
+ This package contains the Python 2 library
+
+Package: python3-intervaltree
+Architecture: all
+Depends:
+	${misc:Depends},
+	${python3:Depends},
+Description: mutable, self-balancing interval tree -- Python 3 library
+ A mutable, self-balancing interval tree for Python 2 and 3
+ where queries may be by point, by range overlap, or by range
+ envelopment. This library was designed to allow tagging text
+ and time intervals, where the intervals include the lower bound
+ but not the upper bound.
+ .
+ This package contains the Python 3 library
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7eb265f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: intervaltree
+Upstream-Contact: Chaim-Leib Halbert <chaim.leib.halbert at gmail.com>
+Source: https://github.com/chaimleib/intervaltree
+
+Files: *
+Copyright: 2013-2015 Chaim-Leib Halbert <chaim.leib.halbert at gmail.com>
+           2014 Konstantin Tretyakov
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2015 Afif Elghraoui <afif at ghraoui.name>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4d554f7
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+#DH_VERBOSE = 1
+
+#include /usr/share/dpkg/default.mk
+
+export PYBUILD_NAME = intervaltree
+
+%:
+	LC_ALL=C.UTF-8 dh $@ --with python2,python3 --buildsystem=pybuild
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..8f3da99
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+
+opts="filenamemangle=s/(?:.*?)?v?(\d[\d.]*)\.tar\.gz/python-intervaltree-$1.tar.gz/" \
+https://github.com/chaimleib/intervaltree/tags (?:.*?/)?v?(\d[\d.]*)\.tar\.gz

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



More information about the Python-modules-commits mailing list