diff --git a/syncthing.be0 b/syncthing.be0 index e27df41c4..893dbedfd 100755 --- a/syncthing.be0 +++ b/syncthing.be0 @@ -1,12 +1,12 @@ #!/bin/env beesh -# BEE_VERSION syncthing-1.23.2-1 +# BEE_VERSION syncthing-1.23.4-0 ## The source URL(s) array -#SRCURL[0]="https://github.com/syncthing/syncthing/releases/download/v${PKGVERSION}/syncthing-source-v${PKGVERSION}.tar.gz syncthing-v${PKGVERSION}.tar.gz" +# SRCURL[0]="https://github.com/syncthing/syncthing/releases/download/v${PKGVERSION}/syncthing-source-v${PKGVERSION}.tar.gz syncthing-v${PKGVERSION}.tar.gz" -SRCURL[0]="https://beehive.molgen.mpg.de/f07a093bce5eb809de65e51ace6115fc/syncthing-v1.23.2.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/59280b2e551a8001ce84867c27398aa3/syncthing-v1.23.4.tar.gz" ## Add URLs/paths to patch files # PATCHURL+=() @@ -37,6 +37,8 @@ mee_build() { # go clean -r -x build.go # NEVER EVER run this as root cd ${S} go run -x -a -v build.go + # rebuild syncthing.exe with no-upgrade option + # ends up in $S go run -x -a -v build.go -no-upgrade build syncthing } @@ -45,10 +47,11 @@ mee_build() { mee_install() { mkdir -p ${D}/usr/bin - cp ${S}/syncthing ${D}/usr/bin for b in stevents stcompdirs stvanity stfindignored stfileinfo stwatchfile stsigtool stdisco stdiscosrv stfinddevice stgenfiles stwatchfile; do cp ${S}/bin/$b ${D}/usr/bin done + # install no-upgrade binary + cp ${S}/syncthing ${D}/usr/bin mkdir -p ${D}/usr/share/man/man1 cp ${S}/man/syncthing.1 ${D}/usr/share/man/man1 @@ -59,3 +62,4 @@ mee_install() { mkdir -p ${D}/usr/share/man/man7 cp ${S}/man/syncthing-*.7 ${D}/usr/share/man/man7 } +