[Python-modules-commits] [python-kanboard] 02/10: Debianize

ChangZhuo Chen czchen at moszumanska.debian.org
Tue Feb 28 15:37:50 UTC 2017


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

czchen pushed a commit to branch master
in repository python-kanboard.

commit 525f943d94b4309a061663dfedf9ab73d0392d4a
Author: ChangZhuo Chen (陳昌倬) <czchen at debian.org>
Date:   Tue Feb 28 23:22:04 2017 +0800

    Debianize
---
 debian/changelog      |  5 ++++
 debian/compat         |  1 +
 debian/control        | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright      | 31 +++++++++++++++++++
 debian/rules          | 18 +++++++++++
 debian/source/format  |  1 +
 debian/source/options |  1 +
 debian/watch          |  3 ++
 8 files changed, 143 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5321733
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-kanboard (1.0.1-1) unstable; urgency=medium
+
+  * Initial release (Closes: #856394)
+
+ -- ChangZhuo Chen (陳昌倬) <czchen at debian.org>  Tue, 28 Feb 2017 23:12:54 +0800
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2850dcc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,83 @@
+Source: python-kanboard
+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 (>= 10),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/kanboard/python-api-client
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-kanboard.git
+Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/python-kanboard.git
+
+Package: python-kanboard
+Architecture: all
+Depends: ${python:Depends},
+         ${misc:Depends}
+Suggests: python-kanboard-doc
+Description: minimalist kanboard python client (Python 2)
+ Kanboard (https://kanboard.net/) is project management software that
+ focuses on the Kanban methodology. It has the following features:
+ .
+ * Visualize your work
+ * Limit your work in progress to be more efficient
+ * Customize your boards according to your business activities
+ * Multiple projects with the ability to drag and drop tasks
+ * Reports and analytics
+ * Fast and simple to use
+ * Access from anywhere with a modern browser
+ * Plugins and integrations with external services
+ * Free, open source and self-hosted
+ * Super simple installation
+ .
+ This package installs the library for Python 2.
+
+Package: python3-kanboard
+Architecture: all
+Depends: ${python3:Depends},
+         ${misc:Depends}
+Suggests: python-kanboard-doc
+Description: minimalist kanboard python client (Python 3)
+ Kanboard (https://kanboard.net/) is project management software that
+ focuses on the Kanban methodology. It has the following features:
+ .
+ * Visualize your work
+ * Limit your work in progress to be more efficient
+ * Customize your boards according to your business activities
+ * Multiple projects with the ability to drag and drop tasks
+ * Reports and analytics
+ * Fast and simple to use
+ * Access from anywhere with a modern browser
+ * Plugins and integrations with external services
+ * Free, open source and self-hosted
+ * Super simple installation
+ .
+ This package installs the library for Python 3.
+
+Package: python-kanboard-doc
+Architecture: all
+Section: doc
+Depends: ${sphinxdoc:Depends},
+         ${misc:Depends}
+Description: minimalist kanboard python client (document)
+ Kanboard (https://kanboard.net/) is project management software that
+ focuses on the Kanban methodology. It has the following features:
+ .
+ * Visualize your work
+ * Limit your work in progress to be more efficient
+ * Customize your boards according to your business activities
+ * Multiple projects with the ability to drag and drop tasks
+ * Reports and analytics
+ * Fast and simple to use
+ * Access from anywhere with a modern browser
+ * Plugins and integrations with external services
+ * Free, open source and self-hosted
+ * Super simple installation
+ .
+ This is the common documentation package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4955a1c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: kanboard
+Source: https://github.com/kanboard/python-api-client
+
+Files: *
+Copyright: Copyright (c) 2016 Frederic Guillot
+License: Expat
+
+Files: debian/*
+Copyright: 2017 ChangZhuo Chen (陳昌倬) <czchen at debian.org>
+License: Expat
+
+License: Expat
+ 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/rules b/debian/rules
new file mode 100755
index 0000000..acbdc9f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME=python-kanboard
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+
+# If you need to rebuild the Sphinx documentation
+# Add spinxdoc to the dh --with line
+#override_dh_auto_build:
+#	dh_auto_build
+#	PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bhtml        docs/ build/html # HTML generator
+#	PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bman        docs/ build/man # Manpage generator
+
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/options b/debian/source/options
new file mode 100644
index 0000000..cb61fa5
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..708757f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/kanboard/kanboard-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

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



More information about the Python-modules-commits mailing list