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
f30692
%ifarch x86_64 %{arm} aarch64 ppc64le s390x
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
f30692
%global go_api 1.19
e6c6de
%global version 1.19.9
9da48d
%global pkg_release 1
fc0505
fc0505
Name:           golang
f30692
Version:        %{version}
ebecd4
Release:        1%{?dist}
ebecd4
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/
f30692
Source0:        https://github.com/golang/go/archive/refs/tags/go%{version}.tar.gz
f30692
# Go's FIPS mode bindings are now provided as a standalone
f30692
# module instead of in tree.  This makes it easier to see
f30692
# the actual changes vs upstream Go.  The module source is
f30692
# located at https://github.com/golang-fips/openssl-fips,
f30692
# And pre-genetated patches to set up the module for a given
f30692
# Go release are located at https://github.com/golang-fips/go.
f30692
Source1:       https://github.com/golang-fips/go/archive/refs/tags/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
f30692
Source2:        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
66c09a
Requires:       diffutils
fc0505
fc0505
fc0505
# Proposed patch by jcajka https://golang.org/cl/86541
e89205
Patch221:       fix_TestScript_list_std.patch
66c09a
f30692
Patch1939923:   skip_test_rhbz1939923.patch
148502
f30692
Patch2: 	disable_static_tests_part1.patch
f30692
Patch3: 	disable_static_tests_part2.patch
f30692
Patch6:		fix-memory-leak-evp-sign-verify.patch
012508
6d0f59
Patch227: cmd-link-use-correct-path-for-dynamic-loader-on-ppc6.patch
6d0f59
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
f30692
%setup -q -n go-go%{version}
f30692
f30692
pushd ..
f30692
tar -xf %{SOURCE1}
f30692
popd
f30692
patch -p1 < ../go-go%{version}-%{pkg_release}-openssl-fips/patches/000-initial-setup.patch
f30692
patch -p1 < ../go-go%{version}-%{pkg_release}-openssl-fips/patches/001-initial-openssl-for-fips.patch
f30692
ebecd4
# Configure crypto tests
ebecd4
pushd ../go-go%{version}-%{pkg_release}-openssl-fips
ebecd4
ln -s ../go-go%{version} go
ebecd4
./scripts/configure-crypto-tests.sh
ebecd4
popd
ebecd4
ebecd4
f30692
%patch2 -p1
f30692
%patch3 -p1
f30692
%patch6 -p1
fc0505
fc0505
%patch221 -p1
f30692
f30692
%patch1939923 -p1
6d0f59
%patch227 -p1
66c09a
f30692
cp %{SOURCE2} ./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
216b28
cp -apv api bin doc lib pkg 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
216b28
# Quick fix for the rhbz#2014704
216b28
sed -i 's/const defaultGO_LDSO = `.*`/const defaultGO_LDSO = ``/' $RPM_BUILD_ROOT%{goroot}/src/internal/buildcfg/zbootstrap.go
216b28
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
f30692
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
216b28
# TestEd25519Vectors needs network connectivity but it should be cover by
216b28
# this test https://pkgs.devel.redhat.com/cgit/tests/golang/tree/Regression/internal-testsuite/runtest.sh#n127
216b28
f30692
./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
f30692
  go test $(go list ./... | grep -v tls) -v
108839
  # Check that signature functions have parity between boring and notboring
f30692
  CGO_ENABLED=0 go test $(go list ./... | grep -v tls) -v
108839
popd
108839
# Run all FIPS specific TLS tests
108839
pushd crypto/tls
f30692
  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
