Blame SPECS/nispor.spec

15fe26
Name:           nispor
15fe26
Version:        1.0.1
15fe26
Release:        4%{?dist}
15fe26
Summary:        API for network status querying
15fe26
License:        ASL 2.0
15fe26
URL:            https://github.com/nispor/nispor
15fe26
Source:         https://github.com/nispor/nispor/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
15fe26
Source1:        %{name}-%{version}-vendor.tar.xz
15fe26
Patch0:         BZ_1919986-bond-add-support-to-vlan-srcmac-tx-hashing-option.patch
15fe26
Patch1:         BZ_1926941-remove-the-varlink-support.patch
15fe26
BuildRequires:  pkg-config
15fe26
BuildRequires:  python3-devel
15fe26
BuildRequires:  rust-toolset
15fe26
BuildRequires:  systemd-rpm-macros
15fe26
BuildRequires:  systemd-devel
15fe26
15fe26
%description
15fe26
Unified interface for Linux network state querying.
15fe26
15fe26
%package -n     python3-%{name}
15fe26
Summary:        %{summary}
15fe26
Requires:       nispor = %{?epoch:%{epoch}:}%{version}-%{release}
15fe26
BuildArch:      noarch
15fe26
15fe26
%description -n python3-%{name}
15fe26
15fe26
This package contains python3 binding of %{name}.
15fe26
15fe26
%package        devel
15fe26
Summary:        %{summary}
15fe26
Requires:       nispor%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
15fe26
15fe26
%description devel
15fe26
15fe26
This package contains C binding of %{name}.
15fe26
15fe26
%prep
15fe26
%autosetup -p1
15fe26
15fe26
# Source1 is vendored dependencies
15fe26
%cargo_prep -V 1
15fe26
15fe26
# The cargo_prep will create `.cargo/config` which take precedence over
15fe26
# `.cargo/config.toml` shipped by upstream which fix the SONAME of cdylib.
15fe26
# To workaround that, merge upstream rustflags into cargo_prep created one.
15fe26
_FLAGS=`sed -ne 's/rustflags = "\(.\+\)"/\1/p' .cargo/config.toml`
15fe26
sed -i -e "s/rustflags = \[\(.\+\), \]$/rustflags = [\1, \"$_FLAGS\"]/" \
15fe26
    .cargo/config
15fe26
15fe26
%build
15fe26
make
15fe26
pushd src/python
15fe26
%py3_build
15fe26
popd
15fe26
15fe26
%post
15fe26
/sbin/ldconfig
15fe26
15fe26
%postun
15fe26
/sbin/ldconfig
15fe26
15fe26
%install
15fe26
env SKIP_PYTHON_INSTALL=1 PREFIX=%{_prefix} LIBDIR=%{_libdir} %make_install
15fe26
15fe26
pushd src/python
15fe26
%py3_install
15fe26
popd
15fe26
15fe26
%files
15fe26
%doc AUTHORS CHANGELOG DEVEL.md README.md
15fe26
%license LICENSE
15fe26
%{_bindir}/npc
15fe26
%{_libdir}/libnispor.so.*
15fe26
15fe26
%files -n       python3-%{name}
15fe26
%license LICENSE
15fe26
%{python3_sitelib}/nispor*
15fe26
15fe26
%files devel
15fe26
%license LICENSE
15fe26
%{_libdir}/libnispor.so
15fe26
%{_includedir}/nispor.h
15fe26
%{_libdir}/pkgconfig/nispor.pc
15fe26
15fe26
%changelog
15fe26
* Thu Feb 18 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-4
15fe26
- Remove the varlink support. RHBZ#1926941
15fe26
15fe26
* Tue Feb 02 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.1-3
15fe26
- Add support to bond vlan+srcmac tx hashing option. RHBZ#1919986
15fe26
15fe26
* Fri Nov 13 2020 Gris Ge <fge@redhat.com> - 1.0.1-2
15fe26
- Upload new cargo vendor tarbal without crates used for windows platform.
15fe26
15fe26
* Tue Nov 10 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.1-1
15fe26
- Upgrade to 1.0.1
15fe26
15fe26
* Mon Nov 09 2020 Gris Ge <fge@redhat.com> - 1.0.0-1
15fe26
- Upgrade to 1.0.0
15fe26
15fe26
* Mon Oct 19 2020 Gris Ge <fge@redhat.com> - 0.6.1-2
15fe26
- Rebuild to load the compose settings.
15fe26
15fe26
* Tue Oct 13 2020 Gris Ge <fge@redhat.com> - 0.6.1-1
15fe26
- Upgrade to 0.6.1
15fe26
15fe26
* Fri Oct 09 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.6.0-2
15fe26
- VXLAN Python fix incorrect destination port
15fe26
15fe26
* Fri Oct 09 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.6.0-1
15fe26
- Upgrade to 0.6.0
15fe26
15fe26
* Sun Sep 20 2020 Gris Ge <fge@redhat.com> - 0.5.1-1
15fe26
- Upgrade to 0.5.1
15fe26
15fe26
* Thu Sep 17 2020 Gris Ge <fge@redhat.com> - 0.5.0-3
15fe26
- Trigger rebuild for CI gating
15fe26
15fe26
* Tue Sep 08 2020 Gris Ge <fge@redhat.com> - 0.5.0-2
15fe26
- Fix the python3-nispor requirement
15fe26
15fe26
* Fri Sep 04 2020 Gris Ge <fge@redhat.com> - 0.5.0-1
15fe26
- Upgrade to 0.5.0
15fe26
15fe26
* Sat Aug 29 2020 Gris Ge <fge@redhat.com> - 0.4.0-3
15fe26
- Fix the ldconfig
15fe26
15fe26
* Wed Aug 26 2020 Gris Ge <fge@redhat.com> - 0.4.0-2
15fe26
- Add ldconfig to post and postun scripts
15fe26
15fe26
* Wed Aug 26 2020 Gris Ge <fge@redhat.com> - 0.4.0-1
15fe26
- Upgrade to 0.4.0
15fe26
15fe26
* Mon Aug 17 2020 Gris Ge <fge@redhat.com> - 0.3.0-2
15fe26
- Fix python linux bridge vlan filtering
15fe26
15fe26
* Sun Aug 16 2020 Gris Ge <fge@redhat.com> - 0.3.0-1
15fe26
- Upgrade to 0.3.0
15fe26
15fe26
* Tue Aug 11 2020 Gris Ge <fge@redhat.com> - 0.2.0-1
15fe26
- Upgrade to 0.2.0
15fe26
15fe26
* Thu Jul 09 2020 Gris Ge <fge@redhat.com> - 0.1.1-2
15fe26
- Include license and documents
15fe26
15fe26
* Wed Jul 08 2020 Gris Ge <fge@redhat.com> - 0.1.1-1
15fe26
- Initial build.