From db7e1bb2a86fd02eb6275c05295e41258ff77044bf71ea433dfaca93fe32fc76 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 4 Jul 2017 05:24:49 +0000 Subject: [PATCH] Accepting request 507443 from home:alois:branches:devel:languages:python OBS-URL: https://build.opensuse.org/request/show/507443 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-vdirsyncer?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + python-vdirsyncer.changes | 22 +++++++++++++ python-vdirsyncer.spec | 69 +++++++++++++++++++++++++++++++++++++++ vdirsyncer-0.15.0.tar.gz | 3 ++ 5 files changed, 118 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 python-vdirsyncer.changes create mode 100644 python-vdirsyncer.spec create mode 100644 vdirsyncer-0.15.0.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/python-vdirsyncer.changes b/python-vdirsyncer.changes new file mode 100644 index 0000000..ffbe2ea --- /dev/null +++ b/python-vdirsyncer.changes @@ -0,0 +1,22 @@ +------------------------------------------------------------------- +Fri Jun 30 16:34:31 UTC 2017 - aloisio@gmx.com + +- Update to 0.15.0 (see changelog.rst) +- Renamed to python-vdirsyncer +- Converted to single-spec + +------------------------------------------------------------------- +Fri Feb 26 13:16:42 UTC 2016 - tbechtold@suse.com + +- Require python-python-dateutil. package was renamed + +------------------------------------------------------------------- +Wed Nov 5 09:40:34 UTC 2014 - seiler@b1-systems.de + +- added needed python-requests-toolbelt dependency + +------------------------------------------------------------------- +Tue Nov 4 14:24:36 UTC 2014 - seiler@b1-systems.de + +- initial commit + diff --git a/python-vdirsyncer.spec b/python-vdirsyncer.spec new file mode 100644 index 0000000..2cb9fba --- /dev/null +++ b/python-vdirsyncer.spec @@ -0,0 +1,69 @@ +# +# spec file for package python-vdirsyncer +# +# 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-%{**}} +Name: python-vdirsyncer +Version: 0.15.0 +Release: 0 +Summary: Synchronize CalDAV and CardDAV +License: MIT +Group: Productivity/Networking/News/Utilities +Url: https://github.com/untitaker/vdirsyncer +Source: https://files.pythonhosted.org/packages/source/v/vdirsyncer/vdirsyncer-%{version}.tar.gz +BuildRequires: %{python_module setuptools_scm} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-atomicwrites >= 0.1.7 +Requires: python-click >= 5.0 +Requires: python-click-log >= 0.1.3 +Requires: python-click-threading >= 0.2 +Requires: python-icalendar >= 3.6 +Requires: python-lxml +Requires: python-python-dateutil +Requires: python-pytz +Requires: python-requests >= 2.0.1 +Requires: python-requests-toolbelt >= 0.4.0 +Recommends: python-requests-oauthlib +Provides: vdirsyncer == %{version} +Obsoletes: vdirsyncer <= %{version} +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +%python_subpackages + +%description +Vdirsyncer synchronizes your 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 +%setup -q -n vdirsyncer-%{version} +rm -rf vdirsyncer.egg-info + +%build +%python_build + +%install +%python_install +%python_expand %fdupes -s %{buildroot}/%{$python_sitelib} + +%files %{python_files} +%defattr(-,root,root) +%doc LICENSE +%python3_only %{_bindir}/vdirsyncer +%{python_sitelib}/* + +%changelog diff --git a/vdirsyncer-0.15.0.tar.gz b/vdirsyncer-0.15.0.tar.gz new file mode 100644 index 0000000..587a621 --- /dev/null +++ b/vdirsyncer-0.15.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f7acccab443ce20aca2623b80475f741844929977c08b2f8f11fc9ba2f4a21 +size 110907