[Checkins] SVN: z3c.zrtresource/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Tue Mar 12 13:38:02 UTC 2013


Log message for revision 130120:
  Moved to GitHub.

Changed:
  D   z3c.zrtresource/trunk/CHANGES.txt
  A   z3c.zrtresource/trunk/MOVED_TO_GITHUB
  D   z3c.zrtresource/trunk/README.txt
  D   z3c.zrtresource/trunk/bootstrap.py
  D   z3c.zrtresource/trunk/buildout.cfg
  D   z3c.zrtresource/trunk/setup.py
  D   z3c.zrtresource/trunk/src/

-=-
Deleted: z3c.zrtresource/trunk/CHANGES.txt
===================================================================
--- z3c.zrtresource/trunk/CHANGES.txt	2013-03-12 13:37:52 UTC (rev 130119)
+++ z3c.zrtresource/trunk/CHANGES.txt	2013-03-12 13:38:02 UTC (rev 130120)
@@ -1,52 +0,0 @@
-=======
-CHANGES
-=======
-
-1.4.0 (unreleased)
-------------------
-
-- Made tests compatible with ``zope.browserresource`` 3.11, thus requiring
-  at least this version.
-
-
-1.3.0 (2009-08-27)
-------------------
-
-- Use new ``zope.browserresource`` package instead of ``zope.app.publisher``,
-  as the resources mechanism was moved there to reduce dependencies.
-
-- Register ZRTFileResourceFactory as a resource factory with name "zrt" in
-  package's configure.zcml. This makes ZRT resources created automatically
-  when using ``browser:resource`` directive for files with "zrt" extensions.
-  It will also make \*.zrt files inside resourse directories a ZRTFileResource.
-
-- Get rid of ``zope.app.testing`` test dependency.
-
-- Remove unused SETUP.CFG and z3c.zrtresource-meta.zcml files.
-
-
-1.2.0 (2009-06-25)
-------------------
-
-- Got rid of dependency on ``zope.app.component`` and
-  ``zope.app.pagetemplate``.
-
-- Fixed home page and author email address.
-
-
-1.1.0 (2007-12-01)
-------------------
-
-- Fix bug with spaces in replace expression
-
-- Added custom ZRT commands
-
-1.0.1 (2007-10-30)
-------------------
-
-- Fix long description of package to be valid restructured text.
-
-1.0.0 (2007-10-30)
-------------------
-
-- Initial release.

Added: z3c.zrtresource/trunk/MOVED_TO_GITHUB
===================================================================
--- z3c.zrtresource/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ z3c.zrtresource/trunk/MOVED_TO_GITHUB	2013-03-12 13:38:02 UTC (rev 130120)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/z3c.zrtresource
\ No newline at end of file

Deleted: z3c.zrtresource/trunk/README.txt
===================================================================
--- z3c.zrtresource/trunk/README.txt	2013-03-12 13:37:52 UTC (rev 130119)
+++ z3c.zrtresource/trunk/README.txt	2013-03-12 13:38:02 UTC (rev 130120)
@@ -1,2 +0,0 @@
-This package provides a very simple templating system for non-SGML data files
-such as CSS and Javascript.

Deleted: z3c.zrtresource/trunk/bootstrap.py
===================================================================
--- z3c.zrtresource/trunk/bootstrap.py	2013-03-12 13:37:52 UTC (rev 130119)
+++ z3c.zrtresource/trunk/bootstrap.py	2013-03-12 13:38:02 UTC (rev 130120)
@@ -1,52 +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.
-
-$Id$
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-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
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-if sys.platform == 'win32':
-    cmd = '"%s"' % cmd # work around spawn lamosity on windows
-
-ws = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, sys.executable,
-    '-c', cmd, '-mqNxd', 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: z3c.zrtresource/trunk/buildout.cfg
===================================================================
--- z3c.zrtresource/trunk/buildout.cfg	2013-03-12 13:37:52 UTC (rev 130119)
+++ z3c.zrtresource/trunk/buildout.cfg	2013-03-12 13:38:02 UTC (rev 130120)
@@ -1,11 +0,0 @@
-[buildout]
-develop = .
-parts = test
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = z3c.zrtresource [test]
-
-[ctags]
-recipe = z3c.recipe.tag
-eggs = ${test:eggs}

Deleted: z3c.zrtresource/trunk/setup.py
===================================================================
--- z3c.zrtresource/trunk/setup.py	2013-03-12 13:37:52 UTC (rev 130119)
+++ z3c.zrtresource/trunk/setup.py	2013-03-12 13:38:02 UTC (rev 130120)
@@ -1,72 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 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 z3c.zrtresource package"""
-import os
-from setuptools import setup, find_packages
-
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-
-version = '1.4.0dev'
-
-
-setup(name='z3c.zrtresource',
-      version=version,
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='Zope Resource Templates',
-      long_description=(
-          read('README.txt')
-          + '\n\n.. contents::\n\n' +
-          read('src', 'z3c', 'zrtresource', 'README.txt')
-          + '\n\n' +
-          read('src', 'z3c', 'zrtresource', 'zcml.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 css javascript resource zope",
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      url='http://pypi.python.org/pypi/z3c.zrtresource',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['z3c'],
-      extras_require = dict(test=['zope.testing',
-                                  'zope.traversing',
-                                  ]),
-      install_requires = ['setuptools',
-                          'zope.site',
-                          'zope.pagetemplate >= 3.5',
-                          'zope.browserresource >= 3.11',
-                          'zope.component',
-                          'zope.configuration',
-                          'zope.interface',
-                          'zope.publisher',
-                          'zope.schema',
-                          'zope.security [untrustedpython]',
-                          ],
-      include_package_data = True,
-      zip_safe = False,
-      )



More information about the checkins mailing list