[Zope-Checkins] SVN: Zope/branches/zpkg-build-branch/ snapshot
current state of the zpkg build support for Zope 2.9; includes
Fred L. Drake, Jr.
fdrake at gmail.com
Fri Aug 26 15:46:58 EDT 2005
Log message for revision 38112:
snapshot current state of the zpkg build support for Zope 2.9; includes
moving to newer versions of the Zope 3 and ZODB software
Changed:
_U Zope/branches/zpkg-build-branch/
A Zope/branches/zpkg-build-branch/SETUP.cfg
_U Zope/branches/zpkg-build-branch/lib/python/
U Zope/branches/zpkg-build-branch/lib/python/AccessControl/cAccessControl.c
U Zope/branches/zpkg-build-branch/lib/python/Acquisition/_Acquisition.c
U Zope/branches/zpkg-build-branch/lib/python/ComputedAttribute/_ComputedAttribute.c
U Zope/branches/zpkg-build-branch/lib/python/DocumentTemplate/cDocumentTemplate.c
U Zope/branches/zpkg-build-branch/lib/python/ExtensionClass/_ExtensionClass.c
U Zope/branches/zpkg-build-branch/lib/python/MethodObject/_MethodObject.c
U Zope/branches/zpkg-build-branch/lib/python/Missing/_Missing.c
U Zope/branches/zpkg-build-branch/lib/python/MultiMapping/_MultiMapping.c
U Zope/branches/zpkg-build-branch/lib/python/Persistence/_Persistence.c
U Zope/branches/zpkg-build-branch/lib/python/Record/_Record.c
A Zope/branches/zpkg-build-branch/setup2.py
-=-
Property changes on: Zope/branches/zpkg-build-branch
___________________________________________________________________
Name: svn:externals
+ zpkgsetup svn://svn.zope.org/repos/main/zpkgtools/trunk/zpkgsetup
Added: Zope/branches/zpkg-build-branch/SETUP.cfg
===================================================================
--- Zope/branches/zpkg-build-branch/SETUP.cfg 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/SETUP.cfg 2005-08-26 19:46:58 UTC (rev 38112)
@@ -0,0 +1,2 @@
+#script utilities/*.py
+#script utilities/ZODBTools/*.py
Property changes on: Zope/branches/zpkg-build-branch/SETUP.cfg
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Zope/branches/zpkg-build-branch/lib/python
___________________________________________________________________
Name: svn:ignore
- *so
*.pyc
version.txt
build
+ *.so
*.pyc
*.pyo
version.txt
Name: svn:externals
- zope svn://svn.zope.org/repos/main/Zope3/tags/ZopeX3-3.0.1-Zope-2.8/src/zope
ZConfig svn://svn.zope.org/repos/main/ZConfig/tags/ZConfig-2.3
BTrees svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/BTrees
persistent svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/persistent
ThreadedAsync svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/ThreadedAsync
transaction svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/transaction
ZEO svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/ZEO
ZODB svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/ZODB
ZopeUndo svn://svn.zope.org/repos/main/ZODB/tags/3.4.1/src/ZopeUndo
zdaemon svn://svn.zope.org/repos/main/zdaemon/tags/zdaemon-1.1
+ pytz svn://svn.zope.org/repos/main/Zope3/trunk/src/pytz
zodbcode svn://svn.zope.org/repos/main/Zope3/trunk/src/zodbcode
zope svn://svn.zope.org/repos/main/Zope3/trunk/src/zope
ZConfig svn://svn.zope.org/repos/main/ZConfig/tags/ZConfig-2.3
BTrees svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/BTrees
persistent svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/persistent
ThreadedAsync svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/ThreadedAsync
transaction svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/transaction
ZEO svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/ZEO
ZODB svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/ZODB
ZopeUndo svn://svn.zope.org/repos/main/ZODB/tags/3.5.0a8/src/ZopeUndo
zdaemon svn://svn.zope.org/repos/main/zdaemon/tags/zdaemon-1.1
Modified: Zope/branches/zpkg-build-branch/lib/python/AccessControl/cAccessControl.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/AccessControl/cAccessControl.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/AccessControl/cAccessControl.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -48,8 +48,8 @@
*/
-#include "ExtensionClass.h"
-#include "Acquisition.h"
+#include "ExtensionClass/ExtensionClass.h"
+#include "Acquisition/Acquisition.h"
#include <stdio.h>
#include <stdlib.h>
Modified: Zope/branches/zpkg-build-branch/lib/python/Acquisition/_Acquisition.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/Acquisition/_Acquisition.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/Acquisition/_Acquisition.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -12,10 +12,10 @@
****************************************************************************/
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
#define _IN_ACQUISITION_C
-#include "Acquisition.h"
+#include "Acquisition/Acquisition.h"
static ACQUISITIONCAPI AcquisitionCAPI;
Modified: Zope/branches/zpkg-build-branch/lib/python/ComputedAttribute/_ComputedAttribute.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/ComputedAttribute/_ComputedAttribute.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/ComputedAttribute/_ComputedAttribute.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -11,7 +11,7 @@
FOR A PARTICULAR PURPOSE
****************************************************************************/
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
#define UNLESS(E) if(!(E))
#define OBJECT(O) ((PyObject*)(O))
Modified: Zope/branches/zpkg-build-branch/lib/python/DocumentTemplate/cDocumentTemplate.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/DocumentTemplate/cDocumentTemplate.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/DocumentTemplate/cDocumentTemplate.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -15,7 +15,7 @@
"\n$Id$"
;
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
static PyObject *py_isDocTemp=0, *py_blocks=0, *py_=0, *join=0, *py_acquire;
static PyObject *py___call__, *py___roles__, *py_AUTHENTICATED_USER;
Modified: Zope/branches/zpkg-build-branch/lib/python/ExtensionClass/_ExtensionClass.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/ExtensionClass/_ExtensionClass.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/ExtensionClass/_ExtensionClass.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -17,7 +17,7 @@
"$Id$\n"
;
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
#define EC PyTypeObject
Modified: Zope/branches/zpkg-build-branch/lib/python/MethodObject/_MethodObject.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/MethodObject/_MethodObject.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/MethodObject/_MethodObject.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -12,7 +12,7 @@
****************************************************************************/
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
static PyObject *
of(PyObject *self, PyObject *args)
Modified: Zope/branches/zpkg-build-branch/lib/python/Missing/_Missing.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/Missing/_Missing.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/Missing/_Missing.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -17,7 +17,7 @@
"\n$Id$"
;
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
/* Declarations for objects of type Missing */
Modified: Zope/branches/zpkg-build-branch/lib/python/MultiMapping/_MultiMapping.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/MultiMapping/_MultiMapping.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/MultiMapping/_MultiMapping.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -12,7 +12,7 @@
****************************************************************************/
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
#define UNLESS(E) if(!(E))
Modified: Zope/branches/zpkg-build-branch/lib/python/Persistence/_Persistence.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/Persistence/_Persistence.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/Persistence/_Persistence.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -17,8 +17,8 @@
"$Id$\n"
;
-#include "ExtensionClass.h"
-#include "cPersistence.h"
+#include "ExtensionClass/ExtensionClass.h"
+#include "persistent/cPersistence.h"
/* convert_name() returns a new reference to a string name
Modified: Zope/branches/zpkg-build-branch/lib/python/Record/_Record.c
===================================================================
--- Zope/branches/zpkg-build-branch/lib/python/Record/_Record.c 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/lib/python/Record/_Record.c 2005-08-26 19:46:58 UTC (rev 38112)
@@ -17,7 +17,7 @@
"\n$Id: _Record.c,v 1.2 2003/11/28 16:46:36 jim Exp $"
;
-#include "ExtensionClass.h"
+#include "ExtensionClass/ExtensionClass.h"
/* ----------------------------------------------------- */
Added: Zope/branches/zpkg-build-branch/setup2.py
===================================================================
--- Zope/branches/zpkg-build-branch/setup2.py 2005-08-26 19:01:26 UTC (rev 38111)
+++ Zope/branches/zpkg-build-branch/setup2.py 2005-08-26 19:46:58 UTC (rev 38112)
@@ -0,0 +1,36 @@
+#############################################################################
+#
+# Copyright (c) 2005 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.
+#
+##############################################################################
+
+import os
+
+import zpkgsetup.package
+import zpkgsetup.publication
+import zpkgsetup.setup
+
+# Note that release.py must be able to recognize the VERSION line.
+VERSION = "2.9.0a42"
+
+
+here = os.path.dirname(os.path.abspath(__file__))
+
+context = zpkgsetup.setup.SetupContext(
+ "Zope", VERSION, __file__)
+
+context.load_metadata(
+ os.path.join(here,
+ zpkgsetup.publication.PUBLICATION_CONF))
+
+context.scan_collection("Zope", here, "release")
+context.walk_packages("lib/python")
+context.setup()
Property changes on: Zope/branches/zpkg-build-branch/setup2.py
___________________________________________________________________
Name: svn:mime-type
+ text/x-python
Name: svn:eol-style
+ native
More information about the Zope-Checkins
mailing list