Skip to content

syncthing: update 1.23.2 to 1.23.4 #2887

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions syncthing.be0
Original file line number Diff line number Diff line change
@@ -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+=()
Expand Down Expand Up @@ -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
}

Expand All @@ -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
Expand All @@ -59,3 +62,4 @@ mee_install() {
mkdir -p ${D}/usr/share/man/man7
cp ${S}/man/syncthing-*.7 ${D}/usr/share/man/man7
}