Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > 3777199f22b5ca01c01bbc1d5cf77e37 > files > 4

gdal-2.4.1-2.1.mga7.src.rpm

%global __requires_exclude devel\\\(libogdi31.*\\\)|devel\\\(libcfitsio.*\\\)|libgrass

# We don't want to provide private Python extension libs
%global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\.so$

%define major          20
%define libname        %mklibname %{name} %{major}
%define libnamedev     %mklibname %{name} -d
%define libnamedevstat %mklibname %{name} -d -s


# Build gdal against libgrass. It is better to instead compile the new plugin
# which builds against grass itself (and thus has more features than the
# libgrass5 version)
# In fact, building with direct grass support will break gdal on every grass
# upgrade, see http://n2.nabble.com/qgis-%2B-grass-plugin-%3D-gdal-problem-tp2394932p2405146.html
%define build_libgrass 0
%{?with_libgrass: %define build_libgrass 1}
# Current version
%define grass grass76

%define ogdidir %{_includedir}
%define ogdidir %{_includedir}/ogdi

Name:           gdal
Version:        2.4.1
%define subrel 1
Release:        %mkrel 2
Summary:        The Geospatial Data Abstraction Library (GDAL)
Group:          Sciences/Geosciences
License:        MIT
URL:            http://www.gdal.org/
Source0:        http://download.osgeo.org/gdal/%{version}/%{name}-%{version}.tar.xz

Patch0:         gdal-2.3.1-libname.patch
Patch4:         gdal-2.4.0-zlib.patch

BuildRequires:  pkgconfig(libpng)
BuildRequires:  pkgconfig(libtiff-4)
BuildRequires:  pkgconfig(geotiff)
BuildRequires:  pkgconfig(zlib)
BuildRequires:  giflib-devel
BuildRequires:  postgresql-devel
BuildRequires:  pkgconfig(libjpeg)
BuildRequires:  pkgconfig(proj) >= 4.4.7
BuildRequires:  doxygen
%if %{build_libgrass}
Requires:       grass >= 6.4.0
BuildRequires:  grass
%else
BuildConflicts: %mklibname -d grass 5 0
%endif
BuildRequires:  pkgconfig(jasper)
BuildRequires:  pkgconfig(json-c)
BuildRequires:  libgeos-devel >= 2.2.3
BuildRequires:  pkgconfig(netcdf) >= 3.6.2
BuildRequires:  pkgconfig(ogdi)
BuildRequires:  pkgconfig(cfitsio)
BuildRequires:  pkgconfig(spatialite)
BuildRequires:  python2-numpy-devel
BuildRequires:  python2dist(setuptools)
BuildRequires:  python3-numpy-devel
BuildRequires:  python3dist(setuptools)
BuildRequires:  pkgconfig(sqlite3)
BuildRequires:  librx-devel
BuildRequires:  pkgconfig(odbc)
BuildRequires:  pkgconfig(xerces-c)
BuildRequires:  hdf5-devel
BuildRequires:  swig
BuildRequires:  pkgconfig(gdlib)
BuildRequires:  gcc-c++
BuildRequires:  lzma-devel
BuildRequires:  mysql-devel
BuildRequires:  php-devel
BuildRequires:  pkgconfig(libcurl)
BuildRequires:  pkgconfig(libopenjp2)
BuildRequires:  pkgconfig(libwebp)
BuildRequires:  pkgconfig(poppler)
BuildRequires:  pkgconfig(libzstd)
BuildRequires:  g2clib-devel
BuildRequires:  qhull-devel
BuildRequires:  bash-completion
BuildRequires:  texlive-dist

%description
The Geospatial Data Abstraction Library (GDAL) is a unifying
C/C++ API for accessing raster geospatial data, and currently
includes formats like GeoTIFF, Erdas Imagine, Arc/Info
Binary, CEOS, DTED, GXF, and SDTS. It is intended to provide
efficient access, suitable for use in viewer applications,
and also attempts to preserve coordinate systems and metadata.
Python, C, and C++ interfaces are available.

%package -n     python2-gdal
Summary:        The Python 2 bindings for the GDAL library
Group:          Sciences/Geosciences
BuildRequires:  pkgconfig(python2)
Requires:       python2dist(numpy)
Obsoletes:      gdal-python
Obsoletes:      python-gdal < 2.2.2-1
Provides:       python-gdal = %{version}-%{release}

