X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id A8914DC03F1 for ; Thu, 6 Aug 2015 18:54:13 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [141.101.32.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 0D5D2DC0160; Thu, 6 Aug 2015 18:54:12 +0000 (UTC) Received: from localhost (ip5f5ac985.dynamic.kabel-deutschland.de [95.90.201.133]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id eb389ba0; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Thu, 6 Aug 2015 20:54:00 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/8] main/syncthing: go binaries should not be stripped Date: Thu, 6 Aug 2015 20:53:43 +0200 Message-Id: <1438887230-18775-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.0 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: 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 --- main/syncthing/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/syncthing/APKBUILD b/main/syncthing/APKBUILD index 4bd6c7a..e889541 100644 --- a/main/syncthing/APKBUILD +++ b/main/syncthing/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Natanael Copa 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" -- 2.5.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---