[Python-modules-commits] [python-urwidtrees] 01/02: Debianize
ChangZhuo Chen
czchen at moszumanska.debian.org
Sun Feb 7 18:09:57 UTC 2016
This is an automated email from the git hooks/post-receive script.
czchen pushed a commit to branch master
in repository python-urwidtrees.
commit 0c142dd00431ff88daf5651cc8eb3671bfbef53e
Author: ChangZhuo Chen (陳昌倬) <czchen at debian.org>
Date: Mon Feb 8 02:07:34 2016 +0800
Debianize
---
debian/README.Debian | 8 ++++++++
debian/changelog | 6 ++++++
debian/compat | 1 +
debian/control | 47 +++++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 46 ++++++++++++++++++++++++++++++++++++++++++++
debian/patches/series | 1 +
debian/rules | 7 +++++++
debian/source/format | 1 +
debian/source/local-options | 2 ++
debian/watch | 2 ++
10 files changed, 121 insertions(+)
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..2a6e696
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,8 @@
+python-urwidtrees for Debian
+
+Please edit this to provide information specific to
+this python-urwidtrees Debian package.
+
+ (Automatically generated by debmake Version 4.2.2)
+
+ -- ChangZhuo Chen (陳昌倬) <czchen at debian.org> Mon, 08 Feb 2016 01:59:29 +0800
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..bd465d5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-urwidtrees (1.0-1) UNRELEASED; urgency=low
+
+ * Initial release. Closes: #nnnn
+ <nnnn is the bug number of your ITP>
+
+ -- ChangZhuo Chen (陳昌倬) <czchen at debian.org> Mon, 08 Feb 2016 01:59:29 +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..8093995
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,47 @@
+Source: python-urwidtrees
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: ChangZhuo Chen (陳昌倬) <czchen at debian.org>,
+Build-Depends: debhelper (>=9),
+ dh-python,
+ python-all,
+ python3-all
+Standards-Version: 3.9.7
+Homepage: https://github.com/pazz/urwidtrees
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/python-urwidtrees.git
+Vcs-Git: https://anonscm.debian.org/cgit/python-modules/packages/python-urwidtrees.git
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+
+Package: python-urwidtrees
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+ ${python:Depends},
+Description: Urwid Tree Container API
+ This is a Widget Container API for the urwid toolkit. It uses a MVC
+ approach and allows to build trees of widgets. Its design goals are:
+ .
+ * clear separation classes that define, decorate and display trees of.
+ * widgets representation of trees by local operations on node positions.
+ * easy to use default implementation for simple trees Collapses are.
+ * considered decoration.
+ .
+ This package is for Python 2 environment.
+
+Package: python3-urwidtrees
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+ ${python3:Depends},
+Description: Urwid Tree Container API
+ This is a Widget Container API for the urwid toolkit. It uses a MVC
+ approach and allows to build trees of widgets. Its design goals are:
+ .
+ * clear separation classes that define, decorate and display trees of.
+ * widgets representation of trees by local operations on node positions.
+ * easy to use default implementation for simple trees Collapses are.
+ * considered decoration.
+ .
+ This package is for Python 3 environment.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2009252
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,46 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-urwidtrees
+Source: <url://example.com>
+
+Files: README.md
+ docs/Makefile
+ docs/source/.ropeproject/config.py
+ docs/source/.ropeproject/globalnames
+ docs/source/.ropeproject/history
+ docs/source/.ropeproject/objectdb
+ docs/source/conf.py
+ docs/source/containers.rst
+ docs/source/decoration.rst
+ docs/source/examples.rst
+ docs/source/index.rst
+ docs/source/structure.rst
+ setup.py
+ urwidtrees/__init__.py
+ urwidtrees/lru_cache.py
+Copyright: __NO_COPYRIGHT_NOR_LICENSE__
+License: __UNKNOWN__
+
+Files: docs/examples/example1.py
+ docs/examples/example2.arrows.py
+ docs/examples/example3.collapse.py
+ docs/examples/example4.filesystem.py
+ docs/examples/example5.nested.py
+ urwidtrees/decoration.py
+ urwidtrees/nested.py
+ urwidtrees/tree.py
+ urwidtrees/widgets.py
+Copyright: 2013 Patrick Totzke <patricktotzke at gmail.com>
+License: GPL-3.0
+ This file is released under the GNU GPL, version 3 or a later revision.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+#----------------------------------------------------------------------------
+# binary files (skipped):
+# docs/examples/example1.pyc
+# docs/examples/__pycache__/example1.cpython-34.pyc
+
+#----------------------------------------------------------------------------
+# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
+# license/copyright files.
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..4a97dfa
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+# You must remove unused comment lines for the released package.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6471988
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+#export DH_VERBOSE = 1
+export PYBUILD_NAME = pgspecial
+
+%:
+ 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/source/local-options b/debian/source/local-options
new file mode 100644
index 0000000..00131ee
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1,2 @@
+#abort-on-upstream-changes
+#unapply-patches
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..76575dc
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+# You must remove unused comment lines for the released package.
+version=3
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-urwidtrees.git
More information about the Python-modules-commits
mailing list