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

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


Log message for revision 130115:
  Moved to GitHub.

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

-=-
Deleted: z3c.pdftemplate/trunk/CHANGES.txt
===================================================================
--- z3c.pdftemplate/trunk/CHANGES.txt	2013-03-12 13:37:21 UTC (rev 130114)
+++ z3c.pdftemplate/trunk/CHANGES.txt	2013-03-12 13:37:27 UTC (rev 130115)
@@ -1,32 +0,0 @@
-=======
-CHANGES
-=======
-
-0.2.1 (unreleased)
-------------------
-
-- Nothing changed yet.
-
-
-0.2.0 (2010-12-12)
-------------------
-
-- Added missing install dependencies and test dependencies.
-
-- Fixed tests to run with current package versions.
-
-- Adapted tests to `reportlab` 2.4+ which produces PDF 1.4, so requiring at
-  least this `reportlab` version.
-
-- Using python's `doctest` module instead of the deprecated
-  `zope.testing.doctest`.
-
-- Removed ZCML slugs and ZPKG ones.
-
-- Fixed REST of ``long_description``.
-
-
-0.1.0 (2008-02-15)
-------------------
-
-- Initial Release

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

Deleted: z3c.pdftemplate/trunk/README.txt
===================================================================
--- z3c.pdftemplate/trunk/README.txt	2013-03-12 13:37:21 UTC (rev 130114)
+++ z3c.pdftemplate/trunk/README.txt	2013-03-12 13:37:27 UTC (rev 130115)
@@ -1 +0,0 @@
-Quickly generate PDF files using page templates and RML.

Deleted: z3c.pdftemplate/trunk/bootstrap.py
===================================================================
--- z3c.pdftemplate/trunk/bootstrap.py	2013-03-12 13:37:21 UTC (rev 130114)
+++ z3c.pdftemplate/trunk/bootstrap.py	2013-03-12 13:37:27 UTC (rev 130115)
@@ -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.pdftemplate/trunk/buildout.cfg
===================================================================
--- z3c.pdftemplate/trunk/buildout.cfg	2013-03-12 13:37:21 UTC (rev 130114)
+++ z3c.pdftemplate/trunk/buildout.cfg	2013-03-12 13:37:27 UTC (rev 130115)
@@ -1,11 +0,0 @@
-[buildout]
-develop = .
-parts = test
-versions = versions
-
-[versions]
-lxml = 2.3
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = z3c.pdftemplate [test]

Deleted: z3c.pdftemplate/trunk/setup.py
===================================================================
--- z3c.pdftemplate/trunk/setup.py	2013-03-12 13:37:21 UTC (rev 130114)
+++ z3c.pdftemplate/trunk/setup.py	2013-03-12 13:37:27 UTC (rev 130115)
@@ -1,75 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Foundation 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
-
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup (
-    name='z3c.pdftemplate',
-    version='0.2.1dev',
-    author = "Stephan Richter and the Zope Community",
-    author_email = "zope-dev at zope.org",
-    description = "PDF Template",
-    long_description=(
-        read('README.txt')
-        + '\n\n.. contents::\n\n' +
-        read('src', 'z3c', 'pdftemplate', 'README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license = "ZPL 2.1",
-    keywords = "zope3 pdf rml reportlab template",
-    classifiers = [
-        'Development Status :: 4 - Beta',
-        '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.pdftemplate',
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['z3c'],
-    extras_require = dict(
-        test = [
-            'zope.app.testing',
-            'zope.principalannotation',
-            'zope.copypastemove',
-            'zope.app.container',
-            'zope.app.folder',
-            ],
-        ),
-    install_requires = [
-        'setuptools',
-        'z3c.rml',
-        'reportlab >= 2.4',
-        'zope.app.pagetemplate',
-        'zope.app.publisher',
-        'zope.component',
-        'zope.interface',
-        'zope.publisher',
-        'zope.schema',
-        ],
-    zip_safe = False,
-)



More information about the checkins mailing list