SHA256
1
0
forked from pool/kdav

Accepting request 490392 from KDE:Applications

KDE Applications 17.04.0 final

OBS-URL: https://build.opensuse.org/request/show/490392
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kdav?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2017-05-08 16:49:23 +00:00 committed by Git OBS Bridge
commit 40bfd9de46
5 changed files with 148 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
kdav-17.04.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c80964fe6db32c90b28ef371898013c5d1869c0aaf4084d59d9e774235ed10e
size 37772

33
kdav.changes Normal file
View File

@ -0,0 +1,33 @@
-------------------------------------------------------------------
Sun Apr 16 10:44:53 CEST 2017 - lbeltrame@kde.org
- Update to 17.04.0
* New feature release
* For more details please see:
* https://www.kde.org/announcements/announce-applications-17.04.0.php
- Changes since 17.03.90:
* None
-------------------------------------------------------------------
Wed Apr 12 20:25:27 CEST 2017 - lbeltrame@kde.org
- Update to 17.03.90
* New bugfix release
* For more details please see:
* https://www.kde.org/announcements/announce-applications-17.04-rc.php
- Changes since 17.03.80:
* Add missing metainfo
-------------------------------------------------------------------
Fri Apr 7 19:41:29 UTC 2017 - lbeltrame@kde.org
- Update descriptions
-------------------------------------------------------------------
Sun Mar 26 07:10:16 UTC 2017 - lbeltrame@kde.org
- Initial package for KDE Applications 17.08.80
* Code split out from kdepim-runtime
* For more details please see:
* https://www.kde.org/announcements/announce-applications-17.03.80.php

88
kdav.spec Normal file
View File

@ -0,0 +1,88 @@
#
# spec file for package kdav
#
# 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/
#
Name: kdav
Version: 17.04.0
Release: 0
Summary: DAV protocol implementation
License: GPL-2.0
Group: Productivity/Other
Url: http://www.kde.org
Source0: %{name}-%{version}.tar.xz
BuildRequires: extra-cmake-modules
BuildRequires: cmake(KF5CoreAddons)
BuildRequires: cmake(KF5KIO)
BuildRequires: cmake(Qt5Core)
BuildRequires: cmake(Qt5Gui)
BuildRequires: cmake(Qt5Test)
BuildRequires: cmake(Qt5XmlPatterns)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
kdav is a library providing a KJob-based implementation of DAV protocols such as
CardDAV, WebDAV, and CalDAV.
%package -n libKPimKDAV5
Summary: Core library for kdav
Group: System/Libraries
Requires: %{name} >= %{version}
%description -n libKPimKDAV5
kdav is a library providing a KJob-based implementation of DAV protocols such as
CardDAV, WebDAV, and CalDAV.
%package devel
Summary: Development package for kdav
Group: Development/Libraries/KDE
Requires: libKPimKDAV5 = %{version}
%description devel
This package contains development files needed to use kdav in other applications.
%prep
%setup -q
%build
%cmake_kf5 -d build
%make_jobs
%install
%kf5_makeinstall -C build
%post -n libKPimKDAV5 -p /sbin/ldconfig
%postun -n libKPimKDAV5 -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc COPYING README
%config %{_kf5_configdir}/kdav.categories
%files -n libKPimKDAV5
%defattr(-,root,root)
%doc COPYING README
%{_libdir}/libKPimKDAV.so.*
%files devel
%defattr(-,root,root)
%doc COPYING README
%{_includedir}/KPim/
%{_libdir}/cmake/KPimKDAV/
%{_kf5_mkspecsdir}/qt_kdav.pri
%{_libdir}/libKPimKDAV.so
%changelog