From 87926ca120ccd994f8b2ca6344e8e6a8d7de59c0 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 17 May 2022 05:02:35 -0400 Subject: [PATCH] import butane-0.13.1-1.el9 --- .butane.metadata | 1 + .gitignore | 1 + SPECS/butane.spec | 134 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 136 insertions(+) create mode 100644 .butane.metadata create mode 100644 .gitignore create mode 100644 SPECS/butane.spec diff --git a/.butane.metadata b/.butane.metadata new file mode 100644 index 0000000..4afd3e4 --- /dev/null +++ b/.butane.metadata @@ -0,0 +1 @@ +f5801bebcf83e5514a49fa6198e542d7fbab664e SOURCES/butane-0.13.1.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..93da703 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/butane-0.13.1.tar.gz diff --git a/SPECS/butane.spec b/SPECS/butane.spec new file mode 100644 index 0000000..88d7c51 --- /dev/null +++ b/SPECS/butane.spec @@ -0,0 +1,134 @@ +# Originally generated by go2rpm 1.3 +%if 0%{?fedora} +%bcond_without check +%else +# %%gocheck isn't currently provided on CentOS/RHEL +# https://bugzilla.redhat.com/show_bug.cgi?id=1982298 +%bcond_with check +%endif + +# https://github.com/coreos/butane +%global goipath github.com/coreos/butane +%global gomodulesmode GO111MODULE=on +Version: 0.13.1 + +%gometa + +%global common_description %{expand: +Butane translates human-readable Butane Configs into machine-readable Ignition +configs for provisioning operating systems that use Ignition.} + +%global golicenses LICENSE +%global godocs docs README.md NEWS + +Name: butane +Release: 1%{?dist} +Summary: Butane config transpiler + +# Upstream license specification: Apache-2.0 +License: ASL 2.0 +URL: %{gourl} +Source0: %{gosource} + + +# Generated by go-mods-to-bundled-provides.py +Provides: bundled(golang(github.com/clarketm/json)) = 1.14.1 +Provides: bundled(golang(github.com/coreos/go-semver/semver)) = 0.3.0 +Provides: bundled(golang(github.com/coreos/go-systemd/unit)) = 0.0.0-20190321100706.git95778dfbb74e +Provides: bundled(golang(github.com/coreos/go-systemd/v22/unit)) = 0.0.0-20190321100706.git95778dfbb74e +Provides: bundled(golang(github.com/coreos/ignition/v2/config/merge)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/shared/errors)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/shared/validations)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/util)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/v3_0/types)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/v3_1/types)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/v3_2/types)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/v3_3/types)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/v3_4_experimental/types)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/ignition/v2/config/validate)) = 2.11.0 +Provides: bundled(golang(github.com/coreos/vcontext/json)) = 0.0.0-20210407161507.git4ee6c745c8bd +Provides: bundled(golang(github.com/coreos/vcontext/path)) = 0.0.0-20210407161507.git4ee6c745c8bd +Provides: bundled(golang(github.com/coreos/vcontext/report)) = 0.0.0-20210407161507.git4ee6c745c8bd +Provides: bundled(golang(github.com/coreos/vcontext/tree)) = 0.0.0-20210407161507.git4ee6c745c8bd +Provides: bundled(golang(github.com/coreos/vcontext/validate)) = 0.0.0-20210407161507.git4ee6c745c8bd +Provides: bundled(golang(github.com/coreos/vcontext/yaml)) = 0.0.0-20210407161507.git4ee6c745c8bd +Provides: bundled(golang(github.com/davecgh/go-spew/spew)) = 1.1.1 +Provides: bundled(golang(github.com/spf13/pflag)) = 1.0.6-0.20210604193023.gitd5e0c0615ace +Provides: bundled(golang(github.com/stretchr/testify/assert)) = 1.5.1 +Provides: bundled(golang(github.com/vincent-petithory/dataurl)) = 0.0.0-20160330182126.git9a301d65acbb +Provides: bundled(golang(gopkg.in/yaml.v3)) = 3.0.0-20191010095647.gitfc94e3f71652 + +%description +%{common_description} + +%package redistributable +Summary: Butane for macOS and Windows +License: ASL 2.0 +BuildArch: noarch + +%description redistributable +%{common_description} + +This package contains macOS and Windows Butane binaries built through +cross-compilation. + +%prep +%goprep -k +%autopatch -p1 + +%build +export LDFLAGS="-X github.com/coreos/butane/internal/version.Raw=%{version} $LDFLAGS" +export GOFLAGS="-mod=vendor" + +echo "Building butane..." +%gobuild -o ./butane internal/main.go + +%global gocrossbuild go build -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n')" -a -v -x + +echo "Building macOS Butane..." +GOARCH=amd64 GOOS=darwin %gocrossbuild -o butane-darwin-amd64 internal/main.go + +echo "Building Windows Butane..." +GOARCH=amd64 GOOS=windows %gocrossbuild -o butane-windows-amd64.exe internal/main.go + +%install +install -d -p %{buildroot}%{_bindir} +install -p -m 0755 ./butane %{buildroot}%{_bindir} +install -d -p %{buildroot}%{_datadir}/butane-redistributable +install -p -m 0644 ./butane-darwin-amd64 %{buildroot}%{_datadir}/butane-redistributable +install -p -m 0644 ./butane-windows-amd64.exe %{buildroot}%{_datadir}/butane-redistributable + +%if %{with check} +%check +%gocheck +%endif + +%files +%license %{golicenses} +%doc %{godocs} +%{_bindir}/butane + +%files redistributable +%license %{golicenses} +%dir %{_datadir}/butane-redistributable +%{_datadir}/butane-redistributable/butane-darwin-amd64 +%{_datadir}/butane-redistributable/butane-windows-amd64.exe + +%changelog +* Wed Aug 04 2021 Benjamin Gilbert - 0.13.1-1 +- New release + +* Wed Jul 21 2021 Fedora Release Engineering - 0.13.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jul 14 2021 Benjamin Gilbert - 0.13.0-1 +- New release + +* Thu Jun 10 2021 Benjamin Gilbert - 0.12.1-1 +- New release + +* Tue Jun 08 2021 Sohan Kunkerkar - 0.12.0-1 +- New release + +* Tue Apr 06 2021 Benjamin Gilbert - 0.11.0-1 +- Initial package