aboutsummaryrefslogtreecommitdiffstats
path: root/testing/syncthing-inotify
diff options
context:
space:
mode:
Diffstat (limited to 'testing/syncthing-inotify')
-rw-r--r--testing/syncthing-inotify/APKBUILD42
-rw-r--r--testing/syncthing-inotify/syncthing-inotify.initd21
2 files changed, 0 insertions, 63 deletions
diff --git a/testing/syncthing-inotify/APKBUILD b/testing/syncthing-inotify/APKBUILD
deleted file mode 100644
index 46a336a5ea..0000000000
--- a/testing/syncthing-inotify/APKBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Contributor: Carlo Landmeter <clandmeter@gmail.com>
-# Maintainer:
-pkgname=syncthing-inotify
-pkgver=0.8.7
-pkgrel=2
-pkgdesc="File watcher intended for use with Syncthing"
-url="https://github.com/syncthing/syncthing-inotify"
-arch="all !armhf !armv7 !s390x"
-license="MPL-2.0"
-depends="syncthing"
-makedepends="go"
-install=""
-subpackages=""
-source="syncthing-inotify-$pkgver.tar.gz::https://github.com/syncthing/syncthing-inotify/archive/v$pkgver.tar.gz
- $pkgname.initd
- "
-builddir="$srcdir/src/github.com/$pkgname"
-
-prepare() {
- mkdir -p ${builddir%/*}
- mv "$srcdir"/$pkgname-$pkgver "$builddir"/
- cd "$builddir"
- default_prepare
-}
-
-build() {
- cd "$builddir"
- export GOPATH="$srcdir"
- go build -v -ldflags "-w -X main.Version=$pkgver"
-}
-
-check() {
- "$builddir"/$pkgname -version > /dev/null
-}
-
-package() {
- install -Dm755 "$builddir"/$pkgname "$pkgdir"/usr/bin/$pkgname
- install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
-}
-
-sha512sums="170efa92e3d4f479148f26966326c47950e3c2be81a241a090e5a6174a873130718f2d6c8b9310f6c566b08fcbdf6ad6d83378cb91568064b5a9de788072d9d2 syncthing-inotify-0.8.7.tar.gz
-686852c7ce89e9a066d5d7b9433471a66184ab59ecba2a6946e605b638d309715188488a1ec29b22f6d8292da9c05fc8726fa93ccd5565de48be236741316604 syncthing-inotify.initd"
diff --git a/testing/syncthing-inotify/syncthing-inotify.initd b/testing/syncthing-inotify/syncthing-inotify.initd
deleted file mode 100644
index 64589eafef..0000000000
--- a/testing/syncthing-inotify/syncthing-inotify.initd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-
-name=$RC_SVCNAME
-command=/usr/bin/syncthing-inotify
-command_args="${SYNCTHING_INOTIFY_ARGS}"
-command_user="${SYNCTHING_INOTIFY_USER:-syncthing}"
-pidfile=/run/${RC_SVCNAME}.pid
-command_background=yes
-start_stop_daemon_args="--stdout /var/log/$RC_SVCNAME/${RC_SVCNAME}.log --stderr /var/log/$RC_SVCNAME/${RC_SVCNAME}.log"
-
-depend() {
- use logger dns
- need net
- after firewall
-}
-
-start_pre() {
- checkpath --directory --owner $command_user --mode 0775 \
- /var/log/$RC_SVCNAME
-}
-