Christophe Marin 2024-07-04 20:42:43 +00:00 committed by Git OBS Bridge
commit e76ebf54ba
7 changed files with 1588 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

BIN
applications.keyring Normal file

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:089c6220c150c61f1c9e1c87e6f3d4e8e0e7d2f3246bc79832dc7d7acec3162c
size 30868

View File

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmaDmUkACgkQu0YzUNbv
Me+osxAAkDq1UDRvfcGsYx0A6WXr2d1cK6IK9u2isK9baKmDYBlW7N0iN7QS2e/M
dWVjJWRb3b9QruUtA//HOH5NOzYV2D3wYryBtPufi60O14azcxLoULi07MdeUQvs
f3N3emewdKKalWcYXQb0A95y6Jly/CD4fTOa8Coqhc1Kqt1xDPbhnUOp+drlaQaC
RAkt87UHYJAsviukk1/kln+Cxxo8nOW1KkJanMWcn9eheEDumYQFfmBCdqx0xu77
CQF8oqafdruDeDWrakub2d/mtvZ8268Y1PEyzYXE3mNxQYxrrGw6GLbCihXGiBAR
DpJldYS4NCb5dkcbPUPfE6g4m2dEtS+gXkHVruL8ACeGxQZ7/63Qd20eOTuFsuvJ
3eKeqAyevphEpKhrARFtgeX/B6kA0x0bA8YyITewFQrGapiKzMeZJuxnq0AcmizA
aKysmJb+MkUCk8t9aTDrfoFcpfwQeI62kwwiCcsTKXXoSyXz3HEoUNJjpbsI8Ovi
dUsX4BUto4Wv5dLIak40kWIOCuHw0Wa5LHSGX3g8sVHm1bu4p6dFbZCHjzuqpFk3
9FDkx8h/UYHPxWnaI1tjE1eQkG5H/1bIobdfwLQyobXW7J+ghDFf4okohlRGDjRJ
5SuMTiELZp3seFO7WNtB1BGVpbt5aCLBO53vBaY2jcNn3sinrMI=
=PRf3
-----END PGP SIGNATURE-----

1489
kqtquickcharts.changes Normal file

File diff suppressed because it is too large Load Diff

56
kqtquickcharts.spec Normal file
View File

@ -0,0 +1,56 @@
#
# spec file for package kqtquickcharts
#
# Copyright (c) 2024 SUSE LLC
#
# 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 released
Name: kqtquickcharts
Version: 24.05.2
Release: 0
Summary: Plugin to render beautiful and interactive graphs
License: LGPL-2.1-or-later
URL: https://edu.kde.org
Source0: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
%if %{with released}
Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig
Source2: applications.keyring
%endif
BuildRequires: extra-cmake-modules
BuildRequires: kf5-filesystem
BuildRequires: cmake(Qt5Gui)
BuildRequires: cmake(Qt5Qml)
BuildRequires: cmake(Qt5Quick)
%description
A QtQuick plugin to render beautiful and interactive graphs.
%prep
%autosetup -p1
%build
%cmake_kf5 -d build
%cmake_build
%install
%kf5_makeinstall -C build
%files
%license COPYING*
%{_kf5_includedir}/kqtquickcharts_version.h
%{_kf5_cmakedir}/KQtQuickCharts/
%{_kf5_qmldir}/
%changelog