[Checkins] SVN: Sandbox/janwijbrand/importchecker/ move sources into trunk

Jan-Wijbrand Kolman janwijbrand at gmail.com
Tue May 6 08:41:02 EDT 2008


Log message for revision 86504:
  move sources into trunk

Changed:
  D   Sandbox/janwijbrand/importchecker/CHANGES.txt
  D   Sandbox/janwijbrand/importchecker/CREDITS.txt
  D   Sandbox/janwijbrand/importchecker/LICENSE.txt
  D   Sandbox/janwijbrand/importchecker/README.txt
  D   Sandbox/janwijbrand/importchecker/buildout.cfg
  D   Sandbox/janwijbrand/importchecker/setup.py
  D   Sandbox/janwijbrand/importchecker/src/
  A   Sandbox/janwijbrand/importchecker/trunk/CHANGES.txt
  A   Sandbox/janwijbrand/importchecker/trunk/CREDITS.txt
  A   Sandbox/janwijbrand/importchecker/trunk/LICENSE.txt
  A   Sandbox/janwijbrand/importchecker/trunk/README.txt
  A   Sandbox/janwijbrand/importchecker/trunk/buildout.cfg
  A   Sandbox/janwijbrand/importchecker/trunk/setup.py
  A   Sandbox/janwijbrand/importchecker/trunk/src/
  D   Sandbox/janwijbrand/importchecker/trunk/src/importchecker/
  A   Sandbox/janwijbrand/importchecker/trunk/src/importchecker/

-=-
Deleted: Sandbox/janwijbrand/importchecker/CHANGES.txt
===================================================================
--- Sandbox/janwijbrand/importchecker/CHANGES.txt	2008-05-06 12:38:47 UTC (rev 86503)
+++ Sandbox/janwijbrand/importchecker/CHANGES.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -1,9 +0,0 @@
-Changes
-=======
-
-1.0 (unreleased)
-----------------
-
-* Initial packaging
-
-* Make the importchecker work on python 2.5

Deleted: Sandbox/janwijbrand/importchecker/CREDITS.txt
===================================================================
--- Sandbox/janwijbrand/importchecker/CREDITS.txt	2008-05-06 12:38:47 UTC (rev 86503)
+++ Sandbox/janwijbrand/importchecker/CREDITS.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -1,7 +0,0 @@
-Credits
-=======
-
-* Martijn Faassen (original developer)
-* Philipp von Weitershausen
-* Jan-Wijbrand Kolman (packaging)
-* various comitters on svn.zope.org.

Deleted: Sandbox/janwijbrand/importchecker/LICENSE.txt
===================================================================
--- Sandbox/janwijbrand/importchecker/LICENSE.txt	2008-05-06 12:38:47 UTC (rev 86503)
+++ Sandbox/janwijbrand/importchecker/LICENSE.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -1,54 +0,0 @@
-Zope Public License (ZPL) Version 2.1
--------------------------------------
-
-A copyright notice accompanies this license document that
-identifies the copyright holders.
-
-This license has been certified as open source. It has also
-been designated as GPL compatible by the Free Software
-Foundation (FSF).
-
-Redistribution and use in source and binary forms, with or
-without modification, are permitted provided that the
-following conditions are met:
-
-1. Redistributions in source code must retain the
-   accompanying copyright notice, this list of conditions,
-   and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the accompanying
-   copyright notice, this list of conditions, and the
-   following disclaimer in the documentation and/or other
-   materials provided with the distribution.
-
-3. Names of the copyright holders must not be used to
-   endorse or promote products derived from this software
-   without prior written permission from the copyright
-   holders.
-
-4. The right to distribute this software or to use it for
-   any purpose does not give you the right to use
-   Servicemarks (sm) or Trademarks (tm) of the copyright
-   holders. Use of them is covered by separate agreement
-   with the copyright holders.
-
-5. If any files are modified, you must cause the modified
-   files to carry prominent notices stating that you changed
-   the files and the date of any change.
-
-Disclaimer
-
-  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''
-  AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
-  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
-  NO EVENT SHALL THE COPYRIGHT HOLDERS BE
-  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGE.

