SHA256
1
0
forked from pool/kcontacts

Accepting request 325142 from KDE:Applications

Submitting KDE SC 15.08.0

OBS-URL: https://build.opensuse.org/request/show/325142
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kcontacts?expand=0&rev=1
This commit is contained in:
Stephan Kulow
2015-10-03 18:14:26 +00:00
committed by Git OBS Bridge
commit f2fbe7340b
6 changed files with 136 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
baselibs.conf Normal file
View File

@@ -0,0 +1,3 @@
libKF5Contacts5
kcontacts-devel
requires "libKF5Contacts5-<targettype> = <version>"

3
kcontacts-15.08.0.tar.xz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:08743ed1cc1c20c80818d357f55d397e163d2d8f05945c94306291527520a5e8
size 135148

15
kcontacts.changes Normal file
View File

@@ -0,0 +1,15 @@
-------------------------------------------------------------------
Wed Aug 19 19:42:54 UTC 2015 - cgiboudeaux@gmx.com
- Update to KDE Applications 15.08.0
* KDE Applications 15.08.0
* https://www.kde.org/announcements/announce-applications-15.08.0.php
-------------------------------------------------------------------
Fri Aug 7 08:23:31 UTC 2015 - tittiatcoke@gmail.com
- Initial version based on KDE Applications 15.07.90
* KDE Applications 15.08.0 RC1
* https://www.kde.org/announcements/announce-applications-15.07.90.php

91
kcontacts.spec Normal file
View File

@@ -0,0 +1,91 @@
#
# spec file for package kcontacts
#
# Copyright (c) 2015 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/
#
%define kf5_version 5.5.0
Name: kcontacts
Version: 15.08.0
Release: 0
Summary: New address book API for KDE
License: LGPL-2.1+
Group: System/GUI/KDE
Url: http://www.kde.org
Source: kcontacts-%{version}.tar.xz
Source1: baselibs.conf
BuildRequires: extra-cmake-modules >= 1.3.0
BuildRequires: kcodecs-devel >= %{kf5_version}
BuildRequires: kconfig-devel >= %{kf5_version}
BuildRequires: kcoreaddons-devel >= %{kf5_version}
BuildRequires: kf5-filesystem
BuildRequires: ki18n-devel >= %{kf5_version}
BuildRequires: pkgconfig(Qt5DBus) >= 5.3.0
BuildRequires: pkgconfig(Qt5Gui) >= 5.3.0
BuildRequires: pkgconfig(Qt5Test) >= 5.3.0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Libkcontacts provides an API for address book data.
%package -n libKF5Contacts5
Summary: New address book API for KDE
Group: Development/Libraries/KDE
%description -n libKF5Contacts5
Libkcontacts provides an API for address book data.
%package devel
Summary: New address book API for KDE: Build Environment
Group: Development/Libraries/KDE
Requires: kcoreaddons-devel >= %{kf5_version}
Requires: libKF5Contacts5 = %{version}
Provides: kcontacts5-devel = %{version}
Obsoletes: kcontacts5-devel <= %{version}
%description devel
Libkcontacts provides an API for address book data.
Development files.
%prep
%setup -q -n kcontacts-%{version}
%build
%cmake_kf5 -d build -- -DBUILD_TESTING=ON
%make_jobs
%install
%kf5_makeinstall -C build
%post -n libKF5Contacts5 -p /sbin/ldconfig
%postun -n libKF5Contacts5 -p /sbin/ldconfig
%files -n libKF5Contacts5
%defattr(-,root,root)
%doc COPYING*
%{_kf5_libdir}/libKF5Contacts.so.*
%{_kf5_datadir}/kcontacts/
%files devel
%defattr(-,root,root)
%doc COPYING*
%{_kf5_libdir}/cmake/KF5Contacts/
%{_kf5_libdir}/libKF5Contacts.so
%{_kf5_includedir}/KContacts/
%{_kf5_includedir}/kcontacts_version.h
%{_kf5_mkspecsdir}/qt_KContacts.pri
%changelog