Dominique Leuenberger 2019-11-03 11:25:22 +00:00 committed by Git OBS Bridge
commit 6d6b988483
7 changed files with 46 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49e4f1b8d394af9dd4cb13d1c6e3937a7544506596e01ae2239acb47694d8958
size 4696645

3
GPXSee-7.17.tar.gz Normal file
View File

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

View File

@ -1,5 +1,5 @@
pkgname=gpxsee
pkgver=7.15
pkgver=7.17
pkgrel=1
pkgdesc='GPS log files visualizing and analyzing tool'
arch=('i686' 'x86_64')

View File

@ -1,3 +1,19 @@
gpxsee (7.17) stable; urgency=low
* Fixed program crash on empty GPX segment.
* Fixed broken DEM value reading on S/W coordinates.
* Various GPI parser fixes & improvements.
-- Martin Tuma <tumic@cbox.cz> Sat, 02 Nov 2019 10:10:33 +0100
gpxsee (7.16) stable; urgency=low
* Added support for Garmin GPI files.
* Hyperlink + copy&paste enabled tool tips.
* Various minor bug fixes in data loading.
-- Martin Tuma <tumic@cbox.cz> Mon, 28 Oct 2019 22:34:24 +0100
gpxsee (7.15) stable; urgency=low
* Fixed broken align of zoom level 0 with tiles of a different

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sat Nov 2 10:03:40 CET 2019 - tumic@cbox.cz
- Update to version 7.17
* Fixed program crash on empty GPX segment.
* Fixed broken DEM value reading on S/W coordinates.
* Various GPI parser fixes & improvements.
-------------------------------------------------------------------
Mon Oct 28 22:26:16 CET 2019 - tumic@cbox.cz
- Update to version 7.16
* Added support for Garmin GPI files.
* Hyperlink + copy&paste enabled tool tips.
* Various minor bug fixes in data loading.
-------------------------------------------------------------------
Sat Oct 5 19:03:32 CEST 2019 - tumic@cbox.cz

View File

@ -1,9 +1,9 @@
Format: 1.0
Source: gpxsee
Version: 7.15
Version: 7.17
Binary: gpxsee
Maintainer: Martin Tuma <tumic@cbox.cz>
Architecture: any
Build-Depends: debhelper (>= 9), qtbase5-dev, qtbase5-dev-tools, qt5-qmake, qttools5-dev-tools, libqt5opengl5-dev
Files:
00000000000000000000000000000000 0 GPXSee-7.15.tar.gz
00000000000000000000000000000000 0 GPXSee-7.17.tar.gz

View File

@ -19,7 +19,7 @@
# See also http://en.opensuse.org/openSUSE:Specfile_guidelines
Name: gpxsee
Version: 7.15
Version: 7.17
Release: 1
Summary: GPS log file visualization and analysis tool
License: GPL-3.0-only
@ -29,7 +29,10 @@ Source0: GPXSee-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: make
%if 0%{?fedora_version}
%if 0%{?centos_version} >= 800
BuildRequires: gdb-headless
%endif
%if 0%{?fedora_version} || 0%{?centos_version} >= 800
BuildRequires: qt5-qtbase
BuildRequires: qt5-qtbase-gui
BuildRequires: qt5-qtbase-devel
@ -51,7 +54,7 @@ Recommends: libQt5Sql5-sqlite
Recommends: libqt5-qtimageformats
Recommends: libqt5-qtpbfimageformat
%else
%if 0%{?rhel_version} || 0%{?centos_version}
%if (0%{?rhel_version} && 0%{?rhel_version} < 800) || (0%{?centos_version} && 0%{?centos_version} < 800)
BuildRequires: libqt4-devel
%else
# Mageia
@ -84,11 +87,11 @@ JPEG files.
lrelease-qt5 gpxsee.pro
%{qmake5} gpxsee.pro
%else
%if 0%{?fedora_version}
%if 0%{?fedora_version} || 0%{?centos_version} >= 800
lrelease-qt5 gpxsee.pro
%{qmake_qt5} gpxsee.pro
%else
%if 0%{?rhel_version} || 0%{?centos_version}
%if (0%{?rhel_version} && 0%{?rhel_version} < 800) || (0%{?centos_version} && 0%{?centos_version} < 800)
lrelease-qt4 gpxsee.pro
qmake-qt4 PREFIX=/usr gpxsee.pro
%else