[Python-modules-commits] [python-setoptconf] 02/02: Imported Debian patch 0.2.0-1

Daniel Stender danstender-guest at moszumanska.debian.org
Sun Jun 21 18:08:37 UTC 2015


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

danstender-guest pushed a commit to branch master
in repository python-setoptconf.

commit 786c4c234639a51b223f31c0275a771f6accad4e
Author: Daniel Stender <debian at danielstender.com>
Date:   Sun Jun 21 19:53:01 2015 +0200

    Imported Debian patch 0.2.0-1
---
 debian/changelog               |  5 ++++
 debian/compat                  |  1 +
 debian/control                 | 58 ++++++++++++++++++++++++++++++++++++++++++
 debian/copyright               | 32 +++++++++++++++++++++++
 debian/rules                   | 13 ++++++++++
 debian/source/format           |  1 +
 debian/source/options          |  1 +
 debian/tests/control           |  2 ++
 debian/tests/python-setoptconf |  2 ++
 debian/watch                   |  3 +++
 10 files changed, 118 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8709998
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-setoptconf (0.2.0-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #788212).
+
+ -- Daniel Stender <debian at danielstender.com>  Sun, 21 Jun 2015 19:53:01 +0200
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..ac2d591
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,58 @@
+Source: python-setoptconf
+Section: python
+Priority: optional
+Maintainer: Daniel Stender <debian at danielstender.com>
+Uploaders:
+ Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all,
+ python-nose,
+ python-setuptools,
+ python-yaml,
+ python3-all,
+ python3-nose,
+ python3-setuptools,
+ python3-yaml
+Standards-Version: 3.9.6
+Homepage: https://github.com/jayclassless/setoptconf
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+Testsuite: autopkgtest
+
+Package: python-setoptconf
+Architecture: all
+Depends:
+ python-yaml,
+ ${misc:Depends},
+ ${python:Depends}
+Description: retrieve Python program settings from a variety of sources
+ setopfconf is a Python library to define desired settings in a simple and
+ consistent way from a variety of sources, individually or combined:
+  - command line
+  - environment variables
+  - INI files
+  - JSON
+  - YAML
+  - Python objects/modules
+ .
+ This package contains the modules for Python2.
+
+Package: python3-setoptconf
+Architecture: all
+Depends:
+ python3-yaml,
+ ${misc:Depends},
+ ${python3:Depends}
+Description: retrieve Python3 program settings from a variety of sources
+ setopfconf is a Python library to define desired settings in a simple and
+ consistent way from a variety of sources, individually or combined:
+  - command line
+  - environment variables
+  - INI files
+  - JSON
+  - YAML
+  - Python objects/modules
+ .
+ This package contains the modules for Python3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3651e9e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: setoptconf
+Upsteam-Contact: Jason Simeone <jay at classless.net>
+Source: https://github.com/jayclassless/setoptconf
+
+Files: *
+Copyright: 2014 Jason Simeone
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Daniel Stender <debian at danielstender.com>
+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..dbf03b2
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+#export DEB_BUILD_OPTIONS=nocheck
+export PYBUILD_NAME=setoptconf
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="{interpreter} setup.py nosetests" dh_auto_test
+
+override_dh_installdocs:
+	dh_installdocs -A README.rst
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..6e88e49
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore="^[^/]+\.egg-info/"
\ No newline at end of file
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..b267e04
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: python-setoptconf
+Depends: python-nose, python-yaml, python-coverage
diff --git a/debian/tests/python-setoptconf b/debian/tests/python-setoptconf
new file mode 100755
index 0000000..b507dbc
--- /dev/null
+++ b/debian/tests/python-setoptconf
@@ -0,0 +1,2 @@
+#!/bin/sh -e
+pyversions -i | tr ' ' '\n' | xargs -I {} env {} -Wd -m nose --verbose 2>&1
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6929ac4
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/setoptconf/setoptconf-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

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



More information about the Python-modules-commits mailing list