[Python-modules-commits] [pytest-bdd] 02/02: Add initial debian files

Brian May bam at moszumanska.debian.org
Tue May 16 08:02:22 UTC 2017


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

bam pushed a commit to branch debian/master
in repository pytest-bdd.

commit bdade47b6027f20201167d9b31e7f95f104d9c0c
Author: Brian May <brian at linuxpenguins.xyz>
Date:   Tue May 16 08:08:58 2017 +1000

    Add initial debian files
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 31 +++++++++++++++++++++++++++++++
 debian/gbp.conf  |  2 ++
 debian/rules     |  6 ++++++
 debian/watch     |  3 +++
 7 files changed, 103 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1a5289c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pytest-bdd (2.18.2) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #825071)
+
+ -- Brian May <bam at debian.org>  Tue, 16 May 2017 07:41:59 +1000
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..9784758
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,55 @@
+Source: pytest-bdd
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Brian May <bam at debian.org>
+Section: python
+Priority: optional
+Build-Depends:
+    debhelper (>= 9), dh-python (>= 2.20160609~),
+    python-all (>= 2.6.6-3), python-setuptools (>= 0.6b3),
+    python-six, python-pytest,
+    python3-all, python3-setuptools,
+    python3-six, python3-pytest,
+Standards-Version: 3.9.8
+Homepage: https://github.com/pytest-dev/pytest-bdd/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/pytest-bdd.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/pytest-bdd.git
+
+Package: python-pytest-bdd
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: BDD plugin for py.test.
+ Implements a subset of Gherkin language for the automation of the
+ project requirements testing and easier behavioral driven development.
+ .
+ Unlike many other BDD tools it doesn't require a separate runner and benefits
+ from the power and flexibility of the pytest. It allows to unify your unit and
+ functional tests, easier continuous integration server configuration and
+ maximal reuse of the tests setup.
+ .
+ Pytest fixtures written for the unit tests can be reused for the setup and
+ actions mentioned in the feature steps with dependency injection, which allows
+ a true BDD just-enough specification of the requirements without maintaining
+ any context object containing the side effects of the Gherkin imperative
+ declarations.
+ .
+ This package contains the python 2 version.
+
+Package: python3-pytest-bdd
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: BDD plugin for py.test.
+ Implements a subset of Gherkin language for the automation of the
+ project requirements testing and easier behavioral driven development.
+ .
+ Unlike many other BDD tools it doesn't require a separate runner and benefits
+ from the power and flexibility of the pytest. It allows to unify your unit and
+ functional tests, easier continuous integration server configuration and
+ maximal reuse of the tests setup.
+ .
+ Pytest fixtures written for the unit tests can be reused for the setup and
+ actions mentioned in the feature steps with dependency injection, which allows
+ a true BDD just-enough specification of the requirements without maintaining
+ any context object containing the side effects of the Gherkin imperative
+ declarations.
+ .
+ This package contains the python 3 version.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1191c79
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: pytest-bdd
+Source: <https://github.com/pytest-dev/pytest-bdd/>
+
+Files: *
+Copyright: 2013-2014 Oleg Pidsadnyi, Anatoly Bubenkov and others
+License: Expat
+
+Files: debian/*
+Copyright: 2017 Brian May <bam 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/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..3879982
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-branch=debian/master
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a43b39c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=pytest-bdd
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..58f09ac
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=2
+opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/pytest-bdd-$1\.tar\.gz/ \
+  https://github.com/pytest-dev/pytest-bdd/tags .*/v?(\d\S+)\.tar\.gz

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



More information about the Python-modules-commits mailing list