commit d83255f4c2dd37cde4150d94fcd9fee1b7415d9efc4c8663a96f8edd017d4dac Author: Fabian Vogt Date: Thu Jan 12 18:08:53 2017 +0000 - New kirigami2 package, copy of kirigami, which is now kirigami 1.1 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kirigami2?expand=0&rev=1 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/kirigami2-2.0.0.tar.xz b/kirigami2-2.0.0.tar.xz new file mode 100644 index 0000000..934f6c6 --- /dev/null +++ b/kirigami2-2.0.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499bfcc5080dd65877a67700ff71f84a7b43f0f87b7c72e9f68c7bb92e11a293 +size 266580 diff --git a/kirigami2.changes b/kirigami2.changes new file mode 100644 index 0000000..9396af1 --- /dev/null +++ b/kirigami2.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Dec 13 16:36:15 UTC 2016 - fabian@ritter-vogt.de + +- New kirigami2 package, copy of kirigami, which is now kirigami 1.1 + diff --git a/kirigami2.spec b/kirigami2.spec new file mode 100644 index 0000000..6d3bf67 --- /dev/null +++ b/kirigami2.spec @@ -0,0 +1,89 @@ +# +# spec file for package kirigami2 +# +# Copyright (c) 2016 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/ +# + + +%bcond_without lang +Name: kirigami2 +Version: 2.0.0 +Release: 0 +Summary: Set of QtQuick components +License: LGPL-2.1+ +Group: Development/Libraries/KDE +Url: http://www.kde.org/ +Source: http://download.kde.org/stable/kirigami/%{name}-%{version}.tar.xz +BuildRequires: extra-cmake-modules >= 0.0.8 +BuildRequires: kf5-filesystem +BuildRequires: cmake(KF5Declarative) +BuildRequires: cmake(KF5Plasma) +BuildRequires: cmake(Qt5Core) >= 5.7.0 +BuildRequires: cmake(Qt5Gui) >= 5.7.0 +BuildRequires: cmake(Qt5Quick) >= 5.7.0 +BuildRequires: cmake(Qt5Svg) >= 5.7.0 +BuildRequires: cmake(Qt5Test) >= 5.7.0 +BuildRequires: cmake(Qt5QuickControls2) >= 5.7.0 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with lang} +BuildRequires: cmake(Qt5LinguistTools) >= 5.7.0 +%endif +%if %{with lang} +Recommends: %{name}-lang = %{version} +%endif + +%description +QtQuick plugins to build user interfaces based on the KDE UX guidelines. + +%package devel +Summary: Development package for kirigami +Group: Development/Libraries/KDE +Requires: %{name} = %{version} + +%description devel +QtQuick plugins to build user interfaces based on the KDE UX guidelines. +Development files. + +%lang_package + +%prep +%setup -q + +%build +%cmake_kf5 -d build +%make_jobs + +%install +%kf5_makeinstall -C build + +%if %{with lang} +%find_lang libkirigamiplugin --with-qt --without-mo +exit 1 # find_lang needs checking +%endif + +%if %{with lang} +%files lang -f libkirigamiplugin.lang +%endif + +%files +%defattr(-,root,root,-) +%doc LICENSE* +%{_kf5_qmldir}/ + +%files devel +%defattr(-,root,root) +%{_libdir}/cmake/KF5Kirigami2/ +%{_kf5_mkspecsdir}/qt_Kirigami2.pri + +%changelog