[Python-modules-commits] [dominate] 03/15: Initial release (Closes: #796518)

Ross Gammon ross-guest at moszumanska.debian.org
Thu Mar 16 18:33:05 UTC 2017


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

ross-guest pushed a commit to branch master
in repository dominate.

commit 2a1473c04eb4f475f1cfaef3aa3ad3837716b444
Author: Ross Gammon <rossgammon at mail.dk>
Date:   Mon Aug 24 21:08:45 2015 +0200

    Initial release (Closes: #796518)
---
 debian/changelog         |  6 ++++++
 debian/compat            |  1 +
 debian/control           | 41 +++++++++++++++++++++++++++++++++++++++++
 debian/copyright         | 32 ++++++++++++++++++++++++++++++++
 debian/gbp.conf          | 16 ++++++++++++++++
 debian/rules             |  7 +++++++
 debian/upstream/metadata |  5 +++++
 debian/watch             |  5 +++++
 8 files changed, 113 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..fd7200f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+dominate (2.1.5-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #796518)
+
+ -- Ross Gammon <rossgammon at mail.dk>  Mon, 24 Aug 2015 20:01:00 +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..faf6f30
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,41 @@
+Source: dominate
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Ross Gammon <rossgammon at mail.dk>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/dominate.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/dominate.git
+Homepage: https://github.com/Knio/dominate
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+
+Package: python-dominate
+Architecture: all
+Depends: ${python:Depends},
+         ${misc:Depends}
+Description: Python library for creating and manipulating HTML documents
+ Dominate is a Python library for creating and manipulating HTML documents
+ using an elegant DOM API. It allows you to write HTML pages in pure Python
+ very concisely, which eliminate the need to learn another template language,
+ and to take advantage of the more powerful features of Python.
+ .
+ This package installs the library for Python 2.
+
+Package: python3-dominate
+Architecture: all
+Depends: ${python3:Depends},
+         ${misc:Depends}
+Description: Python library for creating and manipulating HTML documents
+ Dominate is a Python library for creating and manipulating HTML documents 
+ using an elegant DOM API. It allows you to write HTML pages in pure Python 
+ very concisely, which eliminate the need to learn another template language, 
+ and to take advantage of the more powerful features of Python.
+ . 
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..060347a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dominate
+Source: https://github.com/Knio/dominate
+
+Files: *
+Copyright: 2015, Tom Flanagan <tom at zkpq.ca>
+           2015, Jake Wharton <jakewharton at gmail.com>
+           2015, Brad Janke
+License: LGPL-3+
+
+Files: debian/*
+Copyright: 2015, Ross Gammon <rossgammon at mail.dk>
+License: LGPL-3+
+
+License: LGPL-3+
+ Dominate 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 3 of
+ the License, or (at your option) any later version.
+ .
+ Dominate 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.
+ .
+ You should have received a copy of the GNU Lesser General
+ Public License along with dominate.  If not, see
+ <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License version 3 can be found in
+ "/usr/share/common-licenses/GPL-3".
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..21d0417
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,16 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = master
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5ea241f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+# DH_VERBOSE := 1
+export PYBUILD_NAME = dominate
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..a86de8f
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+Bug-Database: https://github.com/Knio/dominate/issues
+Bug-Submit: https://github.com/Knio/dominate/issues/new
+Name: dominate
+Repository: https://github.com/Knio/dominate.git
+Repository-Browse: https://github.com/Knio/dominate
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..7b09881
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\
+filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/dominate-$1.tar.gz/ \
+ https://github.com/Knio/dominate/tags .*/archive/v?([\d\.]+).tar.gz

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



More information about the Python-modules-commits mailing list