Accepting request 763075 from home:rhabacker:branches:KDE:Extra
update to 8.0.3 OBS-URL: https://build.opensuse.org/request/show/763075 OBS-URL: https://build.opensuse.org/package/show/KDE:Extra/alkimia?expand=0&rev=25
This commit is contained in:
parent
3d761f2aae
commit
25bc877d8a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:59e6b10d819479bc8dde53a8b10e6ec05e9d465c5e035528a5c0b036456a2454
|
|
||||||
size 38420
|
|
3
alkimia-8.0.3.tar.xz
Normal file
3
alkimia-8.0.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1e57ed9279557d8e3575e7556a81b08dff4e882e9f5ad8502da63bfc98c7b33e
|
||||||
|
size 212780
|
44
alkimia.spec
44
alkimia.spec
@ -16,9 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define sonum 7
|
%define sonum 8
|
||||||
|
%bcond_without lang
|
||||||
Name: alkimia
|
Name: alkimia
|
||||||
Version: 7.0.2
|
Version: 8.0.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library with common classes and functionality used by finance applications
|
Summary: Library with common classes and functionality used by finance applications
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
@ -28,9 +29,16 @@ Source0: https://download.kde.org/stable/%{name}/%{version}/%{name}-%{ver
|
|||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
BuildRequires: extra-cmake-modules
|
BuildRequires: extra-cmake-modules
|
||||||
BuildRequires: gmp-devel
|
BuildRequires: gmp-devel
|
||||||
|
BuildRequires: cmake(KF5Config)
|
||||||
|
BuildRequires: cmake(KF5CoreAddons)
|
||||||
|
BuildRequires: cmake(KF5KDELibs4Support)
|
||||||
|
BuildRequires: cmake(KF5NewStuff)
|
||||||
|
BuildRequires: cmake(KF5Package)
|
||||||
BuildRequires: cmake(Qt5Core) >= 5.2.0
|
BuildRequires: cmake(Qt5Core) >= 5.2.0
|
||||||
BuildRequires: cmake(Qt5DBus) >= 5.2.0
|
BuildRequires: cmake(Qt5DBus) >= 5.2.0
|
||||||
|
BuildRequires: cmake(Qt5Qml) >= 5.2.0
|
||||||
BuildRequires: cmake(Qt5Test) >= 5.2.0
|
BuildRequires: cmake(Qt5Test) >= 5.2.0
|
||||||
|
BuildRequires: cmake(Qt5Widgets) >= 5.2.0
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libalkimia is a library with common classes and functionality used by finance
|
libalkimia is a library with common classes and functionality used by finance
|
||||||
@ -52,19 +60,45 @@ Requires: libalkimia5-%{sonum} = %{version}
|
|||||||
%description -n libalkimia5-devel
|
%description -n libalkimia5-devel
|
||||||
The development files for libalkimia.
|
The development files for libalkimia.
|
||||||
|
|
||||||
|
%lang_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake_kf5 -d build
|
%cmake_kf5 -d build -- -DBUILD_WITH_WEBKIT=0 -DBUILD_APPLETS=0
|
||||||
%make_jobs
|
%make_jobs
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%kf5_makeinstall -C build
|
%kf5_makeinstall -C build
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/alkimia5/misc
|
||||||
|
mv %{buildroot}/alkimia5/misc/financequote.pl %{buildroot}%{_datadir}/alkimia5/misc/financequote.pl
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%find_lang alkimia %{name}.lang
|
||||||
|
%find_lang onlinequoteseditor %{name}.lang
|
||||||
|
%find_lang plasma_applet_onlinequote %{name}.lang
|
||||||
|
%find_lang plasma_applet_org.wincak.foreigncurrencies2 %{name}.lang
|
||||||
|
%endif
|
||||||
|
|
||||||
%post -n libalkimia5-%{sonum} -p /sbin/ldconfig
|
%post -n libalkimia5-%{sonum} -p /sbin/ldconfig
|
||||||
%postun -n libalkimia5-%{sonum} -p /sbin/ldconfig
|
%postun -n libalkimia5-%{sonum} -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING.LIB
|
||||||
|
%{_kf5_applicationsdir}/org.kde.onlinequoteseditor5.desktop
|
||||||
|
%{_kf5_bindir}/onlinequoteseditor5
|
||||||
|
%{_kf5_iconsdir}/hicolor/*/apps/onlinequoteseditor5.*
|
||||||
|
%dir %{_kf5_qmldir}/org/
|
||||||
|
%dir %{_kf5_qmldir}/org/kde
|
||||||
|
%dir %{_kf5_qmldir}/org/kde/alkimia
|
||||||
|
%{_kf5_qmldir}/org/kde/alkimia/libqmlalkimia.so
|
||||||
|
%{_kf5_qmldir}/org/kde/alkimia/qmldir
|
||||||
|
%{_kf5_sharedir}/alkimia5/
|
||||||
|
%{_kf5_sysconfdir}/xdg/alkimia-quotes.knsrc
|
||||||
|
%{_kf5_sysconfdir}/xdg/kmymoney-quotes.knsrc
|
||||||
|
%{_kf5_sysconfdir}/xdg/skrooge-quotes.knsrc
|
||||||
|
|
||||||
%files -n libalkimia5-devel
|
%files -n libalkimia5-devel
|
||||||
%license COPYING.LIB
|
%license COPYING.LIB
|
||||||
%dir %{_includedir}/alkimia/
|
%dir %{_includedir}/alkimia/
|
||||||
@ -78,4 +112,8 @@ The development files for libalkimia.
|
|||||||
%doc README.md
|
%doc README.md
|
||||||
%{_kf5_libdir}/libalkimia5.so.%{sonum}*
|
%{_kf5_libdir}/libalkimia5.so.%{sonum}*
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user