%description -n python2-gdal
The Python 2 bindings for the GDAL library.

%package -n     python3-gdal
Summary:        The Python 3 bindings for the GDAL library
Group:          Sciences/Geosciences
Requires:       python3dist(numpy)
BuildRequires:  pkgconfig(python3)

%description -n python3-gdal
The Python 3 bindings for the GDAL library.

%package -n     %{libname}
Summary:        Libraries required for the GDAL library
Group:          System/Libraries
Provides:       lib%{name} = %{version}

%description -n %{libname}
Libraries required for the GDAL library.

%package -n     %{libnamedev}
Summary:        Development files for using the GDAL library
Group:          Development/C
Requires:       %{libname} = %{version}-%{release}
Provides:       lib%{name}-devel = %{version}
Provides:       %{name}-devel = %{version}

%description -n %{libnamedev}
Development files for using the GDAL library.

%package -n     %{libnamedevstat}
Summary:        Development files for using the GDAL library
Group:          Development/C
Requires:       %{libnamedev} = %{version}-%{release}

%description -n %{libnamedevstat}
Development files for using the GDAL library.

%prep
%setup -q

%patch0 -p1 -b .libname


#(eatdirt) NB: The packed g2clib is modified compared to the
# official one, checkout the grib2.h file provided that contains all
# g2_unpack* functions while the official one is not. Moreover, the
# packaging we have of g2clib is non-standard, and provide static
# files only. We should better obsolete g2clib package in mageia and
# let that library in rather than having a static package not
# well maintained floating around and forcing us to write tons of
# patches... This is upstream job.
###patch2 -p1 -b .ext_g2clib
###%__rm -r frmts/grib/degrib/g2clib


# Use external zlib header file
%patch4 -p1 -b .ext_zlib

# Fix mandir
sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure.ac

# Fix Python samples to depend on correct interpreter
mkdir -p swig/python3/samples
pushd swig/python/samples
for f in `find . -name '*.py'`; do
  sed 's|^#!.\+python$|#!/usr/bin/python3|' $f > ../../python3/samples/$f
  chmod --reference=$f ../../python3/samples/$f
  sed -i 's|^#!.\+python$|#!/usr/bin/python2|' $f
done
popd

%build
autoreconf -vfi
%configure2_5x \
        CPPFLAGS=-D_XOPEN_SOURCE=700 \
        LIBS=-lgrib2c \
        --enable-static \
        --datadir=%_datadir/gdal \
        --includedir=%_includedir/gdal \
        --with-dods-root=no \
        --with-ogdi=%{ogdidir} \
        --with-cfitsio=yes \
        --with-geotiff=yes        \
        --with-libtiff=yes        \
        --with-libz=%_prefix      \
        --with-netcdf=%_prefix    \
        --with-hdf5=%_prefix      \
        --with-geos               \
        --with-jasper             \
        --with-libjson-c          \
        --with-openjpeg           \
        --with-png                \
        --with-gif                \
        --with-jpeg               \
        --with-odbc               \
        --with-sqlite3            \
        --with-mysql              \
        --with-curl               \
        --with-poppler            \
        --with-python             \
        --with-webp               \
        --without-php              \
        --with-xerces=%_prefix         \
        --with-xerces-lib='-lxerces-c' \
        --with-xerces-inc=%_includedir \
        --with-spatialite \
        %if %{build_libgrass}
        --with-grass=%_libdir/%{grass}   \
        %endif
        --with-threads            \
        --with-liblzma=yes        \
        --without-bsb

# make the build break if wms support is not enabled
if [ "$(cat config.log | grep FORMATS | grep wms)" = "" ]; then
    echo "No WMS support"
    exit 1
fi

perl -pi -e 's,PYTHON = no,PYTHON = /usr/bin/python,g' GDALmake.opt
#(eatdirt) test parallel make
%make_build
make docs

# Make Python 3 module
pushd swig/python
%py3_build
popd

%install
# Install Python 3 module
# Must be done first so executables are Python 2.
pushd swig/python
%py3_install
popd

mkdir -p %{buildroot}%{python2_sitearch}
export PYTHONPATH="%{buildroot}%{python2_sitearch}"
export DESTDIR=%{buildroot}
unset PYTHONDONTWRITEBYTECODE
export INST_MAN=%{_mandir}

%make_install install-man

find %{buildroot} -name '*.la' -delete

