Ignition 2.5.0

Co-authored-by: Ben Howard <ben.howard@redhat.com>
This commit is contained in:
Benjamin Gilbert 2020-07-23 22:05:36 -04:00
parent 64396e2988
commit b66caa20db
4 changed files with 14 additions and 33 deletions

1
.gitignore vendored
View File

@ -46,3 +46,4 @@
/ignition-dracut-e75fef0.tar.gz /ignition-dracut-e75fef0.tar.gz
/ignition-5260a5b.tar.gz /ignition-5260a5b.tar.gz
/ignition-dracut-6b1d128.tar.gz /ignition-dracut-6b1d128.tar.gz
/ignition-0d6f3e5.tar.gz

View File

@ -1,3 +0,0 @@
#!/bin/bash
set -xeuo pipefail
rpmspec -P ignition.spec | grep 'Source1:' | tr -s ' ' | cut -d ' ' -f 2 | xargs curl -LO

View File

@ -49,7 +49,7 @@
# https://github.com/coreos/ignition # https://github.com/coreos/ignition
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
%global import_path %{provider_prefix}/v2 %global import_path %{provider_prefix}/v2
%global commit 5260a5b355e287bbd4f4830d7c13ccbb87bd48b3 %global commit 0d6f3e5e859821134cd04fcaf47c2488c25aff0d
%global shortcommit %(c=%{commit}; echo ${c:0:7}) %global shortcommit %(c=%{commit}; echo ${c:0:7})
# define ldflags, buildflags, testflags here. The ldflags were # define ldflags, buildflags, testflags here. The ldflags were
# taken from ./build. We will need to periodically check these # taken from ./build. We will need to periodically check these
@ -57,28 +57,15 @@
%global ldflags ' -X github.com/coreos/ignition/v2/internal/version.Raw=%{version} ' %global ldflags ' -X github.com/coreos/ignition/v2/internal/version.Raw=%{version} '
%global buildflags %nil %global buildflags %nil
%global testflags %nil %global testflags %nil
%global dracutlibdir %{_prefix}/lib/dracut
# macros for ignition-dracut
%global dracutlibdir %{_prefix}/lib/dracut
%global dracutprovider github
%global dracutprovider_tld com
%global dracutproject coreos
%global dracutrepo ignition-dracut
# https://github.com/coreos/ignition-dracut spec2x branch
%global dracutprovider_prefix %{dracutprovider}.%{dracutprovider_tld}/%{dracutproject}/%{dracutrepo}
%global dracutimport_path %{dracutprovider_prefix}
%global dracutcommit 6b1d128c6ba2d77825d214ada238a4826e420d40
%global dracutshortcommit %(c=%{dracutcommit}; echo ${c:0:7})
Name: ignition Name: ignition
Version: 2.4.1 Version: 2.5.0
Release: 1.git%{shortcommit}%{?dist} Release: 1.git%{shortcommit}%{?dist}
Summary: First boot installer and configuration tool Summary: First boot installer and configuration tool
License: ASL 2.0 and BSD License: ASL 2.0
URL: https://%{provider_prefix} URL: https://%{provider_prefix}
Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
Source1: https://%{dracutprovider_prefix}/archive/%{dracutcommit}/%{dracutrepo}-%{dracutshortcommit}.tar.gz
%define gopath %{_datadir}/gocode %define gopath %{_datadir}/gocode
ExcludeArch: ppc64 ExcludeArch: ppc64
@ -443,11 +430,6 @@ Ignition project's Github releases page.
# unpack source0 and apply patches # unpack source0 and apply patches
%setup -T -b 0 -q -n %{repo}-%{commit} %setup -T -b 0 -q -n %{repo}-%{commit}
# unpack source1 (dracut modules)
%setup -T -D -a 1 -q -n %{repo}-%{commit}
cd %{dracutrepo}-%{dracutcommit}
mv LICENSE ../LICENSE.dracut
%build %build
# Set up PWD as a proper import path for go # Set up PWD as a proper import path for go
mkdir -p src/%{provider}.%{provider_tld}/%{project} mkdir -p src/%{provider}.%{provider_tld}/%{project}
@ -482,13 +464,11 @@ export GOARCH=
export GOOS=linux export GOOS=linux
%install %install
# ignition-dracut # dracut modules
install -d -p %{buildroot}/%{dracutlibdir}/modules.d install -d -p %{buildroot}/%{dracutlibdir}/modules.d
install -d -p %{buildroot}/%{_prefix}/lib/systemd/system install -d -p %{buildroot}/%{_prefix}/lib/systemd/system
pushd %{dracutrepo}-%{dracutcommit} >/dev/null
cp -r dracut/* %{buildroot}/%{dracutlibdir}/modules.d/ cp -r dracut/* %{buildroot}/%{dracutlibdir}/modules.d/
install -m 0644 -t %{buildroot}/%{_prefix}/lib/systemd/system/ systemd/* install -m 0644 -t %{buildroot}/%{_prefix}/lib/systemd/system/ systemd/*
popd >/dev/null
# ignition # ignition
install -d -p %{buildroot}%{_bindir} install -d -p %{buildroot}%{_bindir}
@ -576,7 +556,7 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
%{!?_licensedir:%global license %doc} %{!?_licensedir:%global license %doc}
%files %files
%license LICENSE LICENSE.dracut %license LICENSE
%doc README.md doc/ %doc README.md doc/
%{dracutlibdir}/modules.d/* %{dracutlibdir}/modules.d/*
%{_prefix}/lib/systemd/system/*.service %{_prefix}/lib/systemd/system/*.service
@ -606,6 +586,10 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
%endif %endif
%changelog %changelog
* Thu Jul 23 2020 Benjamin Gilbert <bgilbert@redhat.com> - 2.5.0-1.git0d6f3e5
- New release
- Ship support code from Ignition tarball instead of ignition-dracut
* Thu Jul 16 2020 Benjamin Gilbert <bgilbert@redhat.com> - 2.4.1-1.git5260a5b * Thu Jul 16 2020 Benjamin Gilbert <bgilbert@redhat.com> - 2.4.1-1.git5260a5b
- New release - New release
- Bump ignition-dracut to fix warning in udev rule - Bump ignition-dracut to fix warning in udev rule

View File

@ -1,2 +1 @@
SHA512 (ignition-5260a5b.tar.gz) = 6e3491fa1a95f1356bec7a04d5d41a4e92416a8776122ae863c152e2297e8ba6519eea6da253dfae37c54d62ae217d74084bd9214a58ed1b4a19fd221a9fbfa9 SHA512 (ignition-0d6f3e5.tar.gz) = 63bdb02ad34bf1826fd12c1cc93122b603df67a5d168a0f443b4d091b468bbb66dc8f8d920666b5d89d89adbb7e40a716acf367da7b2e81bea6c1aeaa795ef00
SHA512 (ignition-dracut-6b1d128.tar.gz) = 23eb67a8cb03168dca3f21a8a4e16fc1e735bc8d9291ab9a02790d78da41109c6ec68cb4714b56086da9cd7b771aa2899dd85b73948a44b294362e5f497ce877