pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www Update plone3 package to 3.0.6.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4cdd771332bf
branches:  trunk
changeset: 538793:4cdd771332bf
user:      taca <taca%pkgsrc.org@localhost>
date:      Tue Feb 19 14:12:46 2008 +0000

description:
Update plone3 package to 3.0.6.

Change log

* Various tests were enhanced to increase our test coverage
* Implement unlocking for content which does not use portal_factory
  and for LinguaPlone translations.
* Add a method to cleanup persistent schemas from content objects
  which were created by the 'update schema' feature from older
  Archetypes releases. This is available through the ZMI.
* Correct removing of all roles from a group. This fixes This fixes 6994.
* Correct generation of session cookies for long userids. This fixes
  problems with OpenID2 accounts.
* Correct handling of unicode arguments for
  acl_users.enumerateUsers. This fixes zope-pas bug 189627.
* Kupu updates:
    o Correct full screen mode. This fixes 7473.
    o Correct intenal link insertion for IE. This fixes 7494.
    o Correct stripping out of anchor to top of current page. This fixes 7680.
    o The 'Home' link nows goes to the content root instead of the
      Plone root. This fixes 7713.
    o 'Link using UIDs' broke indexing of richt text fields with
      non-ASCII characters. This fixes 7728.
    o Update the flags and languages list. This fixes 7441.
    o  Revert internal change in language selector code in the
       plone.app.i18n release from Plone 3.0.5 in the language
       selector widget which broke LinguaPlone.
    o Fix lock timeout which was set by default to 12 minutes, it is
      now set to maxtimeout (71582788 minutes). This fixes 7358.
    o Fix TypeError when an anonymous user locks content. This fixes 7246.

Updated packages

    * archetypes.kss 1.2.6
    * plone.app.i18n 1.0.3
    * plone.app.controlpanel 1.0.4
    * plone.app.linkintegrity 1.0.5
    * plone.app.vocabularies 1.0.3
    * plone.locking 1.0.5
    * plone.session 1.2
    * Archetypes 1.5.6
    * CMF 2.1.1
    * CMFPlone 3.0.6
    * PloneLanguageTool 2.0.2
    * PlonePAS 3.2
    * PloneTranslations 3.0.11
    * PluggableAuthService 1.5.3
    * kupu 1.4.8

diffstat:

 www/plone/ploneversion.mk   |   4 ++--
 www/plone3/Makefile         |   8 ++++----
 www/plone3/PLIST            |  22 +++++++++++++++-------
 www/plone3/PLIST.common_end |   4 +++-
 www/plone3/distinfo         |   8 ++++----
 5 files changed, 28 insertions(+), 18 deletions(-)

diffs (162 lines):

diff -r 9b2abc6b3fcd -r 4cdd771332bf www/plone/ploneversion.mk
--- a/www/plone/ploneversion.mk Tue Feb 19 14:09:12 2008 +0000
+++ b/www/plone/ploneversion.mk Tue Feb 19 14:12:46 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ploneversion.mk,v 1.2 2008/01/09 22:12:23 taca Exp $
+# $NetBSD: ploneversion.mk,v 1.3 2008/02/19 14:12:46 taca Exp $
 #
 
 .if !defined(_PLONEVERSION_MK)
@@ -41,7 +41,7 @@
 
 # current Plone version
 PLONE25_VERSION=               2.5.5
-PLONE3_VERSION=                        3.0.5
+PLONE3_VERSION=                        3.0.6
 
 BUILDLINK_API_DEPENDS.plone25?=        plone25>=${PLONE25_VERSION}
 BUILDLINK_API_DEPENDS.plone3?= plone30>=${PLONE3_VERSION}
diff -r 9b2abc6b3fcd -r 4cdd771332bf www/plone3/Makefile
--- a/www/plone3/Makefile       Tue Feb 19 14:09:12 2008 +0000
+++ b/www/plone3/Makefile       Tue Feb 19 14:12:46 2008 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.2 2008/01/09 22:13:12 taca Exp $
+# $NetBSD: Makefile,v 1.3 2008/02/19 14:12:47 taca Exp $
 # FreeBSD: ports/www/plone/Makefile,v 1.25 2007/02/17 08:32:54 rafan Exp
 #
 
 DISTNAME=      Plone-${PLONE3_VERSION}
 PKGNAME=       ${PLONE_PKG_PREFIX}-${PLONE3_VERSION}
 CATEGORIES=    www python
