Hello community,

here is the log from the commit of package kstars for openSUSE:Factory checked 
in at 2018-01-19 11:51:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kstars (Old)
 and      /work/SRC/openSUSE:Factory/.kstars.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kstars"

Fri Jan 19 11:51:47 2018 rev:90 rq:560976 version:2.8.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/kstars/kstars.changes    2017-11-17 
10:52:35.493000002 +0100
+++ /work/SRC/openSUSE:Factory/.kstars.new/kstars.changes       2018-01-19 
11:52:01.610993164 +0100
@@ -1,0 +2,10 @@
+Wed Dec 20 17:42:00 UTC 2017 - [email protected]
+
+- Update to 2.8.9
+  * kstars is released independently from KDE Applications now
+  * Lots of changes since 2.7.10 that was shipped with KDE Applications
+    17.08.3, please see http://knro.blogspot.co.at/ or the
+    included ChangeLog file (in /usr/share/doc/packages/kstars/)
+    for details
+
+-------------------------------------------------------------------

Old:
----
  kstars-17.08.3.tar.xz

New:
----
  kstars-2.8.9.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kstars.spec ++++++
--- /var/tmp/diff_new_pack.vmNeUD/_old  2018-01-19 11:52:03.230916810 +0100
+++ /var/tmp/diff_new_pack.vmNeUD/_new  2018-01-19 11:52:03.234916621 +0100
@@ -19,11 +19,8 @@
 %bcond_without lang
 
 Name:           kstars
-Version:        17.08.3
+Version:        2.8.9
 Release:        0
-%define kf5_version 5.26.0
-# 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:        Desktop Planetarium
 # Note for legal: the Apache licensed files in the tarball are for the
 # Android version - they're neither built nor installed
@@ -32,7 +29,7 @@
 License:        GPL-2.0+
 Group:          Productivity/Scientific/Astronomy
 Url:            http://edu.kde.org/kstars/
-Source0:        %{name}-%{version}.tar.xz
+Source0:        
https://download.kde.org/stable/%{name}/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE -- disable_downloading_into_system_dirs.patch -- do not 
allow saving runtime files into system dirs.
 Patch0:         disable_downloading_into_system_dirs.patch
 BuildRequires:  Mesa-devel
@@ -73,8 +70,6 @@
 BuildRequires:  pkgconfig(Qt5Xml)
 Recommends:     libindi
 Recommends:     xplanet
-Obsoletes:      %{name}5 < %{version}
-Provides:       %{name}5 = %{version}
 %if %{with lang}
 Recommends:     %{name}-lang
 %endif

++++++ disable_downloading_into_system_dirs.patch ++++++
--- /var/tmp/diff_new_pack.vmNeUD/_old  2018-01-19 11:52:03.254915678 +0100
+++ /var/tmp/diff_new_pack.vmNeUD/_new  2018-01-19 11:52:03.254915678 +0100
@@ -2,11 +2,11 @@
 index e1a7d73..111d1da 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
-@@ -389,7 +389,7 @@ install(FILES org.kde.kstars.appdata.xml DESTINATION 
${KDE_INSTALL_METAINFODIR})
- 
+@@ -376,7 +376,7 @@ install(FILES org.kde.kstars.appdata.xml DESTINATION 
${KDE_INSTALL_METAINFODIR})
  feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
  
--IF (NOT BUILD_KSTARS_LITE)
+ # Only build k5auth for Linux
+-if (NOT BUILD_KSTARS_LITE AND ${CMAKE_SYSTEM_NAME} MATCHES "Linux")
 +IF (FALSE)
      # This helper file is generated to download astrometry.net index files.
      add_executable(kauth_kstars_helper kstars/auxiliary/downloadhelper.cpp  
${helper_mocs})
@@ -15,27 +15,27 @@
 index 35e474b..2899906 100644
 --- a/kstars/ekos/align/opsastrometryindexfiles.cpp
 +++ b/kstars/ekos/align/opsastrometryindexfiles.cpp
-@@ -274,22 +274,7 @@ void OpsAstrometryIndexFiles::downloadIndexFile(QString 
URL, QString fileN, QChe
-                 }
-                 else
-                 {
+@@ -368,22 +368,7 @@ void OpsAstrometryIndexFiles::downloadIndexFile(QString 
URL, QString fileN, QChe
+             }
+             else
+             {
 -#ifdef Q_OS_OSX
--                    KMessageBox::error(0, i18n("Astrometry Folder Permissions 
Error"));
+-                KMessageBox::error(0, i18n("Astrometry Folder Permissions 
Error"));
 -#else
--                    KAuth::Action 
action(QStringLiteral("org.kde.kf5auth.kstars.saveindexfile"));
--                    
action.setHelperId(QStringLiteral("org.kde.kf5auth.kstars"));
--                    action.setArguments(QVariantMap({ { "filename", 
indexFileN }, { "contents", responseData } }));
--                    KAuth::ExecuteJob *job = action.execute();
--                    if (!job->exec())
--                    {
--                        QMessageBox::information(
--                            this, "Error",
--                            QString("KAuth returned an error code: %1 
%2").arg(job->error()).arg(job->errorString()));
--                        slotUpdate();
--                        return;
--                    }
+-                KAuth::Action 
action(QStringLiteral("org.kde.kf5auth.kstars.saveindexfile"));
+-                action.setHelperId(QStringLiteral("org.kde.kf5auth.kstars"));
+-                action.setArguments(QVariantMap({ { "filename", indexFileN }, 
{ "contents", responseData } }));
+-                KAuth::ExecuteJob *job = action.execute();
+-                if (!job->exec())
+-                {
+-                    QMessageBox::information(
+-                                this, "Error",
+-                                QString("KAuth returned an error code: %1 
%2").arg(job->error()).arg(job->errorString()));
+-                    slotUpdate();
+-                    return;
+-                }
 -#endif
-+                    KMessageBox::error(0, i18n("Permission denied for 
system-wide installation"));
-                 }
++                KMessageBox::error(0, i18n("Permission denied for system-wide 
installation"));
+             }
  
-                 if (currentIndex == maxIndex)
+             if (currentIndex == maxIndex)

++++++ kstars-17.08.3.tar.xz -> kstars-2.8.9.tar.xz ++++++
/work/SRC/openSUSE:Factory/kstars/kstars-17.08.3.tar.xz 
/work/SRC/openSUSE:Factory/.kstars.new/kstars-2.8.9.tar.xz differ: char 25, 
line 1


Reply via email to