|
|
fc0505 |
%undefine _missing_build_ids_terminate_build
|
|
|
fc0505 |
|
|
|
6ea202 |
%global bcond_with strict_fips
|
|
|
6ea202 |
|
|
|
fc0505 |
# build ids are not currently generated:
|
|
|
fc0505 |
# https://code.google.com/p/go/issues/detail?id=5238
|
|
|
fc0505 |
#
|
|
|
fc0505 |
# also, debuginfo extraction currently fails with
|
|
|
fc0505 |
# "Failed to write file: invalid section alignment"
|
|
|
fc0505 |
%global debug_package %{nil}
|
|
|
fc0505 |
|
|
|
fc0505 |
# we are shipping the full contents of src in the data subpackage, which
|
|
|
fc0505 |
# contains binary-like things (ELF data for tests, etc)
|
|
|
fc0505 |
%global _binaries_in_noarch_packages_terminate_build 0
|
|
|
fc0505 |
|
|
|
fc0505 |
# Do not check any files in doc or src for requires
|
|
|
fc0505 |
%global __requires_exclude_from ^(%{_datadir}|/usr/lib)/%{name}/(doc|src)/.*$
|
|
|
fc0505 |
|
|
|
fc0505 |
# Don't alter timestamps of especially the .a files (or else go will rebuild later)
|
|
|
fc0505 |
# Actually, don't strip at all since we are not even building debug packages and this corrupts the dwarf testdata
|
|
|
fc0505 |
%global __strip /bin/true
|
|
|
fc0505 |
|
|
|
fc0505 |
# rpmbuild magic to keep from having meta dependency on libc.so.6
|
|
|
fc0505 |
%define _use_internal_dependency_generator 0
|
|
|
fc0505 |
%define __find_requires %{nil}
|
|
|
fc0505 |
%global __spec_install_post /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot \
|
|
|
fc0505 |
/usr/lib/rpm/brp-compress
|
|
|
fc0505 |
|
|
|
fc0505 |
# Define GOROOT macros
|
|
|
fc0505 |
%global goroot %{_prefix}/lib/%{name}
|
|
|
fc0505 |
%global gopath %{_datadir}/gocode
|
|
|
8f73e5 |
%global golang_arches x86_64 aarch64 ppc64le s390x
|
|
|
fc0505 |
%global golibdir %{_libdir}/%{name}
|
|
|
fc0505 |
|
|
|
fc0505 |
# Golang build options.
|
|
|
fc0505 |
|
|
|
fc0505 |
# Build golang using external/internal(close to cgo disabled) linking.
|
|
|
8f73e5 |
%ifarch x86_64 ppc64le %{arm} aarch64 s390x
|
|
|
fc0505 |
%global external_linker 1
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
%global external_linker 0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# Build golang with cgo enabled/disabled(later equals more or less to internal linking).
|
|
|
8f73e5 |
%ifarch x86_64 ppc64le %{arm} aarch64 s390x
|
|
|
fc0505 |
%global cgo_enabled 1
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
%global cgo_enabled 0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# Use golang/gcc-go as bootstrap compiler
|
|
|
fc0505 |
%ifarch %{golang_arches}
|
|
|
fc0505 |
%global golang_bootstrap 1
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
%global golang_bootstrap 0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# Controls what ever we fail on failed tests
|
|
|
8f73e5 |
%ifarch x86_64 %{arm} aarch64 ppc64le
|
|
|
fc0505 |
%global fail_on_tests 1
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
%global fail_on_tests 0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# Build golang shared objects for stdlib
|
|
|
fc0505 |
%ifarch 0
|
|
|
fc0505 |
%global shared 1
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
%global shared 0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# Pre build std lib with -race enabled
|
|
|
fc0505 |
%ifarch x86_64
|
|
|
fc0505 |
%global race 1
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
%global race 0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%ifarch x86_64
|
|
|
fc0505 |
%global gohostarch amd64
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%ifarch %{arm}
|
|
|
fc0505 |
%global gohostarch arm
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%ifarch aarch64
|
|
|
fc0505 |
%global gohostarch arm64
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%ifarch ppc64
|
|
|
fc0505 |
%global gohostarch ppc64
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%ifarch ppc64le
|
|
|
fc0505 |
%global gohostarch ppc64le
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%ifarch s390x
|
|
|
fc0505 |
%global gohostarch s390x
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
8f73e5 |
%global go_api 1.14
|
|
|
8f73e5 |
%global go_version 1.14.7
|
|
|
8f73e5 |
%global pkg_release 2
|
|
|
fc0505 |
|
|
|
fc0505 |
Name: golang
|
|
|
2ca253 |
Version: %{go_version}
|
|
|
8f73e5 |
Release: 2%{?dist}
|
|
|
fc0505 |
Summary: The Go Programming Language
|
|
|
fc0505 |
# source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain
|
|
|
fc0505 |
License: BSD and Public Domain
|
|
|
fc0505 |
URL: http://golang.org/
|
|
|
2ca253 |
Source0: https://pagure.io/go/archive/go-%{go_version}-%{pkg_release}-openssl-fips/go-go-%{go_version}-%{pkg_release}-openssl-fips.tar.gz
|
|
|
fc0505 |
# make possible to override default traceback level at build time by setting build tag rpm_crashtraceback
|
|
|
fc0505 |
Source1: fedora.go
|
|
|
fc0505 |
|
|
|
fc0505 |
# The compiler is written in Go. Needs go(1.4+) compiler for build.
|
|
|
fc0505 |
# Actual Go based bootstrap compiler provided by above source.
|
|
|
fc0505 |
%if !%{golang_bootstrap}
|
|
|
fc0505 |
BuildRequires: gcc-go >= 5
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
BuildRequires: golang
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%if 0%{?rhel} > 6 || 0%{?fedora} > 0
|
|
|
fc0505 |
BuildRequires: hostname
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
BuildRequires: net-tools
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
# For OpenSSL FIPS
|
|
|
fc0505 |
BuildRequires: openssl-devel
|
|
|
fc0505 |
# for tests
|
|
|
fc0505 |
BuildRequires: pcre-devel, glibc-static, perl
|
|
|
fc0505 |
|
|
|
fc0505 |
Provides: go = %{version}-%{release}
|
|
|
fc0505 |
Requires: %{name}-bin = %{version}-%{release}
|
|
|
fc0505 |
Requires: %{name}-src = %{version}-%{release}
|
|
|
fc0505 |
Requires: openssl-devel
|
|
|
fc0505 |
|
|
|
fc0505 |
# we had been just removing the zoneinfo.zip, but that caused tests to fail for users that
|
|
|
fc0505 |
# later run `go test -a std`. This makes it only use the zoneinfo.zip where needed in tests.
|
|
|
fc0505 |
Patch215: ./go1.5-zoneinfo_testing_only.patch
|
|
|
fc0505 |
|
|
|
fc0505 |
# Proposed patch by jcajka https://golang.org/cl/86541
|
|
|
fc0505 |
Patch221: fix_TestScript_list_std.patch
|
|
|
fc0505 |
|
|
|
8f73e5 |
# It seems this patch will be included in Go 1.14.5
|
|
|
8f73e5 |
# https://github.com/golang/go/issues/39991
|
|
|
8f73e5 |
# https://go-review.googlesource.com/c/go/+/240917
|
|
|
8f73e5 |
#Patch240917: ppc64le_fix_missing_deferreturn.patch
|
|
|
8f73e5 |
|
|
|
fc0505 |
# Having documentation separate was broken
|
|
|
fc0505 |
Obsoletes: %{name}-docs < 1.1-4
|
|
|
fc0505 |
|
|
|
fc0505 |
# RPM can't handle symlink -> dir with subpackages, so merge back
|
|
|
fc0505 |
Obsoletes: %{name}-data < 1.1.1-4
|
|
|
fc0505 |
|
|
|
fc0505 |
# These are the only RHEL/Fedora architectures that we compile this package for
|
|
|
fc0505 |
ExclusiveArch: %{golang_arches}
|
|
|
fc0505 |
|
|
|
fc0505 |
Source100: golang-gdbinit
|
|
|
fc0505 |
Source101: golang-prelink.conf
|
|
|
fc0505 |
|
|
|
fc0505 |
%description
|
|
|
fc0505 |
%{summary}.
|
|
|
fc0505 |
|
|
|
fc0505 |
%package docs
|
|
|
fc0505 |
Summary: Golang compiler docs
|
|
|
fc0505 |
Requires: %{name} = %{version}-%{release}
|
|
|
fc0505 |
BuildArch: noarch
|
|
|
fc0505 |
Obsoletes: %{name}-docs < 1.1-4
|
|
|
fc0505 |
|
|
|
fc0505 |
%description docs
|
|
|
fc0505 |
%{summary}.
|
|
|
fc0505 |
|
|
|
fc0505 |
%package misc
|
|
|
fc0505 |
Summary: Golang compiler miscellaneous sources
|
|
|
fc0505 |
Requires: %{name} = %{version}-%{release}
|
|
|
fc0505 |
BuildArch: noarch
|
|
|
fc0505 |
|
|
|
fc0505 |
%description misc
|
|
|
fc0505 |
%{summary}.
|
|
|
fc0505 |
|
|
|
fc0505 |
%package tests
|
|
|
fc0505 |
Summary: Golang compiler tests for stdlib
|
|
|
fc0505 |
Requires: %{name} = %{version}-%{release}
|
|
|
fc0505 |
BuildArch: noarch
|
|
|
fc0505 |
|
|
|
fc0505 |
%description tests
|
|
|
fc0505 |
%{summary}.
|
|
|
fc0505 |
|
|
|
fc0505 |
%package src
|
|
|
fc0505 |
Summary: Golang compiler source tree
|
|
|
fc0505 |
BuildArch: noarch
|
|
|
fc0505 |
|
|
|
fc0505 |
%description src
|
|
|
fc0505 |
%{summary}
|
|
|
fc0505 |
|
|
|
fc0505 |
%package bin
|
|
|
fc0505 |
Summary: Golang core compiler tools
|
|
|
fc0505 |
Requires: %{name} = %{version}-%{release}
|
|
|
fc0505 |
|
|
|
fc0505 |
# We strip the meta dependency, but go does require glibc.
|
|
|
fc0505 |
# This is an odd issue, still looking for a better fix.
|
|
|
fc0505 |
Requires: glibc
|
|
|
fc0505 |
Requires: /usr/bin/gcc
|
|
|
fc0505 |
%description bin
|
|
|
fc0505 |
%{summary}
|
|
|
fc0505 |
|
|
|
fc0505 |
# Workaround old RPM bug of symlink-replaced-with-dir failure
|
|
|
fc0505 |
%pretrans -p <lua>
|
|
|
fc0505 |
for _,d in pairs({"api", "doc", "include", "lib", "src"}) do
|
|
|
fc0505 |
path = "%{goroot}/" .. d
|
|
|
fc0505 |
if posix.stat(path, "type") == "link" then
|
|
|
fc0505 |
os.remove(path)
|
|
|
fc0505 |
posix.mkdir(path)
|
|
|
fc0505 |
end
|
|
|
fc0505 |
end
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{shared}
|
|
|
fc0505 |
%package shared
|
|
|
fc0505 |
Summary: Golang shared object libraries
|
|
|
fc0505 |
|
|
|
fc0505 |
%description shared
|
|
|
fc0505 |
%{summary}.
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{race}
|
|
|
fc0505 |
%package race
|
|
|
fc0505 |
Summary: Golang std library with -race enabled
|
|
|
fc0505 |
|
|
|
fc0505 |
Requires: %{name} = %{version}-%{release}
|
|
|
fc0505 |
|
|
|
fc0505 |
%description race
|
|
|
fc0505 |
%{summary}
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%prep
|
|
|
2ca253 |
%setup -q -n go-go-%{go_version}-%{pkg_release}-openssl-fips
|
|
|
fc0505 |
|
|
|
fc0505 |
%patch215 -p1
|
|
|
fc0505 |
|
|
|
fc0505 |
%patch221 -p1
|
|
|
fc0505 |
|
|
|
8f73e5 |
#%patch240917 -p1
|
|
|
8f73e5 |
|
|
|
fc0505 |
cp %{SOURCE1} ./src/runtime/
|
|
|
fc0505 |
|
|
|
fc0505 |
%build
|
|
|
fc0505 |
set -xe
|
|
|
fc0505 |
# print out system information
|
|
|
fc0505 |
uname -a
|
|
|
fc0505 |
cat /proc/cpuinfo
|
|
|
fc0505 |
cat /proc/meminfo
|
|
|
fc0505 |
|
|
|
fc0505 |
# bootstrap compiler GOROOT
|
|
|
fc0505 |
%if !%{golang_bootstrap}
|
|
|
fc0505 |
export GOROOT_BOOTSTRAP=/
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
export GOROOT_BOOTSTRAP=/opt/rh/go-toolset-1.10/root/usr/lib/go-toolset-1.10-golang
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# set up final install location
|
|
|
fc0505 |
export GOROOT_FINAL=%{goroot}
|
|
|
fc0505 |
|
|
|
fc0505 |
export GOHOSTOS=linux
|
|
|
fc0505 |
export GOHOSTARCH=%{gohostarch}
|
|
|
fc0505 |
|
|
|
fc0505 |
pushd src
|
|
|
fc0505 |
# use our gcc options for this build, but store gcc as default for compiler
|
|
|
fc0505 |
export CFLAGS="$RPM_OPT_FLAGS"
|
|
|
fc0505 |
export LDFLAGS="$RPM_LD_FLAGS"
|
|
|
fc0505 |
export CC="gcc"
|
|
|
fc0505 |
export CC_FOR_TARGET="gcc"
|
|
|
fc0505 |
export GOOS=linux
|
|
|
fc0505 |
export GOARCH=%{gohostarch}
|
|
|
fc0505 |
|
|
|
fc0505 |
DEFAULT_GO_LD_FLAGS=""
|
|
|
fc0505 |
%if !%{external_linker}
|
|
|
fc0505 |
export GO_LDFLAGS="-linkmode internal $DEFAULT_GO_LD_FLAGS"
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
# Only pass a select subset of the external hardening flags. We do not pass along
|
|
|
fc0505 |
# the default $RPM_LD_FLAGS as on certain arches Go does not fully, correctly support
|
|
|
fc0505 |
# building in PIE mode.
|
|
|
fc0505 |
export GO_LDFLAGS="\"-extldflags=-Wl,-z,now,-z,relro\" $DEFAULT_GO_LD_FLAGS"
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%if !%{cgo_enabled}
|
|
|
fc0505 |
export CGO_ENABLED=0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
./make.bash --no-clean
|
|
|
fc0505 |
popd
|
|
|
fc0505 |
|
|
|
fc0505 |
# build shared std lib
|
|
|
fc0505 |
%if %{shared}
|
|
|
fc0505 |
GOROOT=$(pwd) PATH=$(pwd)/bin:$PATH go install -buildmode=shared std
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{race}
|
|
|
fc0505 |
GOROOT=$(pwd) PATH=$(pwd)/bin:$PATH go install -race std
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
|
|
|
fc0505 |
%install
|
|
|
fc0505 |
|
|
|
fc0505 |
rm -rf $RPM_BUILD_ROOT
|
|
|
fc0505 |
|
|
|
fc0505 |
# create the top level directories
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{goroot}
|
|
|
fc0505 |
|
|
|
fc0505 |
# remove bootstrap binaries
|
|
|
fc0505 |
rm -rf pkg/bootstrap/bin
|
|
|
fc0505 |
|
|
|
fc0505 |
# install everything into libdir (until symlink problems are fixed)
|
|
|
fc0505 |
# https://code.google.com/p/go/issues/detail?id=5830
|
|
|
fc0505 |
cp -apv api bin doc favicon.ico lib pkg robots.txt src misc test VERSION \
|
|
|
fc0505 |
$RPM_BUILD_ROOT%{goroot}
|
|
|
fc0505 |
|
|
|
fc0505 |
# bz1099206
|
|
|
fc0505 |
find $RPM_BUILD_ROOT%{goroot}/src -exec touch -r $RPM_BUILD_ROOT%{goroot}/VERSION "{}" \;
|
|
|
fc0505 |
# and level out all the built archives
|
|
|
fc0505 |
touch $RPM_BUILD_ROOT%{goroot}/pkg
|
|
|
fc0505 |
find $RPM_BUILD_ROOT%{goroot}/pkg -exec touch -r $RPM_BUILD_ROOT%{goroot}/pkg "{}" \;
|
|
|
fc0505 |
# generate the spec file ownership of this source tree and packages
|
|
|
fc0505 |
cwd=$(pwd)
|
|
|
fc0505 |
src_list=$cwd/go-src.list
|
|
|
fc0505 |
pkg_list=$cwd/go-pkg.list
|
|
|
fc0505 |
shared_list=$cwd/go-shared.list
|
|
|
fc0505 |
race_list=$cwd/go-race.list
|
|
|
fc0505 |
misc_list=$cwd/go-misc.list
|
|
|
fc0505 |
docs_list=$cwd/go-docs.list
|
|
|
fc0505 |
tests_list=$cwd/go-tests.list
|
|
|
fc0505 |
rm -f $src_list $pkg_list $docs_list $misc_list $tests_list $shared_list $race_list
|
|
|
fc0505 |
touch $src_list $pkg_list $docs_list $misc_list $tests_list $shared_list $race_list
|
|
|
fc0505 |
pushd $RPM_BUILD_ROOT%{goroot}
|
|
|
fc0505 |
find src/ -type d -a \( ! -name testdata -a ! -ipath '*/testdata/*' \) -printf '%%%dir %{goroot}/%p\n' >> $src_list
|
|
|
fc0505 |
find src/ ! -type d -a \( ! -ipath '*/testdata/*' -a ! -name '*_test*.go' \) -printf '%{goroot}/%p\n' >> $src_list
|
|
|
fc0505 |
|
|
|
fc0505 |
find bin/ pkg/ -type d -a ! -path '*_dynlink/*' -a ! -path '*_race/*' -printf '%%%dir %{goroot}/%p\n' >> $pkg_list
|
|
|
fc0505 |
find bin/ pkg/ ! -type d -a ! -path '*_dynlink/*' -a ! -path '*_race/*' -printf '%{goroot}/%p\n' >> $pkg_list
|
|
|
fc0505 |
|
|
|
fc0505 |
find doc/ -type d -printf '%%%dir %{goroot}/%p\n' >> $docs_list
|
|
|
fc0505 |
find doc/ ! -type d -printf '%{goroot}/%p\n' >> $docs_list
|
|
|
fc0505 |
|
|
|
fc0505 |
find misc/ -type d -printf '%%%dir %{goroot}/%p\n' >> $misc_list
|
|
|
fc0505 |
find misc/ ! -type d -printf '%{goroot}/%p\n' >> $misc_list
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{shared}
|
|
|
fc0505 |
mkdir -p %{buildroot}/%{_libdir}/
|
|
|
fc0505 |
mkdir -p %{buildroot}/%{golibdir}/
|
|
|
fc0505 |
for file in $(find . -iname "*.so" ); do
|
|
|
fc0505 |
chmod 755 $file
|
|
|
fc0505 |
mv $file %{buildroot}/%{golibdir}
|
|
|
fc0505 |
pushd $(dirname $file)
|
|
|
fc0505 |
ln -fs %{golibdir}/$(basename $file) $(basename $file)
|
|
|
fc0505 |
popd
|
|
|
fc0505 |
echo "%%{goroot}/$file" >> $shared_list
|
|
|
fc0505 |
echo "%%{golibdir}/$(basename $file)" >> $shared_list
|
|
|
fc0505 |
done
|
|
|
fc0505 |
|
|
|
fc0505 |
find pkg/*_dynlink/ -type d -printf '%%%dir %{goroot}/%p\n' >> $shared_list
|
|
|
fc0505 |
find pkg/*_dynlink/ ! -type d -printf '%{goroot}/%p\n' >> $shared_list
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{race}
|
|
|
fc0505 |
|
|
|
fc0505 |
find pkg/*_race/ -type d -printf '%%%dir %{goroot}/%p\n' >> $race_list
|
|
|
fc0505 |
find pkg/*_race/ ! -type d -printf '%{goroot}/%p\n' >> $race_list
|
|
|
fc0505 |
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
find test/ -type d -printf '%%%dir %{goroot}/%p\n' >> $tests_list
|
|
|
fc0505 |
find test/ ! -type d -printf '%{goroot}/%p\n' >> $tests_list
|
|
|
fc0505 |
find src/ -type d -a \( -name testdata -o -ipath '*/testdata/*' \) -printf '%%%dir %{goroot}/%p\n' >> $tests_list
|
|
|
fc0505 |
find src/ ! -type d -a \( -ipath '*/testdata/*' -o -name '*_test*.go' \) -printf '%{goroot}/%p\n' >> $tests_list
|
|
|
fc0505 |
# this is only the zoneinfo.zip
|
|
|
fc0505 |
find lib/ -type d -printf '%%%dir %{goroot}/%p\n' >> $tests_list
|
|
|
fc0505 |
find lib/ ! -type d -printf '%{goroot}/%p\n' >> $tests_list
|
|
|
fc0505 |
popd
|
|
|
fc0505 |
|
|
|
fc0505 |
# remove the doc Makefile
|
|
|
fc0505 |
rm -rfv $RPM_BUILD_ROOT%{goroot}/doc/Makefile
|
|
|
fc0505 |
|
|
|
fc0505 |
# put binaries to bindir, linked to the arch we're building,
|
|
|
fc0505 |
# leave the arch independent pieces in {goroot}
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{goroot}/bin/linux_%{gohostarch}
|
|
|
fc0505 |
ln -sf %{goroot}/bin/go $RPM_BUILD_ROOT%{_bindir}/go
|
|
|
fc0505 |
ln -sf %{goroot}/bin/gofmt $RPM_BUILD_ROOT%{_bindir}/gofmt
|
|
|
fc0505 |
|
|
|
fc0505 |
# ensure these exist and are owned
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/github.com
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/bitbucket.org
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/code.google.com/p
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/golang.org/x
|
|
|
fc0505 |
|
|
|
fc0505 |
# gdbinit
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdbinit.d
|
|
|
fc0505 |
cp -av %{SOURCE100} $RPM_BUILD_ROOT%{_sysconfdir}/gdbinit.d/golang.gdb
|
|
|
fc0505 |
|
|
|
fc0505 |
# prelink blacklist
|
|
|
fc0505 |
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/prelink.conf.d
|
|
|
fc0505 |
cp -av %{SOURCE101} $RPM_BUILD_ROOT%{_sysconfdir}/prelink.conf.d/golang.conf
|
|
|
fc0505 |
|
|
|
fc0505 |
%check
|
|
|
fc0505 |
export GOROOT=$(pwd -P)
|
|
|
fc0505 |
export PATH="$GOROOT"/bin:"$PATH"
|
|
|
fc0505 |
cd src
|
|
|
fc0505 |
|
|
|
fc0505 |
# Add some sanity checks.
|
|
|
fc0505 |
echo "GO VERSION:"
|
|
|
fc0505 |
go version
|
|
|
fc0505 |
|
|
|
fc0505 |
echo "GO ENVIRONMENT:"
|
|
|
fc0505 |
go env
|
|
|
fc0505 |
|
|
|
fc0505 |
export CC="gcc"
|
|
|
fc0505 |
export CFLAGS="$RPM_OPT_FLAGS"
|
|
|
fc0505 |
export LDFLAGS="$RPM_LD_FLAGS"
|
|
|
fc0505 |
%if !%{external_linker}
|
|
|
fc0505 |
export GO_LDFLAGS="-linkmode internal"
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
export GO_LDFLAGS="-extldflags '$RPM_LD_FLAGS'"
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
%if !%{cgo_enabled} || !%{external_linker}
|
|
|
fc0505 |
export CGO_ENABLED=0
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
# make sure to not timeout
|
|
|
fc0505 |
export GO_TEST_TIMEOUT_SCALE=2
|
|
|
fc0505 |
|
|
|
fc0505 |
export GO_TEST_RUN=""
|
|
|
fc0505 |
%ifarch aarch64
|
|
|
fc0505 |
export GO_TEST_RUN="-run=!testshared"
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{fail_on_tests}
|
|
|
6ea202 |
|
|
|
fc0505 |
./run.bash --no-rebuild -v -v -v -k $GO_TEST_RUN
|
|
|
108839 |
|
|
|
108839 |
# Run tests with FIPS enabled.
|
|
|
108839 |
export GOLANG_FIPS=1
|
|
|
108839 |
pushd crypto
|
|
|
108839 |
# Run all crypto tests but skip TLS, we will run FIPS specific TLS tests later
|
|
|
8f73e5 |
go test $(go list ./... | grep -v tls) -v
|
|
|
108839 |
# Check that signature functions have parity between boring and notboring
|
|
|
8f73e5 |
CGO_ENABLED=0 go test $(go list ./... | grep -v tls) -v
|
|
|
108839 |
popd
|
|
|
108839 |
# Run all FIPS specific TLS tests
|
|
|
108839 |
pushd crypto/tls
|
|
|
108839 |
go test -v -run "Boring"
|
|
|
108839 |
popd
|
|
|
fc0505 |
%else
|
|
|
fc0505 |
./run.bash --no-rebuild -v -v -v -k || :
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
cd ..
|
|
|
fc0505 |
|
|
|
fc0505 |
%files
|
|
|
fc0505 |
|
|
|
fc0505 |
%doc AUTHORS CONTRIBUTORS LICENSE PATENTS
|
|
|
fc0505 |
# VERSION has to be present in the GOROOT, for `go install std` to work
|
|
|
fc0505 |
%doc %{goroot}/VERSION
|
|
|
fc0505 |
%dir %{goroot}/doc
|
|
|
fc0505 |
%doc %{goroot}/doc/*
|
|
|
fc0505 |
|
|
|
fc0505 |
# go files
|
|
|
fc0505 |
%dir %{goroot}
|
|
|
fc0505 |
%exclude %{goroot}/bin/
|
|
|
fc0505 |
%exclude %{goroot}/pkg/
|
|
|
fc0505 |
%exclude %{goroot}/src/
|
|
|
fc0505 |
%exclude %{goroot}/doc/
|
|
|
fc0505 |
%exclude %{goroot}/misc/
|
|
|
fc0505 |
%exclude %{goroot}/test/
|
|
|
fc0505 |
%{goroot}/*
|
|
|
fc0505 |
|
|
|
fc0505 |
# ensure directory ownership, so they are cleaned up if empty
|
|
|
fc0505 |
%dir %{gopath}
|
|
|
fc0505 |
%dir %{gopath}/src
|
|
|
fc0505 |
%dir %{gopath}/src/github.com/
|
|
|
fc0505 |
%dir %{gopath}/src/bitbucket.org/
|
|
|
fc0505 |
%dir %{gopath}/src/code.google.com/
|
|
|
fc0505 |
%dir %{gopath}/src/code.google.com/p/
|
|
|
fc0505 |
%dir %{gopath}/src/golang.org
|
|
|
fc0505 |
%dir %{gopath}/src/golang.org/x
|
|
|
fc0505 |
|
|
|
fc0505 |
# gdbinit (for gdb debugging)
|
|
|
fc0505 |
%{_sysconfdir}/gdbinit.d
|
|
|
fc0505 |
|
|
|
fc0505 |
# prelink blacklist
|
|
|
fc0505 |
%{_sysconfdir}/prelink.conf.d
|
|
|
fc0505 |
|
|
|
fc0505 |
|
|
|
fc0505 |
%files -f go-src.list src
|
|
|
fc0505 |
|
|
|
fc0505 |
%files -f go-docs.list docs
|
|
|
fc0505 |
|
|
|
fc0505 |
%files -f go-misc.list misc
|
|
|
fc0505 |
|
|
|
fc0505 |
%files -f go-tests.list tests
|
|
|
fc0505 |
|
|
|
fc0505 |
%files -f go-pkg.list bin
|
|
|
fc0505 |
%{_bindir}/go
|
|
|
fc0505 |
%{_bindir}/gofmt
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{shared}
|
|
|
fc0505 |
%files -f go-shared.list shared
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%if %{race}
|
|
|
fc0505 |
%files -f go-race.list race
|
|
|
fc0505 |
%endif
|
|
|
fc0505 |
|
|
|
fc0505 |
%changelog
|
|
|
8f73e5 |
* Thu Aug 27 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.7-2
|
|
|
8f73e5 |
- Improve test suit
|
|
|
8f73e5 |
- Resolves: rhbz#1854693
|
|
|
8f73e5 |
|
|
|
8f73e5 |
* Tue Aug 18 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.7-1
|
|
|
8f73e5 |
- Rebase to 1.14.7
|
|
|
8f73e5 |
|
|
|
8f73e5 |
* Mon Aug 03 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.6-1
|
|
|
8f73e5 |
- Rebase to 1.14.6
|
|
|
8f73e5 |
- Resolves: rhbz#1820596
|
|
|
8f73e5 |
|
|
|
8f73e5 |
* Wed Jul 08 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.4-2
|
|
|
8f73e5 |
- Include patch to fix missing deferreturn on linux/ppc64le
|
|
|
8f73e5 |
- Resolves: rhbz#1854836
|
|
|
8f73e5 |
|
|
|
8f73e5 |
* Thu Jun 25 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.4-1
|
|
|
8f73e5 |
- Rebase to 1.14.4
|
|
|
8f73e5 |
|
|
|
8f73e5 |
* Thu May 21 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.2-2
|
|
|
8f73e5 |
- Remove i686 references
|
|
|
8f73e5 |
- Related: rhbz#1752991
|
|
|
8f73e5 |
|
|
|
8f73e5 |
* Wed May 06 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.2-1
|
|
|
8f73e5 |
- Rebase to 1.14.2
|
|
|
8f73e5 |
- Related: rhbz#1820596
|
|
|
084863 |
|
|
|
7fdea8 |
* Wed Nov 27 2019 Alejandro SĂ¡ez <asm@redhat.com> - 1.13.4-2
|
|
|
7fdea8 |
- Remove patches
|
|
|
7fdea8 |
- Related: rhbz#1747150
|
|
|
6ea202 |
|
|
|
7fdea8 |
* Mon Nov 25 2019 Alejandro SĂ¡ez <asm@redhat.com> - 1.13.4-1
|
|
|
7fdea8 |
- Rebase to 1.13.4
|
|
|
7fdea8 |
- Related: rhbz#1747150
|
|
|
6ea202 |
|
|
|
6ea202 |
* Tue Sep 17 2019 Tom Stellard <tstellar@redhat.com> - 1.12.8-4
|
|
|
6ea202 |
- Reduce number of threads when testing on i686
|
|
|
6ea202 |
|
|
|
6ea202 |
* Wed Sep 11 2019 Tom Stellard <tstellar@redhat.com> - 1.12.8-3
|
|
|
6ea202 |
- Relax FIPS requirements to unblock OpenShift testing
|
|
|
6ea202 |
|
|
|
2ca253 |
* Wed Aug 28 2019 Tom Stellard <tstellar@redhat.com> - 1.12.8-2
|
|
|
2ca253 |
- Rebase to 1.12.8
|
|
|
2ca253 |
- Resolves: rhbz#1745706
|
|
|
2ca253 |
- Resolves: rhbz#1745712
|
|
|
2ca253 |
|
|
|
2ca253 |
* Mon Aug 5 2019 Derek Parker <deparker@redhat.com> - 1.12.6-3
|
|
|
2ca253 |
- Add README for more documentation
|
|
|
2ca253 |
- Resolves: rhbz#1734788
|
|
|
2ca253 |
|
|
|
2ca253 |
* Fri Aug 2 2019 Derek Parker <deparker@redhat.com> - 1.12.6-3
|
|
|
2ca253 |
- Revert some TLS FIPS changes for now
|
|
|
2ca253 |
- Resolves: rhbz#1734788
|
|
|
2ca253 |
|
|
|
2ca253 |
* Thu Aug 1 2019 Derek Parker <deparker@redhat.com> - 1.12.6-2
|
|
|
bee88f |
- Updates to be less strict on key size in FIPS mode
|
|
|
2ca253 |
- Resolves: rhbz#1734788
|
|
|
2ca253 |
|
|
|
2ca253 |
* Thu Jun 13 2019 Derek Parker <deparker@redhat.com> - 1.12.6-1
|
|
|
2ca253 |
- Rebase to 1.12.6
|
|
|
2ca253 |
- Resolves: rhbz#1677819
|
|
|
2ca253 |
|
|
|
2ca253 |
* Thu Jun 13 2019 Derek Parker <deparker@redhat.com> - 1.12.5-2
|
|
|
2ca253 |
- Remove macros present in go-compiler
|
|
|
2ca253 |
- Resolves: rhbz#1700109
|
|
|
2ca253 |
|
|
|
2ca253 |
* Wed Jun 12 2019 Derek Parker <deparker@redhat.com> - 1.12.5-1
|
|
|
2ca253 |
- Rebase to 1.12.5
|
|
|
2ca253 |
- Resolves: rhbz#1677819
|
|
|
2ca253 |
|
|
|
2ca253 |
* Wed May 29 2019 Derek Parker <deparker@redhat.com> - 1.12.1-2
|
|
|
2ca253 |
- Lock OpenSSL to specific built version and include more initialization.
|
|
|
2ca253 |
- Resolves: rhbz#1709603
|
|
|
2ca253 |
|
|
|
2ca253 |
* Fri May 10 2019 Derek Parker <deparker@redhat.com> - 1.12.1-1
|
|
|
2ca253 |
- Rebase to 1.12.1
|
|
|
2ca253 |
- Include FIPS compliance updates
|
|
|
2ca253 |
- Resolves: rhbz#1709603
|
|
|
bee88f |
|
|
|
2ca253 |
* Thu Apr 4 2019 Derek Parker <deparker@redhat.com> - 1.11.5-2
|
|
|
2ca253 |
- Include patch to fix CVE-2019-9741
|
|
|
2ca253 |
- Resolves: rhbz#1690443
|
|
|
bee88f |
|
|
|
2ca253 |
* Mon Feb 18 2019 Derek Parker <deparker@redhat.com> - 1.11.5-2
|
|
|
2ca253 |
- Switch to pagure fork for Go FIPS
|
|
Pablo Greco |
9f9379 |
|
|
|
fc0505 |
* Thu Feb 7 2019 Derek Parker <deparker@redhat.com> - 1.11.5-1
|
|
|
fc0505 |
- Rebase to Go 1.11.5
|
|
|
fc0505 |
- Resolves: rhbz#1671277
|
|
|
fc0505 |
- Fixes CVE-2019-6486
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jan 3 2019 Derek Parker <deparker@redhat.com> - 1.11.4-1
|
|
|
fc0505 |
- Rebase to Go 1.11.4
|
|
|
fc0505 |
- Fixes CVE-2018-16873, CVE-2018-16874, CVE-2018-16875
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Dec 6 2018 Derek Parker <deparker@redhat.com> - 1.11.2-1
|
|
|
fc0505 |
- Rebase to Go 1.11.2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Nov 16 2018 Derek Parker <deparker@redhat.com> - 1.10.3-18
|
|
|
fc0505 |
- Remove SCL from macros
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Nov 7 2018 Derek Parker <deparker@redhat.com> - 1.10.3-17
|
|
|
fc0505 |
- Prefer go-toolset over go-toolset-1.10
|
|
|
fc0505 |
- Resolves: rhbz#1630786
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Nov 5 2018 Derek Parker <deparker@redhat.com> - 1.10.3-16
|
|
|
fc0505 |
- Fix implicit syscall declaration warning
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Nov 5 2018 Derek Parker <deparker@redhat.com> - 1.10.3-15
|
|
|
fc0505 |
- Remove usage of redhat hardening flag file, just pass a select few manually
|
|
|
fc0505 |
- Resolves: rhbz#1642798
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Oct 31 2018 Derek Parker <deparker@redhat.com> - 1.10.3-14
|
|
|
fc0505 |
- Do not build toolchain in PIE mode
|
|
|
fc0505 |
- Resolves: rhbz#1642798
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Oct 26 2018 Derek Parker <deparker@redhat.com> - 1.10.3-13
|
|
|
fc0505 |
- Fix setting of internal FIPS enabled flag
|
|
|
fc0505 |
- Resolves: rhbz#1643653
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Oct 10 2018 Derek Parker <deparker@redhat.com> - 1.10.3-12
|
|
|
fc0505 |
- Pass external linker flags to fix annocheck errors
|
|
|
fc0505 |
- Resolves: rhbz#1624421
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Oct 10 2018 Derek Parker <deparker@redhat.com> - 1.10.3-11
|
|
|
fc0505 |
- Fix UnreachableExceptTests false panic
|
|
|
fc0505 |
- Resolves: rhbz#1634748
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Oct 5 2018 Derek Parker <deparker@redhat.com> - 1.10.3-10
|
|
|
fc0505 |
- Remove SCL, fix bug in boringcrypto with ecdsa
|
|
|
fc0505 |
- Related: rhbz#1635066
|
|
|
fc0505 |
- Resolves: rhbz#1636221
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Sep 26 2018 Derek Parker <deparker@redhat.com> - 1.10.3-9
|
|
|
fc0505 |
- Add runtime FIPS detection patches
|
|
|
fc0505 |
- Resolves: rhbz#1633351
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Sep 21 2018 Derek Parker <deparker@redhat.com> - 1.10.3-8
|
|
|
fc0505 |
- Add `gobuild` and `gotest` macros from go-compilers
|
|
|
fc0505 |
- Resolves: rhbz#1631846
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Sep 20 2018 Derek Parker <deparker@redhat.com> - 1.10.3-7
|
|
|
fc0505 |
- Bootstrap package using old build of same package
|
|
|
fc0505 |
- Resolves: rhbz#1630786
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Aug 13 2018 Derek Parker <deparker@redhat.com> - 1.10.3-6
|
|
|
fc0505 |
- Update stack allocation of OpenSSL type patch
|
|
|
fc0505 |
- Resolves: rhbz#1615032
|
|
|
fc0505 |
|
|
|
fc0505 |
* Sat Aug 11 2018 Troy Dawson <tdawson@redhat.com> - 1.10.3-5
|
|
|
fc0505 |
- Build on i686
|
|
|
fc0505 |
- Related: bug#1614611
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 7 2018 Derek Parker <deparker@redhat.com> - 1.10.3-4
|
|
|
fc0505 |
- Add patch fixing stack allocation of opaque OpenSSL type bug.
|
|
|
fc0505 |
- Resolves: rhbz#1613538
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 2 2018 Derek Parker <deparker@redhat.com> - 1.10.3-3
|
|
|
fc0505 |
- Add patch with tag to opt out of OpenSSL during build
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jul 25 2018 Derek Parker <deparker@redhat.com> - 1.10.3-2
|
|
|
fc0505 |
- Add runtime requirement for openssl-devel and misc updates
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jul 24 2018 Derek Parker <deparker@redhat.com> - 1.10.3-1
|
|
|
fc0505 |
- Bump to 1.10.3
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jul 24 2018 Derek Parker <deparker@redhat.com> - 1.10.2-3
|
|
|
fc0505 |
- Prepare for module build
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jun 27 2018 Derek Parker <deparker@redhat.com> - 1.10.2-2
|
|
|
fc0505 |
- Include FIPS patches
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed May 23 2018 Derek Parker <deparker@redhat.com> - 1.10.2-1
|
|
|
fc0505 |
- Bump to Go 1.10.2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Mar 15 2018 Derek Parker <deparker@redhat.com> - 1.10-1
|
|
|
fc0505 |
- Bump to Go 1.10
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Oct 18 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.8.5-1
|
|
|
fc0505 |
- Fix CVE-2017-15041 and CVE-2017-15042
|
|
|
fc0505 |
- Resolves: BZ#1499160, BZ#1498073, BZ#1512063
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 31 2017 Tom Stellard <tstellar@redhat.com> - 1.8.3-4
|
|
|
fc0505 |
- Explicitly require /usr/bin/gcc
|
|
|
fc0505 |
- Resolves: #1487345
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jun 22 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.8.3-3
|
|
|
fc0505 |
- apply asn1 patch
|
|
|
fc0505 |
- add ppc64le trampolines patch
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jun 14 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.8.3-2
|
|
|
fc0505 |
- regular GTS build
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jun 06 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.8.3-1
|
|
|
fc0505 |
- initial GTS build
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-0.rc3.2.1
|
|
|
fc0505 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 27 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.8-0.rc3.2
|
|
|
fc0505 |
- make possible to override default traceback level at build time
|
|
|
fc0505 |
- add sub-package race containing std lib built with -race enabled
|
|
|
fc0505 |
- Related: BZ#1411242
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 27 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.8-0.rc3.1
|
|
|
fc0505 |
- rebase to go1.8rc3
|
|
|
fc0505 |
- Resolves: BZ#1411242
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 20 2017 Jakub ÄŒajka <jcajka@redhat.com> - 1.7.4-2
|
|
|
fc0505 |
- Resolves: BZ#1404679
|
|
|
fc0505 |
- expose IfInfomsg.X__ifi_pad on s390x
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Dec 02 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7.4-1
|
|
|
fc0505 |
- Bump to 1.7.4
|
|
|
fc0505 |
- Resolves: BZ#1400732
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Nov 17 2016 Tom Callaway <spot@fedoraproject.org> - 1.7.3-2
|
|
|
fc0505 |
- re-enable the NIST P-224 curve
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Oct 20 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7.3-1
|
|
|
fc0505 |
- Resolves: BZ#1387067 - golang-1.7.3 is available
|
|
|
fc0505 |
- added fix for tests failing with latest tzdata
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Sep 23 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7.1-2
|
|
|
fc0505 |
- fix link failure due to relocation overflows on PPC64X
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Sep 08 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7.1-1
|
|
|
fc0505 |
- rebase to 1.7.1
|
|
|
fc0505 |
- Resolves: BZ#1374103
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 23 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7-1
|
|
|
fc0505 |
- update to released version
|
|
|
fc0505 |
- related: BZ#1342090, BZ#1357394
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Aug 08 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7-0.3.rc5
|
|
|
fc0505 |
- Obsolete golang-vet and golang-cover from golang-googlecode-tools package
|
|
|
fc0505 |
vet/cover binaries are provided by golang-bin rpm (thanks to jchaloup)
|
|
|
fc0505 |
- clean up exclusive arch after s390x boostrap
|
|
|
fc0505 |
- resolves: #1268206
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Aug 03 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7-0.2.rc5
|
|
|
fc0505 |
- rebase to go1.7rc5
|
|
|
fc0505 |
- Resolves: BZ#1342090
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-0.1.rc2
|
|
|
fc0505 |
- https://fedoraproject.org/wiki/Changes/golang1.7
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jul 19 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.7-0.0.rc2
|
|
|
fc0505 |
- rebase to 1.7rc2
|
|
|
fc0505 |
- added s390x build
|
|
|
fc0505 |
- improved shared lib packaging
|
|
|
fc0505 |
- Resolves: bz1357602 - CVE-2016-5386
|
|
|
fc0505 |
- Resolves: bz1342090, bz1342090
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Apr 26 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.6.2-1
|
|
|
fc0505 |
- rebase to 1.6.2
|
|
|
fc0505 |
- Resolves: bz1329206 - golang-1.6.2.src is available
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Apr 13 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.6.1-1
|
|
|
fc0505 |
- rebase to 1.6.1
|
|
|
fc0505 |
- Resolves: bz1324344 - CVE-2016-3959
|
|
|
fc0505 |
- Resolves: bz1324951 - prelink is gone, /etc/prelink.conf.d/* is no longer used
|
|
|
fc0505 |
- Resolves: bz1326366 - wrong epoll_event struct for ppc64le/ppc64
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Feb 22 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.6-1
|
|
|
fc0505 |
- Resolves: bz1304701 - rebase to go1.6 release
|
|
|
fc0505 |
- Resolves: bz1304591 - fix possible stack miss-alignment in callCgoMmap
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-0.3.rc1
|
|
|
fc0505 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 29 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.6-0.2.rc1
|
|
|
fc0505 |
- disabled cgo and external linking on ppc64
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jan 28 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.6-0.1.rc1
|
|
|
fc0505 |
- Resolves bz1292640, rebase to pre-release 1.6
|
|
|
fc0505 |
- bootstrap for PowerPC
|
|
|
fc0505 |
- fix rpmlint errors/warning
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jan 14 2016 Jakub ÄŒajka <jcajka@redhat.com> - 1.5.3-1
|
|
|
fc0505 |
- rebase to 1.5.3
|
|
|
fc0505 |
- resolves bz1293451, CVE-2015-8618
|
|
|
fc0505 |
- apply timezone patch, avoid using bundled data
|
|
|
fc0505 |
- print out rpm build system info
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Dec 11 2015 Jakub ÄŒajka <jcajka@redhat.com> - 1.5.2-2
|
|
|
fc0505 |
- bz1290543 Accept x509 certs with negative serial
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Dec 08 2015 Jakub ÄŒajka <jcajka@redhat.com> - 1.5.2-1
|
|
|
fc0505 |
- bz1288263 rebase to 1.5.2
|
|
|
fc0505 |
- spec file clean up
|
|
|
fc0505 |
- added build options
|
|
|
fc0505 |
- scrubbed "Project Gutenberg License"
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Oct 19 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5.1-1
|
|
|
fc0505 |
- bz1271709 include patch from upstream fix
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Sep 09 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5.1-0
|
|
|
fc0505 |
- update to go1.5.1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Sep 04 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-8
|
|
|
fc0505 |
- bz1258166 remove srpm macros, for go-srpm-macros
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Sep 03 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-7
|
|
|
fc0505 |
- bz1258166 remove srpm macros, for go-srpm-macros
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 27 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-6
|
|
|
fc0505 |
- starting a shared object subpackage. This will be x86_64 only until upstream supports more arches shared objects.
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 27 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-5
|
|
|
fc0505 |
- bz991759 gdb path fix
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Aug 26 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-4
|
|
|
fc0505 |
- disable shared object until linux/386 is ironned out
|
|
|
fc0505 |
- including the test/ directory for tests
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 25 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-3
|
|
|
fc0505 |
- bz1256910 only allow the golang zoneinfo.zip to be used in tests
|
|
|
fc0505 |
- bz1166611 add golang.org/x directory
|
|
|
fc0505 |
- bz1256525 include stdlib shared object. This will let other libraries and binaries
|
|
|
fc0505 |
build with `go build -buildmode=shared -linkshared ...` or similar.
|
|
|
fc0505 |
|
|
|
fc0505 |
* Sun Aug 23 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.5-2
|
|
|
fc0505 |
- Enable aarch64
|
|
|
fc0505 |
- Minor cleanups
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 20 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-1
|
|
|
fc0505 |
- updating to go1.5
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 06 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-0.11.rc1
|
|
|
fc0505 |
- fixing the sources reference
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Aug 06 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-0.10.rc1
|
|
|
fc0505 |
- updating to go1.5rc1
|
|
|
fc0505 |
- checks are back in place
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 04 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-0.9.beta3
|
|
|
fc0505 |
- pull in upstream archive/tar fix
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jul 30 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-0.8.beta3
|
|
|
fc0505 |
- updating to go1.5beta3
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jul 30 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-0.7.beta2
|
|
|
fc0505 |
- add the patch ..
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jul 30 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.5-0.6.beta2
|
|
|
fc0505 |
- increase ELFRESERVE (bz1248071)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jul 28 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.5-0.5.beta2
|
|
|
fc0505 |
- correct package version and release tags as per naming guidelines
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jul 17 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.99-4.1.5beta2
|
|
|
fc0505 |
- adding test output, for visibility
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jul 10 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.99-3.1.5beta2
|
|
|
fc0505 |
- updating to go1.5beta2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jul 10 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.99-2.1.5beta1
|
|
|
fc0505 |
- add checksum to sources and fixed one patch
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jul 10 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.99-1.1.5beta1
|
|
|
fc0505 |
- updating to go1.5beta1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-3
|
|
|
fc0505 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Mar 18 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.2-2
|
|
|
fc0505 |
- obsoleting deprecated packages
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Feb 18 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.2-1
|
|
|
fc0505 |
- updating to go1.4.2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 16 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4.1-1
|
|
|
fc0505 |
- updating to go1.4.1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 02 2015 Vincent Batts <vbatts@fedoraproject.org> - 1.4-2
|
|
|
fc0505 |
- doc organizing
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Dec 11 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.4-1
|
|
|
fc0505 |
- update to go1.4 release
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Dec 03 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.99-3.1.4rc2
|
|
|
fc0505 |
- update to go1.4rc2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Nov 17 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.99-2.1.4rc1
|
|
|
fc0505 |
- update to go1.4rc1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Oct 30 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.99-1.1.4beta1
|
|
|
fc0505 |
- update to go1.4beta1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Oct 30 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.3-3
|
|
|
fc0505 |
- macros will need to be in their own rpm
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Oct 24 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.3-2
|
|
|
fc0505 |
- split out rpm macros (bz1156129)
|
|
|
fc0505 |
- progress on gccgo accomodation
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Oct 01 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.3-1
|
|
|
fc0505 |
- update to go1.3.3 (bz1146882)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Sep 29 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.2-1
|
|
|
fc0505 |
- update to go1.3.2 (bz1147324)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Sep 11 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.1-3
|
|
|
fc0505 |
- patching the tzinfo failure
|
|
|
fc0505 |
|
|
|
fc0505 |
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-2
|
|
|
fc0505 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Aug 13 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3.1-1
|
|
|
fc0505 |
- update to go1.3.1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Aug 13 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-11
|
|
|
fc0505 |
- merged a line wrong
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Aug 13 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-10
|
|
|
fc0505 |
- more work to get cgo.a timestamps to line up, due to build-env
|
|
|
fc0505 |
- explicitly list all the files and directories for the source and packages trees
|
|
|
fc0505 |
- touch all the built archives to be the same
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Aug 11 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-9
|
|
|
fc0505 |
- make golang-src 'noarch' again, since that was not a fix, and takes up more space
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Aug 11 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-8
|
|
|
fc0505 |
- update timestamps of source files during %%install bz1099206
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Aug 08 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-7
|
|
|
fc0505 |
- update timestamps of source during %%install bz1099206
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Aug 06 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-6
|
|
|
fc0505 |
- make the source subpackage arch'ed, instead of noarch
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Jul 21 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-5
|
|
|
fc0505 |
- fix the writing of pax headers
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jul 15 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-4
|
|
|
fc0505 |
- fix the loading of gdb safe-path. bz981356
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jul 08 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-3
|
|
|
fc0505 |
- `go install std` requires gcc, to build cgo. bz1105901, bz1101508
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Jul 07 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-2
|
|
|
fc0505 |
- archive/tar memory allocation improvements
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jun 19 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3-1
|
|
|
fc0505 |
- update to go1.3
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jun 13 2014 Vincent Batts <vbatts@fedoraproject.org> - 1.3rc2-1
|
|
|
fc0505 |
- update to go1.3rc2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3rc1-2
|
|
|
fc0505 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Jun 03 2014 Vincent Batts <vbatts@redhat.com> 1.3rc1-1
|
|
|
fc0505 |
- update to go1.3rc1
|
|
|
fc0505 |
- new arch file shuffling
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed May 21 2014 Vincent Batts <vbatts@redhat.com> 1.3beta2-1
|
|
|
fc0505 |
- update to go1.3beta2
|
|
|
fc0505 |
- no longer provides go-mode for xemacs (emacs only)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed May 21 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-7
|
|
|
fc0505 |
- bz1099206 ghost files are not what is needed
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue May 20 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-6
|
|
|
fc0505 |
- bz1099206 more fixing. The packages %%post need golang-bin present first
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue May 20 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-5
|
|
|
fc0505 |
- bz1099206 more fixing. Let go fix its own timestamps and freshness
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue May 20 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-4
|
|
|
fc0505 |
- fix the existence and alternatives of `go` and `gofmt`
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon May 19 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-3
|
|
|
fc0505 |
- bz1099206 fix timestamp issue caused by koji builders
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri May 09 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-2
|
|
|
fc0505 |
- more arch file shuffling
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri May 09 2014 Vincent Batts <vbatts@redhat.com> 1.2.2-1
|
|
|
fc0505 |
- update to go1.2.2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu May 08 2014 Vincent Batts <vbatts@redhat.com> 1.2.1-8
|
|
|
fc0505 |
- RHEL6 rpm macros can't %%exlude missing files
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed May 07 2014 Vincent Batts <vbatts@redhat.com> 1.2.1-7
|
|
|
fc0505 |
- missed two arch-dependent src files
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed May 07 2014 Vincent Batts <vbatts@redhat.com> 1.2.1-6
|
|
|
fc0505 |
- put generated arch-dependent src in their respective RPMs
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Apr 11 2014 Vincent Batts <vbatts@redhat.com> 1.2.1-5
|
|
|
fc0505 |
- skip test that is causing a SIGABRT on fc21 bz1086900
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Apr 10 2014 Vincent Batts <vbatts@fedoraproject.org> 1.2.1-4
|
|
|
fc0505 |
- fixing file and directory ownership bz1010713
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Apr 09 2014 Vincent Batts <vbatts@fedoraproject.org> 1.2.1-3
|
|
|
fc0505 |
- including more to macros (%%go_arches)
|
|
|
fc0505 |
- set a standard goroot as /usr/lib/golang, regardless of arch
|
|
|
fc0505 |
- include sub-packages for compiler toolchains, for all golang supported architectures
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Mar 26 2014 Vincent Batts <vbatts@fedoraproject.org> 1.2.1-2
|
|
|
fc0505 |
- provide a system rpm macros. Starting with gopath
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Mar 04 2014 Adam Miller <maxamillion@fedoraproject.org> 1.2.1-1
|
|
|
fc0505 |
- Update to latest upstream
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Feb 20 2014 Adam Miller <maxamillion@fedoraproject.org> 1.2-7
|
|
|
fc0505 |
- Remove _BSD_SOURCE and _SVID_SOURCE, they are deprecated in recent
|
|
|
fc0505 |
versions of glibc and aren't needed
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Feb 19 2014 Adam Miller <maxamillion@fedoraproject.org> 1.2-6
|
|
|
fc0505 |
- pull in upstream archive/tar implementation that supports xattr for
|
|
|
fc0505 |
docker 0.8.1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Feb 18 2014 Vincent Batts <vbatts@redhat.com> 1.2-5
|
|
|
fc0505 |
- provide 'go', so users can yum install 'go'
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jan 24 2014 Vincent Batts <vbatts@redhat.com> 1.2-4
|
|
|
fc0505 |
- skip a flaky test that is sporadically failing on the build server
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jan 16 2014 Vincent Batts <vbatts@redhat.com> 1.2-3
|
|
|
fc0505 |
- remove golang-godoc dependency. cyclic dependency on compiling godoc
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Dec 18 2013 Vincent Batts <vbatts@redhat.com> - 1.2-2
|
|
|
fc0505 |
- removing P224 ECC curve
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Dec 2 2013 Vincent Batts <vbatts@fedoraproject.org> - 1.2-1
|
|
|
fc0505 |
- Update to upstream 1.2 release
|
|
|
fc0505 |
- remove the pax tar patches
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Nov 26 2013 Vincent Batts <vbatts@redhat.com> - 1.1.2-8
|
|
|
fc0505 |
- fix the rpmspec conditional for rhel and fedora
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Nov 21 2013 Vincent Batts <vbatts@redhat.com> - 1.1.2-7
|
|
|
fc0505 |
- patch tests for testing on rawhide
|
|
|
fc0505 |
- let the same spec work for rhel and fedora
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Nov 20 2013 Vincent Batts <vbatts@redhat.com> - 1.1.2-6
|
|
|
fc0505 |
- don't symlink /usr/bin out to ../lib..., move the file
|
|
|
fc0505 |
- seperate out godoc, to accomodate the go.tools godoc
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Sep 20 2013 Adam Miller <maxamillion@fedoraproject.org> - 1.1.2-5
|
|
|
fc0505 |
- Pull upstream patches for BZ#1010271
|
|
|
fc0505 |
- Add glibc requirement that got dropped because of meta dep fix
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Aug 30 2013 Adam Miller <maxamillion@fedoraproject.org> - 1.1.2-4
|
|
|
fc0505 |
- fix the libc meta dependency (thanks to vbatts [at] redhat.com for the fix)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 27 2013 Adam Miller <maxamillion@fedoraproject.org> - 1.1.2-3
|
|
|
fc0505 |
- Revert incorrect merged changelog
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 27 2013 Adam Miller <maxamillion@fedoraproject.org> - 1.1.2-2
|
|
|
fc0505 |
- This was reverted, just a placeholder changelog entry for bad merge
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Aug 20 2013 Adam Miller <maxamillion@fedoraproject.org> - 1.1.2-1
|
|
|
fc0505 |
- Update to latest upstream
|
|
|
fc0505 |
|
|
|
fc0505 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-7
|
|
|
fc0505 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.1.1-6
|
|
|
fc0505 |
- Perl 5.18 rebuild
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jul 10 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-5
|
|
|
fc0505 |
- Blacklist testdata files from prelink
|
|
|
fc0505 |
- Again try to fix #973842
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri Jul 5 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-4
|
|
|
fc0505 |
- Move src to libdir for now (#973842) (upstream issue https://code.google.com/p/go/issues/detail?id=5830)
|
|
|
fc0505 |
- Eliminate noarch data package to work around RPM bug (#975909)
|
|
|
fc0505 |
- Try to add runtime-gdb.py to the gdb safe-path (#981356)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Wed Jun 19 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-3
|
|
|
fc0505 |
- Use lua for pretrans (http://fedoraproject.org/wiki/Packaging:Guidelines#The_.25pretrans_scriptlet)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Mon Jun 17 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-2
|
|
|
fc0505 |
- Hopefully really fix #973842
|
|
|
fc0505 |
- Fix update from pre-1.1.1 (#974840)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Jun 13 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-1
|
|
|
fc0505 |
- Update to 1.1.1
|
|
|
fc0505 |
- Fix basically useless package (#973842)
|
|
|
fc0505 |
|
|
|
fc0505 |
* Sat May 25 2013 Dan HorĂ¡k <dan[at]danny.cz> - 1.1-3
|
|
|
fc0505 |
- set ExclusiveArch
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri May 24 2013 Adam Goode <adam@spicenitz.org> - 1.1-2
|
|
|
fc0505 |
- Fix noarch package discrepancies
|
|
|
fc0505 |
|
|
|
fc0505 |
* Fri May 24 2013 Adam Goode <adam@spicenitz.org> - 1.1-1
|
|
|
fc0505 |
- Initial Fedora release.
|
|
|
fc0505 |
- Update to 1.1
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu May 9 2013 Adam Goode <adam@spicenitz.org> - 1.1-0.3.rc3
|
|
|
fc0505 |
- Update to rc3
|
|
|
fc0505 |
|
|
|
fc0505 |
* Thu Apr 11 2013 Adam Goode <adam@spicenitz.org> - 1.1-0.2.beta2
|
|
|
fc0505 |
- Update to beta2
|
|
|
fc0505 |
|
|
|
fc0505 |
* Tue Apr 9 2013 Adam Goode <adam@spicenitz.org> - 1.1-0.1.beta1
|
|
|
fc0505 |
- Initial packaging.
|