[Checkins] SVN: five.formlib/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Sat Mar 2 02:09:37 UTC 2013


Log message for revision 129984:
  Moved to GitHub.

Changed:
  D   five.formlib/trunk/CHANGES.txt
  D   five.formlib/trunk/MANIFEST.in
  A   five.formlib/trunk/MOVED_TO_GITHUB
  D   five.formlib/trunk/README.txt
  D   five.formlib/trunk/bootstrap.py
  D   five.formlib/trunk/buildout.cfg
  D   five.formlib/trunk/setup.py
  D   five.formlib/trunk/src/

-=-
Deleted: five.formlib/trunk/CHANGES.txt
===================================================================
--- five.formlib/trunk/CHANGES.txt	2013-03-02 02:09:32 UTC (rev 129983)
+++ five.formlib/trunk/CHANGES.txt	2013-03-02 02:09:37 UTC (rev 129984)
@@ -1,41 +0,0 @@
-Changelog
-=========
-
-1.1.0 - unreleased
-------------------
-
-* Update various imports to zope.formlib and require at least Zope 2.13.
-
-* Deal with forward compatibility with Zope 4.
-
-* Avoid charset negotiation.
-
-1.0.4 - 2011-02-06
-------------------
-
-* Fix test failures when running against 2.13.2+.
-
-1.0.3 - 2010-06-13
-------------------
-
-* Explicitly load the zope.app.form.browser ZCML.
-
-* Avoid deprecation warnings under Zope 2.13.
-
-1.0.2 - 2009-12-30
-------------------
-
-* Deal with backwards compatibility for the menuItemDirective.
-
-1.0.1 - 2009-12-29
-------------------
-
-* Added backwards compatibility support with Zope 2.12. The protectClass
-  function has moved. Also include our own meta.zcml into the tests runs to
-  get a higher coverage.
-
-1.0 - 2009-12-26
-----------------
-
-* The code was extracted from the Zope2 distribution. This distribution
-  contains the code from both the Products.Five formlib and form sub-packages.

Deleted: five.formlib/trunk/MANIFEST.in
===================================================================
--- five.formlib/trunk/MANIFEST.in	2013-03-02 02:09:32 UTC (rev 129983)
+++ five.formlib/trunk/MANIFEST.in	2013-03-02 02:09:37 UTC (rev 129984)
@@ -1,5 +0,0 @@
-include *
-
-recursive-include src *
-
-global-exclude *pyc

Added: five.formlib/trunk/MOVED_TO_GITHUB
===================================================================
--- five.formlib/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ five.formlib/trunk/MOVED_TO_GITHUB	2013-03-02 02:09:37 UTC (rev 129984)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/five.formlib
\ No newline at end of file

Deleted: five.formlib/trunk/README.txt
===================================================================
--- five.formlib/trunk/README.txt	2013-03-02 02:09:32 UTC (rev 129983)
+++ five.formlib/trunk/README.txt	2013-03-02 02:09:37 UTC (rev 129984)
@@ -1,8 +0,0 @@
-Introduction
-============
-
-Overview
---------
-
-five.formlib provides integration of the zope.formlib and zope.app.form
-packages into the Zope2 application server.

Deleted: five.formlib/trunk/bootstrap.py
===================================================================
--- five.formlib/trunk/bootstrap.py	2013-03-02 02:09:32 UTC (rev 129983)
+++ five.formlib/trunk/bootstrap.py	2013-03-02 02:09:37 UTC (rev 129984)
@@ -1,60 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 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.
-#
-##############################################################################
-"""Bootstrap a buildout-based project
-
-Simply run this script in a directory containing a buildout.cfg.
-The script accepts buildout command-line options, so you can
-use the -c option to specify an alternate configuration file.
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-try:
-    import pkg_resources
-except ImportError:
-    ez = {}
-    exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                         ).read() in ez
-    ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-    import pkg_resources
-
-if sys.platform == 'win32':
-    def quote(c):
-        if ' ' in c:
-            return '"%s"' % c # work around spawn lamosity on windows
-        else:
-            return c
-else:
-    def quote (c):
-        return c
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-ws  = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, quote (sys.executable),
-    '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout',
-    dict(os.environ,
-         PYTHONPATH=
-         ws.find(pkg_resources.Requirement.parse('setuptools')).location
-         ),
-    ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout')
-import zc.buildout.buildout
-zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
-shutil.rmtree(tmpeggs)

Deleted: five.formlib/trunk/buildout.cfg
===================================================================
--- five.formlib/trunk/buildout.cfg	2013-03-02 02:09:32 UTC (rev 129983)
+++ five.formlib/trunk/buildout.cfg	2013-03-02 02:09:37 UTC (rev 129984)
@@ -1,10 +0,0 @@
-[buildout]
-extends = http://download.zope.org/Zope2/index/2.13.5/versions.cfg
-parts = test
-develop = .
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = 
-    five.formlib
-defaults = ['-c', '--module', 'five.formlib']

Deleted: five.formlib/trunk/setup.py
===================================================================
--- five.formlib/trunk/setup.py	2013-03-02 02:09:32 UTC (rev 129983)
+++ five.formlib/trunk/setup.py	2013-03-02 02:09:37 UTC (rev 129984)
@@ -1,46 +0,0 @@
-from setuptools import setup
-
-version = '1.1.0dev'
-
-setup(name='five.formlib',
-      version=version,
-      url='http://pypi.python.org/pypi/five.formlib',
-      license='ZPL 2.1',
-      description='zope.formlib integration for Zope 2',
-      author='Zope Foundation',
-      author_email='zope-dev at zope.org',
-      long_description=open("README.txt").read() + "\n" +
-                       open("CHANGES.txt").read(),
-      classifiers=[
-          'Environment :: Web Environment',
-          'Framework :: Zope2',
-          'License :: OSI Approved :: Zope Public License',
-          'Operating System :: OS Independent',
-          'Programming Language :: Python',
-          'Topic :: Internet :: WWW/HTTP :: Site Management',
-      ],
-      keywords='zope zope2 five formlib',
-      packages=['five', 'five.formlib'],
-      package_dir = {'': 'src'},
-      namespace_packages=['five',],
-      include_package_data = True,
-      install_requires=[
-        'setuptools',
-        'transaction',
-        'zope.app.form',
-        'zope.browser',
-        'zope.browsermenu',
-        'zope.component',
-        'zope.event',
-        'zope.formlib>=4.0',
-        'zope.i18nmessageid',
-        'zope.interface',
-        'zope.lifecycleevent',
-        'zope.location',
-        'zope.publisher',
-        'zope.schema',
-        'ExtensionClass',
-        'Zope2>=2.13',
-      ],
-      zip_safe = False,
-      )



More information about the checkins mailing list