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