[Python-apps-commits] r842 - in packages/pyflakes/trunk/debian (4 files)

morph-guest at users.alioth.debian.org morph-guest at users.alioth.debian.org
Sun Mar 23 12:04:15 UTC 2008


    Date: Sunday, March 23, 2008 @ 12:04:14
  Author: morph-guest
Revision: 842

merge varun's debdiff + team adoption

Modified:
  packages/pyflakes/trunk/debian/changelog
  packages/pyflakes/trunk/debian/control
  packages/pyflakes/trunk/debian/patches/set_exit_status.diff
  packages/pyflakes/trunk/debian/rules

Modified: packages/pyflakes/trunk/debian/changelog
===================================================================
--- packages/pyflakes/trunk/debian/changelog	2008-03-23 11:34:15 UTC (rev 841)
+++ packages/pyflakes/trunk/debian/changelog	2008-03-23 12:04:14 UTC (rev 842)
@@ -1,3 +1,25 @@
+pyflakes (0.2.1+svn14502-2) UNRELEASED; urgency=low
+
+  [ Varun Hiremath ]
+  * debian/control
+    - change Build-Depends: python-central (>= 0.6)
+    - fix lintian spelling-error-in-description: s/python/Python/
+  * debian/rules
+    - remove /usr/lib directory removal (Closes: #472021)
+  * debian/patches/set_exit_status.diff
+    - fixed duplicated output, thanks to  Martin Geisler <mg at daimi.au.dk>
+      (Closes: #467135)
+
+  [ Sandro Tosi ]
+  * Adopting for PAPT (Closes: #453462)
+  * debian/control
+    - added Vcs-{Svn,Browser} fields
+    - set PAPT as maintainer
+    - set Tristan, Varun and me as uploaders
+    - removed empty lines at endfile
+
+ -- Varun Hiremath <varun at debian.org>  Sun, 23 Mar 2008 11:56:23 +0530
+
 pyflakes (0.2.1+svn14502-1) unstable; urgency=low
 
   * QA upload.

Modified: packages/pyflakes/trunk/debian/control
===================================================================
--- packages/pyflakes/trunk/debian/control	2008-03-23 11:34:15 UTC (rev 841)
+++ packages/pyflakes/trunk/debian/control	2008-03-23 12:04:14 UTC (rev 842)
@@ -1,22 +1,22 @@
 Source: pyflakes
 Section: python
 Priority: optional
-Maintainer: Debian QA Group <packages at qa.debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.43), python-central (>= 0.5), python, python-dev, quilt
+Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Uploaders: Tristan Seligmann <mithrandi at mithrandi.net>, Varun Hiremath <varun at debian.org>, Sandro Tosi <matrixhasu at gmail.com>
+Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.43), python-central (>= 0.6), python, python-dev, quilt
 XS-Python-Version: current
 Standards-Version: 3.7.3
 Homepage: http://divmod.org/trac/wiki/DivmodPyflakes
+Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/pyflakes/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-apps/packages/pyflakes/trunk/?op=log
 
 Package: pyflakes
 Architecture: all
 XB-Python-Version: ${python:Versions}
 Depends: ${python:Depends}
-Description: simple python source checker
+Description: simple Python source checker
  Pyflakes is a simple program which checks Python source files for errors.
  It is similar to PyChecker in scope, but differs in that it does not execute
  the modules to check them. This is both safer and faster, although it does 
  not perform as many checks. Unlike PyLint, Pyflakes checks only for logical
  errors in programs; it does not perform any checks on style.
-
-
-

Modified: packages/pyflakes/trunk/debian/patches/set_exit_status.diff
===================================================================
--- packages/pyflakes/trunk/debian/patches/set_exit_status.diff	2008-03-23 11:34:15 UTC (rev 841)
+++ packages/pyflakes/trunk/debian/patches/set_exit_status.diff	2008-03-23 12:04:14 UTC (rev 842)
@@ -14,7 +14,7 @@
      try:
          tree = compiler.parse(codeString)
      except (SyntaxError, IndentationError):
-@@ -19,12 +23,16 @@
+@@ -19,12 +23,14 @@
          print >> sys.stderr, '%s:%d: could not compile' % (filename, lineno)
          print >> sys.stderr, line
          print >> sys.stderr, " " * (offset-2), "^"
@@ -25,10 +25,8 @@
          w.messages.sort(lambda a, b: cmp(a.lineno, b.lineno))
          for warning in w.messages:
              print warning
-+            if status == 0:
++            if status == 0 and len(w.messages) > 0:
 +                status = 1
-+            for warning in w.messages:
-+                print warning
          return len(w.messages)
  
  

Modified: packages/pyflakes/trunk/debian/rules
===================================================================
--- packages/pyflakes/trunk/debian/rules	2008-03-23 11:34:15 UTC (rev 841)
+++ packages/pyflakes/trunk/debian/rules	2008-03-23 12:04:14 UTC (rev 842)
@@ -10,10 +10,5 @@
 
 DEB_PYTHON_INSTALL_ARGS_ALL += --prefix=/usr 
 
-#DEB_INSTALL_PYTHON_gnue-common = /usr/lib/gnue/python
-
-binary-predeb/pyflakes::
-	rmdir $(DEB_DESTDIR)usr/lib
-
 clean::
 	find . -name \*pyc -exec rm '{}' \;




More information about the Python-apps-commits mailing list