f30692
%doc 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
e6c6de
* Wed May 17 2023 Alejandro SĂ¡ez <asm@redhat.com> - 1.19.9-1
e6c6de
- Rebase to Go 1.19.9
e6c6de
- Resolves: rhbz#2204473
e6c6de
ebecd4
* Wed Mar 01 2023 David Benoit <dbenoit@redhat.com> - 1.19.6-1
ebecd4
- Rebase to Go 1.19.6
ebecd4
- Resolves: rhbz#2174430
ebecd4
f30692
* Tue Jan 3 2023 David Benoit <dbenoit@redhat.com> - 1.19.4-2
f30692
- Fix memory leaks in EVP_{sign,verify}_raw
f30692
- Resolves: rhbz#2132767
f30692
f30692
* Wed Dec 21 2022 David Benoit <dbenoit@redhat.com> - 1.19.4-1
f30692
- Rebase to Go 1.19.4
f30692
- Fix ppc64le linker issue
f30692
- Remove defunct patches
f30692
- Remove downstream generated FIPS mode patches
f30692
- Add golang-fips/go as the source for FIPS mode patches
f30692
- Resolves: rhbz#2144542
f30692
f30692
* Mon Oct 17 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-4
f30692
- Enable big endian support in FIPS mode
f30692
- Resolves: rhbz#1969844
f30692
f30692
* Mon Oct 17 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-3
f30692
- Restore old HashSign/HashVerify API
f30692
- Resolves: rhbz#2132730
f30692
f30692
* Mon Oct 17 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-2
f30692
- Add support for 4096 bit keys in x509
f30692
- Resolves: rhbz#2132694
f30692
f30692
* Thu Oct 13 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-1
f30692
- Rebase to Go 1.19.2
f30692
- Resolves: rhbz#2132730
f30692
f30692
* Wed Sep 14 2022 David Benoit <dbenoit@redhat.com> - 1.19.1-2
f30692
- Rebase to Go 1.19.1
f30692
- Resolves: rhbz#2131026
6d0f59
6d0f59
* Wed Aug 03 2022 Alejandro SĂ¡ez <asm@redhat.com> - 1.18.4-2
6d0f59
- Adds patch for PIE mode issues on PPC64LE
6d0f59
- Resolves: rhbz#2111593
6d0f59
148502
* Wed Jul 20 2022 David Benoit <dbenoit@redhat.com> - 1.18.4-1
148502
- Update Go to version 1.18.4
148502
- Resolves: rhbz#2109179
02c5bb
148502
* Wed Jul 20 2022 David Benoit <dbenoit@redhat.com> - 1.18.2-3
02c5bb
- Clean up dist-git patches
148502
- Resolves: rhbz#2109175
148502
148502
* Thu Jul 07 2022 Alejandro SĂ¡ez <asm@redhat.com> - 1.18.2-2
148502
- Bump up release version
148502
- Related: rhbz#2075162
148502
148502
* Thu Jun 16 2022 David Benoit <dbenoit@redhat.com> - 1.18.2-1
148502
- Update to Go 1.18.2
148502
- Related: rhbz#2075162
148502
148502
* Mon Apr 18 2022 David Benoit <dbenoit@redhat.com> - 1.18.0-2
148502
- Enable SHA1 in some contexts
148502
- Related: rhbz#2075162
02c5bb
148502
* Wed Apr 13 2022 David Benoit <dbenoit@redhat.com> - 1.18.0-1
148502
- Update Go to 1.18.0
148502
- Resolves: rhbz#2075162
95ac52
216b28
* Thu Feb 17 2022 David Benoit <dbenoit@redhat.com> - 1.17.7-1
216b28
- Rebase to Go 1.17.7
216b28
- Remove fips memory leak patch (fixed in tree)
216b28
- Resolves: rhbz#2015930
216b28
216b28
* Fri Dec 10 2021 David Benoit <dbenoit@redhat.com> - 1.17.5-1
216b28
- Rebase to Go 1.17.5
216b28
- Remove vdso_s390x_gettime patch
216b28
- Resolves: rhbz#2031112
216b28
- Related: rhbz#2028570
216b28
216b28
* Fri Dec 03 2021 David Benoit <dbenoit@redhat.com> - 1.17.4-1
216b28
- Rebase Go to 1.17.4
216b28
- Add remove_waitgroup_misuse_tests patch
216b28
- Related: rhbz#2014088
216b28
- Resolves: rhbz#2028570
216b28
- Resolves: rhbz#2022828
216b28
- Resolves: rhbz#2024686
216b28
- Resolves: rhbz#2028662
216b28
216b28
* Wed Oct 27 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.17.2-2
216b28
- Resolves: rhbz#2014704
216b28
216b28
* Tue Oct 12 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.17.2-1
216b28
- Rebase to Go 1.17.2
216b28
- Related: rhbz#2014088
216b28
- Remove golang-1.15-warnCN.patch
216b28
- Remove reject-leading-zeros.patch
216b28
- Remove favicon.ico and robots.txt references
216b28
- Exclude TestEd25519Vectors test 
070a8a
e89205
* Tue Aug 17 2021 David Benoit <dbenoit@redhat.com> - 1.16.7-1
e89205
- Rebase to Go 1.16.7
e89205
- Resolves: rhbz#1994079
012508
- Add reject leading zeros patch
e89205
- Resolves: rhbz#1993314
92af5c
e89205
* Wed Jul 21 2021 Derek Parker <deparker@redhat.com> - 1.16.6-2
e89205
- Fix TestBoringServerCurves failure when run by itself
e89205
- Resolves: rhbz#1976168
92af5c
e89205
* Thu Jul 15 2021 David Benoit <dbenoit@redhat.com> - 1.16.6-1
e89205
- Rebase to go-1.16.6-1-openssl-fips
e89205
- Resolves: rhbz#1982281
e89205
- Addresses CVE-2021-34558
bd3e35
e89205
* Tue Jul 06 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.16.5-1
e89205
- Rebase to 1.16.5
e89205
- Removes rhbz#1955032 patch, it's already included in this release
e89205
- Removes rhbz#1956891 patch, it's already included in this release
e89205
- Related: rhbz#1979677
e89205
- Related: rhbz#1968738
e89205
- Related: rhbz#1972420
e89205
e89205
* Thu Jun 17 2021 David Benoit <dbenoit@redhat.com> - 1.16.4-3
e89205
- Fix zero-size allocation memory leak.
e89205
- Related: rhbz#1951877
e89205
e89205
* Tue Jun 08 2021 David Benoit <dbenoit@redhat.com> - 1.16.4-2
e89205
- Resolves: rhbz#1951877
e89205
e89205
* Mon May 24 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.16.4-1
e89205
- Rebase to go-1.16.4-1-openssl-fips
e89205
e89205
* Tue May 04 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.16.1-3
e89205
- Resolves: rhbz#1956891
e89205
e89205
* Thu Apr 29 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.16.1-2
e89205
- Resolves: rhbz#1955032
e89205
e89205
* Wed Mar 17 2021 Alejandro SĂ¡ez <asm@redhat.com> - 1.16.1-1
e89205
- Rebase to go-1.16.1-2-openssl-fips
e89205
- Resolves: rhbz#1938071
e89205
- Adds a workaround for rhbz#1939923
e89205
- Removes Patch224, it's on upstream -> rhbz#1888673
e89205
- Removes Patch225, it's on upstream -> https://go-review.googlesource.com/c/text/+/238238
e89205
- Removes old patches for cleaning purposes
bd3e35
66c09a
* Fri Jan 22 2021 David Benoit <dbenoit@redhat.com> - 1.15.7-1
66c09a
- Rebase to 1.15.7
66c09a
- Resolves: rhbz#1870531
66c09a
- Resolves: rhbz#1919261
66c09a
66c09a
* Tue Nov 24 2020 David Benoit <dbenoit@redhat.com> - 1.15.5-1
66c09a
- Rebase to 1.15.5
66c09a
- Resolves: rhbz#1898652
66c09a
- Resolves: rhbz#1898660
66c09a
- Resolves: rhbz#1898649
66c09a
66c09a
* Mon Nov 16 2020 David Benoit <dbenoit@redhat.com> - 1.15.3-2
66c09a
- fix typo in patch file name
66c09a
- Related: rhbz#1881539
66c09a
66c09a
* Thu Nov 12 2020 David Benoit <dbenoit@redhat.com> - 1.15.3-1
66c09a
- Rebase to 1.15.3
66c09a
- fix x/text infinite loop
66c09a
- Resolves: rhbz#1881539
66c09a
66c09a
* Tue Nov 03 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.15.2-2
66c09a
- Resolves: rhbz#1850045
66c09a
66c09a
* Mon Oct 19 2020 David Benoit <dbenoit@redhat.com> - 1.15.2-1
66c09a
- Rebase to 1.15.2
66c09a
- fix rhbz#1872622 in commit af9a1b1f6567a1c5273a134d395bfe7bb840b7f8
66c09a
- Resolves: rhbz#1872622
66c09a
- add net/http graceful shutdown patch
66c09a
- Resolves: rhbz#1888673
66c09a
- add x509warnCN patch
66c09a
- Resolves: rhbz#1889437
66c09a
66c09a
* Wed Sep 09 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.15.0-1
66c09a
- Rebase to 1.15.0
66c09a
- Related: rhbz#1870531
9da48d
8f73e5
* Thu Aug 27 2020 Alejandro SĂ¡ez <asm@redhat.com> - 1.14.7-2
66c09a
- Improve test suite
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.