Update to 1.10.3. Also fix PR#6884, and move base directory from
${PREFIX}/zope to ${PREFIX}/lib/zope
Changes in 1.10.3:
Features Added:
- A new flag attribute, only, of the DTML with tag prunes the DTML
namespace to only the namespace created with the with tag.
- A new flag attribute, reverse, of the DTML in tag which will reverse
the order of the items iterated over.
- A new flag attribute, reverse, of the DTML tree tag which will reverse
the order of the items iterated over.
- Added contributed support for encoding options in the SendMail tag and
MailHost send method.
Bugs Fixed:
- A significant memory leak, introduced in 1.10.0 has been plugged. This
is the main reason for this release.
- Construction, upload, and edit methods did not consistently support
either string or file data. This caused really weird behavior when file
upload was used with out includeing the ":string" suffix in the argument
name when doing a file upload.
- This bug was previously (and incorrectly) reported as a
ZPublisher.Client problem.
- Errors in ExternalMethods were masked by bugs in error reporting logic.
The bugs were made far more effective by Python 1.5.1.
- Bug in sqlvar tag where the combination of type=nb and optional would
not behave as expected.
- Databases (or export files) created in binary distributions were not
usable in source distributions due to cPickle limitations in stock
Python 1.5.1. We now link/copy the cPickle extension to BoboPOS to make
sure that it uses the latest version.
- Broken products seemed to remain broken (were shown as broken in the
control panel products area) even after problems were corrected.
1999-06-20 00:48:23 +02:00
|
|
|
# $NetBSD: Makefile,v 1.8 1999/06/19 22:48:23 tsarna Exp $
|
1998-12-12 18:28:23 +01:00
|
|
|
#
|
|
|
|
|
Update to 1.10.3. Also fix PR#6884, and move base directory from
${PREFIX}/zope to ${PREFIX}/lib/zope
Changes in 1.10.3:
Features Added:
- A new flag attribute, only, of the DTML with tag prunes the DTML
namespace to only the namespace created with the with tag.
- A new flag attribute, reverse, of the DTML in tag which will reverse
the order of the items iterated over.
- A new flag attribute, reverse, of the DTML tree tag which will reverse
the order of the items iterated over.
- Added contributed support for encoding options in the SendMail tag and
MailHost send method.
Bugs Fixed:
- A significant memory leak, introduced in 1.10.0 has been plugged. This
is the main reason for this release.
- Construction, upload, and edit methods did not consistently support
either string or file data. This caused really weird behavior when file
upload was used with out includeing the ":string" suffix in the argument
name when doing a file upload.
- This bug was previously (and incorrectly) reported as a
ZPublisher.Client problem.
- Errors in ExternalMethods were masked by bugs in error reporting logic.
The bugs were made far more effective by Python 1.5.1.
- Bug in sqlvar tag where the combination of type=nb and optional would
not behave as expected.
- Databases (or export files) created in binary distributions were not
usable in source distributions due to cPickle limitations in stock
Python 1.5.1. We now link/copy the cPickle extension to BoboPOS to make
sure that it uses the latest version.
- Broken products seemed to remain broken (were shown as broken in the
control panel products area) even after problems were corrected.
1999-06-20 00:48:23 +02:00
|
|
|
DISTNAME= Zope-1.10.3-src
|
|
|
|
PKGNAME= zope-1.10.3
|
1998-12-12 18:28:23 +01:00
|
|
|
CATEGORIES= www
|
Update to 1.10.3. Also fix PR#6884, and move base directory from
${PREFIX}/zope to ${PREFIX}/lib/zope
Changes in 1.10.3:
Features Added:
- A new flag attribute, only, of the DTML with tag prunes the DTML
namespace to only the namespace created with the with tag.
- A new flag attribute, reverse, of the DTML in tag which will reverse
the order of the items iterated over.
- A new flag attribute, reverse, of the DTML tree tag which will reverse
the order of the items iterated over.
- Added contributed support for encoding options in the SendMail tag and
MailHost send method.
Bugs Fixed:
- A significant memory leak, introduced in 1.10.0 has been plugged. This
is the main reason for this release.
- Construction, upload, and edit methods did not consistently support
either string or file data. This caused really weird behavior when file
upload was used with out includeing the ":string" suffix in the argument
name when doing a file upload.
- This bug was previously (and incorrectly) reported as a
ZPublisher.Client problem.
- Errors in ExternalMethods were masked by bugs in error reporting logic.
The bugs were made far more effective by Python 1.5.1.
- Bug in sqlvar tag where the combination of type=nb and optional would
not behave as expected.
- Databases (or export files) created in binary distributions were not
usable in source distributions due to cPickle limitations in stock
Python 1.5.1. We now link/copy the cPickle extension to BoboPOS to make
sure that it uses the latest version.
- Broken products seemed to remain broken (were shown as broken in the
control panel products area) even after problems were corrected.
1999-06-20 00:48:23 +02:00
|
|
|
MASTER_SITES= http://www.zope.org/Download/Releases/Zope-1.10.3/
|
1999-04-16 08:27:41 +02:00
|
|
|
EXTRACT_SUFX= .tgz
|
1998-12-12 18:28:23 +01:00
|
|
|
|
|
|
|
MAINTAINER= tsarna@netbsd.org
|
|
|
|
HOMEPAGE= http://www.zope.org/
|
|
|
|
|
1999-04-16 08:27:41 +02:00
|
|
|
DEPENDS+= python-1.5.2:../../lang/python
|
1998-12-12 18:28:23 +01:00
|
|
|
|
|
|
|
PLIST_SRC= ${WRKDIR}/.PLIST_SRC
|
|
|
|
|
Update to 1.10.3. Also fix PR#6884, and move base directory from
${PREFIX}/zope to ${PREFIX}/lib/zope
Changes in 1.10.3:
Features Added:
- A new flag attribute, only, of the DTML with tag prunes the DTML
namespace to only the namespace created with the with tag.
- A new flag attribute, reverse, of the DTML in tag which will reverse
the order of the items iterated over.
- A new flag attribute, reverse, of the DTML tree tag which will reverse
the order of the items iterated over.
- Added contributed support for encoding options in the SendMail tag and
MailHost send method.
Bugs Fixed:
- A significant memory leak, introduced in 1.10.0 has been plugged. This
is the main reason for this release.
- Construction, upload, and edit methods did not consistently support
either string or file data. This caused really weird behavior when file
upload was used with out includeing the ":string" suffix in the argument
name when doing a file upload.
- This bug was previously (and incorrectly) reported as a
ZPublisher.Client problem.
- Errors in ExternalMethods were masked by bugs in error reporting logic.
The bugs were made far more effective by Python 1.5.1.
- Bug in sqlvar tag where the combination of type=nb and optional would
not behave as expected.
- Databases (or export files) created in binary distributions were not
usable in source distributions due to cPickle limitations in stock
Python 1.5.1. We now link/copy the cPickle extension to BoboPOS to make
sure that it uses the latest version.
- Broken products seemed to remain broken (were shown as broken in the
control panel products area) even after problems were corrected.
1999-06-20 00:48:23 +02:00
|
|
|
ZOPEDIR= ${PREFIX}/lib/zope
|
1998-12-12 18:28:23 +01:00
|
|
|
|
|
|
|
do-configure:
|
|
|
|
${SED} -e "s,@PREFIX@,${PREFIX}," \
|
|
|
|
<${FILESDIR}/Makefile.in > ${WRKSRC}/Makefile
|
1999-04-16 08:27:41 +02:00
|
|
|
(cd ${WRKSRC}; ${RM} -rf lib/Components/zlib)
|
|
|
|
(cd ${WRKSRC}; make configure)
|
1998-12-12 18:28:23 +01:00
|
|
|
|
|
|
|
do-install:
|
|
|
|
${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC}
|
|
|
|
${MKDIR} ${ZOPEDIR}
|
|
|
|
(cd ${WRKSRC}; pax -r -w -s'/.*\.[cho]$$//' . ${ZOPEDIR})
|
|
|
|
${PREFIX}/bin/python \
|
|
|
|
${PREFIX}/lib/python1.5/compileall.py ${ZOPEDIR}
|
|
|
|
chmod -R a+rX ${ZOPEDIR}
|
Update to 1.10.3. Also fix PR#6884, and move base directory from
${PREFIX}/zope to ${PREFIX}/lib/zope
Changes in 1.10.3:
Features Added:
- A new flag attribute, only, of the DTML with tag prunes the DTML
namespace to only the namespace created with the with tag.
- A new flag attribute, reverse, of the DTML in tag which will reverse
the order of the items iterated over.
- A new flag attribute, reverse, of the DTML tree tag which will reverse
the order of the items iterated over.
- Added contributed support for encoding options in the SendMail tag and
MailHost send method.
Bugs Fixed:
- A significant memory leak, introduced in 1.10.0 has been plugged. This
is the main reason for this release.
- Construction, upload, and edit methods did not consistently support
either string or file data. This caused really weird behavior when file
upload was used with out includeing the ":string" suffix in the argument
name when doing a file upload.
- This bug was previously (and incorrectly) reported as a
ZPublisher.Client problem.
- Errors in ExternalMethods were masked by bugs in error reporting logic.
The bugs were made far more effective by Python 1.5.1.
- Bug in sqlvar tag where the combination of type=nb and optional would
not behave as expected.
- Databases (or export files) created in binary distributions were not
usable in source distributions due to cPickle limitations in stock
Python 1.5.1. We now link/copy the cPickle extension to BoboPOS to make
sure that it uses the latest version.
- Broken products seemed to remain broken (were shown as broken in the
control panel products area) even after problems were corrected.
1999-06-20 00:48:23 +02:00
|
|
|
(cd ${PREFIX}; find lib/zope -type f -print >>${PLIST_SRC})
|
|
|
|
(cd ${PREFIX}; find -d lib/zope -type d -print | \
|
1998-12-12 18:28:23 +01:00
|
|
|
${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
|
|
|
|
${SED} -e "s,/usr/pkg,${PREFIX}," \
|
|
|
|
<${FILESDIR}/zope-install.py >${PREFIX}/sbin/zope-install
|
Update to 1.10.3. Also fix PR#6884, and move base directory from
${PREFIX}/zope to ${PREFIX}/lib/zope
Changes in 1.10.3:
Features Added:
- A new flag attribute, only, of the DTML with tag prunes the DTML
namespace to only the namespace created with the with tag.
- A new flag attribute, reverse, of the DTML in tag which will reverse
the order of the items iterated over.
- A new flag attribute, reverse, of the DTML tree tag which will reverse
the order of the items iterated over.
- Added contributed support for encoding options in the SendMail tag and
MailHost send method.
Bugs Fixed:
- A significant memory leak, introduced in 1.10.0 has been plugged. This
is the main reason for this release.
- Construction, upload, and edit methods did not consistently support
either string or file data. This caused really weird behavior when file
upload was used with out includeing the ":string" suffix in the argument
name when doing a file upload.
- This bug was previously (and incorrectly) reported as a
ZPublisher.Client problem.
- Errors in ExternalMethods were masked by bugs in error reporting logic.
The bugs were made far more effective by Python 1.5.1.
- Bug in sqlvar tag where the combination of type=nb and optional would
not behave as expected.
- Databases (or export files) created in binary distributions were not
usable in source distributions due to cPickle limitations in stock
Python 1.5.1. We now link/copy the cPickle extension to BoboPOS to make
sure that it uses the latest version.
- Broken products seemed to remain broken (were shown as broken in the
control panel products area) even after problems were corrected.
1999-06-20 00:48:23 +02:00
|
|
|
${SED} -e "s,/usr/pkg,${PREFIX}," \
|
|
|
|
<${FILESDIR}/zope-shutdown.py >${PREFIX}/sbin/zope-shutdown
|
|
|
|
chmod 755 ${PREFIX}/sbin/zope-install ${PREFIX}/sbin/zope-shutdown
|
1998-12-12 18:28:23 +01:00
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|