pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/zope3 Import zope3 from pkgsrc-wip. Packaged by Y...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/90ea87a2c59e
branches:  trunk
changeset: 501584:90ea87a2c59e
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Mon Oct 24 02:25:20 2005 +0000

description:
Import zope3 from pkgsrc-wip.  Packaged by Yoshito Komatsu and
modified by me.

Zope is an open source application server for building content
management systems, intranets, portals, and custom applications.

diffstat:

 www/zope3/DESCR            |     2 +
 www/zope3/MESSAGE          |    32 +
 www/zope3/Makefile         |    50 +
 www/zope3/PLIST            |  8559 ++++++++++++++++++++++++++++++++++++++++++++
 www/zope3/distinfo         |     9 +
 www/zope3/files/zope3.sh   |    55 +
 www/zope3/files/zss3.sh    |    56 +
 www/zope3/patches/patch-aa |    20 +
 www/zope3/patches/patch-ab |    20 +
 www/zope3/patches/patch-ac |    18 +
 www/zope3/patches/patch-ad |    18 +
 11 files changed, 8839 insertions(+), 0 deletions(-)

diffs (truncated from 8883 to 300 lines):

diff -r c787d6be4d89 -r 90ea87a2c59e www/zope3/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/zope3/DESCR   Mon Oct 24 02:25:20 2005 +0000
@@ -0,0 +1,2 @@
+Zope is an open source application server for building content
+management systems, intranets, portals, and custom applications.
diff -r c787d6be4d89 -r 90ea87a2c59e www/zope3/MESSAGE
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/zope3/MESSAGE Mon Oct 24 02:25:20 2005 +0000
@@ -0,0 +1,32 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2005/10/24 02:25:20 minskim Exp $
+
+To run Zope, you need to make a new Zope instance home.
+
+  1) If you want to run standalone Zope or ZEO client,
+     please run the following command:
+
+    ${PREFIX}/bin/mkzopeinstance --dir=${VARBASE}/zope3
+
+  2) If you want to run ZEO storage server,
+     please run the following command:
+
+    ${PREFIX}/bin/mkzeoinstance ${VARBASE}/zss3
+
+If you want to run Zope under the ${ZOPE3_USER} user account,
+you need to change the owner and group of Zope instance home
+and edit /etc/rc.conf.
+
+  1) If you want to run standalone Zope or ZEO client,
+     please run the following commands:
+
+    chown -R ${ZOPE3_USER}:${ZOPE3_GROUP} ${VARBASE}/zope3
+    echo 'zope3_user="${ZOPE3_USER}"' >> /etc/rc.conf
+
+  2) If you want to run ZEO storage server,
+     please run the following commands:
+
+    chown -R ${ZOPE3_USER}:${ZOPE3_GROUP} ${VARBASE}/zss3
+    echo 'zss3_user="${ZOPE3_USER}"' >> /etc/rc.conf
+
+===========================================================================
diff -r c787d6be4d89 -r 90ea87a2c59e www/zope3/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/zope3/Makefile        Mon Oct 24 02:25:20 2005 +0000
@@ -0,0 +1,50 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/24 02:25:20 minskim Exp $
+#
+
+DISTNAME=              Zope-3.1.0
+PKGNAME=               zope3-3.1.0
+CATEGORIES=            www
+MASTER_SITES=          http://www.zope.org/Products/Zope3/3.1.0final/
+EXTRACT_SUFX=          .tgz
+
+MAINTAINER=            ykomatsu%akaumigame.org@localhost
+HOMEPAGE=              http://dev.zope.org/Zope3/
+COMMENT=               Zope 3 Application Server
+
+DEPENDS+=              ${PYPKGPREFIX}-xml>=0.8.3nb1:../../textproc/py-xml
+
+HAS_CONFIGURE=         yes
+CONFIGURE_ARGS+=       --with-python ${PYTHONBIN} \
+                       --prefix ${PREFIX}/share/zope3 \
+                       --force
+BUILD_TARGET=          build
+
+USE_PKGINSTALL=                yes
+RCD_SCRIPTS=           zope3 zss3
+ZOPE3_GROUP?=          zope3
+ZOPE3_USER?=           zope3
+PKG_GROUPS=            ${ZOPE3_GROUP}
+PKG_USERS=             ${ZOPE3_USER}:${ZOPE3_GROUP}::Zope3\ user
+
+PYTHON_VERSION_ACCEPTED=       24 23
+
+MESSAGE_SUBST+=                ZOPE3_USER=${ZOPE3_USER} ZOPE3_GROUP=${ZOPE3_GROUP} \
+                       VARBASE=${VARBASE}
+
+ZOPE3_DOCDIR=          ${PREFIX}/share/doc/zope3
+
+.include "../../lang/python/application.mk"
+
+pre-install:
+       ${FIND} ${WRKSRC} -name "*.orig" -type f -print | ${XARGS} ${RM} -f
+
+post-install:
+       ${LN} -s ${PREFIX}/share/zope3/bin/mkzeoinstance ${PREFIX}/bin
+       ${LN} -s ${PREFIX}/share/zope3/bin/mkzopeinstance ${PREFIX}/bin
+       ${LN} -s ${PREFIX}/share/zope3/bin/zopetest ${PREFIX}/bin
+       ${INSTALL_DATA_DIR} ${ZOPE3_DOCDIR}
+       ${INSTALL_DATA} ${WRKSRC}/Zope/LICENSES.txt ${ZOPE3_DOCDIR}
+       ${INSTALL_DATA} ${WRKSRC}/Zope/ZopePublicLicense.txt ${ZOPE3_DOCDIR}
+       ${INSTALL_DATA} ${WRKSRC}/Zope/doc/*.txt ${ZOPE3_DOCDIR}
+
+.include "../../mk/bsd.pkg.mk"
diff -r c787d6be4d89 -r 90ea87a2c59e www/zope3/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/zope3/PLIST   Mon Oct 24 02:25:20 2005 +0000
@@ -0,0 +1,8559 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+bin/mkzeoinstance
+bin/mkzopeinstance
+bin/zopetest
+share/doc/zope3/ANNOUNCEMENT.txt
+share/doc/zope3/CHANGES.txt
+share/doc/zope3/CREDITS.txt
+share/doc/zope3/DEBUG.txt
+share/doc/zope3/ENVIRONMENT.txt
+share/doc/zope3/FAQ.txt
+share/doc/zope3/FTEST.txt
+share/doc/zope3/INSTALL.txt
+share/doc/zope3/LICENSES.txt
+share/doc/zope3/LOGGING.txt
+share/doc/zope3/ROADMAP.txt
+share/doc/zope3/TODO.txt
+share/doc/zope3/TODOLATER.txt
+share/doc/zope3/UNITTEST.txt
+share/doc/zope3/ZopePublicLicense.txt
+share/doc/zope3/index.txt
+share/examples/rc.d/zope3
+share/examples/rc.d/zss3
+share/zope3/bin/mkzeoinstance
+share/zope3/bin/mkzopeinstance
+share/zope3/bin/zconfig
+share/zope3/bin/zconfig_schema2html
+share/zope3/bin/zdctl.py
+share/zope3/bin/zdrun.py
+share/zope3/bin/zopetest
+share/zope3/include/python/persistent/cPersistence.h
+share/zope3/include/python/persistent/ring.h
+share/zope3/include/python/zope.proxy/proxy.h
+share/zope3/lib/python/BTrees/DEPENDENCIES.cfg
+share/zope3/lib/python/BTrees/IFBTree.py
+share/zope3/lib/python/BTrees/IFBTree.pyc
+share/zope3/lib/python/BTrees/IFBTree.pyo
+share/zope3/lib/python/BTrees/IIBTree.py
+share/zope3/lib/python/BTrees/IIBTree.pyc
+share/zope3/lib/python/BTrees/IIBTree.pyo
+share/zope3/lib/python/BTrees/IOBTree.py
+share/zope3/lib/python/BTrees/IOBTree.pyc
+share/zope3/lib/python/BTrees/IOBTree.pyo
+share/zope3/lib/python/BTrees/Interfaces.py
+share/zope3/lib/python/BTrees/Interfaces.pyc
+share/zope3/lib/python/BTrees/Interfaces.pyo
+share/zope3/lib/python/BTrees/Length.py
+share/zope3/lib/python/BTrees/Length.pyc
+share/zope3/lib/python/BTrees/Length.pyo
+share/zope3/lib/python/BTrees/Maintainer.txt
+share/zope3/lib/python/BTrees/OIBTree.py
+share/zope3/lib/python/BTrees/OIBTree.pyc
+share/zope3/lib/python/BTrees/OIBTree.pyo
+share/zope3/lib/python/BTrees/OOBTree.py
+share/zope3/lib/python/BTrees/OOBTree.pyc
+share/zope3/lib/python/BTrees/OOBTree.pyo
+share/zope3/lib/python/BTrees/SETUP.cfg
+share/zope3/lib/python/BTrees/_IFBTree.so
+share/zope3/lib/python/BTrees/_IIBTree.so
+share/zope3/lib/python/BTrees/_IOBTree.so
+share/zope3/lib/python/BTrees/_OIBTree.so
+share/zope3/lib/python/BTrees/_OOBTree.so
+share/zope3/lib/python/BTrees/__init__.py
+share/zope3/lib/python/BTrees/__init__.pyc
+share/zope3/lib/python/BTrees/__init__.pyo
+share/zope3/lib/python/BTrees/_fsBTree.so
+share/zope3/lib/python/BTrees/check.py
+share/zope3/lib/python/BTrees/check.pyc
+share/zope3/lib/python/BTrees/check.pyo
+share/zope3/lib/python/BTrees/tests/__init__.py
+share/zope3/lib/python/BTrees/tests/__init__.pyc
+share/zope3/lib/python/BTrees/tests/__init__.pyo
+share/zope3/lib/python/BTrees/tests/testBTrees.py
+share/zope3/lib/python/BTrees/tests/testBTrees.pyc
+share/zope3/lib/python/BTrees/tests/testBTrees.pyo
+share/zope3/lib/python/BTrees/tests/testBTreesUnicode.py
+share/zope3/lib/python/BTrees/tests/testBTreesUnicode.pyc
+share/zope3/lib/python/BTrees/tests/testBTreesUnicode.pyo
+share/zope3/lib/python/BTrees/tests/testConflict.py
+share/zope3/lib/python/BTrees/tests/testConflict.pyc
+share/zope3/lib/python/BTrees/tests/testConflict.pyo
+share/zope3/lib/python/BTrees/tests/testSetOps.py
+share/zope3/lib/python/BTrees/tests/testSetOps.pyc
+share/zope3/lib/python/BTrees/tests/testSetOps.pyo
+share/zope3/lib/python/BTrees/tests/test_btreesubclass.py
+share/zope3/lib/python/BTrees/tests/test_btreesubclass.pyc
+share/zope3/lib/python/BTrees/tests/test_btreesubclass.pyo
+share/zope3/lib/python/BTrees/tests/test_check.py
+share/zope3/lib/python/BTrees/tests/test_check.pyc
+share/zope3/lib/python/BTrees/tests/test_check.pyo
+share/zope3/lib/python/BTrees/tests/test_compare.py
+share/zope3/lib/python/BTrees/tests/test_compare.pyc
+share/zope3/lib/python/BTrees/tests/test_compare.pyo
+share/zope3/lib/python/RestrictedPython/Eval.py
+share/zope3/lib/python/RestrictedPython/Eval.pyc
+share/zope3/lib/python/RestrictedPython/Eval.pyo
+share/zope3/lib/python/RestrictedPython/Guards.py
+share/zope3/lib/python/RestrictedPython/Guards.pyc
+share/zope3/lib/python/RestrictedPython/Guards.pyo
+share/zope3/lib/python/RestrictedPython/Limits.py
+share/zope3/lib/python/RestrictedPython/Limits.pyc
+share/zope3/lib/python/RestrictedPython/Limits.pyo
+share/zope3/lib/python/RestrictedPython/MutatingWalker.py
+share/zope3/lib/python/RestrictedPython/MutatingWalker.pyc
+share/zope3/lib/python/RestrictedPython/MutatingWalker.pyo
+share/zope3/lib/python/RestrictedPython/PrintCollector.py
+share/zope3/lib/python/RestrictedPython/PrintCollector.pyc
+share/zope3/lib/python/RestrictedPython/PrintCollector.pyo
+share/zope3/lib/python/RestrictedPython/RCompile.py
+share/zope3/lib/python/RestrictedPython/RCompile.pyc
+share/zope3/lib/python/RestrictedPython/RCompile.pyo
+share/zope3/lib/python/RestrictedPython/RestrictionMutator.py
+share/zope3/lib/python/RestrictedPython/RestrictionMutator.pyc
+share/zope3/lib/python/RestrictedPython/RestrictionMutator.pyo
+share/zope3/lib/python/RestrictedPython/SelectCompiler.py
+share/zope3/lib/python/RestrictedPython/SelectCompiler.pyc
+share/zope3/lib/python/RestrictedPython/SelectCompiler.pyo
+share/zope3/lib/python/RestrictedPython/Utilities.py
+share/zope3/lib/python/RestrictedPython/Utilities.pyc
+share/zope3/lib/python/RestrictedPython/Utilities.pyo
+share/zope3/lib/python/RestrictedPython/__init__.py
+share/zope3/lib/python/RestrictedPython/__init__.pyc
+share/zope3/lib/python/RestrictedPython/__init__.pyo
+share/zope3/lib/python/RestrictedPython/tests/__init__.py
+share/zope3/lib/python/RestrictedPython/tests/__init__.pyc
+share/zope3/lib/python/RestrictedPython/tests/__init__.pyo
+share/zope3/lib/python/RestrictedPython/tests/before_and_after.py
+share/zope3/lib/python/RestrictedPython/tests/before_and_after.pyc
+share/zope3/lib/python/RestrictedPython/tests/before_and_after.pyo
+share/zope3/lib/python/RestrictedPython/tests/class.py
+share/zope3/lib/python/RestrictedPython/tests/class.pyc
+share/zope3/lib/python/RestrictedPython/tests/class.pyo
+share/zope3/lib/python/RestrictedPython/tests/lambda.py
+share/zope3/lib/python/RestrictedPython/tests/lambda.pyc
+share/zope3/lib/python/RestrictedPython/tests/lambda.pyo
+share/zope3/lib/python/RestrictedPython/tests/restricted_module.py
+share/zope3/lib/python/RestrictedPython/tests/restricted_module.pyc
+share/zope3/lib/python/RestrictedPython/tests/restricted_module.pyo
+share/zope3/lib/python/RestrictedPython/tests/security_in_syntax.py
+share/zope3/lib/python/RestrictedPython/tests/security_in_syntax.pyc
+share/zope3/lib/python/RestrictedPython/tests/security_in_syntax.pyo
+share/zope3/lib/python/RestrictedPython/tests/testRestrictions.py
+share/zope3/lib/python/RestrictedPython/tests/testRestrictions.pyc
+share/zope3/lib/python/RestrictedPython/tests/testRestrictions.pyo
+share/zope3/lib/python/RestrictedPython/tests/unpack.py
+share/zope3/lib/python/RestrictedPython/tests/unpack.pyc
+share/zope3/lib/python/RestrictedPython/tests/unpack.pyo
+share/zope3/lib/python/RestrictedPython/tests/verify.py
+share/zope3/lib/python/RestrictedPython/tests/verify.pyc
+share/zope3/lib/python/RestrictedPython/tests/verify.pyo
+share/zope3/lib/python/ThreadedAsync/LoopCallback.py
+share/zope3/lib/python/ThreadedAsync/LoopCallback.pyc
+share/zope3/lib/python/ThreadedAsync/LoopCallback.pyo
+share/zope3/lib/python/ThreadedAsync/__init__.py
+share/zope3/lib/python/ThreadedAsync/__init__.pyc
+share/zope3/lib/python/ThreadedAsync/__init__.pyo
+share/zope3/lib/python/ZConfig/PUBLICATION.cfg
+share/zope3/lib/python/ZConfig/SETUP.cfg
+share/zope3/lib/python/ZConfig/__init__.py
+share/zope3/lib/python/ZConfig/__init__.pyc
+share/zope3/lib/python/ZConfig/__init__.pyo
+share/zope3/lib/python/ZConfig/cfgparser.py
+share/zope3/lib/python/ZConfig/cfgparser.pyc
+share/zope3/lib/python/ZConfig/cfgparser.pyo
+share/zope3/lib/python/ZConfig/cmdline.py
+share/zope3/lib/python/ZConfig/cmdline.pyc
+share/zope3/lib/python/ZConfig/cmdline.pyo
+share/zope3/lib/python/ZConfig/components/__init__.py
+share/zope3/lib/python/ZConfig/components/__init__.pyc
+share/zope3/lib/python/ZConfig/components/__init__.pyo
+share/zope3/lib/python/ZConfig/components/basic/__init__.py
+share/zope3/lib/python/ZConfig/components/basic/__init__.pyc
+share/zope3/lib/python/ZConfig/components/basic/__init__.pyo
+share/zope3/lib/python/ZConfig/components/basic/component.xml
+share/zope3/lib/python/ZConfig/components/basic/mapping.py
+share/zope3/lib/python/ZConfig/components/basic/mapping.pyc
+share/zope3/lib/python/ZConfig/components/basic/mapping.pyo
+share/zope3/lib/python/ZConfig/components/basic/mapping.xml
+share/zope3/lib/python/ZConfig/components/basic/tests/__init__.py
+share/zope3/lib/python/ZConfig/components/basic/tests/__init__.pyc
+share/zope3/lib/python/ZConfig/components/basic/tests/__init__.pyo
+share/zope3/lib/python/ZConfig/components/basic/tests/test_mapping.py
+share/zope3/lib/python/ZConfig/components/basic/tests/test_mapping.pyc
+share/zope3/lib/python/ZConfig/components/basic/tests/test_mapping.pyo
+share/zope3/lib/python/ZConfig/components/logger/__init__.py
+share/zope3/lib/python/ZConfig/components/logger/__init__.pyc
+share/zope3/lib/python/ZConfig/components/logger/__init__.pyo
+share/zope3/lib/python/ZConfig/components/logger/abstract.xml
+share/zope3/lib/python/ZConfig/components/logger/base-logger.xml
+share/zope3/lib/python/ZConfig/components/logger/component.xml
+share/zope3/lib/python/ZConfig/components/logger/datatypes.py
+share/zope3/lib/python/ZConfig/components/logger/datatypes.pyc
+share/zope3/lib/python/ZConfig/components/logger/datatypes.pyo
+share/zope3/lib/python/ZConfig/components/logger/eventlog.xml
+share/zope3/lib/python/ZConfig/components/logger/factory.py
+share/zope3/lib/python/ZConfig/components/logger/factory.pyc
+share/zope3/lib/python/ZConfig/components/logger/factory.pyo
+share/zope3/lib/python/ZConfig/components/logger/handlers.py
+share/zope3/lib/python/ZConfig/components/logger/handlers.pyc
+share/zope3/lib/python/ZConfig/components/logger/handlers.pyo
+share/zope3/lib/python/ZConfig/components/logger/handlers.xml



Home | Main Index | Thread Index | Old Index