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 82A98DC0F7E for ; Thu, 12 May 2016 09:01:59 +0000 (UTC) Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E5601DC0848 for ; Thu, 12 May 2016 09:01:58 +0000 (UTC) Received: by mail-wm0-f52.google.com with SMTP id g17so123871578wme.1 for ; Thu, 12 May 2016 02:01:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=webhippie-de.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id; bh=feDIJZOLqj40qe5aSPmTeiKl8d6NDW93KLnT2x8o8K8=; b=Wxs7fszPPeBUNFhMMkdCIrpCr/O8RhRa97Rtwgp8Vyd6ySW5vhuG1sxoexTXNDsPG5 nLnpIlMSYUfI1eLUEnb26RtjMMMjLb9hYjRpOEIRIM1SmLsy2bWZRYg64eCIkEkp2mIh dyGlvqOAQA7OJnJ/zfvZNMO2lXDT7hOx4VzifVOVn9kFbnQmJffcUS727sL8ht7aaa4y KWiZiJduUX4T5RGBaGfmefNvS1MEOE3xC/br9hR7Lu79EB6aOuP3dtHlxOjt8wuOz7N2 +XiWGInLC3Ap46HeaJcxdawlzy4qVTEDGgvzXFayq4yhaLHYyynH74w6ROaHQ+wqGQo/ 7V7Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=feDIJZOLqj40qe5aSPmTeiKl8d6NDW93KLnT2x8o8K8=; b=U304u3GBMaU5IKfm+gQdl5hSgJzrzKj+tW/qG1YweJ130cFhubxmHVqpuxH9FRmK6S BFqq/ujjbFz1kcaOt+wgDUN8SQTrHeCojk5fQ1QO+Oq+IWUagEG9Od/wAcmirENf7o8T 5G+l6pu0eOzKxvS9+gERIbL3KE58Ld8IZHWE5nVNTTdsZy6ddL9M1/w3AgAJlssFfp7n 16nEoyeU7XxttojSp2u+RPQBfWLVjG+OaU36xAzcDZ9cSwP9Eqg0eOpJydp+AWnNhdOx ZqqAonAGSVtFyROvCekbvdAV1cMCOb0Qcs8N3qHohNDkiwtzXIP0UnoVUAXp2CcTIPP6 SEpQ== X-Gm-Message-State: AOPr4FW1K3F+7qrv3LLWd894AqWodHD9VkakE6/OvwxxmqRSCo2rYXQXcTHrSqSYJNjMgg== X-Received: by 10.28.111.14 with SMTP id k14mr9448519wmc.32.1463043716847; Thu, 12 May 2016 02:01:56 -0700 (PDT) Received: from heimdall.cloud.online.net ([163.172.141.133]) by smtp.gmail.com with ESMTPSA id d23sm12766930wmd.1.2016.05.12.02.01.55 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 12 May 2016 02:01:56 -0700 (PDT) From: Thomas Boerger To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] community/go: Add stringer to tools Date: Thu, 12 May 2016 09:01:54 +0000 Message-Id: <1463043714-2498-1-git-send-email-thomas@webhippie.de> X-Mailer: git-send-email 2.8.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: In order to be able to use the stringer tool within go-based packages I have added it to the list of the go-tools subpackage. --- community/go/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/community/go/APKBUILD b/community/go/APKBUILD index 2528ed3..de17ff4 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -4,7 +4,7 @@ pkgname=go pkgver=1.6.2 # This should be the latest commit on the corresponding release branch _toolsver="c887be1b2ebd11663d4bf2fbca508c449172339e" -pkgrel=1 +pkgrel=2 pkgdesc="Go programming language compiler" url="http://www.golang.org/" arch="all" @@ -23,7 +23,7 @@ source="http://golang.org/dl/go${pkgver}.src.tar.gz # NOTE: building go for x86 with grsec kernel requires: # sysctl -w kernel.modify_ldt=1 -_gotools="cover vet godoc" +_gotools="cover vet godoc stringer" _gocross="darwin freebsd openbsd windows" _builddir="$srcdir"/$pkgname -- 2.8.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---