diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-06 18:15:01 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-08 01:41:55 +0700 |
commit | 940984efcc907a736b981b8251bccd48c51f76bf (patch) | |
tree | e20b9881b4187225e5435004556dd3adaef5579c /network/ftp-cloudfs | |
parent | 13a4694a4474053dcdcdd41e5de0824a4bf54eb2 (diff) |
network/ftp-cloudfs: Fix REQUIRES for python2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/ftp-cloudfs')
-rw-r--r-- | network/ftp-cloudfs/README | 4 | ||||
-rw-r--r-- | network/ftp-cloudfs/ftp-cloudfs.SlackBuild | 8 | ||||
-rw-r--r-- | network/ftp-cloudfs/ftp-cloudfs.info | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/network/ftp-cloudfs/README b/network/ftp-cloudfs/README index c0a491dff940..44249c3e4890 100644 --- a/network/ftp-cloudfs/README +++ b/network/ftp-cloudfs/README @@ -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. diff --git a/network/ftp-cloudfs/ftp-cloudfs.SlackBuild b/network/ftp-cloudfs/ftp-cloudfs.SlackBuild index 089dd46ea758..b72aba3cdde4 100644 --- a/network/ftp-cloudfs/ftp-cloudfs.SlackBuild +++ b/network/ftp-cloudfs/ftp-cloudfs.SlackBuild @@ -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 diff --git a/network/ftp-cloudfs/ftp-cloudfs.info b/network/ftp-cloudfs/ftp-cloudfs.info index 2c4d44355aac..5b3d6b18da65 100644 --- a/network/ftp-cloudfs/ftp-cloudfs.info +++ b/network/ftp-cloudfs/ftp-cloudfs.info @@ -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" |