forked from pool/python-vdirsyncer
- Add patch support-new-pytest-asyncio.patch:
* Support changes required by pytest-asyncio 1.0. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-vdirsyncer?expand=0&rev=47
This commit is contained in:
121
python-vdirsyncer.spec
Normal file
121
python-vdirsyncer.spec
Normal file
@@ -0,0 +1,121 @@
|
||||
#
|
||||
# spec file for package python-vdirsyncer
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# 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 https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: python-vdirsyncer
|
||||
Version: 0.19.3
|
||||
Release: 0
|
||||
Summary: CalDAV and CardDAV synchronization module
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/pimutils/vdirsyncer
|
||||
Source0: https://files.pythonhosted.org/packages/source/v/vdirsyncer/vdirsyncer-%{version}.tar.gz
|
||||
Source1: vdirsyncer.service
|
||||
Source2: vdirsyncer.timer
|
||||
# PATCH-FIX-OPENSUSE Support pytest-asyncio 1.0 changes.
|
||||
Patch0: support-new-pytest-asyncio.patch
|
||||
BuildRequires: %{python_module atomicwrites}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools_scm}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: pkgconfig(systemd)
|
||||
Requires: python-aiohttp
|
||||
Requires: python-aiostream
|
||||
Requires: python-atomicwrites >= 0.1.7
|
||||
Requires: python-click >= 5.0
|
||||
Requires: python-click-log >= 0.3
|
||||
Requires: python-requests >= 2.20.0
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Recommends: python-requests-oauthlib
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module aiohttp}
|
||||
BuildRequires: %{python_module aioresponses}
|
||||
BuildRequires: %{python_module aiostream}
|
||||
BuildRequires: %{python_module click-log >= 0.3}
|
||||
BuildRequires: %{python_module hypothesis >= 5.0.0}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest-cov}
|
||||
BuildRequires: %{python_module pytest-localserver}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module requests >= 2.20.0}
|
||||
BuildRequires: %{python_module trustme}
|
||||
BuildRequires: %{python_module urllib3}
|
||||
# /SECTION
|
||||
Provides: vdirsyncer = %{version}
|
||||
Obsoletes: vdirsyncer < %{version}
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Vdirsyncer synchronizes calendars and addressbooks between two
|
||||
storages. The supported storages are CalDAV, CardDAV, arbitrary HTTP
|
||||
resources, vdir and some more. It aims to be for CalDAV and CardDAV
|
||||
what OfflineIMAP is for IMAP.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n vdirsyncer-%{version}
|
||||
|
||||
rm -rf vdirsyncer.egg-info
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/vdirsyncer
|
||||
|
||||
mkdir -p %{buildroot}%{_userunitdir}
|
||||
%{python_expand \
|
||||
install -Dpm 0644 %{SOURCE1} %{buildroot}%{_userunitdir}/vdirsyncer-%{$python_bin_suffix}.service
|
||||
install -Dpm 0644 %{SOURCE2} %{buildroot}%{_userunitdir}/vdirsyncer-%{$python_bin_suffix}.timer
|
||||
%fdupes %{buildroot}/%{$python_sitelib}
|
||||
}
|
||||
%prepare_alternative -t %{_userunitdir}/vdirsyncer.service vdirsyncer.service
|
||||
%prepare_alternative -t %{_userunitdir}/vdirsyncer.timer vdirsyncer.timer
|
||||
|
||||
%check
|
||||
export DETERMINISTIC_TESTS=true
|
||||
# request_ssl - requires network
|
||||
# TestVobjectMachine -- broken upstream
|
||||
%pytest -k 'not (request_ssl or TestVobjectMachine)'
|
||||
|
||||
%post
|
||||
update-alternatives --install %{_bindir}/vdirsyncer vdirsyncer %{_bindir}/vdirsyncer-%{python_bin_suffix} %{python_version_nodots} \
|
||||
--slave %{_userunitdir}/vdirsyncer.service vdirsyncer.service %{_userunitdir}/vdirsyncer-%{python_bin_suffix}.service \
|
||||
--slave %{_userunitdir}/vdirsyncer.timer vdirsyncer.timer %{_userunitdir}/vdirsyncer-%{python_bin_suffix}.timer
|
||||
update-alternatives --auto vdirsyncer
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative vdirsyncer
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%python_alternative %{_bindir}/vdirsyncer
|
||||
%{python_sitelib}/vdirsyncer-%{version}.dist-info
|
||||
%{python_sitelib}/vdirsyncer
|
||||
%{_userunitdir}/vdirsyncer-%{python_bin_suffix}.service
|
||||
%{_userunitdir}/vdirsyncer-%{python_bin_suffix}.timer
|
||||
%{_userunitdir}/vdirsyncer.service
|
||||
%{_userunitdir}/vdirsyncer.timer
|
||||
%ghost %{_sysconfdir}/alternatives/vdirsyncer*
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user