Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package stellarsolver for openSUSE:Factory checked in at 2022-01-24 23:10:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/stellarsolver (Old) and /work/SRC/openSUSE:Factory/.stellarsolver.new.1938 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "stellarsolver" Mon Jan 24 23:10:18 2022 rev:4 rq:948439 version:1.9 Changes: -------- --- /work/SRC/openSUSE:Factory/stellarsolver/stellarsolver.changes 2021-08-30 13:55:47.845867773 +0200 +++ /work/SRC/openSUSE:Factory/.stellarsolver.new.1938/stellarsolver.changes 2022-01-24 23:10:58.426356186 +0100 @@ -1,0 +2,9 @@ +Mon Jan 24 15:42:57 UTC 2022 - Paolo Stivanin <[email protected]> + +- Update to 1.9: + * use C locale for numbers + * fixed some warnings + * enclosing the deprecated code corrections in qt version check ifdefs +- Add fix-version.patch + +------------------------------------------------------------------- Old: ---- stellarsolver-1.8.tar.gz New: ---- fix-version.patch stellarsolver-1.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ stellarsolver.spec ++++++ --- /var/tmp/diff_new_pack.hw4Au1/_old 2022-01-24 23:10:59.182351019 +0100 +++ /var/tmp/diff_new_pack.hw4Au1/_new 2022-01-24 23:10:59.182351019 +0100 @@ -1,7 +1,7 @@ # # spec file for package stellarsolver # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,13 +18,15 @@ %define sover 1 Name: stellarsolver -Version: 1.8 +Version: 1.9 Release: 0 Summary: Astrometric Solver License: GPL-3.0-or-later Group: Productivity/Scientific/Astronomy URL: https://github.com/rlancaste/stellarsolver Source0: https://github.com/rlancaste/stellarsolver/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM https://github.com/rlancaste/stellarsolver/pull/88 +Patch0: fix-version.patch BuildRequires: pkgconfig BuildRequires: cmake(Qt5Concurrent) BuildRequires: cmake(Qt5Core) @@ -58,7 +60,7 @@ %lang_package %prep -%setup -q +%autosetup -p1 %build %cmake -DCMAKE_INSTALL_LIBDIR=%{_lib} ++++++ fix-version.patch ++++++ >From c1f878c4f13587181c8b19ac12194bc87baad51c Mon Sep 17 00:00:00 2001 From: Paolo Stivanin <[email protected]> Date: Mon, 24 Jan 2022 16:47:58 +0100 Subject: [PATCH] Update CMakeLists.txt latest release contains wrong version number, this commit fixes it --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6925330..8687bd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,9 +6,9 @@ cmake_minimum_required(VERSION 3.0) # Timestamp build string(TIMESTAMP StellarSolver_BUILD_TS UTC) -# StellarSolver Version 1.8 +# StellarSolver Version 1.9 set (StellarSolver_VERSION_MAJOR 1) -set (StellarSolver_VERSION_MINOR 8) +set (StellarSolver_VERSION_MINOR 9) set (StellarSolver_SOVERSION "${StellarSolver_VERSION_MAJOR}") set (StellarSolver_VERSION ${StellarSolver_VERSION_MAJOR}.${StellarSolver_VERSION_MINOR}) ++++++ stellarsolver-1.8.tar.gz -> stellarsolver-1.9.tar.gz ++++++ /work/SRC/openSUSE:Factory/stellarsolver/stellarsolver-1.8.tar.gz /work/SRC/openSUSE:Factory/.stellarsolver.new.1938/stellarsolver-1.9.tar.gz differ: char 16, line 1
