Merge pull request #642 from awiouy/st7

syncthing: update to 0.14.4
This commit is contained in:
Christian Hewitt 2016-08-22 08:10:37 +04:00 committed by GitHub
commit 2efdea781e
2 changed files with 17 additions and 15 deletions

View File

@ -1,6 +1,8 @@
7.0.102
- Update to version 0.14.4
7.0.101 7.0.101
- Enable automatic upgrades - Enable automatic upgrades
7.0.100 7.0.100
- Initial addon - Initial addon

View File

@ -17,8 +17,8 @@
################################################################################ ################################################################################
PKG_NAME="syncthing" PKG_NAME="syncthing"
PKG_VERSION="0.12.22" PKG_VERSION="0.14.4"
PKG_REV="101" PKG_REV="102"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="MPLv2" PKG_LICENSE="MPLv2"
PKG_SITE="https://syncthing.net/" PKG_SITE="https://syncthing.net/"
@ -26,19 +26,22 @@ PKG_URL="https://github.com/syncthing/syncthing/archive/v${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain go:host" PKG_DEPENDS_TARGET="toolchain go:host"
PKG_PRIORITY="optional" PKG_PRIORITY="optional"
PKG_SECTION="service/system" PKG_SECTION="service/system"
PKG_SHORTDESC="Syncthing: open source continuous file synchronization"
PKG_SHORTDESC="Open Source Continuous File Synchronization" PKG_LONGDESC="Syncthing ($PKG_VERSION) replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet."
PKG_LONGDESC="Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet." PKG_AUTORECONF="no"
PKG_MAINTAINER="Anton Voyl (awiouy at gmail dot com)"
PKG_ADDON_REPOVERSION="7.0"
PKG_IS_ADDON="yes" PKG_IS_ADDON="yes"
PKG_ADDON_NAME="Syncthing" PKG_ADDON_NAME="Syncthing"
PKG_ADDON_TYPE="xbmc.service" PKG_ADDON_TYPE="xbmc.service"
PKG_ADDON_PROVIDES="" PKG_ADDON_REPOVERSION="7.0"
PKG_AUTORECONF="no" PKG_MAINTAINER="Anton Voyl (awiouy)"
configure_target() { configure_target() {
go run build.go assets
mkdir -p $ROOT/$PKG_BUILD $ROOT/$PKG_BUILD/src/github.com/syncthing
ln -fs $ROOT/$PKG_BUILD $ROOT/$PKG_BUILD/src/github.com/syncthing/syncthing
ln -fs $ROOT/$PKG_BUILD/vendor $ROOT/$PKG_BUILD/vendor/src
case $TARGET_ARCH in case $TARGET_ARCH in
x86_64) x86_64)
@ -66,16 +69,13 @@ configure_target() {
export CGO_CFLAGS=$CFLAGS export CGO_CFLAGS=$CFLAGS
export LDFLAGS="-w -linkmode external -extldflags -Wl,--unresolved-symbols=ignore-in-shared-libs -extld $TARGET_CC -X main.Version=v$PKG_VERSION" export LDFLAGS="-w -linkmode external -extldflags -Wl,--unresolved-symbols=ignore-in-shared-libs -extld $TARGET_CC -X main.Version=v$PKG_VERSION"
export GOLANG=$ROOT/$TOOLCHAIN/lib/golang/bin/go export GOLANG=$ROOT/$TOOLCHAIN/lib/golang/bin/go
export GOPATH=$ROOT/$PKG_BUILD:$ROOT/$PKG_BUILD/Godeps/_workspace export GOPATH=$ROOT/$PKG_BUILD/src/github.com/syncthing/syncthing:$ROOT/$PKG_BUILD/vendor:$ROOT/$PKG_BUILD/Godeps/_workspace
export GOROOT=$ROOT/$TOOLCHAIN/lib/golang export GOROOT=$ROOT/$TOOLCHAIN/lib/golang
export PATH=$PATH:$GOROOT/bin export PATH=$PATH:$GOROOT/bin
mkdir -p $ROOT/$PKG_BUILD $ROOT/$PKG_BUILD/src/github.com/syncthing
ln -fs $ROOT/$PKG_BUILD $ROOT/$PKG_BUILD/src/github.com/syncthing/syncthing
} }
make_target() { make_target() {
cd $ROOT/$PKG_BUILD/src/github.com/syncthing/syncthing
mkdir -p bin mkdir -p bin
$GOLANG build -v -o bin/syncthing -a -ldflags "$LDFLAGS" ./cmd/syncthing $GOLANG build -v -o bin/syncthing -a -ldflags "$LDFLAGS" ./cmd/syncthing
} }