Deleted: Sandbox/janwijbrand/importchecker/README.txt
===================================================================
--- Sandbox/janwijbrand/importchecker/README.txt	2008-05-06 12:38:47 UTC (rev 86503)
+++ Sandbox/janwijbrand/importchecker/README.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -1,54 +0,0 @@
-Importchecker
-=============
-
-What is importchecker?
-----------------------
-
-Importchecker is a commandline utility to find unused imports in Python
-modules.
-
-Its output is "grep-like" (and thus "emacs-friendly"), reporting both the
-module's filenames and line numbers where names are imported that are not
-acually used in the module.
-
-Importchecker will not modify any of the source files. Whether the import
-needs to be removed is left to the judgement of the developer.
-
-Installation
-------------
-
-The importchecker commandline utility can be installed using the
-``easy_install`` command::
-
-  $ sudo easy_install importchecker
-
-The command can then be invoked with::
-
-  $ importchecker /path/to/a/source/tree
-
-Buildout
---------
-
-Projects that make use of `zc.buildout`_ for development might find the
-following ``buildout.cfg.`` snippet useful for using the importchecker on
-the developed codebase::
-
-  [buildout]
-  ...
-  parts = importchecker ...
-  ...
-
-  [importchecker]
-  recipe = zc.recipe.egg
-  eggs = importchecker
-  arguments = "${buildout:directory}/src"
-
-.. _`zc.buildout`: http://pypi.python.org/pypi/zc.buildout
-
-Known issues
-------------
-
-* One source tree path argument at the time can be passed to the command
-  line utility.
-
-* Command line argument parsing is rather naïve.

Deleted: Sandbox/janwijbrand/importchecker/buildout.cfg
===================================================================
--- Sandbox/janwijbrand/importchecker/buildout.cfg	2008-05-06 12:38:47 UTC (rev 86503)
+++ Sandbox/janwijbrand/importchecker/buildout.cfg	2008-05-06 12:41:01 UTC (rev 86504)
@@ -1,9 +0,0 @@
-[buildout]
-parts = importchecker
-develop = .
-newest = false
-
-[importchecker]
-recipe = zc.recipe.egg
-eggs = importchecker
-arguments = "src/"

Deleted: Sandbox/janwijbrand/importchecker/setup.py
===================================================================
--- Sandbox/janwijbrand/importchecker/setup.py	2008-05-06 12:38:47 UTC (rev 86503)
+++ Sandbox/janwijbrand/importchecker/setup.py	2008-05-06 12:41:01 UTC (rev 86504)
@@ -1,49 +0,0 @@
-from setuptools import setup, find_packages
-import sys, os
-
-version = '1.0dev'
-description = "Importchecker finds unused imports in Python modules."
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-long_description = (
-    read('README.txt')
-    + '\n' +
-    read('CHANGES.txt')
-    + '\n' +
-    read('CREDITS.txt')
-    + '\n' +
-    'Download\n'
-    '========\n'
-    )
-
-setup(
-    name='importchecker',
-    version=version,
-    description=description,
-    long_description=long_description ,
-    classifiers=[
-        'Environment :: Console',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Topic :: Software Development :: Quality Assurance',
-        'Topic :: Utilities',
-        ],
-    keywords='',
-    author='Jan-Wijbrand Kolman',
-    author_email='jw at n--tree.net',
-    url='http://pypi.python.org/pypi/importchecker',
-    license='ZPL 2.1',
-    package_dir= {'': 'src'},
-    packages=find_packages('src'),
-    include_package_data=True,
-    zip_safe=False,
-    install_requires=[
-        'setuptools',
-        ],
-    entry_points={
-        'console_scripts': ['importchecker=importchecker.importchecker:main'],
-        },
-    )

Copied: Sandbox/janwijbrand/importchecker/trunk/CHANGES.txt (from rev 86495, Sandbox/janwijbrand/importchecker/CHANGES.txt)
===================================================================
--- Sandbox/janwijbrand/importchecker/trunk/CHANGES.txt	                        (rev 0)
+++ Sandbox/janwijbrand/importchecker/trunk/CHANGES.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -0,0 +1,9 @@
+Changes
+=======
+
+1.0 (unreleased)
+----------------
+
+* Initial packaging
+
+* Make the importchecker work on python 2.5

Copied: Sandbox/janwijbrand/importchecker/trunk/CREDITS.txt (from rev 86501, Sandbox/janwijbrand/importchecker/CREDITS.txt)
===================================================================
--- Sandbox/janwijbrand/importchecker/trunk/CREDITS.txt	                        (rev 0)
+++ Sandbox/janwijbrand/importchecker/trunk/CREDITS.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -0,0 +1,7 @@
+Credits
+=======
+
+* Martijn Faassen (original developer)
+* Philipp von Weitershausen
+* Jan-Wijbrand Kolman (packaging)
+* various comitters on svn.zope.org.

Copied: Sandbox/janwijbrand/importchecker/trunk/LICENSE.txt (from rev 86495, Sandbox/janwijbrand/importchecker/LICENSE.txt)
===================================================================
--- Sandbox/janwijbrand/importchecker/trunk/LICENSE.txt	                        (rev 0)
+++ Sandbox/janwijbrand/importchecker/trunk/LICENSE.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -0,0 +1,54 @@
+Zope Public License (ZPL) Version 2.1
+-------------------------------------
+
+A copyright notice accompanies this license document that
+identifies the copyright holders.
+
+This license has been certified as open source. It has also
+been designated as GPL compatible by the Free Software
+Foundation (FSF).
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions in source code must retain the
+   accompanying copyright notice, this list of conditions,
+   and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the accompanying
+   copyright notice, this list of conditions, and the
+   following disclaimer in the documentation and/or other
+   materials provided with the distribution.
+
+3. Names of the copyright holders must not be used to
+   endorse or promote products derived from this software
+   without prior written permission from the copyright
+   holders.
+
+4. The right to distribute this software or to use it for
+   any purpose does not give you the right to use
+   Servicemarks (sm) or Trademarks (tm) of the copyright
+   holders. Use of them is covered by separate agreement
+   with the copyright holders.
+
+5. If any files are modified, you must cause the modified
+   files to carry prominent notices stating that you changed
+   the files and the date of any change.
+
+Disclaimer
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''
+  AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
+  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
+  NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+  DAMAGE.

