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 61FF1DCDBE1 for ; Wed, 20 Apr 2016 19:16:20 +0000 (UTC) Received: from mail-qk0-f180.google.com (mail-qk0-f180.google.com [209.85.220.180]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 67FE1DC6863 for ; Wed, 20 Apr 2016 19:16:19 +0000 (UTC) Received: by mail-qk0-f180.google.com with SMTP id r184so17653600qkc.1 for ; Wed, 20 Apr 2016 12:16:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=buddin-us.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=eywDZZl6NcA5+5fnY4CZp/nhUqJUbFwpABvUH2tCSoQ=; b=HxS3ONGWPQsa9Hk3R1/0V9hzppNhEPA5B0ZlAfqG7oMOpTRWHa2or/9a0tYp5XsQVb jyEFvX5Y6qi1CugUDQPHRnUEyGeoVT8XuoLgn4O6+AS9fxcU7IM4v+EyzINNFfunEiFm QSaDTPZilFkYZmPkO18xOHz/TpPlJ2V9gpWrrj2NkbrYmqgS887RG7UhBA//1PqqSueh fZhNWMHWdzAnr+B9hrgyHmCQjxhZR45Eb7Xb9L6i6nlRYiOs37+gue5Rn05A1SyQD9Yn JQTYZj97JnpUVCas/nyuCVx3RxK4ObSmM2pBoFDVlP90KJJijF/1YsXtvLf4azp+azwK KphQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=eywDZZl6NcA5+5fnY4CZp/nhUqJUbFwpABvUH2tCSoQ=; b=B1cenORdXrcdWMJozoZJ/LZ1UemZNaZrw/bjyEh0iVM1iVOqWlslQY8OP2uPMNC/2p AZAI/UrUetZMgycvRTt0W+wg42EOWhGy/TNFOZKFlYcOqjXPQ2C4tsb00HeGv/8FX+6v s7z9oWJFLvx/XU/pMNTMkl0ezmnshHQozeS91f8K65m567ijNIIdMLcNJOHKGoJecBuc ANID9/jmABl2J1Lf0fG1lLqltdwQOTrMjNWsxlpbScb3kW+fmEs47Hg19grbmHGoPIZy Y1+DJV93TLnLMT79hButHTyzKenVFFGW4aNnD1jP5Dgh3qKB51C8JAvrJIYycMplFjH+ NVng== X-Gm-Message-State: AOPr4FV3/PB64S5eikATFqydeUxfaKH8/uzsUjTmvyZpTxBsM51POXgXk+1rcnKgeXOetg== X-Received: by 10.55.74.14 with SMTP id x14mr4109695qka.70.1461179778506; Wed, 20 Apr 2016 12:16:18 -0700 (PDT) Received: from localhost.localdomain ([50.111.210.210]) by smtp.gmail.com with ESMTPSA id d65sm4735216qga.15.2016.04.20.12.16.17 (version=TLS1 cipher=AES128-SHA bits=128/128); Wed, 20 Apr 2016 12:16:18 -0700 (PDT) From: Brett Buddin To: alpine-aports@lists.alpinelinux.org Cc: Brett Buddin Subject: [alpine-aports] [PATCH] community/go: Install time zone database distributed with Go Date: Wed, 20 Apr 2016 15:16:16 -0400 Message-Id: <1461179776-70954-1-git-send-email-brett@buddin.us> X-Mailer: git-send-email 2.8.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: This fixes time zone lookups using the `time.LoadLocation` function by ensuring that the time zone database distributed with Go ($GOROOT/lib/time/zoneinfo.zip) is installed. You can find more information about this file here: https://golang.org/pkg/time/#LoadLocation --- community/go/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/go/APKBUILD b/community/go/APKBUILD index ca37936..6eef0b9 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -87,7 +87,7 @@ package() { # bug (https://github.com/golang/go/issues/2775). # When this is resolved we can split out the source to a # go-doc sub package. - cp -a pkg src "$pkgdir"/usr/lib/go || return 1 + cp -a pkg src lib "$pkgdir"/usr/lib/go || return 1 cp -r doc misc "$pkgdir"/usr/share/doc/go || return 1 # Remove tests from /usr/lib/go/src. -- 2.8.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---