2017-10-12 13:52:28 +00:00
|
|
|
%bcond_with bootstrap
|
2013-05-24 01:22:57 +00:00
|
|
|
# build ids are not currently generated:
|
|
|
|
# https://code.google.com/p/go/issues/detail?id=5238
|
|
|
|
#
|
|
|
|
# also, debuginfo extraction currently fails with
|
|
|
|
# "Failed to write file: invalid section alignment"
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
# we are shipping the full contents of src in the data subpackage, which
|
|
|
|
# contains binary-like things (ELF data for tests, etc)
|
|
|
|
%global _binaries_in_noarch_packages_terminate_build 0
|
|
|
|
|
|
|
|
# Do not check any files in doc or src for requires
|
2014-04-10 17:32:57 +00:00
|
|
|
%global __requires_exclude_from ^(%{_datadir}|/usr/lib)/%{name}/(doc|src)/.*$
|
2013-06-14 02:37:33 +00:00
|
|
|
|
2013-07-10 05:54:42 +00:00
|
|
|
# Don't alter timestamps of especially the .a files (or else go will rebuild later)
|
|
|
|
# Actually, don't strip at all since we are not even building debug packages and this corrupts the dwarf testdata
|
|
|
|
%global __strip /bin/true
|
|
|
|
|
2013-09-19 15:51:10 +00:00
|
|
|
# rpmbuild magic to keep from having meta dependency on libc.so.6
|
|
|
|
%define _use_internal_dependency_generator 0
|
|
|
|
%define __find_requires %{nil}
|
|
|
|
%global __spec_install_post /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot \
|
|
|
|
/usr/lib/rpm/brp-compress
|
|
|
|
|
2016-07-19 12:15:19 +00:00
|
|
|
%global golibdir %{_libdir}/golang
|
|
|
|
|
2019-11-26 14:17:56 +00:00
|
|
|
# This macro may not always be defined, ensure it is
|
|
|
|
%{!?gopath: %global gopath %{_datadir}/gocode}
|
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
# Golang build options.
|
|
|
|
|
2016-01-28 12:19:10 +00:00
|
|
|
# Build golang using external/internal(close to cgo disabled) linking.
|
2016-07-19 12:15:19 +00:00
|
|
|
%ifarch %{ix86} x86_64 ppc64le %{arm} aarch64 s390x
|
2015-11-03 15:14:15 +00:00
|
|
|
%global external_linker 1
|
|
|
|
%else
|
|
|
|
%global external_linker 0
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Build golang with cgo enabled/disabled(later equals more or less to internal linking).
|
2016-07-19 12:15:19 +00:00
|
|
|
%ifarch %{ix86} x86_64 ppc64le %{arm} aarch64 s390x
|
2015-11-03 15:14:15 +00:00
|
|
|
%global cgo_enabled 1
|
|
|
|
%else
|
|
|
|
%global cgo_enabled 0
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Use golang/gcc-go as bootstrap compiler
|
2017-10-12 13:52:28 +00:00
|
|
|
%if %{with bootstrap}
|
2017-04-11 14:14:48 +00:00
|
|
|
%global golang_bootstrap 0
|
2017-10-12 13:52:28 +00:00
|
|
|
%else
|
|
|
|
%global golang_bootstrap 1
|
2017-04-12 10:21:29 +00:00
|
|
|
%endif
|
2015-11-03 15:14:15 +00:00
|
|
|
|
2016-01-28 12:19:10 +00:00
|
|
|
# Controls what ever we fail on failed tests
|
2017-10-31 15:04:15 +00:00
|
|
|
%if %{with ignore_tests}
|
2015-11-03 15:14:15 +00:00
|
|
|
%global fail_on_tests 0
|
2017-10-31 15:04:15 +00:00
|
|
|
%else
|
|
|
|
%global fail_on_tests 1
|
2015-11-03 15:14:15 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
# Build golang shared objects for stdlib
|
2016-01-28 12:19:10 +00:00
|
|
|
%ifarch %{ix86} x86_64 ppc64le %{arm} aarch64
|
2015-11-03 15:14:15 +00:00
|
|
|
%global shared 1
|
|
|
|
%else
|
|
|
|
%global shared 0
|
|
|
|
%endif
|
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
# Pre build std lib with -race enabled
|
2023-01-17 17:21:14 +00:00
|
|
|
# Disabled due to 1.20 new cache usage, see 1.20 upstream release notes
|
2017-01-27 11:41:02 +00:00
|
|
|
%global race 0
|
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
# Fedora GOROOT
|
2014-04-10 17:32:57 +00:00
|
|
|
%global goroot /usr/lib/%{name}
|
2015-11-03 15:14:15 +00:00
|
|
|
|
2014-04-10 17:32:57 +00:00
|
|
|
%ifarch x86_64
|
|
|
|
%global gohostarch amd64
|
|
|
|
%endif
|
|
|
|
%ifarch %{ix86}
|
|
|
|
%global gohostarch 386
|
|
|
|
%endif
|
|
|
|
%ifarch %{arm}
|
|
|
|
%global gohostarch arm
|
|
|
|
%endif
|
2015-08-23 19:49:44 +00:00
|
|
|
%ifarch aarch64
|
|
|
|
%global gohostarch arm64
|
|
|
|
%endif
|
2015-11-03 15:14:15 +00:00
|
|
|
%ifarch ppc64
|
|
|
|
%global gohostarch ppc64
|
|
|
|
%endif
|
|
|
|
%ifarch ppc64le
|
|
|
|
%global gohostarch ppc64le
|
|
|
|
%endif
|
2016-07-19 12:15:19 +00:00
|
|
|
%ifarch s390x
|
|
|
|
%global gohostarch s390x
|
|
|
|
%endif
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2022-01-10 16:47:10 +00:00
|
|
|
# Comment out go_prerelease and go_patch as needed
|
2023-06-20 15:54:01 +00:00
|
|
|
%global go_api 1.21
|
2023-08-09 10:42:32 +00:00
|
|
|
#global go_prerelease rc3
|
|
|
|
%global go_patch 0
|
2022-01-10 16:47:10 +00:00
|
|
|
|
|
|
|
%global go_version %{go_api}%{?go_patch:.%{go_patch}}%{?go_prerelease:~%{go_prerelease}}
|
|
|
|
%global go_source %{go_api}%{?go_patch:.%{go_patch}}%{?go_prerelease}
|
2021-11-05 08:44:18 +00:00
|
|
|
|
2013-11-21 14:43:50 +00:00
|
|
|
Name: golang
|
2023-08-09 10:42:32 +00:00
|
|
|
Version: %{go_version}
|
2023-08-09 10:39:49 +00:00
|
|
|
Release: %autorelease
|
2013-11-21 14:43:50 +00:00
|
|
|
Summary: The Go Programming Language
|
2015-11-03 15:14:15 +00:00
|
|
|
# source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain
|
|
|
|
License: BSD and Public Domain
|
2022-01-10 16:47:10 +00:00
|
|
|
URL: https://go.dev
|
|
|
|
Source0: https://go.dev/dl/go%{go_source}.src.tar.gz
|
2017-01-27 11:41:02 +00:00
|
|
|
# make possible to override default traceback level at build time by setting build tag rpm_crashtraceback
|
|
|
|
Source1: fedora.go
|
2015-07-16 18:36:06 +00:00
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
# The compiler is written in Go. Needs go(1.4+) compiler for build.
|
|
|
|
%if !%{golang_bootstrap}
|
|
|
|
BuildRequires: gcc-go >= 5
|
|
|
|
%else
|
2015-07-16 18:36:06 +00:00
|
|
|
BuildRequires: golang > 1.4
|
2015-11-03 15:14:15 +00:00
|
|
|
%endif
|
2015-08-25 19:29:59 +00:00
|
|
|
%if 0%{?rhel} > 6 || 0%{?fedora} > 0
|
2015-08-23 18:58:43 +00:00
|
|
|
BuildRequires: hostname
|
2015-08-25 19:29:59 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: net-tools
|
2015-08-25 18:10:59 +00:00
|
|
|
%endif
|
2015-11-03 15:14:15 +00:00
|
|
|
# for tests
|
2023-06-20 15:54:01 +00:00
|
|
|
BuildRequires: pcre2-devel, glibc-static, perl-interpreter, procps-ng
|
2013-11-21 17:25:57 +00:00
|
|
|
|
2014-02-18 21:56:24 +00:00
|
|
|
Provides: go = %{version}-%{release}
|
2017-12-06 11:22:23 +00:00
|
|
|
|
2021-02-16 14:58:44 +00:00
|
|
|
# Bundled/Vendored provides generated by bundled-deps.sh based on the in tree module data
|
2023-01-17 17:21:14 +00:00
|
|
|
Provides: bundled(golang(github.com/google/pprof)) = 0.0.0.20221118152302.e6195bd50e26
|
2022-06-22 00:41:41 +00:00
|
|
|
Provides: bundled(golang(github.com/ianlancetaylor/demangle)) = 0.0.0.20220319035150.800ac71e25c2
|
2023-08-09 10:42:32 +00:00
|
|
|
Provides: bundled(golang(golang.org/x/arch)) = 0.4.0
|
|
|
|
Provides: bundled(golang(golang.org/x/crypto)) = 0.11.1.0.20230711161743.2e82bdd1719d
|
|
|
|
Provides: bundled(golang(golang.org/x/mod)) = 0.12.0
|
|
|
|
Provides: bundled(golang(golang.org/x/net)) = 0.12.1.0.20230712162946.57553cbff163
|
|
|
|
Provides: bundled(golang(golang.org/x/sync)) = 0.3.0
|
|
|
|
Provides: bundled(golang(golang.org/x/sys)) = 0.10.0
|
|
|
|
Provides: bundled(golang(golang.org/x/term)) = 0.10.0
|
|
|
|
Provides: bundled(golang(golang.org/x/text)) = 0.11.0
|
|
|
|
Provides: bundled(golang(golang.org/x/tools)) = 0.11.1.0.20230712164437.1ca21856af7b
|
2017-12-06 11:22:23 +00:00
|
|
|
|
2016-01-28 12:19:10 +00:00
|
|
|
Requires: %{name}-bin = %{version}-%{release}
|
2015-07-16 18:36:06 +00:00
|
|
|
Requires: %{name}-src = %{version}-%{release}
|
2023-06-16 10:25:44 +00:00
|
|
|
Requires: go-filesystem
|
2014-02-18 21:56:24 +00:00
|
|
|
|
2023-08-16 05:09:23 +00:00
|
|
|
Patch1: 0001-Modify-go.env.patch
|
2023-06-20 15:54:01 +00:00
|
|
|
Patch4: 0004-cmd-link-use-gold-on-ARM-ARM64-only-if-gold-is-avail.patch
|
2017-10-31 15:04:15 +00:00
|
|
|
|
2013-11-20 22:32:45 +00:00
|
|
|
# Having documentation separate was broken
|
2013-11-21 14:43:50 +00:00
|
|
|
Obsoletes: %{name}-docs < 1.1-4
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-06-29 02:09:26 +00:00
|
|
|
# RPM can't handle symlink -> dir with subpackages, so merge back
|
2013-11-21 14:43:50 +00:00
|
|
|
Obsoletes: %{name}-data < 1.1.1-4
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2015-03-19 14:12:49 +00:00
|
|
|
# go1.4 deprecates a few packages
|
|
|
|
Obsoletes: %{name}-vim < 1.4
|
|
|
|
Obsoletes: emacs-%{name} < 1.4
|
|
|
|
|
2023-04-15 22:42:27 +00:00
|
|
|
# We stopped building the golang-race subpackage, so we need to to maintain the
|
|
|
|
# update path.
|
|
|
|
Obsoletes: golang-race < 1.20~rc3-2
|
|
|
|
|
2014-04-10 17:32:57 +00:00
|
|
|
# These are the only RHEL/Fedora architectures that we compile this package for
|
2017-04-12 10:21:29 +00:00
|
|
|
ExclusiveArch: %{golang_arches}
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-11-21 14:43:50 +00:00
|
|
|
Source100: golang-gdbinit
|
2013-07-05 03:47:27 +00:00
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
%description
|
2013-05-24 01:22:57 +00:00
|
|
|
%{summary}.
|
|
|
|
|
2015-07-16 18:36:06 +00:00
|
|
|
%package docs
|
|
|
|
Summary: Golang compiler docs
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
Obsoletes: %{name}-docs < 1.1-4
|
|
|
|
|
|
|
|
%description docs
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%package misc
|
|
|
|
Summary: Golang compiler miscellaneous sources
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description misc
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%package tests
|
|
|
|
Summary: Golang compiler tests for stdlib
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description tests
|
|
|
|
%{summary}.
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2014-04-10 17:32:57 +00:00
|
|
|
%package src
|
|
|
|
Summary: Golang compiler source tree
|
2014-08-11 15:28:01 +00:00
|
|
|
BuildArch: noarch
|
2014-04-10 17:32:57 +00:00
|
|
|
%description src
|
|
|
|
%{summary}
|
|
|
|
|
2015-07-16 18:36:06 +00:00
|
|
|
%package bin
|
|
|
|
Summary: Golang core compiler tools
|
2019-11-26 14:17:56 +00:00
|
|
|
# Some distributions refer to this package by this name
|
|
|
|
Provides: %{name}-go = %{version}-%{release}
|
2014-04-10 17:32:57 +00:00
|
|
|
Requires: go = %{version}-%{release}
|
2015-07-16 18:36:06 +00:00
|
|
|
# Pre-go1.5, all arches had to be bootstrapped individually, before usable, and
|
|
|
|
# env variables to compile for the target os-arch.
|
|
|
|
# Now the host compiler needs only the GOOS and GOARCH environment variables
|
|
|
|
# set to compile for the target os-arch.
|
|
|
|
Obsoletes: %{name}-pkg-bin-linux-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-bin-linux-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-bin-linux-arm < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-linux-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-linux-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-linux-arm < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-darwin-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-darwin-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-windows-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-windows-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-plan9-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-plan9-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-freebsd-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-freebsd-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-freebsd-arm < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-netbsd-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-netbsd-amd64 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-netbsd-arm < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-openbsd-386 < 1.4.99
|
|
|
|
Obsoletes: %{name}-pkg-openbsd-amd64 < 1.4.99
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2016-08-08 08:38:08 +00:00
|
|
|
Obsoletes: golang-vet < 0-12.1
|
|
|
|
Obsoletes: golang-cover < 0-12.1
|
|
|
|
|
2014-04-10 17:32:57 +00:00
|
|
|
Requires(post): %{_sbindir}/update-alternatives
|
2019-03-08 02:37:10 +00:00
|
|
|
Requires(preun): %{_sbindir}/update-alternatives
|
2014-04-10 17:32:57 +00:00
|
|
|
|
|
|
|
# We strip the meta dependency, but go does require glibc.
|
|
|
|
# This is an odd issue, still looking for a better fix.
|
|
|
|
Requires: glibc
|
2014-07-08 14:52:53 +00:00
|
|
|
Requires: gcc
|
2020-04-18 17:26:06 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
Requires: git, subversion, mercurial
|
|
|
|
%else
|
2019-03-15 08:38:49 +00:00
|
|
|
Recommends: git, subversion, mercurial
|
2020-04-18 17:26:06 +00:00
|
|
|
%endif
|
2015-07-16 18:36:06 +00:00
|
|
|
%description bin
|
2014-04-10 17:32:57 +00:00
|
|
|
%{summary}
|
|
|
|
|
2013-06-17 04:29:13 +00:00
|
|
|
# Workaround old RPM bug of symlink-replaced-with-dir failure
|
2013-06-19 14:45:00 +00:00
|
|
|
%pretrans -p <lua>
|
2013-07-05 03:47:27 +00:00
|
|
|
for _,d in pairs({"api", "doc", "include", "lib", "src"}) do
|
2014-04-10 17:32:57 +00:00
|
|
|
path = "%{goroot}/" .. d
|
2013-07-05 03:47:27 +00:00
|
|
|
if posix.stat(path, "type") == "link" then
|
|
|
|
os.remove(path)
|
|
|
|
posix.mkdir(path)
|
|
|
|
end
|
2013-06-19 14:45:00 +00:00
|
|
|
end
|
2013-06-17 04:29:13 +00:00
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
%if %{shared}
|
2015-08-27 21:29:16 +00:00
|
|
|
%package shared
|
|
|
|
Summary: Golang shared object libraries
|
|
|
|
|
|
|
|
%description shared
|
|
|
|
%{summary}.
|
|
|
|
%endif
|
2013-06-17 04:29:13 +00:00
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
%if %{race}
|
|
|
|
%package race
|
|
|
|
Summary: Golang std library with -race enabled
|
|
|
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description race
|
|
|
|
%{summary}
|
|
|
|
%endif
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
%prep
|
2019-11-26 14:17:56 +00:00
|
|
|
%autosetup -p1 -n go
|
2017-10-31 15:04:15 +00:00
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
cp %{SOURCE1} ./src/runtime/
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
%build
|
2016-01-14 14:13:23 +00:00
|
|
|
# print out system information
|
|
|
|
uname -a
|
|
|
|
cat /proc/cpuinfo
|
|
|
|
cat /proc/meminfo
|
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
# bootstrap compiler GOROOT
|
|
|
|
%if !%{golang_bootstrap}
|
|
|
|
export GOROOT_BOOTSTRAP=/
|
|
|
|
%else
|
2015-07-16 18:36:06 +00:00
|
|
|
export GOROOT_BOOTSTRAP=%{goroot}
|
2015-11-03 15:14:15 +00:00
|
|
|
%endif
|
2015-07-16 18:36:06 +00:00
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
# set up final install location
|
2014-04-10 17:32:57 +00:00
|
|
|
export GOROOT_FINAL=%{goroot}
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2014-04-10 17:32:57 +00:00
|
|
|
export GOHOSTOS=linux
|
|
|
|
export GOHOSTARCH=%{gohostarch}
|
|
|
|
|
|
|
|
pushd src
|
2015-07-16 18:36:06 +00:00
|
|
|
# use our gcc options for this build, but store gcc as default for compiler
|
2015-11-03 15:14:15 +00:00
|
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
export LDFLAGS="$RPM_LD_FLAGS"
|
|
|
|
export CC="gcc"
|
|
|
|
export CC_FOR_TARGET="gcc"
|
|
|
|
export GOOS=linux
|
|
|
|
export GOARCH=%{gohostarch}
|
|
|
|
%if !%{external_linker}
|
|
|
|
export GO_LDFLAGS="-linkmode internal"
|
|
|
|
%endif
|
|
|
|
%if !%{cgo_enabled}
|
|
|
|
export CGO_ENABLED=0
|
|
|
|
%endif
|
2018-01-03 12:22:17 +00:00
|
|
|
./make.bash --no-clean -v
|
2014-04-10 17:32:57 +00:00
|
|
|
popd
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
# build shared std lib
|
|
|
|
%if %{shared}
|
2017-12-06 11:22:23 +00:00
|
|
|
GOROOT=$(pwd) PATH=$(pwd)/bin:$PATH go install -buildmode=shared -v -x std
|
2015-08-27 21:29:16 +00:00
|
|
|
%endif
|
2015-08-25 17:50:08 +00:00
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
%if %{race}
|
2018-01-03 12:22:17 +00:00
|
|
|
GOROOT=$(pwd) PATH=$(pwd)/bin:$PATH go install -race -v -x std
|
2017-01-27 11:41:02 +00:00
|
|
|
%endif
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
%install
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 1 =="
|
2013-05-24 01:22:57 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2018-08-23 09:20:46 +00:00
|
|
|
# remove GC build cache
|
|
|
|
rm -rf pkg/obj/go-build/*
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
# create the top level directories
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
2014-04-10 17:32:57 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{goroot}
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# install everything into libdir (until symlink problems are fixed)
|
|
|
|
# https://code.google.com/p/go/issues/detail?id=5830
|
2021-08-09 17:44:16 +00:00
|
|
|
cp -apv api bin doc lib pkg src misc test VERSION \
|
2014-04-10 17:32:57 +00:00
|
|
|
$RPM_BUILD_ROOT%{goroot}
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 2 =="
|
2014-08-11 14:41:34 +00:00
|
|
|
# bz1099206
|
|
|
|
find $RPM_BUILD_ROOT%{goroot}/src -exec touch -r $RPM_BUILD_ROOT%{goroot}/VERSION "{}" \;
|
2014-08-13 19:25:50 +00:00
|
|
|
# and level out all the built archives
|
|
|
|
touch $RPM_BUILD_ROOT%{goroot}/pkg
|
|
|
|
find $RPM_BUILD_ROOT%{goroot}/pkg -exec touch -r $RPM_BUILD_ROOT%{goroot}/pkg "{}" \;
|
|
|
|
# generate the spec file ownership of this source tree and packages
|
|
|
|
cwd=$(pwd)
|
|
|
|
src_list=$cwd/go-src.list
|
2015-07-16 18:36:06 +00:00
|
|
|
pkg_list=$cwd/go-pkg.list
|
2015-08-27 21:29:16 +00:00
|
|
|
shared_list=$cwd/go-shared.list
|
2017-01-27 11:41:02 +00:00
|
|
|
race_list=$cwd/go-race.list
|
2015-07-16 18:36:06 +00:00
|
|
|
misc_list=$cwd/go-misc.list
|
|
|
|
docs_list=$cwd/go-docs.list
|
|
|
|
tests_list=$cwd/go-tests.list
|
2017-01-27 11:41:02 +00:00
|
|
|
rm -f $src_list $pkg_list $docs_list $misc_list $tests_list $shared_list $race_list
|
|
|
|
touch $src_list $pkg_list $docs_list $misc_list $tests_list $shared_list $race_list
|
2014-08-13 19:25:50 +00:00
|
|
|
pushd $RPM_BUILD_ROOT%{goroot}
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 3 =="
|
2016-01-28 12:19:10 +00:00
|
|
|
find src/ -type d -a \( ! -name testdata -a ! -ipath '*/testdata/*' \) -printf '%%%dir %{goroot}/%p\n' >> $src_list
|
2017-04-11 08:41:35 +00:00
|
|
|
find src/ ! -type d -a \( ! -ipath '*/testdata/*' -a ! -name '*_test.go' \) -printf '%{goroot}/%p\n' >> $src_list
|
2015-07-16 18:36:06 +00:00
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
find bin/ pkg/ -type d -a ! -path '*_dynlink/*' -a ! -path '*_race/*' -printf '%%%dir %{goroot}/%p\n' >> $pkg_list
|
|
|
|
find bin/ pkg/ ! -type d -a ! -path '*_dynlink/*' -a ! -path '*_race/*' -printf '%{goroot}/%p\n' >> $pkg_list
|
2015-07-16 18:36:06 +00:00
|
|
|
|
2016-01-28 12:19:10 +00:00
|
|
|
find doc/ -type d -printf '%%%dir %{goroot}/%p\n' >> $docs_list
|
|
|
|
find doc/ ! -type d -printf '%{goroot}/%p\n' >> $docs_list
|
2015-07-16 18:36:06 +00:00
|
|
|
|
2016-01-28 12:19:10 +00:00
|
|
|
find misc/ -type d -printf '%%%dir %{goroot}/%p\n' >> $misc_list
|
|
|
|
find misc/ ! -type d -printf '%{goroot}/%p\n' >> $misc_list
|
2015-07-16 18:36:06 +00:00
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
%if %{shared}
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 4 =="
|
2016-07-19 12:15:19 +00:00
|
|
|
mkdir -p %{buildroot}/%{_libdir}/
|
|
|
|
mkdir -p %{buildroot}/%{golibdir}/
|
|
|
|
for file in $(find . -iname "*.so" ); do
|
|
|
|
chmod 755 $file
|
|
|
|
mv $file %{buildroot}/%{golibdir}
|
|
|
|
pushd $(dirname $file)
|
|
|
|
ln -fs %{golibdir}/$(basename $file) $(basename $file)
|
|
|
|
popd
|
|
|
|
echo "%%{goroot}/$file" >> $shared_list
|
|
|
|
echo "%%{golibdir}/$(basename $file)" >> $shared_list
|
|
|
|
done
|
|
|
|
|
2019-01-11 12:29:52 +00:00
|
|
|
find pkg/*_dynlink/ -type d -printf '%%%dir %{goroot}/%p\n' >> $shared_list
|
|
|
|
find pkg/*_dynlink/ ! -type d -printf '%{goroot}/%p\n' >> $shared_list
|
2015-08-27 21:29:16 +00:00
|
|
|
%endif
|
|
|
|
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 5 =="
|
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
%if %{race}
|
|
|
|
find pkg/*_race/ -type d -printf '%%%dir %{goroot}/%p\n' >> $race_list
|
|
|
|
find pkg/*_race/ ! -type d -printf '%{goroot}/%p\n' >> $race_list
|
|
|
|
%endif
|
2016-01-28 12:19:10 +00:00
|
|
|
find test/ -type d -printf '%%%dir %{goroot}/%p\n' >> $tests_list
|
|
|
|
find test/ ! -type d -printf '%{goroot}/%p\n' >> $tests_list
|
|
|
|
find src/ -type d -a \( -name testdata -o -ipath '*/testdata/*' \) -printf '%%%dir %{goroot}/%p\n' >> $tests_list
|
2017-04-11 08:41:35 +00:00
|
|
|
find src/ ! -type d -a \( -ipath '*/testdata/*' -o -name '*_test.go' \) -printf '%{goroot}/%p\n' >> $tests_list
|
2016-01-28 12:19:10 +00:00
|
|
|
# this is only the zoneinfo.zip
|
|
|
|
find lib/ -type d -printf '%%%dir %{goroot}/%p\n' >> $tests_list
|
|
|
|
find lib/ ! -type d -printf '%{goroot}/%p\n' >> $tests_list
|
2014-08-13 19:25:50 +00:00
|
|
|
popd
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 6 =="
|
2013-05-24 01:22:57 +00:00
|
|
|
# remove the doc Makefile
|
2014-04-10 17:32:57 +00:00
|
|
|
rm -rfv $RPM_BUILD_ROOT%{goroot}/doc/Makefile
|
|
|
|
|
|
|
|
# put binaries to bindir, linked to the arch we're building,
|
2016-01-28 12:19:10 +00:00
|
|
|
# leave the arch independent pieces in {goroot}
|
2014-04-10 17:32:57 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{goroot}/bin/linux_%{gohostarch}
|
2015-07-16 18:36:06 +00:00
|
|
|
ln -sf %{goroot}/bin/go $RPM_BUILD_ROOT%{goroot}/bin/linux_%{gohostarch}/go
|
|
|
|
ln -sf %{goroot}/bin/gofmt $RPM_BUILD_ROOT%{goroot}/bin/linux_%{gohostarch}/gofmt
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2014-04-10 21:06:19 +00:00
|
|
|
# ensure these exist and are owned
|
2015-08-25 18:03:03 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/github.com
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/bitbucket.org
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/code.google.com/p
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{gopath}/src/golang.org/x
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== 7 =="
|
2014-05-20 17:13:02 +00:00
|
|
|
# make sure these files exist and point to alternatives
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_bindir}/go
|
|
|
|
ln -sf /etc/alternatives/go $RPM_BUILD_ROOT%{_bindir}/go
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_bindir}/gofmt
|
|
|
|
ln -sf /etc/alternatives/gofmt $RPM_BUILD_ROOT%{_bindir}/gofmt
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# gdbinit
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdbinit.d
|
2014-07-15 16:01:12 +00:00
|
|
|
cp -av %{SOURCE100} $RPM_BUILD_ROOT%{_sysconfdir}/gdbinit.d/golang.gdb
|
2013-06-17 04:29:13 +00:00
|
|
|
|
2021-08-09 17:44:16 +00:00
|
|
|
echo "== END OF INSTALL =="
|
|
|
|
|
2014-08-13 19:25:50 +00:00
|
|
|
%check
|
|
|
|
export GOROOT=$(pwd -P)
|
2015-07-16 18:36:06 +00:00
|
|
|
export PATH="$GOROOT"/bin:"$PATH"
|
2014-08-13 19:25:50 +00:00
|
|
|
cd src
|
2015-11-03 15:14:15 +00:00
|
|
|
|
|
|
|
export CC="gcc"
|
|
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
export LDFLAGS="$RPM_LD_FLAGS"
|
|
|
|
%if !%{external_linker}
|
|
|
|
export GO_LDFLAGS="-linkmode internal"
|
|
|
|
%endif
|
|
|
|
%if !%{cgo_enabled} || !%{external_linker}
|
|
|
|
export CGO_ENABLED=0
|
|
|
|
%endif
|
2020-07-02 19:35:44 +00:00
|
|
|
# workaround for https://github.com/golang/go/issues/39466 until it gests fixed
|
2021-02-01 12:49:42 +00:00
|
|
|
# Commented until the patch is ready, this workaround suggested in the link above
|
2020-07-06 11:52:40 +00:00
|
|
|
# doesn't work properly
|
2020-07-27 08:26:48 +00:00
|
|
|
#ifarch aarch64
|
2020-07-06 11:52:40 +00:00
|
|
|
#export CGO_CFLAGS="-mno-outline-atomics"
|
2020-07-27 08:26:48 +00:00
|
|
|
#endif
|
2016-01-28 12:19:10 +00:00
|
|
|
|
|
|
|
# make sure to not timeout
|
|
|
|
export GO_TEST_TIMEOUT_SCALE=2
|
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
%if %{fail_on_tests}
|
|
|
|
./run.bash --no-rebuild -v -v -v -k
|
|
|
|
%else
|
|
|
|
./run.bash --no-rebuild -v -v -v -k || :
|
|
|
|
%endif
|
2015-07-16 18:36:06 +00:00
|
|
|
cd ..
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2014-08-13 19:25:50 +00:00
|
|
|
|
2015-07-16 18:36:06 +00:00
|
|
|
%post bin
|
2014-04-10 17:32:57 +00:00
|
|
|
%{_sbindir}/update-alternatives --install %{_bindir}/go \
|
2016-01-28 12:19:10 +00:00
|
|
|
go %{goroot}/bin/go 90 \
|
|
|
|
--slave %{_bindir}/gofmt gofmt %{goroot}/bin/gofmt
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2015-07-16 18:36:06 +00:00
|
|
|
%preun bin
|
2014-04-10 17:32:57 +00:00
|
|
|
if [ $1 = 0 ]; then
|
2016-01-28 12:19:10 +00:00
|
|
|
%{_sbindir}/update-alternatives --remove go %{goroot}/bin/go
|
2014-04-10 17:32:57 +00:00
|
|
|
fi
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2014-05-19 20:39:22 +00:00
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
%files
|
2019-11-26 14:17:56 +00:00
|
|
|
%license LICENSE PATENTS
|
2014-07-08 14:52:53 +00:00
|
|
|
# VERSION has to be present in the GOROOT, for `go install std` to work
|
|
|
|
%doc %{goroot}/VERSION
|
2015-07-16 18:36:06 +00:00
|
|
|
%dir %{goroot}/doc
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# go files
|
2014-04-10 21:06:19 +00:00
|
|
|
%dir %{goroot}
|
2019-11-26 14:17:56 +00:00
|
|
|
%{goroot}/api/
|
|
|
|
%{goroot}/lib/time/
|
2013-07-05 03:47:27 +00:00
|
|
|
|
2014-04-10 21:06:19 +00:00
|
|
|
# ensure directory ownership, so they are cleaned up if empty
|
|
|
|
%dir %{gopath}
|
|
|
|
%dir %{gopath}/src
|
|
|
|
%dir %{gopath}/src/github.com/
|
|
|
|
%dir %{gopath}/src/bitbucket.org/
|
|
|
|
%dir %{gopath}/src/code.google.com/
|
|
|
|
%dir %{gopath}/src/code.google.com/p/
|
2015-08-25 18:03:03 +00:00
|
|
|
%dir %{gopath}/src/golang.org
|
|
|
|
%dir %{gopath}/src/golang.org/x
|
2014-04-10 21:06:19 +00:00
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# gdbinit (for gdb debugging)
|
|
|
|
%{_sysconfdir}/gdbinit.d
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2019-11-26 14:17:56 +00:00
|
|
|
%files src -f go-src.list
|
2014-11-04 15:52:19 +00:00
|
|
|
|
2019-11-26 14:17:56 +00:00
|
|
|
%files docs -f go-docs.list
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2019-11-26 14:17:56 +00:00
|
|
|
%files misc -f go-misc.list
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2019-11-26 14:17:56 +00:00
|
|
|
%files tests -f go-tests.list
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2019-11-26 14:17:56 +00:00
|
|
|
%files bin -f go-pkg.list
|
2014-05-21 16:50:07 +00:00
|
|
|
%{_bindir}/go
|
|
|
|
%{_bindir}/gofmt
|
2019-11-26 14:17:56 +00:00
|
|
|
%{goroot}/bin/linux_%{gohostarch}/go
|
|
|
|
%{goroot}/bin/linux_%{gohostarch}/gofmt
|
2014-04-10 17:32:57 +00:00
|
|
|
|
2015-11-03 15:14:15 +00:00
|
|
|
%if %{shared}
|
2019-11-26 14:17:56 +00:00
|
|
|
%files shared -f go-shared.list
|
2015-08-27 21:29:16 +00:00
|
|
|
%endif
|
2013-09-19 15:51:10 +00:00
|
|
|
|
2017-01-27 11:41:02 +00:00
|
|
|
%if %{race}
|
2019-11-26 14:17:56 +00:00
|
|
|
%files race -f go-race.list
|
2017-01-27 11:41:02 +00:00
|
|
|
%endif
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
%changelog
|
2023-08-09 10:39:49 +00:00
|
|
|
%autochangelog
|