keybase: Bump to 6.0.4

This commit is contained in:
Tee KOBAYASHI 2023-01-19 20:38:06 +09:00 committed by xtkoba
parent a7c36bb0b5
commit 3d53e1b97d
2 changed files with 14 additions and 3 deletions

View File

@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://keybase.io
TERMUX_PKG_DESCRIPTION="Key directory that maps social media identities to encryption keys"
TERMUX_PKG_LICENSE="BSD 3-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="6.0.2"
TERMUX_PKG_VERSION=6.0.4
TERMUX_PKG_SRCURL=https://github.com/keybase/client/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=bdc42b44727614d92768aaaf1ea4e0f01c6b24d5a478bb4b89e0abc93bc67ed5
TERMUX_PKG_SHA256=10f1b0fbee30520091a2005886947e34ea8d0f3dc3197a80563e5eb12664cc59
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_REPLACES="kbfs"
TERMUX_PKG_CONFLICTS="kbfs"
@ -14,7 +14,7 @@ termux_step_make() {
termux_setup_golang
cd go
go mod init || :
go mod tidy
go mod tidy -compat=1.17
mkdir .bin
go build -v -tags 'production' -o ./.bin/keybase ./keybase
go build -v -tags 'production' -o ./.bin/git-remote-keybase \

View File

@ -0,0 +1,11 @@
--- a/go/libkb/secret_store_secretservice.go
+++ b/go/libkb/secret_store_secretservice.go
@@ -17,7 +17,7 @@
"time"
secsrv "github.com/keybase/go-keychain/secretservice"
- dbus "github.com/keybase/go.dbus"
+ dbus "github.com/keybase/dbus"
"golang.org/x/crypto/hkdf"
)