Accepting request 652686 from home:wolfi323:branches:KDE:Applications
kdesdk-kioslaves 18.11.80 OBS-URL: https://build.opensuse.org/request/show/652686 OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kdesdk-kioslaves?expand=0&rev=1
This commit is contained in:
commit
08a7a6d4d8
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
kdesdk-kioslaves-18.11.80.tar.xz
Normal file
3
kdesdk-kioslaves-18.11.80.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7ffc689939bcb9e1b1158121e2c5514e2d93ddd2e29b66c8b9ff884a499c032e
|
||||||
|
size 37224
|
1282
kdesdk-kioslaves.changes
Normal file
1282
kdesdk-kioslaves.changes
Normal file
File diff suppressed because it is too large
Load Diff
75
kdesdk-kioslaves.spec
Normal file
75
kdesdk-kioslaves.spec
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#
|
||||||
|
# spec file for package kdesdk-kioslaves
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018 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 https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%bcond_without lang
|
||||||
|
Name: kdesdk-kioslaves
|
||||||
|
Version: 18.11.80
|
||||||
|
Release: 0
|
||||||
|
Summary: KDE SDK kioslaves Package
|
||||||
|
License: GPL-2.0-only
|
||||||
|
Group: System/GUI/KDE
|
||||||
|
URL: http://www.kde.org/
|
||||||
|
Source0: https://download.kde.org/unstable/applications/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: kf5-filesystem
|
||||||
|
BuildRequires: ki18n-devel
|
||||||
|
BuildRequires: kio-devel
|
||||||
|
BuildRequires: cmake(Qt5Core)
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package suggests the packages, built from the kdesdk-kioslaves module.
|
||||||
|
|
||||||
|
%lang_package -n kio_perldoc
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf5 -d build
|
||||||
|
%make_jobs
|
||||||
|
|
||||||
|
%install
|
||||||
|
%kf5_makeinstall -C build
|
||||||
|
%if %{with lang}
|
||||||
|
%find_lang kio5_perldoc kio_perldoc.lang
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%package -n kio_perldoc
|
||||||
|
Summary: KDE KIO-Slave for Perl documentation
|
||||||
|
Group: System/GUI/KDE
|
||||||
|
Recommends: kio_perldoc-lang
|
||||||
|
Recommends: perl-doc
|
||||||
|
# for users of the unstable repo
|
||||||
|
Provides: %{name} = %{version}
|
||||||
|
Obsoletes: %{name} < %{version}
|
||||||
|
|
||||||
|
%description -n kio_perldoc
|
||||||
|
This KDE KIO-Slave allows to browse the Perl documentation.
|
||||||
|
|
||||||
|
%files -n kio_perldoc
|
||||||
|
%license COPYING
|
||||||
|
%dir %{_kf5_sharedir}/kio_perldoc
|
||||||
|
%{_kf5_plugindir}/kf5/kio/perldoc.so
|
||||||
|
%{_kf5_sharedir}/kio_perldoc/pod2html.pl
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%files -n kio_perldoc-lang -f kio_perldoc.lang
|
||||||
|
%license COPYING
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
Loading…
x
Reference in New Issue
Block a user