-MASTER_SITES=  http://launchpad.net/plone/3.0/3.0.5/+download/
+MASTER_SITES=  http://launchpad.net/plone/3.0/3.0.6/+download/
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      http://plone.org/
@@ -40,8 +40,8 @@
        cd ${WRKSRC}/Products; \
                ${FIND} ${PLONE_PODIRS} -xdev -type f -name '*.po' -print | \
                while read f; do \
-                       mo=`${ECHO} $$f | ${SED} -e 's|\.po$$|.mo|'`; \
-                       msgfmt -o $$mo $$f; \
+                       mo=`${ECHO} $$f | ${SED} -e 's|\\.po$$|.mo|'`; \
+                       ${TEST} -f $$mo || msgfmt -o $$mo $$f; \
                        ${ECHO} "${PLONE_BASE}/$$mo" >> ${WRKDIR}/PLIST; \
                done
        ${CAT} ${PKGDIR}/PLIST.common_end >> ${WRKDIR}/PLIST
diff -r 9b2abc6b3fcd -r 4cdd771332bf www/plone3/PLIST
--- a/www/plone3/PLIST  Tue Feb 19 14:09:12 2008 +0000
+++ b/www/plone3/PLIST  Tue Feb 19 14:12:46 2008 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2008/01/09 22:13:12 taca Exp $
+@comment $NetBSD: PLIST,v 1.3 2008/02/19 14:12:47 taca Exp $
 ${PLONE_BASE}/ATContentTypes/AUTHORS.txt
 ${PLONE_BASE}/ATContentTypes/CHANGELOG.txt
 ${PLONE_BASE}/ATContentTypes/HISTORY.txt
@@ -840,10 +840,8 @@
 ${PLONE_BASE}/Archetypes/tests/test_templatemixin.pyc
 ${PLONE_BASE}/Archetypes/tests/test_unicode.py
 ${PLONE_BASE}/Archetypes/tests/test_unicode.pyc
-${PLONE_BASE}/Archetypes/tests/test_update_schema1.py
-${PLONE_BASE}/Archetypes/tests/test_update_schema1.pyc
-${PLONE_BASE}/Archetypes/tests/test_update_schema2.py
-${PLONE_BASE}/Archetypes/tests/test_update_schema2.pyc
+${PLONE_BASE}/Archetypes/tests/test_update_schema.py
+${PLONE_BASE}/Archetypes/tests/test_update_schema.pyc
 ${PLONE_BASE}/Archetypes/tests/test_utils.py
 ${PLONE_BASE}/Archetypes/tests/test_utils.pyc
 ${PLONE_BASE}/Archetypes/tests/test_utils2.py
@@ -1015,6 +1013,7 @@
 ${PLONE_BASE}/CMFCore/ActionProviderBase.pyc
 ${PLONE_BASE}/CMFCore/ActionsTool.py
 ${PLONE_BASE}/CMFCore/ActionsTool.pyc
+${PLONE_BASE}/CMFCore/CHANGES.txt
 ${PLONE_BASE}/CMFCore/CMFBTreeFolder.py
 ${PLONE_BASE}/CMFCore/CMFBTreeFolder.pyc
 ${PLONE_BASE}/CMFCore/CMFCatalogAware.py
@@ -5514,6 +5513,7 @@
 ${PLONE_BASE}/PloneTranslations/i18n/plone-kn.po
 ${PLONE_BASE}/PloneTranslations/i18n/plone-ko.po
 ${PLONE_BASE}/PloneTranslations/i18n/plone-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-lv.po
 ${PLONE_BASE}/PloneTranslations/i18n/plone-manual.pot
 ${PLONE_BASE}/PloneTranslations/i18n/plone-mi.po
 ${PLONE_BASE}/PloneTranslations/i18n/plone-my.po
