[Python-apps-commits] r12572 - in packages/pyflakes/trunk/debian (5 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Fri Nov 6 16:24:52 UTC 2015


    Date: Friday, November 6, 2015 @ 16:24:51
  Author: barry
Revision: 12572

  (Closes: #726732)
* d/links: Removed.
* d/pyflakes.1: Updated.
* d/pyflakes3.1: Added manpage.  (Closes: #779861)
* d/manpages: Install pyflakes3.1 manpage.

Added:
  packages/pyflakes/trunk/debian/pyflakes3.1
Modified:
  packages/pyflakes/trunk/debian/changelog
  packages/pyflakes/trunk/debian/manpages
  packages/pyflakes/trunk/debian/pyflakes.1
Deleted:
  packages/pyflakes/trunk/debian/links

Modified: packages/pyflakes/trunk/debian/changelog
===================================================================
--- packages/pyflakes/trunk/debian/changelog	2015-11-06 15:49:13 UTC (rev 12571)
+++ packages/pyflakes/trunk/debian/changelog	2015-11-06 16:24:51 UTC (rev 12572)
@@ -1,7 +1,8 @@
 pyflakes (1.0.0-2) unstable; urgency=medium
 
   [ Robert Bruce Park ]
-  * Split pyflakes binary package library and cli packages.
+  * Split pyflakes binary package library and cli packages.  
+    (Closes: #726732)
   * d/control:
     - Add pyflakes Depends on python3-pyflakes.
     - Add python-pyflakes and python3-pyflakes binary packages for the
@@ -18,6 +19,10 @@
     - Add myself to Uploaders.
     - wrap-and-sort
   * d/tests: Add DEP-8 smoketests for both the libraries and cli.
+  * d/links: Removed.
+  * d/pyflakes.1: Updated.
+  * d/pyflakes3.1: Added manpage.  (Closes: #779861)
+  * d/manpages: Install pyflakes3.1 manpage.
 
  -- Barry Warsaw <barry at debian.org>  Fri, 06 Nov 2015 10:46:54 -0500
 

Deleted: packages/pyflakes/trunk/debian/links
===================================================================
--- packages/pyflakes/trunk/debian/links	2015-11-06 15:49:13 UTC (rev 12571)
+++ packages/pyflakes/trunk/debian/links	2015-11-06 16:24:51 UTC (rev 12572)
@@ -1 +0,0 @@
-usr/share/man/man1/pyflakes.1 usr/share/man/man1/pyflakes3.1

Modified: packages/pyflakes/trunk/debian/manpages
===================================================================
--- packages/pyflakes/trunk/debian/manpages	2015-11-06 15:49:13 UTC (rev 12571)
+++ packages/pyflakes/trunk/debian/manpages	2015-11-06 16:24:51 UTC (rev 12572)
@@ -1 +1,2 @@
 debian/pyflakes.1
+debian/pyflakes3.1

Modified: packages/pyflakes/trunk/debian/pyflakes.1
===================================================================
--- packages/pyflakes/trunk/debian/pyflakes.1	2015-11-06 15:49:13 UTC (rev 12571)
+++ packages/pyflakes/trunk/debian/pyflakes.1	2015-11-06 16:24:51 UTC (rev 12572)
@@ -9,7 +9,7 @@
 .PP
 \fBpyflakes\fR [\fIfile-or-directory\fR ...]
 .SH "DESCRIPTION"
-Pyflakes is a simple program which checks Python source files for errors.
+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

Added: packages/pyflakes/trunk/debian/pyflakes3.1
===================================================================
--- packages/pyflakes/trunk/debian/pyflakes3.1	                        (rev 0)
+++ packages/pyflakes/trunk/debian/pyflakes3.1	2015-11-06 16:24:51 UTC (rev 12572)
@@ -0,0 +1,33 @@
+.TH "PYFLAKES3" "1" "10/01/2007" "" ""
+.\" disable hyphenation
+.nh
+.\" disable justification (adjust text to left margin only)
+.ad l
+.SH "NAME"
+pyflakes3 - simple Python 3 source checker
+.SH "SYNOPSIS"
+.PP
+\fBpyflakes\fR [\fIfile-or-directory\fR ...]
+.SH "DESCRIPTION"
+pyflakes3 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.
+.sp
+All commandline arguments are checked, which have to be either regular files
+or directories. If a directory is given, every \fB.py\fR file within
+will be checked.
+.sp
+When no commandline arguments are given, data will be read from standard input.
+.SH "OUTPUT"
+Found warnings including unused imports, undefined variables
+and unnecessary reimports, are printed on standard output.
+Found errors including compile or encoding errors, are printed
+on standard error.
+.SH "EXIT STATUS"
+The exit status is 0 when no warnings or errors are found. Otherwise the exit
+status is 1.
+.SH "AUTHOR"
+This manual page was originally written by Bastian Kleineidam <calvin at debian\.org>
+for the Debian distribution of pyflakes (but can be used by others)\.




More information about the Python-apps-commits mailing list