[Python-modules-commits] [python-cement] 07/07: change version to 2.8.2-1 (unstable) Initial release (Closes: #824826). change urgency to low

Michael Fladischer fladi at moszumanska.debian.org
Fri May 20 08:38:21 UTC 2016


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

fladi pushed a commit to branch master
in repository python-cement.

commit b239218fcdc5c6490da97f813d76b28967aba032
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Fri May 20 10:15:49 2016 +0200

    change version to 2.8.2-1 (unstable)
    Initial release (Closes: #824826).
    change urgency to low
---
 debian/changelog                  |   5 ++
 debian/clean                      |   8 +++
 debian/compat                     |   1 +
 debian/control                    | 139 ++++++++++++++++++++++++++++++++++++++
 debian/copyright                  |  67 ++++++++++++++++++
 debian/python-cement-doc.doc-base |  14 ++++
 debian/python-cement-doc.docs     |   1 +
 debian/python-cement.docs         |   1 +
 debian/python3-cement.docs        |   1 +
 debian/rules                      |  18 +++++
 debian/watch                      |   3 +
 11 files changed, 258 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..75eb259
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-cement (2.8.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #824826).
+
+ -- Michael Fladischer <fladi at debian.org>  Fri, 20 May 2016 10:15:43 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..b5ea9cf
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,8 @@
+cement.egg-info/PKG-INFO
+cement.egg-info/SOURCES.txt
+cement.egg-info/dependency_links.txt
+cement.egg-info/entry_points.txt
+cement.egg-info/namespace_packages.txt
+cement.egg-info/not-zip-safe
+cement.egg-info/top_level.txt
+doc/source/license.rst
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..fc76900
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,139 @@
+Source: python-cement
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-argcomplete,
+               python-colorlog,
+               python-configobj,
+               python-genshi,
+               python-mock,
+               python-nose,
+               python-pyinotify,
+               python-pylibmc,
+               python-pystache,
+               python-setuptools,
+               python-tabulate,
+               python-yaml,
+               python3-all,
+               python3-argcomplete,
+               python3-colorlog,
+               python3-configobj,
+               python3-genshi,
+               python3-mock,
+               python3-nose,
+               python3-pyinotify,
+               python3-pylibmc,
+               python3-pystache,
+               python3-setuptools,
+               python3-sphinx,
+               python3-tabulate,
+               python3-yaml
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-cement.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-cement.git
+Homepage: http://builtoncement.com/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+
+Package: python-cement
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Recommends: python-argcomplete,
+            python-colorlog,
+            python-configobj,
+            python-genshi,
+            python-pyinotify,
+            python-pylibmc,
+            python-pystache,
+            python-tabulate,
+            python-yaml
+Suggests: python-cement-doc
+Description: CLI Application Framework (Python2 version)
+ Cement is an advanced CLI Application Framework for Python. Its goal is to
+ introduce a standard, and feature-full platform for both simple and complex
+ command line applications as well as support rapid development needs without
+ sacrificing quality. Cement is flexible, and it’s use cases span from the
+ simplicity of a micro-framework to the complexity of a mega-framework.
+ .
+ Features include:
+  * Core pieces of the framework are customizable via handlers/interfaces
+  * Extension handler interface to easily extend framework functionality
+  * Config handler supports parsing multiple config files into one config
+  * Argument handler parses command line arguments and merges with config
+  * Log handler supports console and file logging
+  * Plugin handler provides an interface to easily extend your application
+  * Hook support adds a bit of magic to apps and also ties into framework
+  * Handler system connects implementation classes with Interfaces
+  * Output handler interface renders return dictionaries to console
+  * Cache handler interface adds caching support for improved performance
+  * Controller handler supports sub-commands, and nested controllers
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-cement
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Recommends: python3-argcomplete,
+            python3-colorlog,
+            python3-configobj,
+            python3-genshi,
+            python3-pyinotify,
+            python3-pylibmc,
+            python3-pystache,
+            python3-tabulate,
+            python3-yaml
+Suggests: python-cement-doc
+Description: CLI Application Framework (Python3 version)
+ Cement is an advanced CLI Application Framework for Python. Its goal is to
+ introduce a standard, and feature-full platform for both simple and complex
+ command line applications as well as support rapid development needs without
+ sacrificing quality. Cement is flexible, and it’s use cases span from the
+ simplicity of a micro-framework to the complexity of a mega-framework.
+ .
+ Features include:
+  * Core pieces of the framework are customizable via handlers/interfaces
+  * Extension handler interface to easily extend framework functionality
+  * Config handler supports parsing multiple config files into one config
+  * Argument handler parses command line arguments and merges with config
+  * Log handler supports console and file logging
+  * Plugin handler provides an interface to easily extend your application
+  * Hook support adds a bit of magic to apps and also ties into framework
+  * Handler system connects implementation classes with Interfaces
+  * Output handler interface renders return dictionaries to console
+  * Cache handler interface adds caching support for improved performance
+  * Controller handler supports sub-commands, and nested controllers
+ .
+ This package contains the Python 3 version of the library.
+
+Package: python-cement-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends},
+         ${sphinxdoc:Depends}
+Description: CLI Application Framework (Documentation)
+ Cement is an advanced CLI Application Framework for Python. Its goal is to
+ introduce a standard, and feature-full platform for both simple and complex
+ command line applications as well as support rapid development needs without
+ sacrificing quality. Cement is flexible, and it’s use cases span from the
+ simplicity of a micro-framework to the complexity of a mega-framework.
+ .
+ Features include:
+  * Core pieces of the framework are customizable via handlers/interfaces
+  * Extension handler interface to easily extend framework functionality
+  * Config handler supports parsing multiple config files into one config
+  * Argument handler parses command line arguments and merges with config
+  * Log handler supports console and file logging
+  * Plugin handler provides an interface to easily extend your application
+  * Hook support adds a bit of magic to apps and also ties into framework
+  * Handler system connects implementation classes with Interfaces
+  * Output handler interface renders return dictionaries to console
+  * Cache handler interface adds caching support for improved performance
+  * Controller handler supports sub-commands, and nested controllers
+ .
+ This package contains the documentation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..51458dd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,67 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-cement
+Upstream-Contact: Data Folk Labs, LLC <team at datafolklabs.com>
+Source: https://pypi.python.org/pypi/cement
+
+Files: *
+Copyright: 2009-2016 Data Folk Labs, LLC <team at datafolklabs.com>
+License: BSD-3-clause-Data-Folk-Labs
+
+Files: cement/utils/version.py
+Copyright: Django Software Foundation and individual contributors
+License: BSD-3-clause-Django
+
+Files: debian/*
+Copyright: 2015, Fladischer Michael <fladi at debian.org>
+License: BSD-3-clause-Data-Folk-Labs
+
+License: BSD-3-clause-Data-Folk-Labs
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+     * Redistributions of source code must retain the above copyright notice,
+       this list of conditions and the following disclaimer.
+     * 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.
+     * Neither the name of Data Folk Labs, LLC. nor the names of its
+       contributors may be used to endorse or promote products derived from
+       this software without specific prior written permission.
+ .
+ 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.
+
+License: BSD-3-clause-Django
+ 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.
+ .
+    3. Neither the name of Django nor the names of its contributors may be
+       used to endorse or promote products derived from this software without
+       specific prior written permission.
+ .
+ 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 OWNER 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-cement-doc.doc-base b/debian/python-cement-doc.doc-base
new file mode 100644
index 0000000..58bb0e5
--- /dev/null
+++ b/debian/python-cement-doc.doc-base
@@ -0,0 +1,14 @@
+Document: python-cement-doc
+Title: Cement Framework Documentation
+Author: Data Folk Labs, LLC
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-cement-doc/html/index.html
+Files: /usr/share/doc/python-cement-doc/html/*.html
+       /usr/share/doc/python-cement-doc/html/api/*.html
+       /usr/share/doc/python-cement-doc/html/api/core/*.html
+       /usr/share/doc/python-cement-doc/html/api/ext/*.html
+       /usr/share/doc/python-cement-doc/html/api/utils/*.html
+       /usr/share/doc/python-cement-doc/html/dev/*.html
+       /usr/share/doc/python-cement-doc/html/examples/*.html
diff --git a/debian/python-cement-doc.docs b/debian/python-cement-doc.docs
new file mode 100644
index 0000000..8137b04
--- /dev/null
+++ b/debian/python-cement-doc.docs
@@ -0,0 +1 @@
+doc/build/html
diff --git a/debian/python-cement.docs b/debian/python-cement.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python-cement.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/python3-cement.docs b/debian/python3-cement.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-cement.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4815165
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=cement
+export PYBUILD_TEST_ARGS=-e '(memcache|daemon_tests)'
+
+%:
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+	dh_auto_build
+	PYTHONPATH=. sphinx-build -b html -d doc/build/doctrees -N doc/source doc/build/html
+
+override_dh_clean:
+	dh_clean
+	rm -rf doc/build/*
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..ca3455e
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python-cement-$1\.tar\.gz/ \
+https://github.com/datafolklabs/cement/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the Python-modules-commits mailing list