Raymond Wooninck 2015-08-07 08:58:23 +00:00 committed by Git OBS Bridge
commit 41d1680c57
5 changed files with 104 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

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:928cd7f9cac4b399d51e0c956eb02526922f6e545c6820bd3beebb4e9d4c669a
size 19592

8
kdebugsettings.changes Normal file
View File

@ -0,0 +1,8 @@
-------------------------------------------------------------------
Fri Aug 7 08:57:53 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

69
kdebugsettings.spec Normal file
View File

@ -0,0 +1,69 @@
#
# spec file for package kdebugsettings
#
# Copyright (c) 2015 SUSE LINUX Products 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: kdebugsettings
Summary: A KDebug settings module for KDE
License: GPL-3.0
Group: System/GUI/KDE
Version: 1.0.0
Release: 0
Url: https://github.com/rthomsen/kcmsystemd/
Source0: kdebugsettings-%{version}.tar.xz
BuildRequires: extra-cmake-modules
BuildRequires: kcoreaddons-devel
BuildRequires: kconfig-devel
BuildRequires: kconfigwidgets-devel
BuildRequires: kdbusaddons-devel
BuildRequires: ki18n-devel
BuildRequires: kguiaddons-devel
BuildRequires: kiconthemes-devel
BuildRequires: kwidgetsaddons-devel
BuildRequires: kitemviews-devel
BuildRequires: kio-devel
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5Test)
BuildRequires: update-desktop-files
Conflicts: kdebugsettings
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
KDebug control module for KDE. It provides a graphical frontend for the
kdebug daemon, which allow enabling or disabling particular debug areas/messages.
%prep
%setup -q -n kdebugsettings-%{version}
%build
%cmake_kf5 -d build
make %{?_smp_mflags} -C build
%install
%kf5_makeinstall -C build
%suse_update_desktop_file org.kde.kdebugsettings Utility DesktopUtility
%files
%defattr(-,root,root)
%doc COPYING
%config %{_sysconfdir}/xdg/kde.categories
%{_kf5_bindir}/kdebugsettings
%{_kf5_applicationsdir}/org.kde.kdebugsettings.desktop
%changelog