mkdir -p %{buildroot}%{_datadir}/bash-completion/completions
mv %{buildroot}/usr/etc/bash_completion.d/* %{buildroot}%{_datadir}/bash-completion/completions

%multiarch_binaries %{buildroot}%{_bindir}/gdal-config


%files
%doc NEWS VERSION
%{_datadir}/gdal
%{_bindir}/*
%{_mandir}/man1/*
%{_datadir}/bash-completion/completions/*
%exclude %{_bindir}/gdal-config
%exclude %{_bindir}/multiarch-*
%exclude %{multiarch_bindir}/gdal-config
%exclude %{_mandir}/man1/gdal-config.1*

%files -n %{libnamedev}
%{_bindir}/%{name}-config
%{_mandir}/man1/gdal-config.1*
%{_libdir}/*.so
%{_libdir}/pkgconfig/gdal.pc
%{_includedir}/*
%{_docdir}/*
%multiarch %{multiarch_bindir}/gdal-config

%files -n %{libnamedevstat}
%{_libdir}/*.a

%files -n %{libname}
%{_libdir}/*.so.%{major}{,.*}

%files -n python2-gdal
%doc swig/python/README.txt
%doc swig/python/samples
%{python2_sitearch}/*

%files -n python3-gdal
%doc swig/python/README.txt
%doc swig/python3/samples
%{python3_sitearch}/*


%changelog
* Fri Oct 04 2019 wally <wally> 2.4.1-2.1.mga7
+ Revision: 1449326
- update libproj libname patch (mga#25502)

* Wed Apr 17 2019 daviddavid <daviddavid> 2.4.1-2.mga7
+ Revision: 1391858
- rebuild for new geotiff 1.5.1

* Fri Apr 05 2019 daviddavid <daviddavid> 2.4.1-1.mga7
+ Revision: 1385894
- new version: 2.4.1
- remove merged upstream patches

* Sat Mar 09 2019 eatdirt <eatdirt> 2.4.0-4.mga7
+ Revision: 1373415
- Rebuild for new grass and ogdi

* Mon Feb 18 2019 wally <wally> 2.4.0-3.mga7
+ Revision: 1368157
- rebuild for new poppler 0.74.0

* Sat Jan 26 2019 wally <wally> 2.4.0-2.mga7
+ Revision: 1361106
- add patch to fix build with new poppler 0.73.0

* Wed Jan 09 2019 eatdirt <eatdirt> 2.4.0-1.mga7
+ Revision: 1353549
- Upgrade to version 2.4.0

* Tue Jan 08 2019 daviddavid <daviddavid> 2.3.2-7.mga7
+ Revision: 1352641
- rebuild for new Python 3.7

* Sat Dec 08 2018 wally <wally> 2.3.2-6.mga7
+ Revision: 1339025
- add patch to build with poppler 0.72.0

* Sat Nov 17 2018 wally <wally> 2.3.2-5.mga7
+ Revision: 1330539
- add patch and rebuild for new poppler 0.71.0

* Fri Nov 09 2018 daviddavid <daviddavid> 2.3.2-4.mga7
+ Revision: 1329195
- use system QHull

* Thu Nov 08 2018 daviddavid <daviddavid> 2.3.2-3.mga7
+ Revision: 1328902
- rebuild for new hdf5 1.10.4

* Fri Nov 02 2018 wally <wally> 2.3.2-2.mga7
+ Revision: 1327757
- add patch to fix build without '-fpermissive'

* Thu Nov 01 2018 tv <tv> 2.3.2-1.mga7
+ Revision: 1327146
- add upstream fix for newer poppler
- new release
- rebuild with latest poppler

* Thu Oct 04 2018 umeabot <umeabot> 2.3.1-4.mga7
+ Revision: 1317317
- Mageia 7 Mass Rebuild

* Sat Aug 18 2018 daviddavid <daviddavid> 2.3.1-3.mga7
+ Revision: 1252413
- rebuild for new xerces-c 3.2.1

* Wed Aug 01 2018 eatdirt <eatdirt> 2.3.1-2.mga7
+ Revision: 1246645
- Rebuild for new netcdf

* Tue Jul 31 2018 eatdirt <eatdirt> 2.3.1-1.mga7
+ Revision: 1246387
- Upgrade to version 2.3.1

* Sat Jul 28 2018 daviddavid <daviddavid> 2.2.4-4.mga7
+ Revision: 1245676
- add the Python3 module
- use system json-c
- enable libwebp, poppler and openjpeg2 support

* Sun May 13 2018 daviddavid <daviddavid> 2.2.4-3.mga7
+ Revision: 1228776
- rebuild for new cfitsio 3.450

* Mon Apr 16 2018 daviddavid <daviddavid> 2.2.4-2.mga7
+ Revision: 1219272
- rebuild for new jasper 2.0.14

* Tue Mar 27 2018 kekepower <kekepower> 2.2.4-1.mga7
+ Revision: 1212926
- Update to version 2.2.4

* Sun Dec 24 2017 wally <wally> 2.2.2-4.mga7
+ Revision: 1184509
- rebuild for arm

* Sat Dec 23 2017 wally <wally> 2.2.2-3.mga7
+ Revision: 1184224
- rebuild for new mariadb

* Wed Nov 22 2017 josh <josh> 2.2.2-2.mga7
+ Revision: 1178751
- Fix build error by providing correct libtool patch file
- Delete old tarball
- Use correct libname patch file
- Fix wrong patch name in spec file
- Add new source tarball
- Update to version 2.2.2
- Clean up patches applied to upstream
- Use current libgrass package
- Include libspatialite support
- Fix libtool installing wrappers instead of binary apps

* Fri Aug 11 2017 daviddavid <daviddavid> 2.0.2-7.mga7
+ Revision: 1139627
- rename python-gdal to python2-gdal

* Fri Aug 11 2017 daviddavid <daviddavid> 2.0.2-6.mga7
+ Revision: 1139626
- rebuild against postgresql9.6 instead of postgresql9.4

* Fri Mar 03 2017 daviddavid <daviddavid> 2.0.2-5.mga6
+ Revision: 1088610
- add fedora patch to fix build with newer jasper (futur jasper 2)
- use new python macros

* Tue Nov 22 2016 eatdirt <eatdirt> 2.0.2-4.mga6
+ Revision: 1068808
- Rebuild for new cfitsio

* Fri May 20 2016 tv <tv> 2.0.2-3.mga6
+ Revision: 1017104
- rebuild for new geotiff

* Thu Mar 10 2016 eatdirt <eatdirt> 2.0.2-2.mga6
+ Revision: 988707
- Rebuild for new cfitsio

* Sun Jan 31 2016 eandry <eandry> 2.0.2-1.mga6
+ Revision: 929321
- fix build dir
- New version 2.0.2

* Sat Jan 09 2016 wally <wally> 2.0.1-1.mga6
+ Revision: 920875
- build without php for now
- new libmajor 20
- build without BSB driver
+ tv <tv>
- new release

* Tue Jul 21 2015 daviddavid <daviddavid> 1.9.2-18.mga6
+ Revision: 855863
- rebuild with new hdf5

* Fri Jul 03 2015 dglent <dglent> 1.9.2-17.mga6
+ Revision: 849663
- Change to python-gdal to follow naming policy

* Thu Dec 11 2014 cjw <cjw> 1.9.2-16.mga5
+ Revision: 802683
- use current version of postgresql library (9.4)

* Wed Oct 15 2014 umeabot <umeabot> 1.9.2-15.mga5
+ Revision: 746332
- Second Mageia 5 Mass Rebuild

* Sat Oct 11 2014 tv <tv> 1.9.2-14.mga5
+ Revision: 738025
- rebuild for missing pythoneggs deps
- use %%global for req/prov exclude
- autoconvert to new prov/req excludes
+ umeabot <umeabot>
- Mageia 5 Mass Rebuild

* Sat May 31 2014 pterjan <pterjan> 1.9.2-12.mga5
+ Revision: 628210
- Rebuild for new Python

* Fri Feb 28 2014 eatdirt <eatdirt> 1.9.2-11.mga5
+ Revision: 597717
- Rebuild for new cfitsio

* Tue Oct 22 2013 umeabot <umeabot> 1.9.2-10.mga4
+ Revision: 542725
- Mageia 4 Mass Rebuild

* Mon Oct 14 2013 pterjan <pterjan> 1.9.2-9.mga4
+ Revision: 497756
- Rebuild to add different pythonegg provides for python 2 and 3

* Tue Jul 16 2013 fwang <fwang> 1.9.2-8.mga4
+ Revision: 455010
- rebuild for new hdf5

* Tue Jul 16 2013 eatdirt <eatdirt> 1.9.2-7.mga4
+ Revision: 454965
- Rebuild for ciftsio 3.350

* Sun Jun 02 2013 fwang <fwang> 1.9.2-6.mga4
+ Revision: 434937
- rebuild for new libpng

* Thu Jan 17 2013 obgr_seneca <obgr_seneca> 1.9.2-5.mga3
+ Revision: 389214
- Rebuild for new geos

* Fri Jan 11 2013 umeabot <umeabot> 1.9.2-4.mga3
+ Revision: 351123
- Mass Rebuild - https://wiki.mageia.org/en/Feature:Mageia3MassRebuild

* Mon Dec 03 2012 zezinho <zezinho> 1.9.2-3.mga3
+ Revision: 326084
- require 9.2 postgres version to avoid urpmi loop between 9.1 and 9.2

* Fri Oct 12 2012 fwang <fwang> 1.9.2-2.mga3
+ Revision: 304815
- exclude wrong multiarch dir

* Fri Oct 12 2012 fwang <fwang> 1.9.2-1.mga3
+ Revision: 304810
- fix typecast
- use configure2_5x
- upload tarball
- new version 1.9.2
+ obgr_seneca <obgr_seneca>
- use workarround so wms support is enabled

* Wed Jun 20 2012 obgr_seneca <obgr_seneca> 1.9.1-3.mga3
+ Revision: 262124
- Rebuild against new geos

* Mon Jun 04 2012 obgr_seneca <obgr_seneca> 1.9.1-2.mga3
+ Revision: 254059
- Rebuild against new geos

* Mon Jun 04 2012 fwang <fwang> 1.9.1-1.mga3
+ Revision: 253883
- update file list
- new version 1.9.1

* Mon Jan 30 2012 fwang <fwang> 1.9.0-3.mga2
+ Revision: 203526
- exclude gdal-config completely

* Mon Jan 30 2012 fwang <fwang> 1.9.0-2.mga2
+ Revision: 203492
- try to link with system at first

* Mon Jan 30 2012 fwang <fwang> 1.9.0-1.mga2
+ Revision: 203468
- new version 1.9.0

* Tue Jan 17 2012 obgr_seneca <obgr_seneca> 1.8.1-7.mga2
+ Revision: 197246
- rebuild for new libgeos

* Thu Dec 08 2011 fwang <fwang> 1.8.1-6.mga2
+ Revision: 178855
- use plain autoconf
- use autoreconf
- drop .la files
- rebuild for new odbc

* Thu Nov 03 2011 obgr_seneca <obgr_seneca> 1.8.1-5.mga2
+ Revision: 161915
- rebuild

* Wed Nov 02 2011 obgr_seneca <obgr_seneca> 1.8.1-4.mga2
+ Revision: 161879
- rebuild against new geos

* Tue Sep 27 2011 obgr_seneca <obgr_seneca> 1.8.1-3.mga2
+ Revision: 149391
- rebuild agains new libgeos
- added as-needed.patch for fixing --with-xerces-c build

* Sun Sep 11 2011 fwang <fwang> 1.8.1-2.mga2
+ Revision: 142326
- rebuild for new libpng
- new version 1.8.1
+ dmorgan <dmorgan>
- Rebuild against new hdf5

* Tue Apr 19 2011 obgr_seneca <obgr_seneca> 1.8.0-2.mga1
+ Revision: 88459
- added php-devel BuildRequire
- new version 1.8.0

* Thu Mar 24 2011 ennael <ennael> 1.7.3-2.mga1
+ Revision: 76909
- clean spec file
- imported package gdal


* Tue Mar 01 2011 Funda Wang <fwang@mandriva.org> 1.7.3-2mdv2011.0
+ Revision: 641074
- build with internal tiff (bug#62602)

* Fri Nov 26 2010 Buchan Milne <bgmilne@mandriva.org> 1.7.3-1mdv2011.0
+ Revision: 601535
- update to new version 1.7.3

* Sat Nov 06 2010 Funda Wang <fwang@mandriva.org> 1.7.2-3mdv2011.0
+ Revision: 593869
- rebuild for py2.7

* Sat Aug 21 2010 Funda Wang <fwang@mandriva.org> 1.7.2-2mdv2011.0
+ Revision: 571629
- use standard detection on cfitsio
- rebuild for new cfitsio

* Wed Apr 28 2010 Emmanuel Andry <eandry@mandriva.org> 1.7.2-1mdv2010.1
+ Revision: 540548
- New version 1.7.2
- drop p2 (merged upstream)

* Tue Apr 06 2010 Buchan Milne <bgmilne@mandriva.org> 1.7.1-1mdv2010.1
+ Revision: 532048
- Enable bytecode compilation to fix python install on cooker
- Really fix ogdi include dir (distro-dependant since headers moved after 2010.0)
- Fix python install
- Require python-setuptools, and other fixes to make python installation work

  + Funda Wang <fwang@mandriva.org>
    - fix ogdi prefix
    - New version 1.7.1

* Mon Jan 18 2010 Emmanuel Andry <eandry@mandriva.org> 1.6.3-3mdv2010.1
+ Revision: 493446
- fix hdf5 linking
- fix netcdf detection

* Sat Jan 16 2010 Funda Wang <fwang@mandriva.org> 1.6.3-2mdv2010.1
+ Revision: 492251
- rebuild for new libjpeg v8

* Sat Dec 26 2009 Funda Wang <fwang@mandriva.org> 1.6.3-1mdv2010.1
+ Revision: 482365
- new version 1.6.3

* Fri Aug 21 2009 Emmanuel Andry <eandry@mandriva.org> 1.6.2-2mdv2010.0
+ Revision: 418957
- reenable hdf5

* Fri Aug 21 2009 Funda Wang <fwang@mandriva.org> 1.6.2-1mdv2010.0
+ Revision: 418926
- New version 1.6.2
- disable libdap support (bad version)
- rebuild

  + Buchan Milne <bgmilne@mandriva.org>
    - Move grass dependency inside conditional (dont require grass when not built with libgrass)

* Sun May 24 2009 Funda Wang <fwang@mandriva.org> 1.6.1-1mdv2010.0
+ Revision: 379203
- New version 1.6.1

* Fri May 22 2009 Funda Wang <fwang@mandriva.org> 1.6.0-4mdv2010.0
+ Revision: 378669
- fix libproj.so libname

  + Buchan Milne <bgmilne@mandriva.org>
    - Provide link to mail explaining why gdal should not be built directly against grass

* Thu Mar 05 2009 Funda Wang <fwang@mandriva.org> 1.6.0-3mdv2009.1
+ Revision: 348959
- do not build with grass

* Fri Jan 30 2009 Funda Wang <fwang@mandriva.org> 1.6.0-2mdv2009.1
+ Revision: 335594
- move requires to python sub package

* Thu Jan 29 2009 Funda Wang <fwang@mandriva.org> 1.6.0-1mdv2009.1
+ Revision: 335217
- build with grass
- disable broken mysql build
- fix BR
- gcc 42 is no needed
- fix file list
- New version 1.6.0
- rebuild

  + Oden Eriksson <oeriksson@mandriva.com>
    - rebuilt against mysql-5.1.30 libs

  + Olivier Blin <oblin@mandriva.com>
    - move libtool sed in prep

* Thu Nov 06 2008 Olivier Blin <oblin@mandriva.com> 1.5.2-3mdv2009.1
+ Revision: 300276
- bump release (to be consistent with 2009.0 media)

* Mon Oct 13 2008 Helio Chissini de Castro <helio@mandriva.com> 1.5.2-2mdv2009.1
+ Revision: 293254
- Disable hdf, since 2009.0 was released against a different API than the
  current released hda and simply devel packages fail to install. Should be
  reenabled after when hdf is recompiling again
- libdap uses their namespace now. Added a patch to fix compilation

* Sat Aug 16 2008 Buchan Milne <bgmilne@mandriva.org> 1.5.2-2mdv2009.0
+ Revision: 272605
- Revert conflicts that were committed in r272040
- Rebuild for cfitsio library version change

  + Emmanuel Andry <eandry@mandriva.org>
    - protect major
    - move .la file into static

* Sat Jun 21 2008 Buchan Milne <bgmilne@mandriva.org> 1.5.2-1mdv2009.0
+ Revision: 227710
- New version 1.5.2

  + Pixel <pixel@mandriva.com>
    - do not call ldconfig in %%post/%%postun, it is now handled by filetriggers

  + Oden Eriksson <oeriksson@mandriva.com>
    - 1.5.1
    - sync with fedora

* Fri Feb 08 2008 Helio Chissini de Castro <helio@mandriva.com> 1.5.0-4mdv2008.1
+ Revision: 164282
- Play nice with excludes in both archs

* Fri Feb 08 2008 Helio Chissini de Castro <helio@mandriva.com> 1.5.0-3mdv2008.1
+ Revision: 164186
- Major cleanup on gdal. now build finely in both i586 and x86_64, even with python.
- Splitted devel and devel-static

  + Emmanuel Andry <eandry@mandriva.org>
    - New version
    - spec refactoring (inspired from fedora)

  + Olivier Blin <oblin@mandriva.com>
    - restore BuildRoot

  + Thierry Vignaud <tv@mandriva.org>
    - kill re-definition of %%buildroot on Pixel's request

* Wed Sep 05 2007 Buchan Milne <bgmilne@mandriva.org> 1.4.2-1mdv2008.0
+ Revision: 80453
- New version 1.4.2

* Mon May 07 2007 Herton Ronaldo Krzesinski <herton@mandriva.com.br> 1.4.1-1mdv2008.0
+ Revision: 24873
- Updated to 1.4.1.
- Updated URL tag.
- Keep identation uniform in some places.


* Sun Jan 14 2007 Emmanuel Andry <eandry@mandriva.org> 1.4.0-1mdv2007.0
+ Revision: 108693
- New version 1.4.0

* Sun Nov 12 2006 Buchan Milne <bgmilne@mandriva.org> 1.3.2-6mdv2007.0
+ Revision: 83285
- Include changes from Franck Martin <franck@sopac.org>:
- added support for mysql

* Fri Sep 01 2006 Buchan Milne <bgmilne@mandriva.org> 1.3.2-5mdv2007.0
+ Revision: 59043
- bump release
- Ensure paths in libtool file are correct on x86_64 (fixes linking to gdal with libtool)
  Conflict with libgrass5-devel when building without obsolete libgrass

* Wed Aug 30 2006 Buchan Milne <bgmilne@mandriva.org> 1.3.2-4mdv2007.0
+ Revision: 58743
- force -fPIC to fix linking to gdal in x86_64
- filter bad ogdi require

* Thu Aug 24 2006 Buchan Milne <bgmilne@mandriva.org> 1.3.2-2mdv2007.0
+ Revision: 57696
- Merge changes that were lost when the SRPM was lost, but binaries were
  accepted making re-uploading the SRPM difficult, followed by an NMU into svn:
- dont buildrequire grass, we will add the plugin package
- dont try and ship python modules on x86_64 for now

* Sat Aug 05 2006 Helio Chissini de Castro <helio@mandriva.com> 1.3.2-1mdv2007.0
+ Revision: 51716
- New upstream version 1.3.2
- import gdal-1.2.6-4mdk

* Tue Jan 03 2006 Oden Eriksson <oeriksson@mandriva.com> 1.2.6-4mdk
- added one gcc4 patch by debian (P0)
- fix deps
- added one lib64 fix

* Fri Jun 03 2005 Nicolas Lécureuil <neoclust@mandriva.org> 1.2.6-3mdk
- Fix Description

* Fri Jun 03 2005 Nicolas Lécureuil <neoclust@mandriva.org> 1.2.6-2mdk
- Rebuild for missing source rpm

* Wed May 11 2005 Nicolas Lécureuil <neoclust@mandriva.org> 1.2.6-1mdk
- 1.2.6

* Wed May 04 2005 Nicolas Lécureuil <neoclust@mandriva.org> 1.2.5-3mdk
- Rebuild
- Fix MultiArch

* Sun Dec 05 2004 Michael Scherer <misc@mandrake.org> 1.2.5-2mdk
- Rebuild for new python

* Tue Nov 23 2004 Lenny Cartier <lenny@mandrakesoft.com> 1.2.5-1mdk
- 1.2.5

* Tue Sep 21 2004 Lenny Cartier <lenny@mandrakesoft.com> 1.2.2-1mdk
- 1.2.2

* Sat Jun 26 2004 Lenny Cartier <lenny@mandrakesoft.com> 1.2.1-1mdk
- 1.2.1

* Mon Jun 21 2004 Buchan Milne <bgmilne@linux-mandrake.com> 1.2.0-1mdk
- 1.2.0, drop p2
- build with ogdi,cfitsio,netcdf support
- correct major since lib naming issues are resolved