pkgsrc-Changes-HG archive

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

[pkgsrc/pkgsrc-2008Q2]: pkgsrc/www/zope211 Pullup ticket #2501 - requested by...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bcb0e2385812
branches:  pkgsrc-2008Q2
changeset: 544283:bcb0e2385812
user:      tron <tron%pkgsrc.org@localhost>
date:      Thu Aug 21 12:01:04 2008 +0000

description:
Pullup ticket #2501 - requested by taca
zope211: security fix

Revisions pulled up:
- www/zope211/Makefile          1.3
- www/zope211/distinfo          1.3
- www/zope211/patches/patch-aj  1.1
- www/zope211/patches/patch-ak  1.1
---
Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Aug 17 15:13:23 UTC 2008

Modified Files:
        pkgsrc/www/zope211: Makefile distinfo
Added Files:
        pkgsrc/www/zope211/patches: patch-aj patch-ak

Log Message:
Add some changes from Zope's svn repository which should fix
Zope's security advisory 2008-08-12.

Bump PKGREVISION.

diffstat:

 www/zope211/Makefile         |    3 +-
 www/zope211/distinfo         |    4 +-
 www/zope211/patches/patch-aj |   19 +++++++
 www/zope211/patches/patch-ak |  109 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 133 insertions(+), 2 deletions(-)

diffs (165 lines):

diff -r e632c6a7ebc3 -r bcb0e2385812 www/zope211/Makefile
--- a/www/zope211/Makefile      Thu Aug 21 11:36:18 2008 +0000
+++ b/www/zope211/Makefile      Thu Aug 21 12:01:04 2008 +0000
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.1.1.1 2008/06/21 10:39:31 taca Exp $
+# $NetBSD: Makefile,v 1.1.1.1.4.1 2008/08/21 12:01:04 tron Exp $
 #
 
 DISTNAME=      Zope-${ZOPE211_VERSION}-final
 PKGNAME=       ${ZOPE_PKG_PREFIX}-${ZOPE211_VERSION}
+PKGREVISION=   1
 CATEGORIES=    www python
 MASTER_SITES=  http://www.zope.org/Products/Zope/${ZOPE211_VERSION}/
 
diff -r e632c6a7ebc3 -r bcb0e2385812 www/zope211/distinfo
--- a/www/zope211/distinfo      Thu Aug 21 11:36:18 2008 +0000
+++ b/www/zope211/distinfo      Thu Aug 21 12:01:04 2008 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1.1.1 2008/06/21 10:39:31 taca Exp $
+$NetBSD: distinfo,v 1.1.1.1.4.1 2008/08/21 12:01:04 tron Exp $
 
 SHA1 (Zope-2.11.0-final.tar.gz) = 1954c2833bdbe159bc71e23ea51de89d72ddb66f
 RMD160 (Zope-2.11.0-final.tar.gz) = d2f4393c8c52ce6c0e7c63f3d6c23037d9a34266
@@ -12,3 +12,5 @@
 SHA1 (patch-ag) = dffc88b9d087e01bf853441c4a9064a9184a310f
 SHA1 (patch-ah) = 360c8f69e1f23a9f0dec666d509e03e4ef55d93b
 SHA1 (patch-ai) = d7987483068b677aeab5ceb59dd8261e204065d7
