Initial package for openEuler

This commit is contained in:
jinxu1992 2021-06-24 09:25:56 +08:00
parent c4614973f1
commit ad8c16f2ad
2 changed files with 61 additions and 0 deletions

BIN
ioprocess-0.15.1.tar.gz Normal file

Binary file not shown.

61
ioprocess.spec Normal file
View File

@ -0,0 +1,61 @@
Name: ioprocess
Version: 0.15.1
Release: 1
Summary: Slave process to perform risky IO
Group: System Environment/Base
License: GPLv2+
URL: https://github.com/oVirt/ioprocess
Source0: https://github.com/oVirt/ioprocess/releases/tag/%{name}-%{version}.tar.gz
BuildRequires: python3-devel
BuildRequires: glib2-devel
BuildRequires: yajl-devel
Requires: yajl
Requires: glib2 >= 2.28
%description
Slave process to perform risky IO.
%prep
%setup -q %{name}-%{version}
%build
%configure
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
%files
%{!?_licensedir:%global license %doc}
%{_libexecdir}/ioprocess
%doc README.md AUTHORS
%license COPYING
%package -n python-ioprocess
Summary: Python bindings for ioprocess
BuildArch: noarch
Requires: python
Requires: python-cpopen
Requires: python-six
Requires: %{name} = %{version}-%{release}
%description -n python-ioprocess
Python bindings for ioprocess
%files -n python-ioprocess
%{!?_licensedir:%global license %doc}
%{python3_sitelib}/ioprocess-*.egg-info
%{python3_sitelib}/ioprocess/
%doc README.md AUTHORS
%license COPYING
%changelog
* Thu Jun 24 2021 Xu Jin <jinxu@kylinos.cn> - 0.15.1-1
- Initial package for openEuler