Copied: Sandbox/janwijbrand/importchecker/trunk/README.txt (from rev 86495, Sandbox/janwijbrand/importchecker/README.txt)
===================================================================
--- Sandbox/janwijbrand/importchecker/trunk/README.txt	                        (rev 0)
+++ Sandbox/janwijbrand/importchecker/trunk/README.txt	2008-05-06 12:41:01 UTC (rev 86504)
@@ -0,0 +1,54 @@
+Importchecker
+=============
+
+What is importchecker?
+----------------------
+
+Importchecker is a commandline utility to find unused imports in Python
+modules.
+
+Its output is "grep-like" (and thus "emacs-friendly"), reporting both the
+module's filenames and line numbers where names are imported that are not
+acually used in the module.
+
+Importchecker will not modify any of the source files. Whether the import
+needs to be removed is left to the judgement of the developer.
+
+Installation
+------------
+
+The importchecker commandline utility can be installed using the
+``easy_install`` command::
+
+  $ sudo easy_install importchecker
+
+The command can then be invoked with::
+
+  $ importchecker /path/to/a/source/tree
+
+Buildout
+--------
+
+Projects that make use of `zc.buildout`_ for development might find the
+following ``buildout.cfg.`` snippet useful for using the importchecker on
+the developed codebase::
+
+  [buildout]
+  ...
+  parts = importchecker ...
+  ...
+
+  [importchecker]
+  recipe = zc.recipe.egg
+  eggs = importchecker
+  arguments = "${buildout:directory}/src"
+
+.. _`zc.buildout`: http://pypi.python.org/pypi/zc.buildout
+
+Known issues
+------------
+
+* One source tree path argument at the time can be passed to the command
+  line utility.
+
+* Command line argument parsing is rather naïve.

Copied: Sandbox/janwijbrand/importchecker/trunk/buildout.cfg (from rev 86495, Sandbox/janwijbrand/importchecker/buildout.cfg)
===================================================================
--- Sandbox/janwijbrand/importchecker/trunk/buildout.cfg	                        (rev 0)
+++ Sandbox/janwijbrand/importchecker/trunk/buildout.cfg	2008-05-06 12:41:01 UTC (rev 86504)
@@ -0,0 +1,9 @@
+[buildout]
+parts = importchecker
+develop = .
+newest = false
+
+[importchecker]
+recipe = zc.recipe.egg
+eggs = importchecker
+arguments = "src/"

Copied: Sandbox/janwijbrand/importchecker/trunk/setup.py (from rev 86495, Sandbox/janwijbrand/importchecker/setup.py)
===================================================================
--- Sandbox/janwijbrand/importchecker/trunk/setup.py	                        (rev 0)
+++ Sandbox/janwijbrand/importchecker/trunk/setup.py	2008-05-06 12:41:01 UTC (rev 86504)
@@ -0,0 +1,49 @@
+from setuptools import setup, find_packages
+import sys, os
+
+version = '1.0dev'
+description = "Importchecker finds unused imports in Python modules."
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    read('CREDITS.txt')
+    + '\n' +
+    'Download\n'
+    '========\n'
+    )
+
+setup(
+    name='importchecker',
+    version=version,
+    description=description,
+    long_description=long_description ,
+    classifiers=[
+        'Environment :: Console',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Topic :: Software Development :: Quality Assurance',
+        'Topic :: Utilities',
+        ],
+    keywords='',
+    author='Jan-Wijbrand Kolman',
+    author_email='jw at n--tree.net',
+    url='http://pypi.python.org/pypi/importchecker',
+    license='ZPL 2.1',
+    package_dir= {'': 'src'},
+    packages=find_packages('src'),
+    include_package_data=True,
+    zip_safe=False,
+    install_requires=[
+        'setuptools',
+        ],
+    entry_points={
+        'console_scripts': ['importchecker=importchecker.importchecker:main'],
+        },
+    )

Copied: Sandbox/janwijbrand/importchecker/trunk/src (from rev 86495, Sandbox/janwijbrand/importchecker/src)

Copied: Sandbox/janwijbrand/importchecker/trunk/src/importchecker (from rev 86503, Sandbox/janwijbrand/importchecker/src/importchecker)



More information about the Checkins mailing list