diff --git a/.cockpit-composer.metadata b/.cockpit-composer.metadata index 30d72ce..2ace489 100644 --- a/.cockpit-composer.metadata +++ b/.cockpit-composer.metadata @@ -1 +1 @@ -5c93a918f8f5348777d34c052c62161799708b83 SOURCES/welder-web-0.1.4.tar.gz +29ce5ed8de20fb0a04e4fa7847bd02922c006aa3 SOURCES/cockpit-composer-1.tar.gz diff --git a/.gitignore b/.gitignore index 5f1b426..3c063f2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/welder-web-0.1.4.tar.gz +SOURCES/cockpit-composer-1.tar.gz diff --git a/SPECS/cockpit-composer.spec b/SPECS/cockpit-composer.spec index c530fe7..fbd9b57 100644 --- a/SPECS/cockpit-composer.spec +++ b/SPECS/cockpit-composer.spec @@ -1,36 +1,62 @@ +# This spec file has been automatically updated +Version: 1 +Release: 1%{?dist} Name: cockpit-composer -Version: 0.1.4 -Release: 1%{?dist} Summary: Composer GUI for use with Cockpit License: MIT URL: http://weldr.io/ -Source0: welder-web-%{version}.tar.gz +Source0: https://github.com/weldr/cockpit-composer/releases/download/%{version}/cockpit-composer-%{version}.tar.gz BuildArch: noarch +BuildRequires: libappstream-glib Requires: cockpit Requires: lorax-composer %description -Composer GUI for Cockpit and lorax-composer +Composer generates custom images suitable for deploying systems or uploading to +the cloud. It integrates into Cockpit as a frontend for Lorax Composer. %prep -%setup -q -n welder-web-%{version} +%setup -q -n cockpit-composer-%{version} %build # Nothing to build %install mkdir -p %{buildroot}/%{_datadir}/cockpit/welder -cp -r public/* %{buildroot}/%{_datadir}/cockpit/welder +cp -a public/dist/* %{buildroot}/%{_datadir}/cockpit/welder +mkdir -p %{buildroot}/%{_datadir}/metainfo/ +appstream-util validate-relax --nonet io.weldr.cockpit-composer.metainfo.xml +cp -a io.weldr.cockpit-composer.metainfo.xml %{buildroot}/%{_datadir}/metainfo/ %files %doc README.md %license LICENSE.txt %{_datadir}/cockpit/welder +%{_datadir}/metainfo/* %changelog +* Wed Jun 05 2019 Martin Pitt - 1-1 +- New version 1 +- Translation updates rhbz#1688273 + +* Fri May 24 2019 Martin Pitt - 0.4-1 +- New version 0.4 (rhbz#1686151) +- Provide visual indication when a blueprint component is a dependency +- Enable Undo to retrieve changes after the Discard Changes action +- Update how blueprint contents are depsolved when contents are added/removed +- Display an error if a component is added that results in a depsolve failure +- Show all versions available for a package +- Provide ability to specify a wildcard version for a package +- Include ability to specify a hostname for a blueprint +- Include ability to add a user to a blueprint +- Fix issue when blueprint contents include a package with more than one arch +- Fix issue with loading contents in Export modal on Blueprints page +- Add/edit/remove repository sources +- Include ability to start lorax-composer + * Tue Sep 04 2018 Brian C. Lane - 0.1.4-1 - New version 0.1.4 - Adds queue status to an infotip in the Create Image modal (jgiardin)