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 37669DC0F7E for ; Thu, 12 May 2016 09:07:04 +0000 (UTC) Received: from mail-wm0-f45.google.com (mail-wm0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E623CDC0848 for ; Thu, 12 May 2016 09:07:03 +0000 (UTC) Received: by mail-wm0-f45.google.com with SMTP id g17so124106906wme.1 for ; Thu, 12 May 2016 02:07:03 -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=Fw6RMnj+1vOK5vTRIE9ya2UUyO3U92/98Mdm2lGIHPhXRYRGqaCQURc/HdZk3aHnBg UCTNzXqvPGqB7DvCSGIsNWNu2XswohcsgwLGKjSRhnyOXM9x+YVdluhRxPlH8bUqkxgA uSNiMGn0h7FREhzD4pr/nZ4Ng3N7ZdWa1LBEEdM14Bel7Ignt6lD6/505FTO8tc+BuQj keU9enI3xz7c90s7iyKydnh/KdxKUHobjwKQvz5BRbKAG5SC2zlFyXGO/Rq9QB2C/4zG 0OQWiaU4qFPTymuaVc4+KxVYYqOQSXoBOZgp8QbTZebKu9dqU8M5Ewya3VgrKIXN25jp I3Iw== 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=CxOximeQpZE6mqUg2+DSHv46lcnQim9IiJjL4wdLTuoQem5je06PojqkPw3UVLpKvD PWBqFDJ+Yo9hFeqZMDtYwkmbDMVLFfQqGPqTwyj7/4i7hItcdmDTLr8g4rsvjktdq6Db xVla/59D8j5rJ+hw8/Y33/g52OQYU58KG49/6MyO9bBWszZbDB5LZnP+TQ0DYy63nGJw E596g8jOQCRuzuAmnUfw0rPlMo17VJgrP/qZGBqPS2rn0iETzzBiqLtvTnP5jX+IEUV2 tMpWFZ5EUR9y0y3P0OirwMlRFi0NvH/FlRb2Z0aGdIOcI3So/68sKrYYOgqPja66IkSp 6qDg== X-Gm-Message-State: AOPr4FUtcc5fvdMmYjRvUfiSMfh/nwCW16y4U8k6LZaBJEpPp2T0XNDH6pkOv+i/wLHNyA== X-Received: by 10.194.248.135 with SMTP id ym7mr8537175wjc.174.1463044022724; Thu, 12 May 2016 02:07:02 -0700 (PDT) Received: from heimdall.cloud.online.net ([163.172.141.133]) by smtp.gmail.com with ESMTPSA id n66sm12739679wmf.6.2016.05.12.02.07.02 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 12 May 2016 02:07:02 -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:07:00 +0000 Message-Id: <1463044020-4870-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 ---