python-systemd/python-systemd.spec

89 lines
3.0 KiB
RPMSpec

#
# spec file for package python-systemd
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-systemd
Version: 234
Release: 0
Summary: Python wrappers for systemd functionality
License: LGPL-2.1+
Group: Development/Languages/Python
Url: https://github.com/systemd/python-systemd
Source: https://github.com/systemd/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
# PATCH-FIX-OPENSUSE exclude-tests-on-obs.patch removes a test when running tests at OBS. Should be removed as soon as OBS is fixed
Patch100: exclude-tests-on-obs.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: systemd-devel
Requires: systemd
Suggests: %{name}-doc
# SECTION docs
BuildRequires: python3-Sphinx
# /SECTION
%if %{with test}
BuildRequires: %{python_module pytest}
%endif
%python_subpackages
%package -n %{name}-doc
Summary: Documentation for python-systemd
Group: Documentation/HTML
Requires: %{name} = %{version}
%description
Python module for native access to the systemd facilities. Functionality is seperated into a number of modules:
* systemd.journal supports sending of structured messages to the journal and reading journal files,
* systemd.daemon wraps parts of libsystemd useful for writing daemons and socket activation,
* systemd.id128 provides functions for querying machine and boot identifiers and a lists of message identifiers provided by systemd,
* systemd.login wraps parts of libsystemd used to query logged in users and available seats and machines.
%description -n %{name}-doc
Documentation and help files for python-systemd.
%prep
%setup -q
%patch100 -p1
%build
%{python_expand make PYTHON=$python %{?_smp_mflags} build}
make %{?_smp_mflags} sphinx-html
rm -r build/html/.buildinfo build/html/.doctrees build/html/_sources
%install
%{python_expand %make_install PYTHON=$python
%fdupes %{buildroot}/%{$python_sitearch}}
%if %{with test}
%check
%{python_expand make PYTHON=$python %{?_smp_mflags} check}
%endif
%files %{python_files}
%doc LICENSE.txt README.md
%{python_sitearch}/*
%files -n %{name}-doc
%doc build/html
%changelog