[Python-modules-commits] [python-blessed] 02/07: Debianize
ChangZhuo Chen
czchen at moszumanska.debian.org
Mon May 9 11:16:51 UTC 2016
This is an automated email from the git hooks/post-receive script.
czchen pushed a commit to branch master
in repository python-blessed.
commit a04cecb9e01bf03dfcc5a9b635f42a7f060a8e0f
Author: ChangZhuo Chen (陳昌倬) <czchen at debian.org>
Date: Mon May 9 18:52:03 2016 +0800
Debianize
---
debian/README.Debian | 8 +++++
debian/changelog | 6 ++++
debian/compat | 1 +
debian/control | 16 ++++++++++
debian/copyright | 76 +++++++++++++++++++++++++++++++++++++++++++++
debian/patches/series | 1 +
debian/rules | 6 ++++
debian/source/format | 1 +
debian/source/local-options | 2 ++
debian/watch | 2 ++
10 files changed, 119 insertions(+)
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..b006a72
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,8 @@
+python-blessed for Debian
+
+Please edit this to provide information specific to
+this python-blessed Debian package.
+
+ (Automatically generated by debmake Version 4.2.5)
+
+ -- ChangZhuo Chen (陳昌倬) <czchen at debian.org> Mon, 09 May 2016 18:51:49 +0800
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7bd2b41
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-blessed (1.14.1-1) UNRELEASED; urgency=low
+
+ * Initial release. Closes: #nnnn
+ <nnnn is the bug number of your ITP>
+
+ -- ChangZhuo Chen (陳昌倬) <czchen at debian.org> Mon, 09 May 2016 18:51:49 +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..4e8af7d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: python-blessed
+Section: unknown
+Priority: extra
+Maintainer: ChangZhuo Chen (陳昌倬) <czchen at debian.org>
+Build-Depends: debhelper (>=9), dh-python, python-all, python3-all
+Standards-Version: 3.9.6
+Homepage: <insert the upstream URL, if relevant>
+X-Python-Version: >= 2.6
+
+Package: python-blessed
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${python:Depends}
+Description: auto-generated package by debmake
+ This Debian binary package was auto-generated by the
+ debmake(1) command provided by the debmake package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..749f9ce
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,76 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-blessed
+Source: <url://example.com>
+
+Files: .coveragerc
+ MANIFEST.in
+ PKG-INFO
+ README.rst
+ blessed.egg-info/PKG-INFO
+ blessed.egg-info/SOURCES.txt
+ blessed.egg-info/dependency_links.txt
+ blessed.egg-info/requires.txt
+ blessed.egg-info/top_level.txt
+ blessed.egg-info/zip-safe
+ blessed/__init__.py
+ blessed/_capabilities.py
+ blessed/formatters.py
+ blessed/keyboard.py
+ blessed/sequences.py
+ blessed/terminal.py
+ blessed/tests/__init__.py
+ blessed/tests/accessories.py
+ blessed/tests/test_core.py
+ blessed/tests/test_formatters.py
+ blessed/tests/test_keyboard.py
+ blessed/tests/test_length_sequence.py
+ blessed/tests/test_sequences.py
+ blessed/tests/test_wrap.py
+ blessed/tests/wall.ans
+ docs/api.rst
+ docs/contributing.rst
+ docs/examples.rst
+ docs/further.rst
+ docs/history.rst
+ docs/index.rst
+ docs/intro.rst
+ docs/overview.rst
+ docs/pains.rst
+ requirements-about.txt
+ requirements-analysis.txt
+ requirements-docs.txt
+ requirements-tests.txt
+ requirements.txt
+ setup.cfg
+ setup.py
+ tox.ini
+ version.json
+Copyright: __NO_COPYRIGHT_NOR_LICENSE__
+License: __NO_LICENSE_TEXT__
+
+#----------------------------------------------------------------------------
+# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
+# license/copyright files.
+
+#----------------------------------------------------------------------------
+# License file: LICENSE
+ Copyright (c) 2014 Jeff Quast
+ Copyright (c) 2011 Erik Rose
+ .
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
+ this software and associated documentation files (the "Software"), to deal in
+ the Software without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+ of the Software, and to permit persons to whom the Software is furnished to do
+ so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
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..7df2253
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+#export DH_VERBOSE = 1
+
+%:
+ dh $@ --with python2
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-blessed.git
More information about the Python-modules-commits
mailing list