[Python-modules-commits] [bdist-nsi] 04/12: Add packaging.

Dominik George natureshadow-guest at moszumanska.debian.org
Sun Apr 23 19:24:12 UTC 2017


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

natureshadow-guest pushed a commit to branch master
in repository bdist-nsi.

commit a774db9f48d2c8b32f140f3adeab46e60b0cf5d8
Author: Dominik George <nik at naturalnet.de>
Date:   Sun Apr 23 20:30:56 2017 +0200

    Add packaging.
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 42 ++++++++++++++++++++++++++++++++++++
 debian/rules     |  6 ++++++
 debian/watch     |  3 +++
 6 files changed, 122 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a68cf10
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+bdist-nsi (0.1.5-1) unstable; urgency=low
+
+  * Initial release. (Closes: #861016)
+
+ -- Dominik George <nik at naturalnet.de>  Thu, 22 Sep 2016 14:07:12 +0200
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..f256d55
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,65 @@
+Source: bdist-nsi
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders:
+ Dominik George <nik at naturalnet.de>,
+Section: python
+Priority: optional
+Build-Depends:
+ debhelper (>= 10),
+ dh-python,
+ pypy,
+ pypy-setuptools,
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+ python3-all,
+ python3-setuptools,
+Standards-Version: 3.9.8
+Homepage: http://bdist-nsi.sourceforge.net/
+Testsuite: autopkgtest-pkg-python
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/bdist-nsi.git
+Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/bdist-nsi.git
+
+Package: python-bdist-nsi
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ nsis
+Description: Create NSIS windows installers for Python modules (Python 2)
+ The bdist_nsi module extends Python’s distutils module with a bdist_nsi
+ setup command to create binary Windows installers for Python modules,
+ based on NSIS. Thereby, bdist_nsi brings all the features of NSIS to
+ Windows installers for Python modules, such as silent install, modern
+ user interface, and internationalization.
+ .
+ This package contains the Python 2 build.
+
+Package: python3-bdist-nsi
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+ nsis
+Description: Create NSIS windows installers for Python modules (Python 3)
+ The bdist_nsi module extends Python’s distutils module with a bdist_nsi
+ setup command to create binary Windows installers for Python modules,
+ based on NSIS. Thereby, bdist_nsi brings all the features of NSIS to
+ Windows installers for Python modules, such as silent install, modern
+ user interface, and internationalization.
+ .
+ This package contains the Python 3 build.
+
+Package: pypy-bdist-nsi
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${pypy:Depends},
+ nsis
+Description: Create NSIS windows installers for Python modules (PyPy)
+ The bdist_nsi module extends Python’s distutils module with a bdist_nsi
+ setup command to create binary Windows installers for Python modules,
+ based on NSIS. Thereby, bdist_nsi brings all the features of NSIS to
+ Windows installers for Python modules, such as silent install, modern
+ user interface, and internationalization.
+ .
+ This package contains the PyPy build.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c15bd70
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: bdist_nsi
+Upstream-Contact: Amorilia
+Source: https://pypi.python.org/pypi/bdist_nsi
+
+Files: *
+Copyright: 2009 bdist_nsi contributors
+License: BSD
+
+Files: debian/*
+Copyright: 2017 Dominik George <nik at naturalnet.de>
+License: BSD
+
+License: BSD
+ 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 the bdist_nsi project 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/rules b/debian/rules
new file mode 100755
index 0000000..3183faa
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=bdist_nsi
+
+%:
+	dh $@ --with python2,python3,pypy --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..251f7b5
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts="uversionmangle=s/(rc|a|b|c)/~$1/" \
+http://pypi.debian.net/bdist_nsi/bdist_nsi@ANY_VERSION@@ARCHIVE_EXT@

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



More information about the Python-modules-commits mailing list