network/ftp-cloudfs: Fix REQUIRES for python2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
13a4694a44
commit
940984efcc
|
@ -2,8 +2,8 @@ ftp-cloudfs is a ftp server acting as a proxy to OpenStack Object
|
|||
Storage (swift). It allow you to connect via any FTP client to do
|
||||
upload/download or create containers.
|
||||
|
||||
By default the server will bind to port 2021 which allow to be run as a non
|
||||
root/administrator user.
|
||||
By default the server will bind to port 2021 which allow to be run as a
|
||||
non root/administrator user.
|
||||
|
||||
It supports pseudo-hierarchical folders/directories as described in the
|
||||
OpenStack Object Storage API.
|
||||
|
|
|
@ -32,7 +32,7 @@ TAG=${TAG:-_SBo}
|
|||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -43,8 +43,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -72,7 +72,7 @@ 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
|
||||
python2 setup.py install --root $PKG
|
||||
|
||||
mkdir -p $PKG/etc
|
||||
install -m 0644 $SRCNAM.conf.example $PKG/etc/$SRCNAM.conf.new
|
||||
|
|
|
@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/cloudfs/ftp-cloudfs/archive/0.35.tar.gz"
|
|||
MD5SUM="8c3374bba8253b2e30fa63f0926be360"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="pyftpdlib python-daemon python-memcached python-swiftclient"
|
||||
REQUIRES="pyftpdlib python2-daemon python2-memcached python-swiftclient"
|
||||
MAINTAINER="Marcel Saegebarth"
|
||||
EMAIL="marc@mos6581.de"
|
||||
|
|
Loading…
Reference in New Issue