[Python-modules-commits] [pylint-celery] 02/02: Imported Debian patch 0.3-1

Daniel Stender danstender-guest at moszumanska.debian.org
Tue Jun 23 17:57:36 UTC 2015


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

danstender-guest pushed a commit to branch master
in repository pylint-celery.

commit 3df4c16ca039e5b6aea867b36efb0933a5817d21
Author: Daniel Stender <debian at danielstender.com>
Date:   Tue Jun 23 19:44:14 2015 +0200

    Imported Debian patch 0.3-1
---
 debian/changelog      |  5 +++++
 debian/compat         |  1 +
 debian/control        | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright      | 30 ++++++++++++++++++++++++++++++
 debian/gbp.conf       |  9 +++++++++
 debian/rules          |  7 +++++++
 debian/source/format  |  1 +
 debian/source/options |  1 +
 debian/watch          |  3 +++
 9 files changed, 105 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..30b6793
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pylint-celery (0.3-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #788235).
+
+ -- Daniel Stender <debian at danielstender.com>  Tue, 23 Jun 2015 19:44:14 +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..5c80fc9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,48 @@
+Source: pylint-celery
+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,
+ pylint (>= 1.0.0),
+ python-all,
+ python-astroid,
+ python-pylint-plugin-utils,
+ python-setuptools,
+ python3-all,
+ python3-astroid,
+ python3-pylint-plugin-utils,
+ python3-setuptools
+Standards-Version: 3.9.6
+Homepage: https://github.com/landscapeio/pylint-celery
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/pylint-celery.git
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/pylint-celery.git
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+
+Package: python-pylint-celery
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Pylint plugin for code using the Celery library
+ Pylint is a source code bug and quality checker for the Python programming
+ language. This package provides as plugin for checking code using the Celery
+ library (distributed task queue).
+ .
+ This package contains the module for Python2.
+
+Package: python3-pylint-celery
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Pylint plugin for code using the Celery library (Python3)
+ Pylint is a source code bug and quality checker for the Python programming
+ language. This package provides as plugin for checking code using the Celery
+ library (distributed task queue).
+ .
+ This package contains the module for Python3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bf1e7fd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pylint-celery
+Upstream-Contact: Carl Crowder <code at landscape.io>
+Source: https://github.com/landscapeio/pylint-celery
+
+Files: *
+Copyright: 2013-2014 Carl Crowder
+License: GPL-2.0
+Comment: https://github.com/landscapeio/pylint-celery/blob/master/LICENSE
+
+Files: debian/*
+Copyright: 2015 Daniel Stender <debian at danielstender.com>
+License: GPL-2.0
+
+License: GPL-2.0
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License version 2 as
+ published by the Free Software Foundation.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the complete text of the GNU General Public License version
+ 2 can be found in `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..ab94fc3
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,9 @@
+[DEFAULT]
+upstream-tag = upstream/%(version)s
+debian-tag = debian/%(version)s
+pristine-tar = True
+
+[import-orig]
+upstream-branch = upstream
+debian-branch = master
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..9283478
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+export DEB_BUILD_OPTIONS=nocheck # tests doesn't run w/o errors
+export PYBUILD_NAME=pylint-celery
+
+%:
+	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/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/watch b/debian/watch
new file mode 100644
index 0000000..cef3fb1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/pylint-celery/pylint-celery-(.+)\.(?: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/pylint-celery.git



More information about the Python-modules-commits mailing list