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 3AF10DCA535 for ; Thu, 6 Aug 2015 18:54:21 +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 AA16BDC90AE; Thu, 6 Aug 2015 18:54:20 +0000 (UTC) Received: from localhost (ip5f5ac985.dynamic.kabel-deutschland.de [95.90.201.133]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 40767381; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Thu, 6 Aug 2015 20:54:16 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 5/8] testing/docker-registery: go binaries should not be stripped Date: Thu, 6 Aug 2015 20:53:47 +0200 Message-Id: <1438887230-18775-5-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1438887230-18775-1-git-send-email-soeren+git@soeren-tempel.net> References: <1438887230-18775-1-git-send-email-soeren+git@soeren-tempel.net> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/docker-registry/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/docker-registry/APKBUILD b/testing/docker-registry/APKBUILD index d5a90f4..042ff27 100644 --- a/testing/docker-registry/APKBUILD +++ b/testing/docker-registry/APKBUILD @@ -1,12 +1,13 @@ # Maintainer: Chritsian Kampka pkgname=docker-registry pkgver=2.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="An implementation of the Docker Registry HTTP API V2 for use with docker 1.6+." url="https://github.com/docker/distribution" arch="x86_64" license="Apache 2.0" makedepends="git go" +options="!strip" source="$pkgname-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz docker-registry.initd" -- 2.5.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---