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