[Checkins] SVN: zope.fixers/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Fri Feb 22 05:38:26 UTC 2013


Log message for revision 129635:
  Moved to GitHub.

Changed:
  D   zope.fixers/trunk/CHANGES.txt
  A   zope.fixers/trunk/MOVED_TO_GITHUB
  D   zope.fixers/trunk/README.txt
  D   zope.fixers/trunk/ZPL.txt
  D   zope.fixers/trunk/docs/
  D   zope.fixers/trunk/setup.cfg
  D   zope.fixers/trunk/setup.py
  D   zope.fixers/trunk/zope/

-=-
Deleted: zope.fixers/trunk/CHANGES.txt
===================================================================
--- zope.fixers/trunk/CHANGES.txt	2013-02-22 05:34:14 UTC (rev 129634)
+++ zope.fixers/trunk/CHANGES.txt	2013-02-22 05:38:26 UTC (rev 129635)
@@ -1,9 +0,0 @@
-CHANGES
-*******
-
-==================
-1.0.0 (2009-09-12)
-==================
-
-Initial release. Includes the implements fix to change implements(IFoo) 
-class body call to @implementer(IFoo) class decorator.
\ No newline at end of file

Added: zope.fixers/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.fixers/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.fixers/trunk/MOVED_TO_GITHUB	2013-02-22 05:38:26 UTC (rev 129635)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.fixers
\ No newline at end of file

Deleted: zope.fixers/trunk/README.txt
===================================================================
--- zope.fixers/trunk/README.txt	2013-02-22 05:34:14 UTC (rev 129634)
+++ zope.fixers/trunk/README.txt	2013-02-22 05:38:26 UTC (rev 129635)
@@ -1,45 +0,0 @@
-Introduction
-============
-
-Fixers for Zope Component Architecture and the frameworks built with it.
-
-Currently, there is only one fixer, fix_implements. This fixer will change
-all uses of implements(IFoo) in a class body to the class decorator
- at implementer(IFoo), which is the most likely Python 3 syntax for 
-zope.interfaces implements statements.
-
-
-Usage
------
-
-Typically you will use zope.fixers together with Distribute's 2to3 support.
-This is done by adding zope.fixers to some parameters in setup():
-
-    >>> setup(
-    ...     install_requires = ['zope.fixers'],
-    ...     use_2to3 = True,
-    ...     use_2to3_fixers = ['zope.fixers'],
-    ... )
-    
-For an example usage of a complex case, look at:
-
-    http://svn.zope.org/zope.interface/branches/regebro-python3/setup.py?rev=106216&view=markup
-
-That setup.py supports both distutils, setuptools and distribute, all versions
-of python from 2.4 to 3.1, and has an optional C-extension, so don't worry if
-it's overwhelming. For simple projects all you need is to use Distribute and
-add the above three lines to the setup.py. Distribute has more documentation
-on how to use it to support Python 3 porting.
-
-
-If you don't want to use Distribute things get a bit more complex, as you have
-to make the list of fixers yourself and call lib2to3 with that:
-
-    >>> from lib2to3.refactor import RefactoringTool, get_fixers_from_package
-    >>> fixers = get_fixers_from_package('lib2to3.fixes') + \
-    ...          get_fixers_from_package('zope.fixers')
-
-And the run the fixing with the fixers:
-
-    >>> tool = RefactoringTool(fixers)
-    >>> tool.refactor(files, write=True)

Deleted: zope.fixers/trunk/ZPL.txt
===================================================================
--- zope.fixers/trunk/ZPL.txt	2013-02-22 05:34:14 UTC (rev 129634)
+++ zope.fixers/trunk/ZPL.txt	2013-02-22 05:38:26 UTC (rev 129635)
@@ -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: zope.fixers/trunk/setup.cfg
===================================================================
--- zope.fixers/trunk/setup.cfg	2013-02-22 05:34:14 UTC (rev 129634)
+++ zope.fixers/trunk/setup.cfg	2013-02-22 05:38:26 UTC (rev 129635)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = true

Deleted: zope.fixers/trunk/setup.py
===================================================================
--- zope.fixers/trunk/setup.py	2013-02-22 05:34:14 UTC (rev 129634)
+++ zope.fixers/trunk/setup.py	2013-02-22 05:38:26 UTC (rev 129635)
@@ -1,54 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2009 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Setup for zope.fixers package
-
-$Id$
-"""
-
-from setuptools import setup, find_packages
-import os
-
-version = '1.0'
-
-setup(name='zope.fixers',
-      version=version,
-      description="2to3 fixers for Zope",
-      long_description=open("README.txt").read() + "\n" +
-                       open(os.path.join("docs", "HISTORY.txt")).read(),
-      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[
-        "Programming Language :: Python",
-        "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.1",
-        "Programming Language :: Python :: 3.2",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-
-        ],
-      keywords='2to3 python3 zope',
-      author='Lennart Regebro',
-      author_email='regebro at gmail.com',
-      url='http://svn.zope.org/zope.fixers/',
-      license='ZPL',
-      packages=find_packages(exclude=['ez_setup']),
-      namespace_packages=['zope'],
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-          'setuptools',
-      ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
-      test_suite = 'zope.fixers.tests',
-      )



More information about the checkins mailing list