[Python-modules-commits] [pytest-pep8] 02/10: Initial debian packaging.

Adrian Vondendriesch discostu-guest at moszumanska.debian.org
Wed May 31 15:33:21 UTC 2017


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

discostu-guest pushed a commit to branch master
in repository pytest-pep8.

commit 0ba167354ce4cae50d852882d539948ebbbc9094
Author: Adrian Vondendriesch <adrian.vondendriesch at credativ.de>
Date:   Thu May 11 10:47:47 2017 +0200

    Initial debian packaging.
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 36 ++++++++++++++++++++++++++++++
 debian/rules         |  6 +++++
 debian/source/format |  1 +
 debian/watch         |  4 ++++
 7 files changed, 115 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9db97b1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pytest-pep8 (1.0.6-1) unstable; urgency=low
+
+  * Initial package version.
+
+ -- Adrian Vondendriesch <adrian.vondendriesch at credativ.de>  Wed, 10 May 2017 17:16:13 +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..ae68829
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,62 @@
+Source: pytest-pep8
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders:
+ Adrian Vondendriesch <adrian.vondendriesch at credativ.de>,
+Section: python
+Priority: optional
+Build-Depends: dh-python, python-setuptools (>= 0.6b3), python3-setuptools, python-all (>= 2.6.6-3), python3-all, debhelper (>= 9)
+Standards-Version: 3.9.8
+Homepage: http://bitbucket.org/hpk42/pytest-pep8/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/pytest-pep8.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/pytest-pep8.git
+
+Package: python-pytest-pep8
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-pytest
+Description: pytest plugin to check PEP8 requirements
+ py.test plugin for efficiently checking PEP8 compliance 
+ ========================================================================
+ .
+ Usage
+ ---------
+ .
+ install via::
+ .
+     pip install pytest-pep8
+ .
+ if you then type::
+ .
+     py.test --pep8
+ .
+ every file ending in ``.py`` will be discovered and pep8-checked, 
+ starting from the command line arguments. 
+ .
+ .. warning::
+ .
+     Running pep8 tests on your project is likely to cause a lot of 
+
+Package: python3-pytest-pep8
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, python-pytest
+Description: pytest plugin to check PEP8 requirements
+ py.test plugin for efficiently checking PEP8 compliance 
+ ========================================================================
+ .
+ Usage
+ ---------
+ .
+ install via::
+ .
+     pip install pytest-pep8
+ .
+ if you then type::
+ .
+     py.test --pep8
+ .
+ every file ending in ``.py`` will be discovered and pep8-checked, 
+ starting from the command line arguments. 
+ .
+ .. warning::
+ .
+     Running pep8 tests on your project is likely to cause a lot of 
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4232bab
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pytest-pep8
+Upstream-Contact: Holger Krekel <holger at merlinux.eu>
+Source: https://github.com/davidraleigh/pytest-pep8
+
+Files: *
+Copyright: 2015 Anatoly Bubenkov <bubenkoff at gmail.com>
+           2012 Florent Xicluna <florent.xicluna at gmail.com>
+           2010-2015 Holger Krekel <holger at merlinux.eu>
+           2014 Saul Shanabrook <s.shanabrook at gmail.com>
+           2012 Tetsuya Morimoto <tetsuya.morimoto at gmail.com>
+           2012 Thomas Waldmann <tw AT waldmann-edv DOT de at localhost>
+License: Expat
+
+Files: debian/*
+Copyright: 2017 Adrian Vondendriesch <adrian.vondendriesch at credativ.de>
+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..6104a28
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=pytest-pep8
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
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/watch b/debian/watch
new file mode 100644
index 0000000..3c9a8ca
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# please also check http://pypi.debian.net/pytest-pep8/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/pytest-pep8/pytest-pep8-(.+)\.(?: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/pytest-pep8.git



More information about the Python-modules-commits mailing list