libraries/zope.proxy: Updated for version 4.1.1.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
451bd8f37f
commit
837bb50cde
|
@ -1,6 +1,4 @@
|
|||
zope.proxy (Generic Transparent Proxies)
|
||||
|
||||
Proxies are special objects which serve as mostly-transparent
|
||||
Zope Proxies are special objects which serve as mostly-transparent
|
||||
wrappers around another object, intervening in the apparent behavior
|
||||
of the wrapped object only when necessary to apply the policy (e.g.,
|
||||
access checking, location brokering, etc.) for which the proxy is
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
zope.proxy: zope.proxy (Generic Transparent Proxies)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for zope.proxy
|
||||
|
||||
# Copyright 2011 Mikko Värri, Finland
|
||||
# Copyright 2013 Mikko Värri, Finland
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=zope.proxy
|
||||
VERSION=${VERSION:-3.6.1}
|
||||
VERSION=${VERSION:-4.1.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -46,7 +46,7 @@ rm -rf $PKG
|
|||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
unzip $CWD/$PRGNAM-$VERSION.zip
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
|
@ -57,7 +57,7 @@ find . \
|
|||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="zope.proxy"
|
||||
VERSION="3.6.1"
|
||||
VERSION="4.1.1"
|
||||
HOMEPAGE="http://pypi.python.org/pypi/zope.proxy"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/z/zope.proxy/zope.proxy-3.6.1.zip"
|
||||
MD5SUM="a400b0a26624b17fa889dbcaa989d440"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/z/zope.proxy/zope.proxy-4.1.1.tar.gz"
|
||||
MD5SUM="c36691f0abee7573f4ddcc378603cefd"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="zope.interface"
|
||||
|
|
Loading…
Reference in New Issue