138 lines
4.1 KiB
RPMSpec
138 lines
4.1 KiB
RPMSpec
# The check need root privilege
|
|
%bcond_with check
|
|
|
|
Name: nispor
|
|
Version: 1.2.5
|
|
Release: 2%{?dist}
|
|
Summary: Unified interface for Linux network state querying
|
|
License: ASL 2.0
|
|
URL: https://github.com/nispor/nispor
|
|
Source: https://github.com/nispor/nispor/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Patch0: 0001-drop-the-need-of-serde_derive.patch
|
|
ExclusiveArch: %{rust_arches}
|
|
BuildRequires: make
|
|
BuildRequires: pkg-config
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python-setuptools
|
|
BuildRequires: rust-packaging
|
|
BuildRequires: systemd-devel
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: patchelf
|
|
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(rtnetlink/default) >= 0.9.1 with crate(rtnetlink/default) < 0.10.0)
|
|
BuildRequires: (crate(netlink-packet-route/default) >= 0.11.0 with crate(netlink-packet-route/default) < 0.12.0)
|
|
BuildRequires: (crate(netlink-packet-utils/default) >= 0.5.1 with crate(netlink-packet-utils/default) < 0.6.0)
|
|
BuildRequires: (crate(netlink-sys/default) >= 0.8.2 with crate(netlink-sys/default) < 0.9.0)
|
|
BuildRequires: (crate(ethtool/default) >= 0.2.2 with crate(ethtool/default) < 0.3.0)
|
|
BuildRequires: (crate(tokio/macros) >= 1.17 with crate(tokio/macros) < 2.0)
|
|
BuildRequires: (crate(tokio/rt) >= 1.17 with crate(tokio/rt) < 2.0)
|
|
BuildRequires: (crate(libc/default) >= 0.2.117 with crate(libc/default) < 0.3.0)
|
|
BuildRequires: (crate(clap/default) >= 3.1.2 with crate(clap/default) < 4.0)
|
|
BuildRequires: (crate(clap/cargo) >= 3.1.2 with crate(clap/cargo) < 4.0)
|
|
BuildRequires: (crate(serde_yaml/default) >= 0.8 with crate(serde_yaml/default) < 0.9)
|
|
BuildRequires: (crate(env_logger/default) >= 0.9 with crate(env_logger/default) < 0.10)
|
|
BuildRequires: (crate(log/default) >= 0.4 with crate(log/default) < 0.5)
|
|
|
|
%description
|
|
Unified interface for Linux network state querying.
|
|
|
|
%package -n rust-%{name}-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n rust-%{name}-devel
|
|
|
|
This package contains library source intended for building other packages
|
|
which use "%{name}" crate.
|
|
|
|
%package -n rust-%{name}+default-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n rust-%{name}+default-devel
|
|
|
|
This package contains library source intended for building other packages
|
|
which use "%{name}" crate with default feature.
|
|
|
|
%package -n python3-%{name}
|
|
Summary: %{summary}
|
|
Requires: nispor = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
%description -n python3-%{name}
|
|
|
|
This package contains python3 binding of %{name}.
|
|
|
|
%package devel
|
|
Summary: %{summary}
|
|
Requires: nispor%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
%description devel
|
|
|
|
This package contains C binding of %{name}.
|
|
|
|
%prep
|
|
%autosetup -n %{name}-%{version_no_tilde} -p1
|
|
# Drop the upstream fix on SONAME as fedora %cargo_xxx marcos override it,
|
|
# we use patchelf to set the SONAME.
|
|
rm .cargo/config.toml
|
|
|
|
%cargo_prep
|
|
|
|
%build
|
|
%cargo_build
|
|
|
|
pushd src/python
|
|
%py3_build
|
|
popd
|
|
|
|
%install
|
|
pushd src/lib
|
|
%cargo_install
|
|
popd
|
|
|
|
env SKIP_PYTHON_INSTALL=1 PREFIX=%{_prefix} LIBDIR=%{_libdir} %make_install
|
|
|
|
pushd src/python
|
|
%py3_install
|
|
popd
|
|
|
|
patchelf --set-soname libnispor.so.1 \
|
|
%{buildroot}/%{_libdir}/libnispor.so.%{version}
|
|
|
|
%if %{with check}
|
|
%check
|
|
%cargo_test
|
|
%endif
|
|
|
|
%files
|
|
%doc AUTHORS CHANGELOG DEVEL.md README.md
|
|
%license LICENSE
|
|
%{_bindir}/npc
|
|
%{_libdir}/libnispor.so.*
|
|
|
|
%files -n python3-%{name}
|
|
%license LICENSE
|
|
%{python3_sitelib}/nispor*
|
|
|
|
%files devel
|
|
%license LICENSE
|
|
%{_libdir}/libnispor.so
|
|
%{_includedir}/nispor.h
|
|
%{_libdir}/pkgconfig/nispor.pc
|
|
|
|
%files -n rust-%{name}-devel
|
|
%license LICENSE
|
|
%{cargo_registry}/%{name}-%{version_no_tilde}/
|
|
|
|
%files -n rust-%{name}+default-devel
|
|
%ghost %{cargo_registry}/%{name}-%{version_no_tilde}/Cargo.toml
|
|
|
|
%changelog
|
|
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 1.2.5-2
|
|
- Rebuilt for Python 3.11
|
|
|
|
%autochangelog
|