[Checkins] SVN: z3c.recipe.tag/tags/0.1.0/ create tag for release of 0.1.0

Paul Carduner paulcarduner at gmail.com
Sun Mar 16 19:47:32 EDT 2008


Log message for revision 84721:
  create tag for release of 0.1.0

Changed:
  A   z3c.recipe.tag/tags/0.1.0/
  A   z3c.recipe.tag/tags/0.1.0/CHANGES.txt
  D   z3c.recipe.tag/tags/0.1.0/setup.py
  A   z3c.recipe.tag/tags/0.1.0/setup.py

-=-
Copied: z3c.recipe.tag/tags/0.1.0 (from rev 84718, z3c.recipe.tag/trunk)

Copied: z3c.recipe.tag/tags/0.1.0/CHANGES.txt (from rev 84720, z3c.recipe.tag/trunk/CHANGES.txt)
===================================================================
--- z3c.recipe.tag/tags/0.1.0/CHANGES.txt	                        (rev 0)
+++ z3c.recipe.tag/tags/0.1.0/CHANGES.txt	2008-03-16 23:47:28 UTC (rev 84721)
@@ -0,0 +1,10 @@
+=======
+CHANGES
+=======
+
+0.1.0 (2008-03-16)
+------------------
+
+- Initial release.
+
+  * buildout recipe for generating ctags of eggs used.

Deleted: z3c.recipe.tag/tags/0.1.0/setup.py
===================================================================
--- z3c.recipe.tag/trunk/setup.py	2008-03-16 22:59:11 UTC (rev 84718)
+++ z3c.recipe.tag/tags/0.1.0/setup.py	2008-03-16 23:47:28 UTC (rev 84721)
@@ -1,68 +0,0 @@
-#!/usr/bin/env python
-# -*- Encoding: utf-8 -*-
-##############################################################################
-#
-# 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.recipe.tag package
-
-$Id$
-"""
-
-# Check python version
-import sys
-if sys.version_info < (2, 4):
-    print >> sys.stderr, '%s: need Python 2.4 or later.' % sys.argv[0]
-    print >> sys.stderr, 'Your python is %s' % sys.version
-    sys.exit(1)
-
-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.recipe.tag",
-    version='0.1.0-dev',
-    author="Ignas Mikalajūnas",
-    description="Generate ctags from eggs for development.",
-    long_description=read('README.txt')
-    license="ZPL 2.1",
-    maintainer="Paul Carduner",
-    maintainer_email="zope-dev at zope.org",
-    classifiers=[
-        "Development Status :: 4 - Beta",
-        "Intended Audience :: Developers",
-        "License :: OSI Approved :: Zope Public License",
-        "Operating System :: OS Independent",
-        "Programming Language :: Python"],
-    url='http://svn.zope.org/Sanbox/pcardune/z3c.recipe.tag/',
-    packages=find_packages('src'),
-    package_dir={'': 'src'},
-    namespace_packages=['z3c','z3c.recipe'],
-    install_requires=['setuptools',
-                      'zc.buildout',
-                      #these two come from apt-get!
-                      #'id-utils',
-                      #'ctags-exuberant'
-                      'zc.recipe.egg'],
-    entry_points="""
-    [zc.buildout]
-    tags = z3c.recipe.tag:TagsMaker
-
-    [console_scripts]
-    build_tags = z3c.recipe.tag:build_tags
-    """,
-    zip_safe=False,
-    include_package_data=True,
-    )

Copied: z3c.recipe.tag/tags/0.1.0/setup.py (from rev 84720, z3c.recipe.tag/trunk/setup.py)
===================================================================
--- z3c.recipe.tag/tags/0.1.0/setup.py	                        (rev 0)
+++ z3c.recipe.tag/tags/0.1.0/setup.py	2008-03-16 23:47:28 UTC (rev 84721)
@@ -0,0 +1,70 @@
+#!/usr/bin/env python
+# -*- Encoding: utf-8 -*-
+##############################################################################
+#
+# 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.recipe.tag package
+
+$Id$
+"""
+
+# Check python version
+import sys
+if sys.version_info < (2, 4):
+    print >> sys.stderr, '%s: need Python 2.4 or later.' % sys.argv[0]
+    print >> sys.stderr, 'Your python is %s' % sys.version
+    sys.exit(1)
+
+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.recipe.tag",
+    version='0.1.0-dev',
+    author="Ignas Mikalajūnas",
+    description="Generate ctags from eggs for development.",
+    long_description=(read('README.txt')
+                      +'\n\n'+
+                      read('CHANGES.txt')),
+    license="ZPL 2.1",
+    maintainer="Paul Carduner",
+    maintainer_email="zope-dev at zope.org",
+    classifiers=[
+        "Development Status :: 4 - Beta",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
+        "Operating System :: OS Independent",
+        "Programming Language :: Python"],
+    url='http://svn.zope.org/Sanbox/pcardune/z3c.recipe.tag/',
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['z3c','z3c.recipe'],
+    install_requires=['setuptools',
+                      'zc.buildout',
+                      #these two come from apt-get!
+                      #'id-utils',
+                      #'ctags-exuberant'
+                      'zc.recipe.egg'],
+    entry_points="""
+    [zc.buildout]
+    tags = z3c.recipe.tag:TagsMaker
+
+    [console_scripts]
+    build_tags = z3c.recipe.tag:build_tags
+    """,
+    zip_safe=False,
+    include_package_data=True,
+    )



More information about the Checkins mailing list