@@ -5644,6 +5644,7 @@
 ${PLONE_BASE}/PloneTranslations/locales/kn/LC_MESSAGES/plonelocales.po
 ${PLONE_BASE}/PloneTranslations/locales/ko/LC_MESSAGES/plonelocales.po
 ${PLONE_BASE}/PloneTranslations/locales/lt/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/lv/LC_MESSAGES/plonelocales.po
 ${PLONE_BASE}/PloneTranslations/locales/mi/LC_MESSAGES/plonelocales.po
 ${PLONE_BASE}/PloneTranslations/locales/my/LC_MESSAGES/plonelocales.po
 ${PLONE_BASE}/PloneTranslations/locales/nl/LC_MESSAGES/plonefrontpage.po
@@ -7831,6 +7832,8 @@
 ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/languageselector.pt
 ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/selector.py
 ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/selector.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/tests.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/tests.pyc
 ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/configure.zcml
 ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/countries.py
 ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/countries.pyc
@@ -8474,8 +8477,10 @@
 ${ZOPE_BASE}/lib/python/plone/app/vocabularies/terms.pyc
 ${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/__init__.py
 ${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/__init__.pyc
-${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/test_catalog.py
-${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/test_catalog.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/test_vocabularies.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/test_vocabularies.pyc
 ${ZOPE_BASE}/lib/python/plone/app/vocabularies/types.py
 ${ZOPE_BASE}/lib/python/plone/app/vocabularies/types.pyc
 ${ZOPE_BASE}/lib/python/plone/app/vocabularies/users.py
@@ -8814,6 +8819,7 @@
 ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/za.gif
 ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/zm.gif
 ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/zw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/ar.gif
 ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/cy.gif
 ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/eo.gif
 ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/eu.gif
@@ -8888,6 +8894,8 @@
 ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/ru.pyc
 ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/__init__.py
 ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/test_adapters.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/test_adapters.pyc
 ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/test_normalizer.py
 ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/test_normalizer.pyc
 ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tr.py
diff -r 9b2abc6b3fcd -r 4cdd771332bf www/plone3/PLIST.common_end
--- a/www/plone3/PLIST.common_end       Tue Feb 19 14:09:12 2008 +0000
+++ b/www/plone3/PLIST.common_end       Tue Feb 19 14:12:46 2008 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.common_end,v 1.1.1.1 2007/12/18 15:47:05 taca Exp $
+@comment $NetBSD: PLIST.common_end,v 1.2 2008/02/19 14:12:47 taca Exp $
 @dirrm ${ZOPE_BASE}/lib/python/wicked/testing
 @dirrm ${ZOPE_BASE}/lib/python/wicked/plone
 @dirrm ${ZOPE_BASE}/lib/python/wicked/fieldevent
@@ -324,6 +324,8 @@
 @dirrm ${PLONE_BASE}/PloneTranslations/locales/my
 @dirrm ${PLONE_BASE}/PloneTranslations/locales/mi/LC_MESSAGES
 @dirrm ${PLONE_BASE}/PloneTranslations/locales/mi
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/lv/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/lv
 @dirrm ${PLONE_BASE}/PloneTranslations/locales/lt/LC_MESSAGES
 @dirrm ${PLONE_BASE}/PloneTranslations/locales/lt
 @dirrm ${PLONE_BASE}/PloneTranslations/locales/ko/LC_MESSAGES
diff -r 9b2abc6b3fcd -r 4cdd771332bf www/plone3/distinfo
--- a/www/plone3/distinfo       Tue Feb 19 14:09:12 2008 +0000
+++ b/www/plone3/distinfo       Tue Feb 19 14:12:46 2008 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2008/01/09 22:13:13 taca Exp $
+$NetBSD: distinfo,v 1.3 2008/02/19 14:12:47 taca Exp $
 
-SHA1 (Plone-3.0.5.tar.gz) = 795d408614e280931aa765a5ba2a1acb48f808ef
-RMD160 (Plone-3.0.5.tar.gz) = 1fe6207e822bf63508e7a228bebfe13804804ae1
-Size (Plone-3.0.5.tar.gz) = 12599161 bytes
+SHA1 (Plone-3.0.6.tar.gz) = e89b16fa8f74d8d65505c70ef6e4dabbe1b3e07c
+RMD160 (Plone-3.0.6.tar.gz) = c7b2795cd92dd255c7c2dd34027d6a046160875a
+Size (Plone-3.0.6.tar.gz) = 12710113 bytes



Home | Main Index | Thread Index | Old Index