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:
Dave Woodfall 2021-05-06 18:15:01 +01:00 committed by Willy Sudiarto Raharjo
parent 13a4694a44
commit 940984efcc
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 7 additions and 7 deletions

View File

@ -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.

View File

@ -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

View File

@ -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"