diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-08-06 20:53:43 +0200 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-08-07 07:35:44 +0000 |
commit | 1aed0a0d22789312d74532bf7ff3349cbcfb469b (patch) | |
tree | 9b04ebf6c4585582468dfe01847f6ca8b0444355 /main/syncthing | |
parent | d050590745f6b1088649c2cc8da308ce9cd62449 (diff) | |
download | aports-1aed0a0d22789312d74532bf7ff3349cbcfb469b.tar.bz2 aports-1aed0a0d22789312d74532bf7ff3349cbcfb469b.tar.xz |
main/syncthing: go binaries should not be stripped
Stripping of Go binaries is not officially supported and/or tested and
can cause crashes on certain architectures. Therefore I suggest that
syncthing and (possibly) other go packages add options='!strip' to the
APKBUILD.
See also:
- https://bugs.launchpad.net/ubuntu/+source/golang/+bug/1200255/comments/8
- https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717172
Diffstat (limited to 'main/syncthing')
-rw-r--r-- | main/syncthing/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/syncthing/APKBUILD b/main/syncthing/APKBUILD index 4bd6c7ab3e..e889541260 100644 --- a/main/syncthing/APKBUILD +++ b/main/syncthing/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=syncthing pkgver=0.11.16 -pkgrel=0 +pkgrel=1 pkgdesc="Open Source Continuous File Synchronization" url="http://syncthing.net/" arch="all" @@ -15,6 +15,7 @@ depends_dev="" makedepends="$depends_dev godep go mercurial bash" install="$pkgname.pre-install" subpackages="" +options="!strip" source="$pkgname-$pkgver.tar.gz::https://github.com/syncthing/syncthing/archive/v$pkgver.tar.gz syncthing.confd syncthing.initd" |