From 8983eebdbe74489d62eae4097580fc430d75bd07 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Tue, 16 May 2017 00:05:18 +0200 Subject: [PATCH] Use patched version of syncthing-inotify. Bug #164 has not been properly merged yet. So patch this bug manually. See also https://github.com/syncthing/syncthing-inotify/pull/165 --- Makefile | 3 ++- scripts/get-syncthing.sh | 36 +++++++++++++++++++++++++++++++++++- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5a9646e..247d454 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,8 @@ VERSION := 0.0.1 # Syncthing version to install SYNCTHING_VERSION = 0.14.27 -SYNCTHING_INOTIFY_VERSION = 0.8.5 +# FIXME: use patched version while waiting integration of #165 +#SYNCTHING_INOTIFY_VERSION = 0.8.5 # Retrieve git tag/commit to set sub-version string diff --git a/scripts/get-syncthing.sh b/scripts/get-syncthing.sh index 284c58e..8bc5346 100755 --- a/scripts/get-syncthing.sh +++ b/scripts/get-syncthing.sh @@ -2,7 +2,10 @@ # Configurable variables [ -z "$SYNCTHING_VERSION" ] && SYNCTHING_VERSION=0.14.25 -[ -z "$SYNCTHING_INOTIFY_VERSION" ] && SYNCTHING_INOTIFY_VERSION=0.8.5 + +# FIXME: temporary HACK while waiting merge of #165 +#[ -z "$SYNCTHING_INOTIFY_VERSION" ] && SYNCTHING_INOTIFY_VERSION=0.8.5 +[ -z "$SYNCTHING_INOTIFY_VERSION" ] && SYNCTHING_INOTIFY_VERSION=master_and_patch165 [ -z "$DESTDIR" ] && DESTDIR=/usr/local/bin [ -z "$TMPDIR" ] && TMPDIR=/tmp @@ -32,9 +35,40 @@ tarball="syncthing-linux-amd64-v${SYNCTHING_VERSION}.tar.gz" \ echo "Get Syncthing-inotify..." +if [ "$SYNCTHING_INOTIFY_VERSION" = "master_and_patch165" ]; then + mkdir -p ${TEMPDIR}/syncthing-inotify-build/src/github.com/syncthing || exit 1 + cd ${TEMPDIR}/syncthing-inotify-build/src/github.com/syncthing + git clone https://github.com/syncthing/syncthing || exit 1 + git clone https://github.com/syncthing/syncthing-inotify || exit 1 + cd syncthing-inotify + cat < 165.patch + diff --git a/syncwatcher.go b/syncwatcher.go +index c36b034..5175c12 100644 +--- a/syncwatcher.go ++++ b/syncwatcher.go +@@ -677,7 +677,10 @@ func accumulateChanges(debounceTimeout time.Duration, + if flushTimerNeedsReset { + flushTimerNeedsReset = false + if !flushTimer.Stop() { +- <-flushTimer.C ++ select { ++ case <-flushTimer.C: ++ default: ++ } + } + flushTimer.Reset(currInterval) + } +EOF + git apply 165.patch || exit 1 + export GOPATH=$(realpath `pwd`/../../../..) + version=$(git describe --tags --always | sed 's/^v//')__patch_165 + go build -v -i -ldflags "-w -X main.Version=$version" -o ${DESTDIR}/syncthing-inotify || exit 1 +else + tarball="syncthing-inotify-linux-amd64-v${SYNCTHING_INOTIFY_VERSION}.tar.gz" \ && curl -sfSL "https://github.com/syncthing/syncthing-inotify/releases/download/v${SYNCTHING_INOTIFY_VERSION}/${tarball}" -O \ && tar -xvf "${tarball}" syncthing-inotify \ && mv syncthing-inotify ${DESTDIR}/syncthing-inotify +fi echo "DONE: syncthing and syncthing-inotify successfuly installed in ${DESTDIR}" \ No newline at end of file -- 2.16.6