74 lines
2.1 KiB
RPMSpec
74 lines
2.1 KiB
RPMSpec
|
%?python_enable_dependency_generator
|
||
|
%define srcname nmstate
|
||
|
%define libname libnmstate
|
||
|
|
||
|
Name: nmstate
|
||
|
Version: 0.0.7
|
||
|
Release: 1%{?dist}
|
||
|
Summary: Declarative network manager API
|
||
|
License: GPLv2+
|
||
|
URL: https://github.com/%{srcname}/%{srcname}
|
||
|
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
||
|
Source1: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz.asc
|
||
|
Source2: gpgkey-F7910D93CA83D77348595C0E899014C0463C12BB.gpg
|
||
|
BuildArch: noarch
|
||
|
BuildRequires: python3-devel
|
||
|
BuildRequires: python3-setuptools
|
||
|
BuildRequires: gnupg2
|
||
|
Requires: python3-setuptools
|
||
|
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||
|
|
||
|
%description
|
||
|
NMState is a library with an accompanying command line tool that manages host
|
||
|
networking settings in a declarative manner and aimed to satisfy enterprise
|
||
|
needs to manage host networking through a northbound declarative API and multi
|
||
|
provider support on the southbound.
|
||
|
|
||
|
|
||
|
%package -n python3-%{libname}
|
||
|
Summary: nmstate Python 3 API library
|
||
|
Requires: NetworkManager-libnm
|
||
|
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
||
|
# but NM could be running on a different host
|
||
|
Recommends: NetworkManager
|
||
|
# Use Suggests for NetworkManager-ovs since it is only required for OVS support
|
||
|
Suggests: NetworkManager-ovs
|
||
|
|
||
|
|
||
|
%description -n python3-%{libname}
|
||
|
This package contains the Python 3 library for nmstate.
|
||
|
|
||
|
%prep
|
||
|
gpgv2 --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%py3_build
|
||
|
|
||
|
%install
|
||
|
%py3_install
|
||
|
|
||
|
%files
|
||
|
%doc README.md
|
||
|
%doc examples/
|
||
|
%{python3_sitelib}/nmstatectl
|
||
|
%{_bindir}/nmstatectl
|
||
|
|
||
|
%files -n python3-%{libname}
|
||
|
%license LICENSE
|
||
|
%{python3_sitelib}/%{libname}
|
||
|
%{python3_sitelib}/%{srcname}-*.egg-info/
|
||
|
|
||
|
%changelog
|
||
|
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-1
|
||
|
- Upgrade to 0.0.7.
|
||
|
|
||
|
* Mon Apr 22 2019 Gris Ge <fge@redhat.com> - 0.0.5-3
|
||
|
- Add missing runtime dependency.
|
||
|
|
||
|
* Thu Mar 21 2019 Gris Ge <fge@redhat.com> - 0.0.5-2
|
||
|
- Rebuild to enable CI testing.
|
||
|
|
||
|
* Mon Mar 18 2019 Gris Ge <fge@redhat.com> - 0.0.5-1
|
||
|
- Initial release
|