Hello community,

here is the log from the commit of package geotiff for openSUSE:Leap:15.2 
checked in at 2020-03-18 00:36:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/geotiff (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.geotiff.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "geotiff"

Wed Mar 18 00:36:27 2020 rev:11 rq:785807 version:1.5.1

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/geotiff/geotiff.changes        2020-01-15 
15:00:05.881737264 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.geotiff.new.3160/geotiff.changes      
2020-03-18 00:36:42.833410684 +0100
@@ -1,0 +2,47 @@
+Sun Jul 21 18:34:29 UTC 2019 - Dirk Stoecker <[email protected]>
+
+- Require proj 6.0 also for devel package so it matches the
+  build requirements
+
+-------------------------------------------------------------------
+Tue Apr  2 11:27:36 UTC 2019 - Bruno Friedmann <[email protected]>
+
+- Update to version 1.5.1 (support gdal 2.4.1)
+- Remove merged upstream patch f4956251.patch 
+
+-------------------------------------------------------------------
+Mon Mar 25 18:42:34 UTC 2019 - Bruno Friedmann <[email protected]>
+
+- Add upstream patch f4956251.patch to make it useable with gdal
+  2.4.1
+- Upstream issue https://github.com/OSGeo/libgeotiff/issues/14
+  Simplify fixing file (all are utf-8 ok) just CRLF
+
+-------------------------------------------------------------------
+Sun Mar 24 10:14:03 UTC 2019 - Bruno Friedmann <[email protected]>
+
+- Update to version 1.5.
+  + Require PROJ >= 6 dependency
+  + Remove all CSV files used by geo_normalize API, libgeotiff now
+    relies on PROJ database for EPSG CRS definitions.
+  + geo_normalize.c: SetGTParmIds(): use 
+    ProjStraightVertPoleLongGeoKey for CT_PolarStereographic
+  + geo_normalize.c: report StdParallel1 for Mercator_2SP when a 
+    PCS code is used
+  + geo_normalize.c: fix support for Laborde Oblique Mercator
+  + listgeo: use PROJ database to display non-hardcoded values of
+    a number of keys
+- Packaging
+  + Remove unneeded patches e5cf016.patch 7425a7f.patch
+  + Move URL & source to https
+
+-------------------------------------------------------------------
+Fri Mar 15 19:58:50 UTC 2019 - Bruno Friedmann <[email protected]>
+
+- Update to bugfix version 1.4.3
+- Add upstream patches (proj6 support and build fix)
+  + e5cf016.patch
+  + 7425a7f.patch
+- Packaging: spec-cleaner minimal
+
+-------------------------------------------------------------------

Old:
----
  libgeotiff-1.4.2.tar.gz

New:
----
  libgeotiff-1.5.1.tar.gz

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

Other differences:
------------------
++++++ geotiff.spec ++++++
--- /var/tmp/diff_new_pack.UDCBjX/_old  2020-03-18 00:36:45.553412393 +0100
+++ /var/tmp/diff_new_pack.UDCBjX/_new  2020-03-18 00:36:45.569412404 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geotiff
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,25 +12,27 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
-%define sover   2
+%define sover   5
 %define libname lib%{name}%{sover}
 Name:           geotiff
-Version:        1.4.2
+Version:        1.5.1
 Release:        0
 Summary:        Library to handle georeferenced TIFF
 License:        MIT AND SUSE-Public-Domain
 Group:          Productivity/Scientific/Other
-URL:            http://trac.osgeo.org/geotiff
-Source0:        
http://download.osgeo.org/%{name}/lib%{name}/lib%{name}-%{version}.tar.gz
+URL:            https://github.com/OSGeo/libgeotiff
+Source0:        
https://download.osgeo.org/%{name}/lib%{name}/lib%{name}-%{version}.tar.gz
+# UPSTREAM Patch (geotif) to be used with gdal 2.4.1
+# Patch0:         https://github.com/OSGeo/libgeotiff/commit/f4956251.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(libtiff-4)
-BuildRequires:  pkgconfig(proj)
+BuildRequires:  pkgconfig(proj) >= 6.0
 BuildRequires:  pkgconfig(zlib)
 
 %description
@@ -43,7 +45,7 @@
 Group:          Development/Libraries/C and C++
 Requires:       %{libname} = %{version}
 Requires:       pkgconfig(libtiff-4)
-Requires:       pkgconfig(proj)
+Requires:       pkgconfig(proj) >= 6.0
 Provides:       lib%{name}-devel = %{version}
 
 %description devel
@@ -67,14 +69,10 @@
 %prep
 
 %setup -q -n lib%{name}-%{version}
-for f in `find . -type f` ; do
-       if file $f | grep -q ISO-8859 ; then
-               echo "Fix encoding for $f"
-               set -x
-               iconv -f ISO-8859-1 -t UTF-8 $f > ${f}.tmp && \
-                       mv -f ${f}.tmp $f
-               set +x
-       fi
+#%%autopatch -p2
+
+for f in `find . -type f`
+do
        if file $f | grep -q CRLF ; then
                echo "Fix line ends for $f"
                set -x
@@ -116,7 +114,6 @@
 
 install -Dpm 0644 lib%{name}.pc \
   %{buildroot}%{_libdir}/pkgconfig/lib%{name}.pc
-echo  >> %{buildroot}%{_datadir}/epsg_csv/codes.csv
 # do not ship la files
 find %{buildroot} -type f -name "*.la" -delete -print
 
@@ -125,27 +122,23 @@
 
 %files
 %license LICENSE COPYING
-%doc ChangeLog README
+%doc ChangeLog README NEWS
 %{_bindir}/geotifcp
 %{_bindir}/listgeo
 %{_bindir}/applygeo
 %{_mandir}/man1/listgeo.1%{?ext_man}
 %{_mandir}/man1/applygeo.1%{?ext_man}
 %{_mandir}/man1/geotifcp.1%{?ext_man}
-%dir %{_datadir}/epsg_csv
-%attr(0755,root,root) %{_datadir}/epsg_csv/csv2c.py*
-%attr(0755,root,root) %{_datadir}/epsg_csv/csv_tools.py*
-%attr(0644,root,root) %{_datadir}/epsg_csv/*.csv
 
 %files -n %{libname}
 %license LICENSE COPYING
-%doc ChangeLog README
+%doc ChangeLog README NEWS
 %{_libdir}/lib%{name}.so.%{sover}*
 
 %files devel
 %defattr(0644,root,root,0755)
 %license LICENSE COPYING
-%doc ChangeLog README
+%doc ChangeLog README NEWS
 %dir %{_includedir}/lib%{name}
 %{_includedir}/lib%{name}/*.h
 %{_includedir}/lib%{name}/*.inc

++++++ libgeotiff-1.4.2.tar.gz -> libgeotiff-1.5.1.tar.gz ++++++
++++ 98895 lines of diff (skipped)


Reply via email to