+SHA1 (patch-aj) = a69e08c7f9a705056d13c5c7bff0dbfef1d53da6
+SHA1 (patch-ak) = 95633060bc99be604b75ac49e37e6483168bc362
diff -r e632c6a7ebc3 -r bcb0e2385812 www/zope211/patches/patch-aj
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/zope211/patches/patch-aj      Thu Aug 21 12:01:04 2008 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-aj,v 1.1.2.2 2008/08/21 12:01:04 tron Exp $
+
+Patch #1 corresponding to security advisory 2008-08-12.
+
+--- lib/python/Products/PythonScripts/PythonScript.py.orig     2008-07-17 00:42:18.000000000 +0900
++++ lib/python/Products/PythonScripts/PythonScript.py
+@@ -324,7 +324,11 @@ class PythonScript(Script, Historical, C
+         g['__file__'] = getattr(self, '_filepath', None) or self.get_filepath()
+         f = new.function(fcode, g, None, fadefs)
+ 
+-        result = f(*args, **kw)
++        try:
++            result = f(*args, **kw)
++        except SystemExit:
++            raise ValueError('SystemExit cannot be raised within a PythonScript')
++
+         if keyset is not None:
+             # Store the result in the cache.
+             self.ZCacheable_set(result, keywords=keyset)
diff -r e632c6a7ebc3 -r bcb0e2385812 www/zope211/patches/patch-ak
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/zope211/patches/patch-ak      Thu Aug 21 12:01:04 2008 +0000
@@ -0,0 +1,109 @@
+$NetBSD: patch-ak,v 1.1.2.2 2008/08/21 12:01:04 tron Exp $
+
+Patch #2 corresponding to security advisory 2008-08-12.
+
+--- lib/python/Products/PythonScripts/__init__.py.orig 2008-05-10 15:35:03.000000000 +0900
++++ lib/python/Products/PythonScripts/__init__.py
+@@ -61,3 +61,102 @@ def recompile(self):
+     if names:
+         return 'The following Scripts were recompiled:\n' + '\n'.join(names)
+     return 'No Scripts were found that required recompilation.'
++
++
++# Monkey patch for LP #257276
++
++# This code is taken from the encodings module of Python 2.4.
++# Note that this code is originally (C) CNRI and it is possibly not compatible
++# with the ZPL and therefore should not live within svn.zope.org. However this
++# checkin is blessed by Jim Fulton for now. The fix is no longer required with
++# Python 2.5 and hopefully fixed in Python 2.4.6 release.
++
++
++# Written by Marc-Andre Lemburg (mal%lemburg.com@localhost).
++# (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
++
++def search_function(encoding):
++
++    # Cache lookup
++    entry = _cache.get(encoding, _unknown)
++    if entry is not _unknown:
++        return entry
++
++    # Import the module:
++    #
++    # First try to find an alias for the normalized encoding
++    # name and lookup the module using the aliased name, then try to
++    # lookup the module using the standard import scheme, i.e. first
++    # try in the encodings package, then at top-level.
++    #
++    norm_encoding = normalize_encoding(encoding)
++    aliased_encoding = _aliases.get(norm_encoding) or \
++                       _aliases.get(norm_encoding.replace('.', '_'))
++    if aliased_encoding is not None:
++        modnames = [aliased_encoding,
++                    norm_encoding]
++    else:
++        modnames = [norm_encoding]
++    for modname in modnames:
++
++        if not modname or '.' in modname:
++            continue
++
++        try:
++            mod = __import__(modname,
++                             globals(), locals(), _import_tail)
++            if not mod.__name__.startswith('encodings.'):
++                continue
++
++        except ImportError:
++            pass
++        else:
++            break
++    else:
++        mod = None
++
++    try:
++        getregentry = mod.getregentry
++    except AttributeError:
++        # Not a codec module
++        mod = None
++
++    if mod is None:
++        # Cache misses
++        _cache[encoding] = None
++        return None
++
++    # Now ask the module for the registry entry
++    entry = tuple(getregentry())
++    if len(entry) != 4:
++        raise CodecRegistryError,\
++              'module "%s" (%s) failed to register' % \
++              (mod.__name__, mod.__file__)
++    for obj in entry:
++        if not callable(obj):
++            raise CodecRegistryError,\
++                  'incompatible codecs in module "%s" (%s)' % \
++                  (mod.__name__, mod.__file__)
++
++    # Cache the codec registry entry
++    _cache[encoding] = entry
++
++    # Register its aliases (without overwriting previously registered
++    # aliases)
++    try:
++        codecaliases = mod.getaliases()
++    except AttributeError:
++        pass
++    else:
++        for alias in codecaliases:
++            if not _aliases.has_key(alias):
++                _aliases[alias] = modname
++
++    # Return the registry entry
++    return entry
++
++
++# MONKEY
++
++import encodings
++encodings.search_function.func_code = search_function.func_code



Home | Main Index | Thread Index | Old Index