[Python-modules-commits] [autopep8] 02/02: add the debian/ dir
Sylvestre Ledru
sylvestre at moszumanska.debian.org
Mon Jun 19 20:32:51 UTC 2017
This is an automated email from the git hooks/post-receive script.
sylvestre pushed a commit to branch master
in repository autopep8.
commit 0f30ed423f79f9cdc57fce00ba1f965b5ea7240d
Author: Sylvestre Ledru <sylvestre at debian.org>
Date: Mon Jun 19 22:30:59 2017 +0200
add the debian/ dir
---
debian/changelog | 41 +++++++++++++++++++++++++++++++++++++++++
debian/clean | 1 +
debian/compat | 1 +
debian/control | 17 +++++++++++++++++
debian/copyright | 36 ++++++++++++++++++++++++++++++++++++
debian/docs | 1 +
debian/rules | 6 ++++++
debian/source/format | 1 +
debian/watch | 2 ++
9 files changed, 106 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..04dce8f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,41 @@
+autopep8 (0.9.1-2.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Bumped DH level to 10.
+ * debian/control:
+ - Added the python-pkg-resources to Depends field. Thanks to
+ Sebastian Ramacher. (Closes: #843977)
+ - Added the python-pep8 and removed the pep8 from Depends field.
+ Thanks to Antonio Ospite and Merlijn van Deen.
+ (Closes: #817860, LP: #1635192)
+ - Bumped Standards-Version to 3.9.8.
+ * debian/copyright: removed a duplicate 'Copyright' word.
+ * debian/watch: created.
+
+ -- Daniele Adriana Goulart Lopes <danydrik at yahoo.com.br> Wed, 14 Dec 2016 16:04:25 -0200
+
+autopep8 (0.9.1-2) unstable; urgency=low
+
+ * Update package short description to be correct (Closes: #711960)
+ * Set version depends on pep8 (Closes: #712084)
+
+ -- Micah Anderson <micah at debian.org> Wed, 12 Jun 2013 16:46:32 -0400
+
+autopep8 (0.9.1-1) unstable; urgency=low
+
+ * Upgrade to new version (Closes: #710681)
+ * Fix copyright
+
+ -- Micah Anderson <micah at debian.org> Tue, 11 Jun 2013 09:11:44 -0400
+
+autopep8 (0.8.7-2) unstable; urgency=low
+
+ * Remove full GPLv3 text from debian/copyright, point to common-licenses
+
+ -- Micah Anderson <micah at debian.org> Thu, 09 May 2013 15:32:52 -0400
+
+autopep8 (0.8.7-1) unstable; urgency=low
+
+ * Initial package (Closes: #707615)
+
+ -- Micah Anderson <micah at debian.org> Wed, 08 May 2013 14:35:49 -0400
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..19b535c
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+autopep8.egg-info/*
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..6fe3391
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: autopep8
+Maintainer: Micah Anderson <micah at debian.org>
+Section: python
+Priority: optional
+Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 10)
+Standards-Version: 3.9.8
+Homepage: https://pypi.python.org/pypi/autopep8/
+
+Package: python-autopep8
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-pep8, python-pkg-resources
+Description: tool that automatically formats Python code to conform to PEP 8
+ autopep8 automatically formats Python code to conform to the PEP 8 style
+ guide. It uses the pep8 utility to determine what parts of the code needs to
+ be formatted. autopep8 is capable of fixing most of the formatting issues that
+ can be reported by pep8.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..12b6a4f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: autopep8
+Source: https://pypi.python.org/pypi/autopep8
+
+Files: *
+Copyright: 2010-2011 Hideo Hattori <hhatto.jp at gmail.com>
+ 2011-2013 Steven Myint <me at stevenmyint.com>
+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.
+
+
+ Files: debian/*
+ Copyright: Copyright 2013 Micah Anderson <micah at debian.org>
+ License: GPL-3+
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..92cacd2
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..bcebae9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2 --buildsystem=python_distutils
+
+
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..12b2537
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=4
+https://github.com/hhatto/autopep8/releases /hhatto/autopep8/archive/(?:v|ver)?(\d\S+)\.tar\.(?:bz2|gz|xz)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/autopep8.git
More information about the Python-modules-commits
mailing list