Compare commits

...

2 Commits

Author SHA1 Message Date
c588b8c65a Add GO111MODULE=off 2021-12-14 16:36:46 +00:00
a47b065139 CentOS fixes 2021-12-14 15:52:49 +00:00

View File

@ -1,5 +1,5 @@
%global with_bundled 1 %global with_bundled 1
%global with_debug 1 %global with_debug 0
%if 0%{?with_debug} %if 0%{?with_debug}
%global _find_debuginfo_dwz_opts %{nil} %global _find_debuginfo_dwz_opts %{nil}
@ -8,12 +8,7 @@
%global debug_package %{nil} %global debug_package %{nil}
%endif %endif
%if 0%{?rhel} > 7 && ! 0%{?fedora}
%define gobuild(o:) \
scl enable go-toolset-1.10 -- go build -buildmode pie -compiler gc -tags=rpm_crashtraceback -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**};
%else
%define gobuild(o:) go build -buildmode pie -compiler gc -tags=rpm_crashtraceback -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**}; %define gobuild(o:) go build -buildmode pie -compiler gc -tags=rpm_crashtraceback -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**};
%endif # distro
%global provider github %global provider github
%global provider_tld com %global provider_tld com
@ -27,18 +22,15 @@ scl enable go-toolset-1.10 -- go build -buildmode pie -compiler gc -tags=rpm_cra
Name: golang-%{provider}-%{project}-%{repo} Name: golang-%{provider}-%{project}-%{repo}
Version: 1.0.7 Version: 1.0.7
Release: 11%{?dist} Release: 13%{?dist}
Summary: Process markdown into manpages Summary: Process markdown into manpages
License: MIT License: MIT
URL: https://%{import_path} URL: https://%{import_path}
Source0: https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz Source0: https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
# e.g. el6 has ppc64 arch without gcc-go, so EA tag is required # e.g. el6 has ppc64 arch without gcc-go, so EA tag is required
#ExclusiveArch: %%{?go_arches:%%{go_arches}}%%{!?go_arches:%%{ix86} x86_64 %%{arm}} #ExclusiveArch: %%{?go_arches:%%{go_arches}}%%{!?go_arches:%%{ix86} x86_64 %%{arm}}
ExclusiveArch: aarch64 x86_64 ppc64le s390x ExclusiveArch: aarch64 x86_64 ppc64le s390x %{arm} %{ix86}
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
%if 0%{?rhel} > 7
BuildRequires: go-toolset-1.10-golang
%endif # rhel8
BuildRequires: git BuildRequires: git
Provides: %{repo} = %{version}-%{release} Provides: %{repo} = %{version}-%{release}
@ -59,7 +51,7 @@ ln -s vendor src
mkdir -p src/%{provider}.%{provider_tld}/%{project} mkdir -p src/%{provider}.%{provider_tld}/%{project}
ln -s $(pwd) src/%{import_path} ln -s $(pwd) src/%{import_path}
export GOPATH=$(pwd) export GOPATH=$(pwd)
GOPATH=$GOPATH %gobuild -o bin/go-md2man %{import_path} GOPATH=$GOPATH GO111MODULE=off %gobuild -o bin/go-md2man %{import_path}
%install %install
# install go-md2man binary # install go-md2man binary
@ -82,6 +74,9 @@ install -p -m 644 go-md2man.1 %{buildroot}%{_mandir}/man1
%{_mandir}/man1/* %{_mandir}/man1/*
%changelog %changelog
* Wed Nov 20 2019 bstinson@centosproject.org - 1.0.7-13
- Build on i686
* Mon Aug 06 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.0.7-11 * Mon Aug 06 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.0.7-11
- disable i686 temporarily - disable i686 temporarily