8bbb58a947
Signed-off-by: Gris Ge <fge@redhat.com>
175 lines
6.0 KiB
RPMSpec
175 lines
6.0 KiB
RPMSpec
%define srcname nmstate
|
|
%define libname libnmstate
|
|
|
|
Name: nmstate
|
|
Version: 2.1.0
|
|
Release: 0.alpha1%{?dist}
|
|
Summary: Declarative network manager API
|
|
License: LGPLv2+
|
|
URL: https://github.com/%{srcname}/%{srcname}
|
|
Source0: %{url}/releases/download/v%{version}/%{srcname}-%{version}-alpha1.tar.gz
|
|
Source1: %{url}/releases/download/v%{version}/%{srcname}-%{version}-alpha1.tar.gz.asc
|
|
Source2: nmstate.gpg
|
|
BuildRequires: patchelf
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: gnupg2
|
|
BuildRequires: systemd-devel
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: rust-packaging
|
|
BuildRequires: (crate(serde/default) >= 1.0 with crate(serde/default) < 2.0)
|
|
BuildRequires: (crate(serde/derive) >= 1.0 with crate(serde/derive) < 2.0)
|
|
BuildRequires: (crate(serde_json/default) >= 1.0 with crate(serde_json/default) < 2.0)
|
|
BuildRequires: (crate(serde_yaml/default) >= 0.8 with crate(serde_yaml/default) < 0.9)
|
|
BuildRequires: (crate(uuid/v4) >= 0.8 with crate(uuid/v4) < 0.9)
|
|
BuildRequires: (crate(zbus/default) >= 1.9 with crate(zbus/default) < 2.0)
|
|
BuildRequires: (crate(zvariant/default) >= 2.10 with crate(zvariant/default) < 3.0)
|
|
BuildRequires: (crate(log/default) >= 0.4 with crate(log/default) < 0.5)
|
|
BuildRequires: (crate(libc/default) >= 0.2 with crate(libc/default) < 0.3)
|
|
BuildRequires: (crate(clap/default) >= 3.1 with crate(clap/default) < 4.0)
|
|
BuildRequires: (crate(clap/cargo) >= 3.1 with crate(clap/cargo) < 4.0)
|
|
BuildRequires: (crate(ctrlc/default) >= 3.2 with crate(ctrlc/default) < 4.0)
|
|
BuildRequires: (crate(env_logger/default) >= 0.9 with crate(env_logger/default) < 1.0)
|
|
BuildRequires: (crate(nispor/default) >= 1.2.5 with crate(nispor/default) < 2.0)
|
|
Requires: %{name}-libs%{?_isa} = %{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 libs
|
|
Summary: C binding of nmstate
|
|
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
|
# but NM could be running on a different host
|
|
Recommends: NetworkManager
|
|
# Avoid automatically generated profiles
|
|
Recommends: NetworkManager-config-server
|
|
|
|
%description libs
|
|
C binding of nmstate.
|
|
|
|
%package devel
|
|
Summary: Development files for nmstate
|
|
Group: Development/Libraries
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
Development files of nmstate C binding.
|
|
|
|
|
|
%package -n python3-%{libname}
|
|
Summary: nmstate Python 3 API library
|
|
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
|
# but NM could be running on a different host
|
|
Recommends: NetworkManager
|
|
# Avoid automatically generated profiles
|
|
Recommends: NetworkManager-config-server
|
|
Recommends: (nmstate-plugin-ovsdb if openvswitch)
|
|
# Use Suggests for NetworkManager-ovs and NetworkManager-team since it is only
|
|
# required for OVS and team support
|
|
Suggests: NetworkManager-ovs
|
|
Suggests: NetworkManager-team
|
|
Provides: nmstate-plugin-ovsdb = %{version}-%{release}
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
Obsoletes: nmstate-plugin-ovsdb < 2.0-1
|
|
|
|
%description -n python3-%{libname}
|
|
This package contains the Python 3 library for Nmstate.
|
|
|
|
%prep
|
|
gpg2 --import --import-options import-export,import-minimal \
|
|
%{SOURCE2} > ./gpgkey-mantainers.gpg
|
|
gpgv2 --keyring ./gpgkey-mantainers.gpg %{SOURCE1} %{SOURCE0}
|
|
%setup -q
|
|
|
|
pushd rust
|
|
rm .cargo/config.toml
|
|
%cargo_prep
|
|
popd
|
|
|
|
%build
|
|
pushd rust
|
|
%cargo_build
|
|
popd
|
|
|
|
pushd rust/src/python
|
|
%py3_build
|
|
popd
|
|
|
|
%install
|
|
# We do manual install here before upstream has it
|
|
pushd rust
|
|
install -D --mode 0755 target/release/libnmstate.so \
|
|
%{buildroot}/%{_libdir}/libnmstate.so.%{version}
|
|
ln -s libnmstate.so.%{version} %{buildroot}/%{_libdir}/libnmstate.so.2
|
|
ln -s libnmstate.so.%{version} %{buildroot}/%{_libdir}/libnmstate.so
|
|
patchelf --set-soname libnmstate.so.2 \
|
|
%{buildroot}/%{_libdir}/libnmstate.so.%{version}
|
|
|
|
install -D --mode 0755 target/release/nmstatectl-rust \
|
|
%{buildroot}/%{_bindir}/nmstatectl
|
|
ln -s nmstatectl %{buildroot}/%{_bindir}/nmstatectl-rust
|
|
ln -s nmstatectl %{buildroot}/%{_bindir}/nmstate-autoconf
|
|
popd
|
|
install -D --mode 0644 nmstatectl.8 \
|
|
%{buildroot}/%{_mandir}/man8/nmstatectl.8
|
|
install -D --mode 0644 nmstate-autoconf.8 \
|
|
%{buildroot}/%{_mandir}/man8/nmstate-autoconf.8
|
|
gzip %{buildroot}/%{_mandir}/man8/nmstatectl.8
|
|
gzip %{buildroot}/%{_mandir}/man8/nmstate-autoconf.8
|
|
|
|
pushd rust/src/python
|
|
%py3_install
|
|
popd
|
|
|
|
pushd rust/src/clib
|
|
install -D --mode 0644 nmstate.h.in %{buildroot}/%{_includedir}/nmstate.h
|
|
MAJOR_VERSION=$(echo %{version} | cut -f1 -d.)
|
|
MINOR_VERSION=$(echo %{version} | cut -f2 -d.)
|
|
MICRO_VERSION=$(echo %{version} | cut -f3 -d.)
|
|
sed -i -e "s#@_VERSION_MAJOR@#${MAJOR_VERSION}#" \
|
|
%{buildroot}/%{_includedir}/nmstate.h
|
|
sed -i -e "s#@_VERSION_MINOR@#${MINOR_VERSION}#" \
|
|
%{buildroot}/%{_includedir}/nmstate.h
|
|
sed -i -e "s#@_VERSION_MICRO@#${MICRO_VERSION}#" \
|
|
%{buildroot}/%{_includedir}/nmstate.h
|
|
|
|
install -D --mode 0644 nmstate.pc.in %{buildroot}/%{_libdir}/pkgconfig/nmstate.pc
|
|
sed -i -e "s#@PREFIX@#%{_prefix}#" \
|
|
%{buildroot}/%{_libdir}/pkgconfig/nmstate.pc
|
|
sed -i -e "s#@LIBDIR@#%{_libdir}#" \
|
|
%{buildroot}/%{_libdir}/pkgconfig/nmstate.pc
|
|
sed -i -e "s#@INCLUDE_DIR@#%{_includedir}#" \
|
|
%{buildroot}/%{_libdir}/pkgconfig/nmstate.pc
|
|
sed -i -e "s#@VERSION@#%{version}#" \
|
|
%{buildroot}/%{_libdir}/pkgconfig/nmstate.pc
|
|
popd
|
|
|
|
%files
|
|
%doc README.md
|
|
%doc examples/
|
|
%{_mandir}/man8/nmstatectl.8*
|
|
%{_mandir}/man8/nmstate-autoconf.8*
|
|
%{_bindir}/nmstatectl
|
|
%{_bindir}/nmstatectl-rust
|
|
%{_bindir}/nmstate-autoconf
|
|
|
|
%files libs
|
|
%{_libdir}/libnmstate.so.*
|
|
|
|
%files devel
|
|
%{_libdir}/libnmstate.so
|
|
%{_includedir}/nmstate.h
|
|
%{_libdir}/pkgconfig/nmstate.pc
|
|
|
|
%files -n python3-%{libname}
|
|
%license LICENSE
|
|
%{python3_sitelib}/%{libname}
|
|
%{python3_sitelib}/%{srcname}-*.egg-info/
|
|
|
|
%changelog
|
|
%autochangelog
|