c0a337cedf
...until sd_pid_notify_with_fds cmsg handling is fixed.
101 lines
3.2 KiB
RPMSpec
101 lines
3.2 KiB
RPMSpec
Name: python-systemd
|
|
Version: 231
|
|
Release: 1%{?dist}
|
|
Summary: Python module wrapping systemd functionality
|
|
|
|
License: LGPLv2+
|
|
URL: https://github.com/systemd/python-systemd
|
|
#Source0: https://github.com/systemd/python-systemd/archive/v%%{version}.tar.gz
|
|
# 'make dist' output from https://github.com/systemd/python-systemd/
|
|
Source0: python-systemd-%{version}.tar.gz
|
|
|
|
BuildRequires: systemd-devel
|
|
BuildRequires: python2-devel
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-sphinx
|
|
BuildRequires: web-assets-devel
|
|
BuildRequires: pytest
|
|
BuildRequires: python3-pytest
|
|
|
|
%global _docdir_fmt %{name}
|
|
|
|
%description
|
|
Python module for native access to the systemd facilities.
|
|
Functionality includes sending of structured messages to the journal
|
|
and reading journal files, querying machine and boot identifiers and a
|
|
lists of message identifiers provided by systemd. Other functionality
|
|
provided by libsystemd is also wrapped.
|
|
|
|
%package -n python2-systemd
|
|
Summary: %{summary}
|
|
|
|
%{?python_provide:%python_provide python2-systemd}
|
|
Provides: systemd-python = %{version}-%{release}
|
|
Provides: systemd-python%{?_isa} = %{version}-%{release}
|
|
Obsoletes: systemd-python < 230
|
|
|
|
%description -n python2-systemd
|
|
Python module for native access to the systemd facilities.
|
|
Functionality includes sending of structured messages to the journal
|
|
and reading journal files, querying machine and boot identifiers and a
|
|
lists of message identifiers provided by systemd. Other functionality
|
|
provided by libsystemd is also wrapped.
|
|
|
|
This is the version for Python 2.
|
|
|
|
%package -n python3-systemd
|
|
Summary: %{summary}
|
|
|
|
Requires: js-jquery
|
|
%{?python_provide:%python_provide python3-systemd}
|
|
Provides: systemd-python3 = %{version}-%{release}
|
|
Provides: systemd-python3%{?_isa} = %{version}-%{release}
|
|
Obsoletes: systemd-python3 < 230
|
|
|
|
%description -n python3-systemd
|
|
Python module for native access to the systemd facilities.
|
|
Functionality includes sending of structured messages to the journal
|
|
and reading journal files, querying machine and boot identifiers and a
|
|
lists of message identifiers provided by systemd. Other functionality
|
|
provided by libsystemd is also wrapped.
|
|
|
|
This is the version for Python 3.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
make PYTHON=%{__python2} build
|
|
make PYTHON=%{__python3} build
|
|
make PYTHON=%{__python3} SPHINX_BUILD=sphinx-build-3 sphinx-html
|
|
rm -r build/html/.buildinfo build/html/.doctrees
|
|
|
|
%install
|
|
%make_install PYTHON=%{__python2}
|
|
%make_install PYTHON=%{__python3}
|
|
mkdir -p %{buildroot}%{_pkgdocdir}
|
|
cp -rv build/html %{buildroot}%{_pkgdocdir}/
|
|
ln -vsf %{_jsdir}/jquery/latest/jquery.min.js %{buildroot}%{_pkgdocdir}/html/_static/jquery.js
|
|
cp -p README.md NEWS %{buildroot}%{_pkgdocdir}/
|
|
|
|
%check
|
|
make PYTHON=%{__python2} check || :
|
|
make PYTHON=%{__python3} check || :
|
|
|
|
%files -n python2-systemd
|
|
%license LICENSE.txt
|
|
%doc %{_pkgdocdir}
|
|
%{python2_sitearch}/*
|
|
|
|
%files -n python3-systemd
|
|
%license LICENSE.txt
|
|
%doc %{_pkgdocdir}
|
|
%{python3_sitearch}/*
|
|
|
|
%changelog
|
|
* Tue Oct 27 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@laptop> - 231-1
|
|
- Update to latest version
|
|
|
|
* Mon Jul 6 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@laptop> - 230-1
|
|
- Initial packaging
|