From 76fbdb70501bd3389b9fdf6c859860adbf91be40 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sun, 23 Feb 2020 01:45:53 +0100 Subject: [PATCH] seafile-client: Rebuild to depend on python3 --- packages/seafile-client/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/seafile-client/build.sh b/packages/seafile-client/build.sh index c7c1b320d..4a5e1d342 100644 --- a/packages/seafile-client/build.sh +++ b/packages/seafile-client/build.sh @@ -2,9 +2,10 @@ TERMUX_PKG_HOMEPAGE=http://seafile.com TERMUX_PKG_DESCRIPTION="Seafile is a file syncing and sharing software with file encryption and group sharing" TERMUX_PKG_LICENSE="Apache-2.0" TERMUX_PKG_VERSION=7.0.6 +TERMUX_PKG_REVISION=1 TERMUX_PKG_SRCURL=https://github.com/haiwen/seafile/archive/v${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_SHA256=8a7f37b555b5e8750194db9ae8041d2b0ed0035b3fc832112d4a891e02b00488 -TERMUX_PKG_DEPENDS="ccnet, libcurl, python2" +TERMUX_PKG_DEPENDS="ccnet, libcurl, python" TERMUX_PKG_BREAKS="seafile-client-dev" TERMUX_PKG_REPLACES="seafile-client-dev" TERMUX_PKG_BUILD_IN_SRC=true @@ -23,6 +24,6 @@ termux_step_post_configure() { termux_step_create_debscripts() { cat <<- EOF > ./postinst #!$TERMUX_PREFIX/bin/sh - pip2 install future + pip install future EOF }