forked from pool/cockpit-machines
76 lines
2.2 KiB
RPMSpec
76 lines
2.2 KiB
RPMSpec
|
#
|
||
|
# spec file for package cockpit-machines
|
||
|
#
|
||
|
# Copyright (c) 2021 SUSE LLC
|
||
|
#
|
||
|
# All modifications and additions to the file contributed by third parties
|
||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
# upon. The license for this file, and modifications and additions to the
|
||
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
# license for the pristine package is not an Open Source License, in which
|
||
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
# published by the Open Source Initiative.
|
||
|
|
||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
Name: cockpit-machines
|
||
|
Version: 243.1
|
||
|
Release: 0
|
||
|
Summary: Cockpit user interface for virtual machines
|
||
|
License: LGPL-2.1-or-later and MIT
|
||
|
URL: https://github.com/cockpit-project/cockpit-machines
|
||
|
Source: cockpit-machines-%{version}.tar
|
||
|
Source10: package-lock.json
|
||
|
Source11: node_modules.spec.inc
|
||
|
%include %_sourcedir/node_modules.spec.inc
|
||
|
BuildArch: noarch
|
||
|
BuildRequires: appstream-glib
|
||
|
BuildRequires: make
|
||
|
Requires: cockpit-bridge >= 215
|
||
|
%if 0%{?suse_version}
|
||
|
Requires: libvirt-daemon-qemu
|
||
|
%else
|
||
|
Requires: libvirt-daemon-kvm
|
||
|
%endif
|
||
|
Requires: libvirt-client
|
||
|
Requires: libvirt-dbus >= 1.2.0
|
||
|
# Optional components
|
||
|
Recommends: virt-install
|
||
|
Recommends: libosinfo
|
||
|
Recommends: python3-gobject-base
|
||
|
#
|
||
|
BuildRequires: cockpit-devel >= 243
|
||
|
BuildRequires: local-npm-registry
|
||
|
BuildRequires: sassc
|
||
|
BuildRequires: translate-toolkit
|
||
|
|
||
|
%description
|
||
|
Cockpit component for managing virtual machines.
|
||
|
|
||
|
If "virt-install" is installed, you can also create new virtual machines.
|
||
|
|
||
|
|
||
|
%prep
|
||
|
%autosetup -p1
|
||
|
rm -f package-lock.json
|
||
|
local-npm-registry %{_sourcedir} install --with=dev || ( find ~/.npm/_logs -name '*-debug.log' -print0 | xargs -0 cat; false)
|
||
|
|
||
|
%build
|
||
|
cp -r %{_datadir}/cockpit/devel/lib src/lib
|
||
|
NODE_ENV=production npm run build
|
||
|
|
||
|
%install
|
||
|
%make_install
|
||
|
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*
|
||
|
|
||
|
%files
|
||
|
%doc README.md
|
||
|
%license LICENSE dist/index.js.LICENSE.txt
|
||
|
%{_datadir}/cockpit
|
||
|
%{_datadir}/metainfo/*
|
||
|
|
||
|
%changelog
|