464 lines
22 KiB
RPMSpec
464 lines
22 KiB
RPMSpec
# Original spec file as generated by:
|
|
# gofed repo2spec --detect github.com/coreos/ignition --commit 76107251acd117c6d3e5b4dae2b47f82f944984b --with-extra --with-build -f
|
|
# With:
|
|
# gofed@8f62d8d2dea0a87ef60cad72f72e2d7558c0cb75
|
|
# And:
|
|
# $ git submodule status
|
|
# 33207573a1875bc828da3f863e1de439d7af8166 third_party/cmdsignature (heads/master)
|
|
# 6bff7ae54535689e2ade3d0bd3d33d903a2190b9 third_party/gofed_infra (remotes/origin/WIP-37-g6bff7ae)
|
|
# 7e414c78930a81167dc2cd4d3e9adb79eeed38a6 third_party/gofed_resources (heads/master)
|
|
# ef6ec0e387f3b125308243898435774da6128a4c third_party/gofedlib (0.1.0a1-20-gef6ec0e)
|
|
|
|
|
|
# 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)
|
|
|
|
# Not all devel deps exist in Fedora so you can't install the devel rpm
|
|
# so we need to build without devel for now
|
|
# Generate devel rpm
|
|
%global with_devel 0
|
|
# Build project from bundled dependencies
|
|
%global with_bundled 1
|
|
# Build with debug info rpm
|
|
%global with_debug 1
|
|
# Run tests in check section
|
|
%global with_check 1
|
|
# 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
|
|
|
|
# macros for ignition
|
|
%global provider github
|
|
%global provider_tld com
|
|
%global project coreos
|
|
%global repo ignition
|
|
# https://github.com/coreos/ignition
|
|
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
|
%global import_path %{provider_prefix}
|
|
%global commit 76107251acd117c6d3e5b4dae2b47f82f944984b
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
# define ldflags, buildflags, testflags here. The ldflags were
|
|
# taken from ./build. We will need to periodically check these
|
|
# for consistency
|
|
%global ldflags ' -X github.com/coreos/ignition/internal/version.Raw=%{version} '
|
|
%global buildflags %nil
|
|
%global testflags %nil
|
|
|
|
# macros for ignition-dracut
|
|
%global dracutlibdir %{_prefix}/lib/dracut
|
|
%global dracutprovider github
|
|
%global dracutprovider_tld com
|
|
%global dracutproject dustymabe
|
|
%global dracutrepo ignition-dracut
|
|
# https://github.com/dustymabe/ignition-dracut
|
|
%global dracutprovider_prefix %{dracutprovider}.%{dracutprovider_tld}/%{dracutproject}/%{dracutrepo}
|
|
%global dracutimport_path %{dracutprovider_prefix}
|
|
%global dracutcommit bf3b454db89bcff82d01b472786821bd458d3593
|
|
%global dracutshortcommit %(c=%{dracutcommit}; echo ${c:0:7})
|
|
|
|
|
|
Name: ignition
|
|
Version: 0.26.0
|
|
Release: 0.1.git%{shortcommit}%{?dist}
|
|
Summary: First boot installer and configuration tool
|
|
License: ASL 2.0
|
|
URL: https://%{provider_prefix}
|
|
Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
|
|
Source1: https://%{dracutprovider_prefix}/archive/%{dracutcommit}/%{dracutrepo}-%{dracutshortcommit}.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 aarch64 %{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}
|
|
|
|
# add non golang BuildRequires that weren't detected
|
|
BuildRequires: libblkid-devel
|
|
|
|
# Main rpm package BuildRequires
|
|
%if ! 0%{?with_bundled}
|
|
# validate/main.go
|
|
BuildRequires: golang(github.com/spf13/cobra)
|
|
# Remaining dependencies not included in main packages
|
|
BuildRequires: golang(github.com/coreos/go-systemd/unit)
|
|
BuildRequires: golang(github.com/coreos/go-semver/semver)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)
|
|
BuildRequires: golang(github.com/pin/tftp)
|
|
BuildRequires: golang(github.com/sigma/vmw-guestinfo/vmcheck)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/service/s3/s3manager)
|
|
BuildRequires: golang(github.com/sigma/vmw-guestinfo/rpcvmx)
|
|
BuildRequires: golang(github.com/coreos/go-systemd/dbus)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/awserr)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/session)
|
|
BuildRequires: golang(github.com/vincent-petithory/dataurl)
|
|
BuildRequires: golang(github.com/vmware/vmw-ovflib)
|
|
BuildRequires: golang(github.com/ajeddeloh/go-json)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/credentials)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/ec2metadata)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/service/s3)
|
|
%endif
|
|
|
|
# Main package Provides (generated with parsedeps.go)
|
|
%if 0%{?with_bundled}
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awserr)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awsutil)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client/metadata)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/corehandlers)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/endpointcreds)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/stscreds)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/defaults)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/ec2metadata)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/endpoints)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/request)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/session)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/signer/v4)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/shareddefaults)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query/queryutil)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/rest)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/restxml)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3/s3iface)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3/s3manager)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sts)) = %{version}-c861d27d0304a79f727e9a8a4e2ac1e74602fdc0
|
|
Provides: bundled(golang(github.com/coreos/go-semver/semver)) = %{version}-294930c1e79c64e7dbe360054274fdad492c8cf5
|
|
Provides: bundled(golang(github.com/coreos/go-systemd/dbus)) = %{version}-39ca1b05acc7ad1220e09f133283b8859a8b71ab
|
|
Provides: bundled(golang(github.com/coreos/go-systemd/unit)) = %{version}-39ca1b05acc7ad1220e09f133283b8859a8b71ab
|
|
Provides: bundled(golang(github.com/pin/tftp/netascii)) = %{version}-9ea92f6b1029bc1bf3072bba195c84bb9b0370e3
|
|
Provides: bundled(golang(github.com/sigma/vmw-guestinfo/rpcvmx)) = %{version}-95dd4126d6e8b4ef1970b3f3fe2e8cdd470d2903
|
|
Provides: bundled(golang(github.com/sigma/vmw-guestinfo/vmcheck)) = %{version}-95dd4126d6e8b4ef1970b3f3fe2e8cdd470d2903
|
|
Provides: bundled(golang(github.com/vmware/vmw-guestinfo/bdoor)) = %{version}-25eff159a728be87e103a0b8045e08273f4dbec4
|
|
Provides: bundled(golang(github.com/vmware/vmw-guestinfo/message)) = %{version}-25eff159a728be87e103a0b8045e08273f4dbec4
|
|
Provides: bundled(golang(github.com/vmware/vmw-guestinfo/rpcout)) = %{version}-25eff159a728be87e103a0b8045e08273f4dbec4
|
|
Provides: bundled(golang(go4.org/errorutil)) = %{version}-03efcb870d84809319ea509714dd6d19a1498483
|
|
%endif
|
|
|
|
|
|
%description
|
|
Ignition is a utility used to manipulate systems during the initramfs.
|
|
This includes partitioning disks, formatting partitions, writing files
|
|
(regular files, systemd units, networkd units, etc.), and configuring
|
|
users. On first boot, Ignition reads its configuration from a source
|
|
of truth (remote URL, network metadata service, hypervisor bridge, etc.)
|
|
and applies the configuration.
|
|
|
|
%{summary}
|
|
|
|
############## devel subpackage ##############
|
|
|
|
%if 0%{?with_devel}
|
|
%package devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
# devel subpackage BuildRequires
|
|
%if 0%{?with_check} && ! 0%{?with_bundled}
|
|
# These buildrequires are only for our tests (check)
|
|
BuildRequires: golang(github.com/ajeddeloh/go-json)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/awserr)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/credentials)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/ec2metadata)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/aws/session)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/service/s3)
|
|
BuildRequires: golang(github.com/aws/aws-sdk-go/service/s3/s3manager)
|
|
BuildRequires: golang(github.com/coreos/go-semver/semver)
|
|
BuildRequires: golang(github.com/coreos/go-systemd/dbus)
|
|
BuildRequires: golang(github.com/coreos/go-systemd/unit)
|
|
BuildRequires: golang(github.com/pin/tftp)
|
|
BuildRequires: golang(github.com/sigma/vmw-guestinfo/rpcvmx)
|
|
BuildRequires: golang(github.com/sigma/vmw-guestinfo/vmcheck)
|
|
BuildRequires: golang(github.com/vincent-petithory/dataurl)
|
|
BuildRequires: golang(github.com/vmware/vmw-ovflib)
|
|
%endif
|
|
|
|
# devel subpackage Requires. This is basically the source code from
|
|
# all of the libraries that ignition imports during build.
|
|
Requires: golang(github.com/ajeddeloh/go-json)
|
|
Requires: golang(github.com/aws/aws-sdk-go/aws)
|
|
Requires: golang(github.com/aws/aws-sdk-go/aws/awserr)
|
|
Requires: golang(github.com/aws/aws-sdk-go/aws/credentials)
|
|
Requires: golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)
|
|
Requires: golang(github.com/aws/aws-sdk-go/aws/ec2metadata)
|
|
Requires: golang(github.com/aws/aws-sdk-go/aws/session)
|
|
Requires: golang(github.com/aws/aws-sdk-go/service/s3)
|
|
Requires: golang(github.com/aws/aws-sdk-go/service/s3/s3manager)
|
|
Requires: golang(github.com/coreos/go-semver/semver)
|
|
Requires: golang(github.com/coreos/go-systemd/dbus)
|
|
Requires: golang(github.com/coreos/go-systemd/unit)
|
|
Requires: golang(github.com/pin/tftp)
|
|
Requires: golang(github.com/sigma/vmw-guestinfo/rpcvmx)
|
|
Requires: golang(github.com/sigma/vmw-guestinfo/vmcheck)
|
|
Requires: golang(github.com/vincent-petithory/dataurl)
|
|
Requires: golang(github.com/vmware/vmw-ovflib)
|
|
|
|
# devel subpackage Provides
|
|
Provides: golang(%{import_path}/config/shared) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/shared/errors) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/shared/validations) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/util) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v1) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v1/types) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_0) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_0/types) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_1) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_1/types) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_2) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_2/types) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_3_experimental) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/v2_3_experimental/types) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/validate) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/validate/astjson) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/validate/astnode) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/config/validate/report) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/files) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/filesystems) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/general) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/networkd) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/partitions) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/regression) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/security) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/negative/timeouts) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/files) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/filesystems) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/general) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/networkd) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/oem) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/partitions) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/passwd) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/regression) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/security) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/systemd) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/positive/timeouts) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/register) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/registry) = %{version}-%{release}
|
|
Provides: golang(%{import_path}/tests/types) = %{version}-%{release}
|
|
|
|
%description devel
|
|
%{summary}
|
|
|
|
This package contains library source intended for
|
|
building other packages which use import path with
|
|
%{import_path} prefix.
|
|
%endif
|
|
|
|
############## unit-test-devel subpackage ##############
|
|
%if 0%{?with_unit_test} && 0%{?with_devel}
|
|
%package unit-test-devel
|
|
Summary: Unit tests for %{name} package
|
|
%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}
|
|
|
|
%if 0%{?with_check} && ! 0%{?with_bundled}
|
|
BuildRequires: golang(github.com/stretchr/testify/assert)
|
|
%endif
|
|
|
|
Requires: golang(github.com/stretchr/testify/assert)
|
|
|
|
%description unit-test-devel
|
|
%{summary}
|
|
|
|
This package contains unit tests for project
|
|
providing packages with %{import_path} prefix.
|
|
%endif
|
|
|
|
|
|
############## dracut subpackage ##############
|
|
%package dracut
|
|
|
|
Summary: Dracut modules for ignition
|
|
License: BSD
|
|
URL: https://%{dracutprovider_prefix}
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: dracut
|
|
Requires: dracut-network
|
|
BuildArchitectures: noarch
|
|
|
|
%description dracut
|
|
Dracut modules for ignition to enable ignition services to run in the
|
|
initramfs on boot.
|
|
|
|
%files dracut
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{dracutlibdir}/modules.d/30ignition
|
|
%{dracutlibdir}/modules.d/99journald-conf
|
|
############## end dracut subpackage ##############
|
|
|
|
%prep
|
|
# setup command reference: http://ftp.rpm.org/max-rpm/s1-rpm-inside-macros.html
|
|
# unpack source0 and apply patches
|
|
%setup -T -b 0 -q -n %{repo}-%{commit}
|
|
# unpack source1 (dracut modules)
|
|
%setup -T -D -a 1 -q -n %{repo}-%{commit}
|
|
|
|
%build
|
|
# Set up PWD as a proper import path for go
|
|
mkdir -p src/%{provider}.%{provider_tld}/%{project}
|
|
ln -s ../../../ src/%{import_path}
|
|
|
|
%if ! 0%{?with_bundled}
|
|
export GOPATH=$(pwd):%{gopath}
|
|
%else
|
|
# No dependency directories so far
|
|
export GOPATH=$(pwd):%{gopath}
|
|
%endif
|
|
|
|
export LDFLAGS=%{ldflags}
|
|
# Tell ignition where to find chroot binary
|
|
export LDFLAGS+=' -X github.com/coreos/ignition/internal/distro.chrootCmd=%{_sbindir}/chroot '
|
|
|
|
echo "Building ignition..."
|
|
%gobuild -o ./ignition %{import_path}/internal
|
|
|
|
echo "Building ignition-validate..."
|
|
%gobuild -o ./ignition-validate %{import_path}/validate
|
|
|
|
|
|
%install
|
|
# main package
|
|
install -d -p %{buildroot}%{_bindir}
|
|
install -p -m 0755 ./ignition %{buildroot}%{_bindir}
|
|
install -p -m 0755 ./ignition-validate %{buildroot}%{_bindir}
|
|
# dracut subpackage
|
|
install -d -p %{buildroot}/%{dracutlibdir}/modules.d
|
|
rm %{dracutrepo}-%{dracutcommit}/dracut/README.txt
|
|
cp -r %{dracutrepo}-%{dracutcommit}/dracut/* %{buildroot}/%{dracutlibdir}/modules.d/
|
|
|
|
# source codes for building projects
|
|
%if 0%{?with_devel}
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
|
|
echo "%%dir %%{gopath}/src/%%{import_path}/." >> devel.file-list
|
|
# find all *.go but no *_test.go files and generate devel.file-list
|
|
for file in $(find . \( -iname "*.go" -or -iname "*.s" \) \! -iname "*_test.go" | grep -v "vendor") ; do
|
|
dirprefix=$(dirname $file)
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$dirprefix
|
|
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
|
|
echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list
|
|
|
|
while [ "$dirprefix" != "." ]; do
|
|
echo "%%dir %%{gopath}/src/%%{import_path}/$dirprefix" >> devel.file-list
|
|
dirprefix=$(dirname $dirprefix)
|
|
done
|
|
done
|
|
%endif
|
|
|
|
# testing files for this project
|
|
%if 0%{?with_unit_test} && 0%{?with_devel}
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
|
|
# find all *_test.go files and generate unit-test-devel.file-list
|
|
for file in $(find . -iname "*_test.go" | grep -v "vendor") ; do
|
|
dirprefix=$(dirname $file)
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$dirprefix
|
|
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
|
|
echo "%%{gopath}/src/%%{import_path}/$file" >> unit-test-devel.file-list
|
|
|
|
while [ "$dirprefix" != "." ]; do
|
|
echo "%%dir %%{gopath}/src/%%{import_path}/$dirprefix" >> devel.file-list
|
|
dirprefix=$(dirname $dirprefix)
|
|
done
|
|
done
|
|
%endif
|
|
|
|
%if 0%{?with_devel}
|
|
sort -u -o devel.file-list devel.file-list
|
|
%endif
|
|
|
|
%check
|
|
%if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel}
|
|
%if ! 0%{?with_bundled}
|
|
export GOPATH=%{buildroot}/%{gopath}:%{gopath}
|
|
%else
|
|
# Since we aren't packaging up the vendor directory we need to link
|
|
# back to it somehow. Hack it up so that we can add the vendor
|
|
# directory from BUILD dir as a gopath to be searched when executing
|
|
# tests from the BUILDROOT dir.
|
|
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
|
|
|
|
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
|
|
%endif
|
|
|
|
%if ! 0%{?gotest:1}
|
|
%global gotest go test
|
|
%endif
|
|
|
|
%gotest %{import_path}/config/v1
|
|
%gotest %{import_path}/config/v1/types
|
|
%gotest %{import_path}/config/v2_0
|
|
%gotest %{import_path}/config/v2_0/types
|
|
%gotest %{import_path}/config/v2_1
|
|
%gotest %{import_path}/config/v2_1/types
|
|
%gotest %{import_path}/config/v2_2
|
|
%gotest %{import_path}/config/v2_2/types
|
|
%gotest %{import_path}/config/v2_3_experimental
|
|
%gotest %{import_path}/config/v2_3_experimental/types
|
|
%gotest %{import_path}/config/validate
|
|
%gotest %{import_path}/internal/config
|
|
%gotest %{import_path}/internal/exec/stages/files
|
|
%gotest %{import_path}/internal/exec/util
|
|
%gotest %{import_path}/internal/registry
|
|
%gotest %{import_path}/internal/util
|
|
%gotest %{import_path}/tests
|
|
%endif
|
|
|
|
#define license tag if not already defined
|
|
%{!?_licensedir:%global license %doc}
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc CONTRIBUTING.md code-of-conduct.md README.md doc/
|
|
%{_bindir}/%{name}
|
|
%{_bindir}/%{name}-validate
|
|
|
|
|
|
%if 0%{?with_devel}
|
|
%files devel -f devel.file-list
|
|
%license LICENSE
|
|
%doc CONTRIBUTING.md code-of-conduct.md README.md
|
|
%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
|
|
%endif
|
|
|
|
%if 0%{?with_unit_test} && 0%{?with_devel}
|
|
%files unit-test-devel -f unit-test-devel.file-list
|
|
%license LICENSE
|
|
%doc CONTRIBUTING.md code-of-conduct.md README.md
|
|
%endif
|
|
|
|
%changelog
|
|
* Thu Jun 21 2018 Dusty Mabe <dusty@dustymabe.com> - 0.26.0-0.1.git7610725
|
|
- First package for Fedora
|
|
|