python/gearbox: Convert python to python2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
d9e225c16b
commit
b1f69fd42f
|
@ -1,8 +1,8 @@
|
|||
Gearbox is a paster command replacement for TurboGears2.
|
||||
It has been created during the process of providing Python3 support to the
|
||||
TurboGears2 web framework, while still being backward compatible with the
|
||||
existing TurboGears projects.
|
||||
It has been created during the process of providing Python3 support to
|
||||
the TurboGears2 web framework, while still being backward compatible
|
||||
with the existing TurboGears projects.
|
||||
|
||||
Gearbox is based on a stripped down version of Cliff command line framework,
|
||||
you might want to consider Cliff for more advanced use cases and custom
|
||||
command interpreters.
|
||||
Gearbox is based on a stripped down version of Cliff command line
|
||||
framework, you might want to consider Cliff for more advanced use cases
|
||||
and custom command interpreters.
|
||||
|
|
|
@ -53,10 +53,8 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
if $(python3 -c 'import sys' 2>/dev/null); then
|
||||
python3 setup.py install --root=$PKG
|
||||
fi
|
||||
python2 setup.py install --root=$PKG
|
||||
python3 setup.py install --root=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README* MANIFEST.in $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
Loading…
Reference in New Issue