[Python-modules-commits] r32051 - in packages/pylint-django/trunk (9 files)

aerostitch-guest at users.alioth.debian.org aerostitch-guest at users.alioth.debian.org
Mon Mar 23 16:50:08 UTC 2015


    Date: Monday, March 23, 2015 @ 16:50:07
  Author: aerostitch-guest
Revision: 32051

[svn-inject] Applying Debian modifications (0.6.0-1) to trunk

Added:
  packages/pylint-django/trunk/debian/
  packages/pylint-django/trunk/debian/changelog
  packages/pylint-django/trunk/debian/compat
  packages/pylint-django/trunk/debian/control
  packages/pylint-django/trunk/debian/copyright
  packages/pylint-django/trunk/debian/rules
  packages/pylint-django/trunk/debian/source/
  packages/pylint-django/trunk/debian/source/format
  packages/pylint-django/trunk/debian/watch


Property changes on: packages/pylint-django/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pylint-django/trunk/debian/changelog
===================================================================
--- packages/pylint-django/trunk/debian/changelog	                        (rev 0)
+++ packages/pylint-django/trunk/debian/changelog	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1,5 @@
+pylint-django (0.6.0-1) unstable; urgency=medium
+
+  * Initial release (Closes: #768567)
+
+ -- Joseph Herlant <herlantj at gmail.com>  Sat, 14 Mar 2015 21:47:00 -0700

Added: packages/pylint-django/trunk/debian/compat
===================================================================
--- packages/pylint-django/trunk/debian/compat	                        (rev 0)
+++ packages/pylint-django/trunk/debian/compat	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1 @@
+9

Added: packages/pylint-django/trunk/debian/control
===================================================================
--- packages/pylint-django/trunk/debian/control	                        (rev 0)
+++ packages/pylint-django/trunk/debian/control	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1,49 @@
+Source: pylint-django
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Joseph Herlant <herlantj at gmail.com>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-setuptools (>= 0.6b3),
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/landscapeio/pylint-plugin-utils
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pylint-django/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pylint-django/trunk/
+
+Package: python-pylint-django
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, pylint, python-pylint-plugin-utils (>= 0.2.2-1)
+Description: Pylint plugin for analysing code using Django (Python 2)
+ Features
+   * Prevents warnings about Django-generated attributes such as
+     Model.objects or Views.request.
+   * Prevents warnings when using ForeignKey attributes
+     ("Instance of ForeignKey has no member").
+   * Fixes pylint's knowledge of the types of Model and Form field attributes
+   * Validates Model.__unicode__ methods.
+   * Meta informational classes on forms and models do not generate errors.
+ It is also used by the Prospector tool.
+ .
+ This is the Python 2 version of the package
+
+Package: python3-pylint-django
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, pylint, python3-pylint-plugin-utils (>= 0.2.2-1)
+Description: Pylint plugin for analysing code using Django (Python 3)
+ Features
+   * Prevents warnings about Django-generated attributes such as
+     Model.objects or Views.request.
+   * Prevents warnings when using ForeignKey attributes
+     ("Instance of ForeignKey has no member").
+   * Fixes pylint's knowledge of the types of Model and Form field attributes
+   * Validates Model.__unicode__ methods.
+   * Meta informational classes on forms and models do not generate errors.
+ It is also used by the Prospector tool.
+ .
+ This is the Python 3 version of the package

Added: packages/pylint-django/trunk/debian/copyright
===================================================================
--- packages/pylint-django/trunk/debian/copyright	                        (rev 0)
+++ packages/pylint-django/trunk/debian/copyright	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pylint-django
+Source: https://github.com/landscapeio/pylint-django
+
+Files: *
+Copyright: 2013-2014 Carl Crowder <emailme at carlcrowder.com>
+License: GPL-2
+
+Files: debian/*
+Copyright: 2014 Joseph Herlant <herlantj at gmail.com>
+License: GPL-2
+
+License: GPL-2
+ 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'.

Added: packages/pylint-django/trunk/debian/rules
===================================================================
--- packages/pylint-django/trunk/debian/rules	                        (rev 0)
+++ packages/pylint-django/trunk/debian/rules	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=pylint-django
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_install:
+	dh_install --fail-missing


Property changes on: packages/pylint-django/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pylint-django/trunk/debian/source/format
===================================================================
--- packages/pylint-django/trunk/debian/source/format	                        (rev 0)
+++ packages/pylint-django/trunk/debian/source/format	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pylint-django/trunk/debian/watch
===================================================================
--- packages/pylint-django/trunk/debian/watch	                        (rev 0)
+++ packages/pylint-django/trunk/debian/watch	2015-03-23 16:50:07 UTC (rev 32051)
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/<project>-$1\.tar\.gz/ \
+https://github.com/landscapeio/pylint-django/tags .*/v?(\d\S*)\.tar\.gz




More information about the Python-modules-commits mailing list