From c660791a511020c7b9a2a92c02fec3de7216f073defe2cd6dc667755bd4fe160 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sat, 5 Aug 2017 18:28:10 +0000 Subject: [PATCH 1/7] OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=140 --- marble-17.04.3.tar.xz | 3 --- marble-17.07.90.tar.xz | 3 +++ marble.changes | 8 ++++++++ 3 files changed, 11 insertions(+), 3 deletions(-) delete mode 100644 marble-17.04.3.tar.xz create mode 100644 marble-17.07.90.tar.xz diff --git a/marble-17.04.3.tar.xz b/marble-17.04.3.tar.xz deleted file mode 100644 index f2ce97e..0000000 --- a/marble-17.04.3.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:83d63f3a6cd25231ba7a6245f6ef33d28abfb869bacd70a2576c46a6f9b39056 -size 52304300 diff --git a/marble-17.07.90.tar.xz b/marble-17.07.90.tar.xz new file mode 100644 index 0000000..ba0b3e0 --- /dev/null +++ b/marble-17.07.90.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c0179ac6c8184baf07d2117b467be56b89b1ecce4250f5eedaf050859c3fb0 +size 52274840 diff --git a/marble.changes b/marble.changes index a82d4f7..8a8361e 100644 --- a/marble.changes +++ b/marble.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Sat Aug 5 18:19:34 UTC 2017 - christophe@krop.fr + +- Update to KDE Applications 17.07.90 + * KDE Applications 17.07.90 + * https://www.kde.org/announcements/announce-applications-17.07.90.php + + ------------------------------------------------------------------- Sun Jul 16 08:49:48 CEST 2017 - lbeltrame@kde.org From 694d50715e19d6ed930aa478459bc9ef730bee41d598a5c015e817cab5205f38 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sat, 5 Aug 2017 18:53:45 +0000 Subject: [PATCH 2/7] OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=141 --- marble.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marble.spec b/marble.spec index c261218..a327516 100644 --- a/marble.spec +++ b/marble.spec @@ -20,7 +20,7 @@ %define _so -27 %define _so_astro 1 Name: marble -Version: 17.04.3 +Version: 17.07.90 Release: 0 %define kf5_version 5.26.0 # Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA) From b17b93cbd2efe6f0112cf219c75fcd58925cbc54265fd943e5ed2d4f55576820 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sun, 6 Aug 2017 06:44:42 +0000 Subject: [PATCH 3/7] OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=142 --- ...and-political-map-showing-no-content.patch | 109 ------------------ marble.changes | 3 +- marble.spec | 3 - 3 files changed, 2 insertions(+), 113 deletions(-) delete mode 100644 Fix-plain-map-and-political-map-showing-no-content.patch diff --git a/Fix-plain-map-and-political-map-showing-no-content.patch b/Fix-plain-map-and-political-map-showing-no-content.patch deleted file mode 100644 index e5cfe5a..0000000 --- a/Fix-plain-map-and-political-map-showing-no-content.patch +++ /dev/null @@ -1,109 +0,0 @@ -From ce6cbb18b1483245ec2e43c84166f68cea60a26b Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Dennis=20Nienh=C3=BCser?= -Date: Mon, 26 Jun 2017 21:57:53 +0200 -Subject: Fix both plain map and political map showing no content at all - -Both have neither a texture nor a vector tile layer, and hence no -tile zoom level was set anymore in geometry layer after f847505. Now -a default tile zoom level is calculated in such scenarios. - -BUG: 379297 ---- - src/lib/marble/MarbleMap.cpp | 17 ++++++++++------- - src/lib/marble/layers/VectorTileLayer.cpp | 9 ++++++--- - 2 files changed, 16 insertions(+), 10 deletions(-) - -diff --git a/src/lib/marble/MarbleMap.cpp b/src/lib/marble/MarbleMap.cpp -index d41c0f1..d62642a 100644 ---- a/src/lib/marble/MarbleMap.cpp -+++ b/src/lib/marble/MarbleMap.cpp -@@ -22,6 +22,7 @@ - // Qt - #include - #include -+#include - - // Marble - #include "layers/FloatItemsLayer.h" -@@ -209,9 +210,6 @@ MarbleMapPrivate::MarbleMapPrivate( MarbleMap *parent, MarbleModel *model ) : - - QObject::connect( &m_geometryLayer, SIGNAL(repaintNeeded()), - parent, SIGNAL(repaintNeeded())); -- QObject::connect(&m_vectorTileLayer, SIGNAL(tileLevelChanged(int)), &m_geometryLayer, SLOT(setTileLevel(int))); -- QObject::connect(&m_vectorTileLayer, SIGNAL(tileLevelChanged(int)), &m_placemarkLayer, SLOT(setTileLevel(int))); -- QObject::connect(&m_textureLayer, SIGNAL(tileLevelChanged(int)), &m_placemarkLayer, SLOT(setTileLevel(int))); - - /* - * Slot handleHighlight finds all placemarks -@@ -239,9 +236,11 @@ MarbleMapPrivate::MarbleMapPrivate( MarbleMap *parent, MarbleModel *model ) : - parent, SLOT(updateTileLevel()) ); - QObject::connect( &m_vectorTileLayer, SIGNAL(tileLevelChanged(int)), - parent, SLOT(updateTileLevel()) ); -+ QObject::connect( parent, SIGNAL(radiusChanged(int)), -+ parent, SLOT(updateTileLevel()) ); -+ - QObject::connect( &m_textureLayer, SIGNAL(repaintNeeded()), - parent, SIGNAL(repaintNeeded()) ); -- - QObject::connect( parent, SIGNAL(visibleLatLonAltBoxChanged(GeoDataLatLonAltBox)), - parent, SIGNAL(repaintNeeded()) ); - -@@ -466,7 +465,8 @@ int MarbleMap::preferredRadiusFloor( int radius ) - - int MarbleMap::tileZoomLevel() const - { -- return qMax(d->m_textureLayer.tileZoomLevel(), d->m_vectorTileLayer.tileZoomLevel()); -+ auto const tileZoomLevel = qMax(d->m_textureLayer.tileZoomLevel(), d->m_vectorTileLayer.tileZoomLevel()); -+ return tileZoomLevel >= 0 ? tileZoomLevel : qMin(qMax(qLn(d->m_viewport.radius()*4/256)/qLn(2.0), 1), d->m_styleBuilder.maximumZoomLevel()); - } - - -@@ -828,7 +828,10 @@ void MarbleMapPrivate::setDocument( const QString& key ) - - void MarbleMapPrivate::updateTileLevel() - { -- emit q->tileLevelChanged(q->tileZoomLevel()); -+ auto const tileZoomLevel = q->tileZoomLevel(); -+ m_geometryLayer.setTileLevel(tileZoomLevel); -+ m_placemarkLayer.setTileLevel(tileZoomLevel); -+ emit q->tileLevelChanged(tileZoomLevel); - } - - // Used to be paintEvent() -diff --git a/src/lib/marble/layers/VectorTileLayer.cpp b/src/lib/marble/layers/VectorTileLayer.cpp -index 864dddf..505d7a6 100644 ---- a/src/lib/marble/layers/VectorTileLayer.cpp -+++ b/src/lib/marble/layers/VectorTileLayer.cpp -@@ -133,7 +133,7 @@ RenderState VectorTileLayer::renderState() const - - int VectorTileLayer::tileZoomLevel() const - { -- int level = 0; -+ int level = -1; - for (const auto *mapper: d->m_activeTileModels) { - level = qMax(level, mapper->tileZoomLevel()); - } -@@ -163,7 +163,7 @@ bool VectorTileLayer::render(GeoPainter *painter, ViewportParams *viewport, - mapper->setViewport(viewport->viewLatLonAltBox()); - level = qMax(level, mapper->tileZoomLevel()); - } -- if (oldLevel != level) { -+ if (oldLevel != level && level >= 0) { - emit tileLevelChanged(level); - } - -@@ -202,7 +202,10 @@ void VectorTileLayer::setMapTheme(const QVectorupdateLayerSettings(); -- emit tileLevelChanged(tileZoomLevel()); -+ auto const level = tileZoomLevel(); -+ if (level >= 0) { -+ emit tileLevelChanged(level); -+ } - } - - } --- -cgit v0.11.2 - diff --git a/marble.changes b/marble.changes index 8a8361e..f65bc2b 100644 --- a/marble.changes +++ b/marble.changes @@ -4,7 +4,8 @@ Sat Aug 5 18:19:34 UTC 2017 - christophe@krop.fr - Update to KDE Applications 17.07.90 * KDE Applications 17.07.90 * https://www.kde.org/announcements/announce-applications-17.07.90.php - +- Drop Fix-plain-map-and-political-map-showing-no-content.patch + (merged upstream) ------------------------------------------------------------------- Sun Jul 16 08:49:48 CEST 2017 - lbeltrame@kde.org diff --git a/marble.spec b/marble.spec index a327516..2e368ff 100644 --- a/marble.spec +++ b/marble.spec @@ -31,8 +31,6 @@ License: LGPL-2.1+ Group: Amusements/Teaching/Other Url: http://edu.kde.org Source0: marble-%{version}.tar.xz -# PATCH-FIX-UPSTREAM Fix-plain-map-and-political-map-showing-no-content.patch kde#379297 -- fix display of the plain map and the political map -Patch1: Fix-plain-map-and-political-map-showing-no-content.patch BuildRequires: extra-cmake-modules BuildRequires: fdupes BuildRequires: gpsd-devel @@ -158,7 +156,6 @@ The astronomy library for the satellites plugin. %prep %setup -q -n marble-%{version} -%patch1 -p1 %build export SUSE_ASNEEDED=0 From d8cd9e21d1eb9b15cafcd15bc1c1fe2f5b9ad3eba6ff9c0d5169ac13a2838af2 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sun, 6 Aug 2017 07:09:32 +0000 Subject: [PATCH 4/7] OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=143 --- marble.spec | 60 +++++++++++++++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/marble.spec b/marble.spec index 2e368ff..8df1017 100644 --- a/marble.spec +++ b/marble.spec @@ -17,7 +17,7 @@ %bcond_without lang -%define _so -27 +%define _so -28 %define _so_astro 1 Name: marble Version: 17.07.90 @@ -31,6 +31,8 @@ License: LGPL-2.1+ Group: Amusements/Teaching/Other Url: http://edu.kde.org Source0: marble-%{version}.tar.xz +BuildRequires: kwindowsystem-devel +BuildRequires: plasma-framework-devel BuildRequires: extra-cmake-modules BuildRequires: fdupes BuildRequires: gpsd-devel @@ -47,6 +49,7 @@ BuildRequires: kservice-devel BuildRequires: kwallet-devel BuildRequires: libqt5-qtlocation-devel BuildRequires: libquazip-qt5-devel +BuildRequires: libshp-devel BuildRequires: perl BuildRequires: phonon4qt5-devel BuildRequires: pkgconfig @@ -71,9 +74,11 @@ Requires: libastro%{_so_astro} = %{version} Requires: libmarblewidget-qt5%{_so} = %{version} Requires: marble-frontend = %{version} Recommends: %{name}-doc = %{version} +%if %{with lang} +Recommends: %{name}-lang +%endif Obsoletes: marble5 < %{version} Provides: marble5 < %{version} -Recommends: %{name}-lang BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -181,42 +186,43 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %files %defattr(-,root,root) %doc CREDITS ChangeLog COPYING* LICENSE* MANIFESTO.txt -%{_datadir}/marble/ -%{_kf5_appstreamdir}/ -%{_kf5_iconsdir}/hicolor/*/apps/marble.* -%{_libdir}/marble/ -%{_libdir}/libmarbledeclarative.so -%{_kf5_plugindir}/designer/ -%exclude %{_datadir}/marble/data -%{_kf5_plugindir}/libmarble*so -%{_kf5_plugindir}/plasma_runner_marble.so -%{_kf5_servicesdir}/*desktop +%exclude %{_kf5_sharedir}/marble/data +%{_kf5_applicationsdir}/marble_geo.desktop +%{_kf5_applicationsdir}/marble_geojson.desktop %{_kf5_applicationsdir}/marble_gpx.desktop %{_kf5_applicationsdir}/marble_kml.desktop %{_kf5_applicationsdir}/marble_kmz.desktop -%{_kf5_applicationsdir}/marble_geo.desktop +%{_kf5_applicationsdir}/marble_shp.desktop %{_kf5_applicationsdir}/marble_worldwind.desktop -%{_kf5_applicationsdir}/marble_geojson.desktop -%{_kf5_configkcfgdir}/ -%{_kf5_kxmlguidir}/marble/ -%{_datadir}/mime/packages/geo.xml -%{_kf5_qmldir}/org/kde/marble/ +%{_kf5_appstreamdir}/ %{_kf5_configdir}/marble.knsrc +%{_kf5_configkcfgdir}/ +%{_kf5_iconsdir}/hicolor/*/apps/marble.* +%{_kf5_kxmlguidir}/marble/ +%{_kf5_libdir}/libmarbledeclarative.so +%{_kf5_libdir}/marble/ +%{_kf5_plugindir}/designer/ +%{_kf5_plugindir}/libmarble*so +%{_kf5_plugindir}/plasma_runner_marble.so +%{_kf5_qmldir}/org/kde/marble/ +%{_kf5_servicesdir}/*desktop +%{_kf5_sharedir}/marble/ +%{_kf5_sharedir}/mime/packages/geo.xml %files devel %defattr(-,root,root) %doc BUGS CODING -%{_includedir}/marble/ -%{_includedir}/astro/ -%{_kf5_libdir}/libmarblewidget-qt5.so -%{_kf5_libdir}/libastro.so +%{_kf5_includedir}/astro/ +%{_kf5_includedir}/marble/ %{_kf5_libdir}/cmake/Astro/ %{_kf5_libdir}/cmake/Marble/ -%{_libdir}/qt5/mkspecs/modules/qt_Marble.pri +%{_kf5_libdir}/libastro.so +%{_kf5_libdir}/libmarblewidget-qt5.so +%{_kf5_libdir}/qt5/mkspecs/modules/qt_Marble.pri %files data %defattr(-,root,root) -%{_datadir}/marble/data +%{_kf5_sharedir}/marble/data %files doc %defattr(-,root,root) @@ -239,9 +245,9 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %defattr(-,root,root) %{_kf5_applicationsdir}/org.kde.marble.desktop %{_kf5_bindir}/marble -%dir %{_datadir}/plasma -%{_datadir}/plasma/plasmoids/ -%{_datadir}/plasma/wallpapers/ +%dir %{_kf5_sharedir}/plasma +%{_kf5_sharedir}/plasma/plasmoids/ +%{_kf5_sharedir}/plasma/wallpapers/ %if %{with lang} %files lang -f %{name}.lang From 207e243c6013bf29b1cd657d4648c03f95482b12446273965f6ebba7ed74a59c Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sun, 6 Aug 2017 07:30:59 +0000 Subject: [PATCH 5/7] OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=144 --- marble.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/marble.spec b/marble.spec index 8df1017..8192d1f 100644 --- a/marble.spec +++ b/marble.spec @@ -212,8 +212,8 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %files devel %defattr(-,root,root) %doc BUGS CODING -%{_kf5_includedir}/astro/ -%{_kf5_includedir}/marble/ +%{_includedir}/astro/ +%{_includedir}/marble/ %{_kf5_libdir}/cmake/Astro/ %{_kf5_libdir}/cmake/Marble/ %{_kf5_libdir}/libastro.so From 680bb5a92a819a2c0d6d913c0193c1a18f50f4310b0f384e9a4f7b5b80b7fc02 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Fri, 11 Aug 2017 23:01:21 +0000 Subject: [PATCH 6/7] OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=145 --- marble.changes | 9 +++++++++ marble.spec | 33 +++++++++++++++++---------------- 2 files changed, 26 insertions(+), 16 deletions(-) diff --git a/marble.changes b/marble.changes index f65bc2b..329ec26 100644 --- a/marble.changes +++ b/marble.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Fri Aug 11 22:46:26 UTC 2017 - christophe@krop.fr + +- Update to KDE Applications 17.08.0 + * New feature release + * https://www.kde.org/announcements/announce-applications-17.08.0.php +- Changes since 17.04.3 : +- Too many changes to list here + ------------------------------------------------------------------- Sat Aug 5 18:19:34 UTC 2017 - christophe@krop.fr diff --git a/marble.spec b/marble.spec index 8192d1f..822cf2c 100644 --- a/marble.spec +++ b/marble.spec @@ -1,7 +1,7 @@ # # spec file for package marble # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 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 @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %bcond_without lang %define _so -28 @@ -23,7 +24,7 @@ Name: marble Version: 17.07.90 Release: 0 %define kf5_version 5.26.0 -# Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA) +# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} Summary: Generic map viewer # License note: the tools directory contains GPL-3 tools, but they are neither built nor installed by the package @@ -31,8 +32,6 @@ License: LGPL-2.1+ Group: Amusements/Teaching/Other Url: http://edu.kde.org Source0: marble-%{version}.tar.xz -BuildRequires: kwindowsystem-devel -BuildRequires: plasma-framework-devel BuildRequires: extra-cmake-modules BuildRequires: fdupes BuildRequires: gpsd-devel @@ -47,12 +46,14 @@ BuildRequires: kparts-devel BuildRequires: krunner-devel BuildRequires: kservice-devel BuildRequires: kwallet-devel +BuildRequires: kwindowsystem-devel BuildRequires: libqt5-qtlocation-devel BuildRequires: libquazip-qt5-devel BuildRequires: libshp-devel BuildRequires: perl BuildRequires: phonon4qt5-devel BuildRequires: pkgconfig +BuildRequires: plasma-framework-devel BuildRequires: pkgconfig(Qt5Concurrent) >= 5.2.0 BuildRequires: pkgconfig(Qt5Core) >= 5.2.0 BuildRequires: pkgconfig(Qt5DBus) >= 5.2.0 @@ -74,11 +75,11 @@ Requires: libastro%{_so_astro} = %{version} Requires: libmarblewidget-qt5%{_so} = %{version} Requires: marble-frontend = %{version} Recommends: %{name}-doc = %{version} +Obsoletes: marble5 < %{version} +Provides: marble5 < %{version} %if %{with lang} Recommends: %{name}-lang %endif -Obsoletes: marble5 < %{version} -Provides: marble5 < %{version} BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -186,7 +187,8 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %files %defattr(-,root,root) %doc CREDITS ChangeLog COPYING* LICENSE* MANIFESTO.txt -%exclude %{_kf5_sharedir}/marble/data +%config %{_kf5_configdir}/marble.knsrc +%exclude %{_datadir}/marble/data %{_kf5_applicationsdir}/marble_geo.desktop %{_kf5_applicationsdir}/marble_geojson.desktop %{_kf5_applicationsdir}/marble_gpx.desktop @@ -195,7 +197,6 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %{_kf5_applicationsdir}/marble_shp.desktop %{_kf5_applicationsdir}/marble_worldwind.desktop %{_kf5_appstreamdir}/ -%{_kf5_configdir}/marble.knsrc %{_kf5_configkcfgdir}/ %{_kf5_iconsdir}/hicolor/*/apps/marble.* %{_kf5_kxmlguidir}/marble/ @@ -214,19 +215,19 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %doc BUGS CODING %{_includedir}/astro/ %{_includedir}/marble/ -%{_kf5_libdir}/cmake/Astro/ -%{_kf5_libdir}/cmake/Marble/ +%{_kf5_cmakedir}/Astro/ +%{_kf5_cmakedir}/Marble/ %{_kf5_libdir}/libastro.so %{_kf5_libdir}/libmarblewidget-qt5.so -%{_kf5_libdir}/qt5/mkspecs/modules/qt_Marble.pri +%{_kf5_mkspecsdir}/qt_Marble.pri %files data %defattr(-,root,root) -%{_kf5_sharedir}/marble/data +%{_datadir}/marble/data %files doc %defattr(-,root,root) -%{_kf5_htmldir}/en/marble/ +%doc %lang(en) %{_kf5_htmldir}/en/marble/ %files -n libmarblewidget-qt5%{_so} %defattr(-,root,root) @@ -245,9 +246,9 @@ export RPM_OPT_FLAGS="%{optflags} -mminimal-toc" %defattr(-,root,root) %{_kf5_applicationsdir}/org.kde.marble.desktop %{_kf5_bindir}/marble -%dir %{_kf5_sharedir}/plasma -%{_kf5_sharedir}/plasma/plasmoids/ -%{_kf5_sharedir}/plasma/wallpapers/ +%dir %{_datadir}/plasma +%{_datadir}/plasma/plasmoids/ +%{_datadir}/plasma/wallpapers/ %if %{with lang} %files lang -f %{name}.lang From 9e34588e63421a990761c650ab113c840363a0bd7e2142ae1f730766714d9ff8 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Fri, 11 Aug 2017 23:17:49 +0000 Subject: [PATCH 7/7] 17.08.0 OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/marble?expand=0&rev=146 --- marble-17.07.90.tar.xz | 3 --- marble-17.08.0.tar.xz | 3 +++ marble.spec | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 marble-17.07.90.tar.xz create mode 100644 marble-17.08.0.tar.xz diff --git a/marble-17.07.90.tar.xz b/marble-17.07.90.tar.xz deleted file mode 100644 index ba0b3e0..0000000 --- a/marble-17.07.90.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:67c0179ac6c8184baf07d2117b467be56b89b1ecce4250f5eedaf050859c3fb0 -size 52274840 diff --git a/marble-17.08.0.tar.xz b/marble-17.08.0.tar.xz new file mode 100644 index 0000000..0b56577 --- /dev/null +++ b/marble-17.08.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11116714be3a22b81ad301ba2bd5b6d25a7d178f989e62b1947dcfe547424e2 +size 52272288 diff --git a/marble.spec b/marble.spec index 822cf2c..f263d79 100644 --- a/marble.spec +++ b/marble.spec @@ -21,7 +21,7 @@ %define _so -28 %define _so_astro 1 Name: marble -Version: 17.07.90 +Version: 17.08.0 Release: 0 %define kf5_version 5.26.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)