python-ovsdbapp/python-ovsdbapp.spec

108 lines
3.1 KiB
RPMSpec
Raw Normal View History

2021-07-26 13:52:49 +08:00
%global _empty_manifest_terminate_build 0
Name: python-ovsdbapp
2022-06-20 14:27:25 +08:00
Version: 1.15.2
Release: 1
2021-07-26 13:52:49 +08:00
Summary: A library for creating OVSDB applications
License: Apache-2.0
URL: https://pypi.org/project/ovsdbapp/
2022-06-20 14:27:25 +08:00
Source0: https://files.pythonhosted.org/packages/a3/63/743191ef0eecd46b03608595af75e3e200934f0f3f0f0a586a6a3f3614c2/ovsdbapp-1.15.2.tar.gz
2021-07-26 13:52:49 +08:00
BuildArch: noarch
%description
A library for writing Open vSwitch OVSDB-based applications.
2020-12-31 15:33:29 +08:00
%package -n python3-ovsdbapp
2021-07-26 13:52:49 +08:00
Summary: A library for creating OVSDB applications
Provides: python-ovsdbapp
# Base build requires
2021-01-25 11:17:01 +08:00
BuildRequires: python3-devel
2021-07-26 13:52:49 +08:00
BuildRequires: python3-setuptools
2021-01-25 11:17:01 +08:00
BuildRequires: python3-pbr
BuildRequires: python3-pip
2021-07-26 13:52:49 +08:00
BuildRequires: python3-wheel
2021-01-25 11:17:01 +08:00
BuildRequires: python3-oslotest
BuildRequires: python3-stestr
BuildRequires: python3-netaddr >= 0.7.18
BuildRequires: python3-testrepository
2021-07-26 13:52:49 +08:00
BuildRequires: python3-openvswitch
# General requires
BuildRequires: python3-fixtures
BuildRequires: python3-netaddr
# General requires
Requires: python3-fixtures
Requires: python3-netaddr
2021-08-02 02:09:36 +00:00
Requires: python3-openvswitch
2021-07-26 13:52:49 +08:00
Requires: python3-pbr
# Test requires
2021-01-25 11:17:01 +08:00
Requires: python3-mock
Requires: python3-oslotest
Requires: python3-testrepository
2021-07-26 13:52:49 +08:00
%description -n python3-ovsdbapp
2021-01-25 11:17:01 +08:00
A library for writing Open vSwitch OVSDB-based applications.
2021-07-26 13:52:49 +08:00
%package help
Summary: A library for creating OVSDB applications
Provides: python3-ovsdbapp-doc
%description help
2021-01-25 11:17:01 +08:00
A library for writing Open vSwitch OVSDB-based applications.
2020-12-31 15:33:29 +08:00
%prep
%autosetup -n ovsdbapp-%{version}
2020-12-31 15:33:29 +08:00
%build
2021-07-26 13:52:49 +08:00
%py3_build
2021-01-25 11:17:01 +08:00
2020-12-31 15:33:29 +08:00
%install
2021-07-26 13:52:49 +08:00
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
2021-01-25 11:17:01 +08:00
%check
PYTHON=%{__python3} OS_TEST_PATH=./ovsdbapp/tests/unit stestr run
2021-07-26 13:52:49 +08:00
%files -n python3-ovsdbapp -f filelist.lst
%dir %{python3_sitelib}/*
2021-01-25 11:17:01 +08:00
2021-07-26 13:52:49 +08:00
%files help -f doclist.lst
%{_docdir}/*
2020-12-31 15:33:29 +08:00
%changelog
2022-06-20 14:27:25 +08:00
* Thu Jun 16 2022 OpenStack_SIG <openstack@openeuler.org> - 1.15.2-1
- Upgrade version for openstack yoga
2021-08-02 02:09:36 +00:00
* Mon Aug 1 2021 huangtianhua <huangtianhua@huawei.com> - 1.9.0-3
- Fix type
2022-06-20 14:27:25 +08:00
* Sat Jul 31 2021 huangtianhua <huangtianhua@huawei.com> - 1.9.0-2
- Modify require to python3-openvswitch
2022-06-20 14:27:25 +08:00
2021-07-26 13:52:49 +08:00
* Mon Jul 26 2021 OpenStack_SIG <openstack@openeuler.org> - 1.9.0-1
- Update to 1.9.0
2022-06-20 14:27:25 +08:00
2021-01-25 11:17:01 +08:00
* Tue Jan 26 2021 zhangy <zhangy1317@foxmail.com> 2021.1.26
- Update to 2021.1.26