X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qk0-f196.google.com (mail-qk0-f196.google.com [209.85.220.196]) by lists.alpinelinux.org (Postfix) with ESMTP id 70CCF5C43DA for ; Wed, 1 Mar 2017 22:30:55 +0000 (GMT) Received: by mail-qk0-f196.google.com with SMTP id u188so14519245qkc.3 for ; Wed, 01 Mar 2017 14:30:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=flatglobe-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=M3MraXk7MVf3GjeO0XpZOLnqjR+3Coocov086fOHOZA=; b=pzPmttQr7eMNLnMEjdg0pxmiSJw/gGqadxC0rcFdI+v62DdEDZmFjBOYt1ny4J+y/G wLmV88l4aciesh08guymQrHpxFDyUmGCxneVJgSD9Yysn60zStj73Gh7nbRUirRrmnyf 7N2S0s4phg7zzMdMNCXysE04TXz2wSG3yWFRm+ADCqQvdafAPU7RTo54cA28pfKeq+uD dysGUMmauz+tJkqp5O2d2wN0lHizzdv2gWu8hTHxmCdDo4Gc50g1wTspIf+QBnKDg9Yq azUXSVvk5bkoBAP3AF7lm21093HNurdTFSVyMYwh4ZYyTC11zPsD3lidATbsRX46tPoo q9sQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=M3MraXk7MVf3GjeO0XpZOLnqjR+3Coocov086fOHOZA=; b=eK2kkg3IMCUP19dtT/LBggYGsIdvKb2h4LNiQY8FBgve8lOnXChSIbvq+K5EBS08V5 F4Y0cFAMGPzXbwjyqNrK9BosWybiDmAnc3JdMFGEAQrP2TEq5LxOdaXnAZhsLkhwh5sU iTmYi6E0qtPf7dKOXzAdgkeVxo9h1Lmyf/6S4dR3FXWHbMSseIYGzf+OjQVAO9WQA00N /8COH/H0KH4F8zGbzU6kR4UT4/K0185fAQ77xzKobZ/8YEHJMScgGX250QL0RI4T2tli hgHlTma/aPC6Pyerz4lDUjZlRET52IKZGXlJx57Tr1yQWKs13GYd58es0oI6f8bYu0mM D5Pw== X-Gm-Message-State: AMke39luSfRs/wnYRYwkqyNEzOmLgas0z+mlh5cQVhAD817Cxk6BarDCUZeACkdEs0AdUA== X-Received: by 10.237.57.169 with SMTP id m38mr14443897qte.196.1488407454798; Wed, 01 Mar 2017 14:30:54 -0800 (PST) Received: from localhost.localdomain (cpe-204-210-151-44.hvc.res.rr.com. [204.210.151.44]) by smtp.gmail.com with ESMTPSA id 30sm4093480qtr.38.2017.03.01.14.30.53 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 01 Mar 2017 14:30:53 -0800 (PST) From: tmh1999 X-Google-Original-From: tmh1999 To: alpine-aports@lists.alpinelinux.org Cc: "Tuan M. Hoang" Subject: [alpine-aports] [PATCH] community/go: fix package name conflict Date: Wed, 1 Mar 2017 17:30:45 -0500 Message-Id: <1488407445-11055-1-git-send-email-tmhoang1999@gmail.com> X-Mailer: git-send-email 2.1.4 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: From: "Tuan M. Hoang" When cross-compiling, pkgname is go-bootstrap instead of go. So we don't need to provide go-bootstrap=$pkgver-r$pkgrel anymore as it will conflict with the current package go-bootstrap-$pkgver-r$pkgrel. --- community/go/APKBUILD | 1 - 1 file changed, 1 deletion(-) diff --git a/community/go/APKBUILD b/community/go/APKBUILD index afdaa0cbc5..cb3eb418d3 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -13,7 +13,6 @@ depends="binutils gcc" depends_dev="" makedepends="bash go-bootstrap" options="!strip" -provides="go-bootstrap=$pkgver-r$pkgrel" install="" subpackages="$pkgname-doc" source="http://golang.org/dl/go${pkgver/_/}.src.tar.gz -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---