# If any of the following macros should be set otherwise, # you can wrap any of them with the following conditions: # - %%if 0%%{centos} == 7 # - %%if 0%%{?rhel} == 7 # - %%if 0%%{?fedora} == 23 # Or just test for particular distribution: # - %%if 0%%{centos} # - %%if 0%%{?rhel} # - %%if 0%%{?fedora} # # Be aware, on centos, both %%rhel and %%centos are set. If you want to test # rhel specific macros, you can use %%if 0%%{?rhel} && 0%%{?centos} == 0 condition. # (Don't forget to replace double percentage symbol with single one in order to apply a condition) # Generate devel rpm %global with_devel 1 # Build project from bundled dependencies %global with_bundled 0 # Build with debug info rpm %global with_debug 0 # Run tests in check section %global with_check 0 # Generate unit-test rpm %global with_unit_test 1 %if 0%{?with_debug} %global _dwz_low_mem_die_limit 0 %else %global debug_package %{nil} %endif %if ! 0%{?gobuild:1} %define gobuild(o:) go build -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n')" -a -v -x %{?**}; %endif %global provider github %global provider_tld com %global project cpuguy83 %global repo go-md2man # https://github.com/cpuguy83/go-md2man %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} %global import_path %{provider_prefix} %global commit 1d903dcb749992f3741d744c0f8376b4bd7eb3e1 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: golang-%{provider}-%{project}-%{repo} Version: 1.0.7 Release: 1%{?dist} Summary: Process markdown into manpages License: MIT URL: https://%{import_path} Source0: https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz # 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}} # If go_compiler is not set to 1, there is no virtual provide. Use golang instead. BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} %if ! 0%{?with_bundled} BuildRequires: golang(github.com/russross/blackfriday) %endif Provides: %{repo} = %{version}-%{release} %description %{repo} is a golang tool using blackfriday to process markdown into manpages. %if 0%{?with_devel} %package devel Summary: A golang registry for global request variables BuildArch: noarch %if 0%{?with_check} BuildRequires: golang(github.com/russross/blackfriday) %endif Requires: golang(github.com/russross/blackfriday) Provides: golang(%{import_path}/md2man) = %{version}-%{release} %description devel %{repo} is a golang tool using blackfriday to process markdown into manpages. This package contains library source intended for building other packages which use %{project}/%{repo}. %endif %if 0%{?with_unit_test} %package unit-test Summary: Unit tests for %{name} package # If go_compiler is not set to 1, there is no virtual provide. Use golang instead. BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} %if 0%{?with_check} #Here comes all BuildRequires: PACKAGE the unit tests #in %%check section need for running %endif # test subpackage tests code from devel subpackage Requires: %{name}-devel = %{version}-%{release} %description unit-test %{summary} This package contains unit tests for project providing packages with %{import_path} prefix. %endif %prep %setup -q -n %{repo}-%{commit} %build mkdir -p src/github.com/cpuguy83 ln -s ../../../ src/github.com/cpuguy83/go-md2man %if ! 0%{?with_bundled} export GOPATH=$(pwd):%{gopath} %else echo "Unable to build from bundled deps. No Godeps nor vendor directory" exit 1 %endif %gobuild -o bin/go-md2man %{import_path} %install # install go-md2man binary install -d %{buildroot}%{_bindir} install -p -m 755 bin/%{repo} %{buildroot}%{_bindir} # generate man page install -d -p %{buildroot}%{_mandir}/man1 bin/go-md2man -in=go-md2man.1.md -out=go-md2man.1 install -p -m 644 go-md2man.1 %{buildroot}%{_mandir}/man1 # source codes for building projects %if 0%{?with_devel} install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ # find all *.go but no *_test.go files and generate devel.file-list for file in $(find . -iname "*.go" \! -iname "*_test.go") ; do install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file) cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list done for file in $(find . -iname "*.proto") ; do install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file) cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list done %endif # testing files for this project %if 0%{?with_unit_test} install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ # find all *_test.go files and generate unit-test.file-list for file in $(find . -iname "*_test.go"); do install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file) cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file echo "%%{gopath}/src/%%{import_path}/$file" >> unit-test.file-list done %endif %check %if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel} export GOPATH=%{buildroot}/%{gopath}:%{gopath} %if ! 0%{?gotest:1} %define gotest() go test -ldflags "${LDFLAGS:-}" %{?**} %endif %gotest %{import_path}/md2man %endif #define license tag if not already defined %{!?_licensedir:%global license %doc} %files %license LICENSE.md %doc README.md %{_bindir}/%{repo} %{_mandir}/man1/* %if 0%{?with_devel} %files devel -f devel.file-list %license LICENSE.md %doc README.md %dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} %dir %{gopath}/src/%{import_path} %endif %if 0%{?with_unit_test} %files unit-test -f unit-test.file-list %license LICENSE.md %doc README.md %endif %changelog * Tue Sep 19 2017 Jan Chaloupka - 1.0.7-1 - Bump to upstream 1d903dcb749992f3741d744c0f8376b4bd7eb3e1 related: #1222796 * Wed Aug 02 2017 Fedora Release Engineering - 1.0.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 1.0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Tue Mar 14 2017 Jan Chaloupka - 1.0.4-7 - Bump to upstream a65d4d2de4d5f7c74868dfa9b202a3c8be315aaa related: #1222796 * Fri Feb 10 2017 Fedora Release Engineering - 1.0.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Jul 21 2016 Fedora Release Engineering - 1.0.4-5 - https://fedoraproject.org/wiki/Changes/golang1.7 * Sun Mar 06 2016 jchaloup - 1.0.4-4 - Update list of provided packages resolves: #1222796 * Mon Feb 22 2016 Fedora Release Engineering - 1.0.4-3 - https://fedoraproject.org/wiki/Changes/golang1.6 * Wed Feb 03 2016 Fedora Release Engineering - 1.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Mon Dec 14 2015 jchaloup - 1.0.4-1 - Rebase to 1.0.4 resolves: #1291379 * Thu Sep 10 2015 jchaloup - 1-13 - Generate man page as well related: #1222796 * Sun Aug 30 2015 jchaloup - 1-12 - Change deps on compiler(go-compiler) - Update %build, %test and main section accordingaly related: #1222796 * Sat Aug 29 2015 jchaloup - 1-11 - Reduce build section after update of go-srpm-macros - BUILD_ID for debug is needed only for golang compiler related: #1222796 * Tue Aug 25 2015 jchaloup - 1-10 - Provide devel package on rhel7 related: #1222796 * Thu Aug 20 2015 jchaloup - 1-9 - Update spec file to spec-2.0 related: #1222796 * Mon Jul 20 2015 jchaloup - 1-8 - Add with_* macros * Wed Jun 17 2015 Fedora Release Engineering - 1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Tue May 19 2015 jchaloup - 1-6 - Remove runtime deps of devel on golang - Polish spec file related: #1222796 * Sun May 17 2015 jchaloup - 1-5 - Add debug info - Add license - Update spec file to build on secondary architectures as well related: #1222796 * Wed Feb 25 2015 jchaloup - 1-4 - Bump to upstream 2831f11f66ff4008f10e2cd7ed9a85e3d3fc2bed related: #1156492 * Wed Feb 25 2015 jchaloup - 1-3 - Add commit and shortcommit global variable related: #1156492 * Mon Oct 27 2014 Lokesh Mandvekar - 1-2 - Resolves: rhbz#1156492 - initial fedora upload - quiet setup - no test files, disable check * Thu Sep 11 2014 Lokesh Mandvekar - 1-1 - Initial package