From a1ca3c96e0b2db1d03bdb1b302f69a5223f1fa62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Fri, 24 Feb 2017 13:41:35 +0100 Subject: [PATCH] avoid possibly stale packages due to chacha test file not being test file --- golang.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/golang.spec b/golang.spec index 0eb5b98..bed60b9 100644 --- a/golang.spec +++ b/golang.spec @@ -98,7 +98,7 @@ Name: golang Version: 1.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Go Programming Language # source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain License: BSD and Public Domain @@ -271,6 +271,9 @@ Requires: %{name} = %{version}-%{release} cp %{SOURCE1} ./src/runtime/ +# don't include chacha test vectors in buildID +mv ./src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_test_vectors.go ./src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go + %build # print out system information uname -a @@ -503,6 +506,9 @@ fi %endif %changelog +* Fri Feb 24 2017 Jakub Čajka - 1.8-2 +- avoid possibly stale packages due to chacha test file not being test file + * Fri Feb 17 2017 Jakub Čajka - 1.8-1 - bump to released version - Resolves: BZ#1423637