2024-08-20 20:19:35 +00:00
%global ini_name 39-mapserver.ini
2020-11-12 12:02:11 +00:00
%global project_owner MapServer
%global project_name MapServer
2024-08-20 20:19:35 +00:00
2020-03-04 15:12:19 +00:00
%global python_mapscript 1
2024-08-20 20:19:35 +00:00
%global srcname mapscript
2019-02-24 09:07:16 +00:00
2022-07-05 20:26:47 +00:00
%ifarch %{java_arches}
%bcond_without java
%else
%bcond_with java
%endif
2024-04-09 14:13:01 +00:00
%if 0%{?fedora} >= 41
%ifarch %{ix86}
%bcond_with php
%else
%bcond_without php
%endif
%else
%bcond_without php
%endif
2016-03-29 09:27:52 +00:00
Name : mapserver
2024-09-03 17:42:08 +00:00
Version : 8.2.2
2024-11-08 15:05:24 +00:00
Release : 3%{?dist}
2007-05-11 09:50:50 +00:00
Summary : Environment for building spatially-enabled internet applications
2020-03-04 15:12:19 +00:00
%global dashver %(echo %version | sed 's|\\.|-|g' )
2013-05-20 08:52:42 +00:00
2023-10-03 08:15:53 +00:00
License : MIT
2012-06-30 11:33:12 +00:00
URL : http://www.mapserver.org
2012-10-16 09:46:09 +00:00
2020-03-04 15:12:19 +00:00
Source0 : https://github.com/%{project_owner} /%{project_name} /archive/rel-%{dashver} /%{project_name} -%{version} .tar.gz
2024-08-20 20:19:35 +00:00
## Upstream patches
# mappostgresql.c: avoid potential invalid use of strcpy()
Patch1001 : f202bd52b35c82508555af722a8ad0f04910c403.patch
2008-06-12 17:20:20 +00:00
Requires : httpd
2013-05-20 08:52:42 +00:00
Requires : dejavu-sans-fonts
2009-01-03 14:12:16 +00:00
2019-02-24 09:07:16 +00:00
BuildRequires : autoconf
2018-07-09 17:06:48 +00:00
BuildRequires : gcc-c++
2016-03-29 09:27:52 +00:00
BuildRequires : cairo-devel
BuildRequires : cmake
BuildRequires : curl-devel
BuildRequires : fcgi-devel
BuildRequires : freetype-devel
BuildRequires : fribidi-devel
BuildRequires : gd-devel >= 2.0.16
BuildRequires : gdal-devel
2019-02-04 18:17:05 +00:00
BuildRequires : geos-devel >= 3.7.1
2016-03-29 09:27:52 +00:00
BuildRequires : giflib-devel
BuildRequires : httpd-devel
BuildRequires : libjpeg-devel
BuildRequires : libpng-devel
BuildRequires : libtiff-devel
BuildRequires : libxml2-devel
BuildRequires : libXpm-devel
BuildRequires : libxslt-devel
2017-10-05 19:59:15 +00:00
BuildRequires : mariadb-connector-c-devel
BuildRequires : openssl-devel
2016-03-29 09:27:52 +00:00
BuildRequires : harfbuzz-devel
BuildRequires : pam-devel
2018-03-01 16:14:12 +00:00
BuildRequires : perl-devel
2016-06-24 08:35:15 +00:00
BuildRequires : perl-generators
2008-12-07 13:10:03 +00:00
BuildRequires : perl(ExtUtils::MakeMaker)
2019-02-24 09:07:16 +00:00
BuildRequires : protobuf-c-devel
2018-09-05 13:15:06 +00:00
BuildRequires : libpq-devel
2019-02-04 18:17:05 +00:00
BuildRequires : proj-devel => 5.2.0
2016-03-29 09:27:52 +00:00
BuildRequires : readline-devel
BuildRequires : swig
BuildRequires : zlib-devel
2024-01-18 12:36:12 +00:00
#Get
#/usr/share/fonts/dejavu-sans-fonts/DejaVuSans.ttf
#/usr/share/fonts/dejavu-sans-fonts/DejaVuSans-Bold.ttf
2020-03-04 15:12:19 +00:00
# See %%prep below
2024-01-18 12:36:12 +00:00
BuildRequires : dejavu-sans-fonts
2007-05-11 09:50:50 +00:00
%description
Mapserver is an internet mapping program that converts GIS data to
2016-03-29 09:27:52 +00:00
map images in real time. With appropriate interface pages,
Mapserver can provide an interactive internet map based on
2007-05-11 09:50:50 +00:00
custom GIS data.
2016-03-29 09:27:52 +00:00
%package libs
Summary : %{summary}
%description libs
This package contains the libs for mapserver.
%package devel
Summary : Development files for mapserver
Requires : %{name} = %{version}
%description devel
This package contains development files for mapserver.
2024-04-09 14:13:01 +00:00
%if %{with php}
2013-05-20 08:52:42 +00:00
%package -n php-%{name}
2007-05-11 09:50:50 +00:00
Summary : PHP/Mapscript map making extensions to PHP
2012-10-26 07:39:12 +00:00
BuildRequires : php-devel
Requires : php-gd%{?_isa}
Requires : php(zend-abi) = %{php_zend_api}
Requires : php(api) = %{php_core_api}
2007-05-11 09:50:50 +00:00
2013-05-20 08:52:42 +00:00
%description -n php-%{name}
2007-05-11 09:50:50 +00:00
The PHP/Mapscript extension provides full map customization capabilities within
the PHP scripting language.
2020-03-04 15:12:19 +00:00
%endif
2007-05-11 09:50:50 +00:00
%package perl
Summary : Perl/Mapscript map making extensions to Perl
Requires : %{name} = %{version} -%{release}
%description perl
The Perl/Mapscript extension provides full map customization capabilities
within the Perl programming language.
2018-07-20 20:32:42 +00:00
%if 0%{python_mapscript}
2019-02-24 09:07:16 +00:00
%package -n python3-mapserver
%{?python_provide:%python_provide python3-mapserver}
2017-08-19 13:38:55 +00:00
# Remove before F30
2017-08-20 14:38:13 +00:00
Provides : %{name} -python = %{version} -%{release}
2017-08-19 13:38:55 +00:00
Provides : %{name} -python%{?_isa} = %{version} -%{release}
Obsoletes : %{name} -python < %{version} -%{release}
2007-05-11 09:50:50 +00:00
Summary : Python/Mapscript map making extensions to Python
2019-02-24 09:07:16 +00:00
BuildRequires : python3-devel
2021-05-10 15:13:56 +00:00
BuildRequires : python3-setuptools
2007-05-11 09:50:50 +00:00
Requires : %{name} = %{version} -%{release}
2019-02-24 09:07:16 +00:00
Requires : python3
2007-05-11 09:50:50 +00:00
2019-02-24 09:07:16 +00:00
%description -n python3-mapserver
2007-05-11 09:50:50 +00:00
The Python/Mapscript extension provides full map customization capabilities
within the Python programming language.
2020-03-04 15:12:19 +00:00
%endif
2007-05-11 09:50:50 +00:00
2022-07-05 20:26:47 +00:00
%if %{with java}
2013-05-21 13:01:39 +00:00
%package java
Summary : Java/Mapscript map making extensions to Java
2016-03-29 09:27:52 +00:00
BuildRequires : java-devel
2013-05-21 13:01:39 +00:00
Requires : %{name} = %{version} -%{release}
2014-08-11 11:44:53 +00:00
Requires : java-headless
2013-05-21 13:01:39 +00:00
%description java
The Java/Mapscript extension provides full map customization capabilities
within the Java programming language.
2022-07-05 20:26:47 +00:00
%endif
2007-05-11 09:50:50 +00:00
2016-03-29 09:27:52 +00:00
%package ruby
Summary : Ruby/Mapscript map making extensions to Ruby
BuildRequires : ruby-devel
Requires : %{name} = %{version} -%{release}
%description ruby
The Ruby/Mapscript extension provides full map customization capabilities within
the ruby programming language.
%prep
2020-03-04 15:12:19 +00:00
%autosetup -p1 -n %{project_owner} -rel-%{dashver}
2009-01-03 14:12:16 +00:00
2013-05-21 13:01:39 +00:00
# replace fonts for tests with symlinks
2020-03-04 15:12:19 +00:00
ln -sf /usr/share/fonts/dejavu-sans-fonts/DejaVuSans.ttf tests/vera/Vera.ttf
ln -sf /usr/share/fonts/dejavu-sans-fonts/DejaVuSans-Bold.ttf tests/vera/VeraBd.ttf
2009-01-03 14:12:16 +00:00
2014-09-03 10:03:52 +00:00
# Force swig to regenerate the wrapper
rm -rf mapscript/perl/mapscript_wrap.c
2007-05-11 09:50:50 +00:00
2016-03-29 09:27:52 +00:00
%build
export CFLAGS=" $ { C F L A G S } - l d l - f P I C - f n o - s t r i c t - a l i a s i n g "
export CXXFLAGS=" %{optflags} - f n o - s t r i c t - a l i a s i n g "
2020-03-04 15:12:19 +00:00
%cmake -DINSTALL_LIB_DIR=%{_libdir} \
2016-03-29 09:27:52 +00:00
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DWITH_CAIRO=TRUE \
-DWITH_CLIENT_WFS=TRUE \
-DWITH_CLIENT_WMS=TRUE \
-DWITH_CURL=TRUE \
-DWITH_FCGI=TRUE \
-DWITH_FRIBIDI=TRUE \
-DWITH_GD=TRUE \
-DWITH_GDAL=TRUE \
-DWITH_GEOS=TRUE \
-DWITH_GIF=TRUE \
-DWITH_ICONV=TRUE \
2022-07-05 20:26:47 +00:00
%if %{with java}
2016-03-29 09:27:52 +00:00
-DWITH_JAVA=TRUE \
2022-07-05 20:26:47 +00:00
%else
-DWITH_JAVA=FALSE \
%endif
2016-03-29 09:27:52 +00:00
-DWITH_KML=TRUE \
-DWITH_LIBXML2=TRUE \
-DWITH_OGR=TRUE \
-DWITH_MYSQL=TRUE \
-DWITH_PERL=TRUE \
-DCUSTOM_PERL_SITE_ARCH_DIR=" %{perl_vendorarch} " \
2024-04-09 14:13:01 +00:00
%if %{with php}
2022-09-13 14:40:15 +00:00
-DWITH_PHPNG=TRUE \
2020-03-04 15:12:19 +00:00
%endif
2016-03-29 09:27:52 +00:00
-DWITH_POSTGIS=TRUE \
-DWITH_PROJ=TRUE \
2018-07-20 20:32:42 +00:00
%if 0%{python_mapscript}
2016-03-29 09:27:52 +00:00
-DWITH_PYTHON=TRUE \
2020-03-04 15:12:19 +00:00
%endif
2016-03-29 09:27:52 +00:00
-DWITH_RUBY=TRUE \
-DWITH_V8=FALSE \
-DWITH_SOS=TRUE \
-DWITH_THREAD_SAFETY=TRUE \
-DWITH_WCS=TRUE \
-DWITH_WMS=TRUE \
-DWITH_WFS=TRUE \
-DWITH_XMLMAPFILE=TRUE \
-DWITH_POINT_Z_M=TRUE \
-DWITH_APACHE_MODULE=FALSE \
-DWITH_SVGCAIRO=FALSE \
-DWITH_CSHARP=FALSE \
-DWITH_ORACLESPATIAL=FALSE \
-DWITH_ORACLE_PLUGIN=FALSE \
-DWITH_MSSQL2008=FALSE \
-DWITH_SDE=FALSE \
-DWITH_SDE_PLUGIN=FALSE \
-DWITH_EXEMPI=FALSE \
2020-10-01 13:26:30 +00:00
-Wno-dev
2016-03-29 09:27:52 +00:00
2020-10-01 13:26:30 +00:00
%cmake_build
2007-05-11 09:50:50 +00:00
%install
2020-10-01 13:26:30 +00:00
%cmake_install
2013-05-20 08:52:42 +00:00
2024-08-20 20:19:35 +00:00
# cmake tries to invoke pip and download things. we'll just use setuptools.
mkdir -p %{buildroot} %{python3_sitearch}
pushd redhat-linux-build/src/mapscript/python
%py3_install
popd
2020-03-04 15:12:19 +00:00
mkdir -p %{buildroot} %{_datadir} /%{name}
2024-08-20 20:19:35 +00:00
install -p -m 644 src/xmlmapfile/mapfile.xsd %{buildroot} %{_datadir} /%{name}
install -p -m 644 src/xmlmapfile/mapfile.xsl %{buildroot} %{_datadir} /%{name}
2013-05-20 08:52:42 +00:00
2022-07-05 20:26:47 +00:00
%if %{with java}
2013-05-21 13:01:39 +00:00
# install java
mkdir -p %{buildroot} %{_javadir}
2024-08-20 20:19:35 +00:00
install -p -m 644 %{_vpath_builddir} /src/mapscript/java/mapscript.jar %{buildroot} %{_javadir} /
2022-07-05 20:26:47 +00:00
%endif
2016-03-29 09:27:52 +00:00
2024-04-09 14:13:01 +00:00
%if %{with php}
2007-05-11 09:50:50 +00:00
# install php config file
2014-06-20 07:09:12 +00:00
mkdir -p %{buildroot} %{php_inidir}
cat > %{buildroot} %{php_inidir} /%{ini_name} <<EOF
2007-05-11 09:50:50 +00:00
; Enable %{name} extension module
2023-03-09 07:07:08 +00:00
extension=php_mapscriptng.so
2007-05-11 09:50:50 +00:00
EOF
2020-03-04 15:12:19 +00:00
%endif
2022-09-13 14:40:15 +00:00
# Install sample config file as %%doc
2024-08-20 20:19:35 +00:00
rm %{buildroot} %{_usr}/%{_sysconfdir} /mapserver-sample.conf
2014-06-20 07:09:12 +00:00
2007-05-11 09:50:50 +00:00
%files
2023-04-24 16:20:04 +00:00
%doc README.md
2022-09-13 14:40:15 +00:00
%doc etc/mapserver-sample.conf
%{_bindir} /coshp
2016-03-29 09:27:52 +00:00
%{_bindir} /legend
%{_bindir} /mapserv
2022-09-13 14:40:15 +00:00
%{_bindir} /map2img
2016-03-29 09:27:52 +00:00
%{_bindir} /msencrypt
%{_bindir} /scalebar
%{_bindir} /shptree
%{_bindir} /shptreetst
%{_bindir} /shptreevis
%{_bindir} /sortshp
%{_bindir} /tile4ms
%{_datadir} /%{name} /
%files libs
2023-04-24 16:20:04 +00:00
%doc README.md
2016-03-29 09:27:52 +00:00
%{_libdir} /libmapserver.so.%{version}
%{_libdir} /libmapserver.so.2
%files devel
2023-04-24 16:20:04 +00:00
%doc README.md
2016-03-29 09:27:52 +00:00
%{_libdir} /libmapserver.so
%{_includedir} /%{name} /
2013-05-20 08:52:42 +00:00
2024-04-09 14:13:01 +00:00
%if %{with php}
2013-05-20 08:52:42 +00:00
%files -n php-%{name}
2024-08-20 20:19:35 +00:00
%doc src/mapscript/php/README.md
2014-06-20 07:09:12 +00:00
%config (noreplace) %{php_inidir} /%{ini_name}
2024-08-20 20:19:35 +00:00
# this is only installed when swig < 4.0.2 https://github.com/MapServer/MapServer/blob/25ef061bec310773511eb84ef03f4a91e0f5a081/src/mapscript/phpng/CMakeLists.txt#L86
%if ! 0%{?fedora} && 0%{?rhel} < 10
%{php_extdir} /mapscript.php
%endif
2022-09-13 14:40:15 +00:00
%{php_extdir} /php_mapscriptng.so
2020-03-04 15:12:19 +00:00
%endif
2024-08-20 20:19:35 +00:00
# end php-mapcache
2007-05-11 09:50:50 +00:00
%files perl
2023-04-24 16:20:04 +00:00
%doc README.md
2024-08-20 20:19:35 +00:00
%doc src/mapscript/perl/examples
2016-03-29 09:27:52 +00:00
%dir %{perl_vendorarch} /auto/mapscript
%{perl_vendorarch} /auto/mapscript/*
%{perl_vendorarch} /mapscript.pm
2007-05-11 09:50:50 +00:00
2018-07-20 20:32:42 +00:00
%if 0%{python_mapscript}
2019-02-24 09:07:16 +00:00
%files -n python3-mapserver
2024-08-20 20:19:35 +00:00
%doc src/mapscript/python/README.rst
%doc src/mapscript/python/examples
%doc src/mapscript/python/tests
2019-02-24 09:07:16 +00:00
%{python3_sitearch} /*mapscript*
2020-03-04 15:12:19 +00:00
%endif
2007-05-11 09:50:50 +00:00
2022-07-05 20:26:47 +00:00
%if %{with java}
2013-05-21 13:01:39 +00:00
%files java
2024-08-20 20:19:35 +00:00
%doc src/mapscript/java/README
%doc src/mapscript/java/examples
%doc src/mapscript/java/tests
2013-05-21 13:01:39 +00:00
%{_javadir} /*.jar
2016-03-29 09:27:52 +00:00
%{_libdir} /libjavamapscript.so
2022-07-05 20:26:47 +00:00
%endif
2016-03-29 09:27:52 +00:00
%files ruby
2024-08-20 20:19:35 +00:00
%doc src/mapscript/ruby/README
%doc src/mapscript/ruby/examples
%doc mapserver-ruby/README
%doc mapserver-ruby/examples
2016-03-29 09:27:52 +00:00
%{ruby_sitearchdir} /mapscript.so
2007-05-11 09:50:50 +00:00
%changelog
2024-11-08 15:05:24 +00:00
* Fri Nov 08 2024 Sandro Mani <manisandro@gmail.com> - 8.2.2-3
- Rebuild (gdal)
2024-10-14 07:24:30 +00:00
* Mon Oct 14 2024 Remi Collet <remi@fedoraproject.org> - 8.2.2-2
- rebuild for https://fedoraproject.org/wiki/Changes/php84
2024-09-03 17:42:08 +00:00
* Tue Sep 03 2024 Neil Hanlon <neil@shrug.pw> - 8.2.2-1
- update to 8.2.2
2024-08-20 20:19:35 +00:00
* Tue Aug 20 2024 Neil Hanlon <neil@shrug.pw> - 8.2.1-1
- update to 8.2.1
- bring in patch for zero-size malloc and buffer overflow
2024-07-18 16:43:48 +00:00
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
2024-06-12 11:01:49 +00:00
* Wed Jun 12 2024 Jitka Plesnikova <jplesnik@redhat.com> - 8.0.1-17
- Perl 5.40 rebuild
2024-06-07 06:52:52 +00:00
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 8.0.1-16
- Rebuilt for Python 3.13
2024-05-13 14:30:00 +00:00
* Mon May 13 2024 Sandro Mani <manisandro@gmail.com> - 8.0.1-15
- Rebuild (gdal)
2024-04-09 14:13:01 +00:00
* Tue Apr 9 2024 Remi Collet <remi@fedoraproject.org> - 8.0.1-14
- disable PHP extension on 32-bit
https://fedoraproject.org/wiki/Changes/php_no_32_bit
2024-01-25 05:46:06 +00:00
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
2024-01-21 06:53:52 +00:00
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
2024-01-03 14:36:28 +00:00
* Wed Jan 03 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 8.0.1-11
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3
2024-01-03 11:37:59 +00:00
* Wed Jan 03 2024 Florian Weimer <fweimer@redhat.com> - 8.0.1-10
- Fix C compatibility issue
2023-11-29 07:05:58 +00:00
* Wed Nov 29 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 8.0.1-9
- Backport upstream patch for compilation with libxml2 2.12.0
2023-11-15 13:50:42 +00:00
* Wed Nov 15 2023 Sandro Mani <manisandro@gmail.com> - 8.0.1-8
- Rebuild (gdal)
2023-10-03 20:54:00 +00:00
* Tue Oct 03 2023 Sandro Mani <manisandro@gmail.com> - 8.0.1-7
- Fix implicit declarations of strlcat
2023-10-03 06:29:34 +00:00
* Tue Oct 03 2023 Remi Collet <remi@remirepo.net> - 8.0.1-6
- rebuild for https://fedoraproject.org/wiki/Changes/php83
2023-07-20 13:44:42 +00:00
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2023-07-11 13:38:03 +00:00
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 8.0.1-4
- Perl 5.38 rebuild
2023-06-13 18:44:08 +00:00
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 8.0.1-3
- Rebuilt for Python 3.12
2023-05-11 07:54:09 +00:00
* Thu May 11 2023 Sandro Mani <manisandro@gmail.com> - 8.0.1-2
- Rebuild (gdal)
2023-04-24 15:41:34 +00:00
* Mon Apr 24 2023 Sandro Mani <manisandro@gmail.com> - 8.0.1-1
- Update to 8.0.1
2023-03-09 07:07:08 +00:00
* Thu Mar 09 2023 Sandro Mani <manisandro@gmail.com> - 8.0.0-7
- Fix php extension name in 40-mapserver.ini
2023-01-19 18:56:01 +00:00
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2023-01-04 05:25:15 +00:00
* Wed Jan 04 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 8.0.0-5
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.2
2022-11-12 10:11:59 +00:00
* Sat Nov 12 2022 Sandro Mani <manisandro@gmail.com> - 8.0.0-4
- Rebuild (gdal)
2022-10-30 09:30:15 +00:00
* Sun Oct 30 2022 Sandro Mani <manisandro@gmail.com> - 8.0.0-3
- Fix %%files for build with swig 4.1+
2022-10-05 07:35:05 +00:00
* Wed Oct 05 2022 Remi Collet <remi@remirepo.net> - 8.0.0-2
- rebuild for https://fedoraproject.org/wiki/Changes/php82
2022-09-13 14:40:15 +00:00
* Tue Sep 13 2022 Sandro Mani <manisandro@gmail.com> - 8.0.0-1
- Update to 8.0.0
2022-07-21 20:29:42 +00:00
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.4-19
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2022-07-05 20:26:47 +00:00
* Tue Jul 05 2022 Sandro Mani <manisandro@gmail.com> - 7.6.4-18
- Limit -java subpackage to %%java_arches
2022-06-13 13:09:59 +00:00
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 7.6.4-17
- Rebuilt for Python 3.11
2022-05-30 18:22:07 +00:00
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 7.6.4-16
- Perl 5.36 rebuild
2022-05-20 22:18:00 +00:00
* Fri May 20 2022 Sandro Mani <manisandro@gmail.com> - 7.6.4-15
- Rebuild for gdal-3.5.0 and/or openjpeg-2.5.0
2022-03-22 09:11:40 +00:00
* Tue Mar 22 2022 Sandro Mani <manisandro@gmail.com> - 7.6.4-14
- It's no longer needed to move Python bindings with setuptools >= 60.x
2022-03-10 12:43:28 +00:00
* Thu Mar 10 2022 Sandro Mani <manisandro@gmail.com> - 7.6.4-13
- Rebuild for proj-9.0.0
2022-03-07 09:43:01 +00:00
* Mon Mar 07 2022 Karolina Surma <ksurma@redhat.com> - 7.6.4-12
- It's no longer needed to move Python bindings with setuptools >= 60.x
2022-02-05 21:30:25 +00:00
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 7.6.4-11
- Rebuilt for java-17-openjdk as system jdk
2022-01-27 04:30:36 +00:00
* Thu Jan 27 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 7.6.4-10
- F-36: rebuild against ruby31
2022-01-20 18:40:39 +00:00
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.4-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2021-11-23 12:08:37 +00:00
* Tue Nov 23 2021 Sandro Mani <manisandro@gmail.com> - 7.6.4-8
- Adapt mapserver_php8.patch to drop TSRMLS_FETCH_FROM_CTX call
2021-11-11 11:07:45 +00:00
* Thu Nov 11 2021 Sandro Mani <manisandro@gmail.com> - 7.6.4-7
- Rebuild (gdal)
2021-11-06 17:42:40 +00:00
* Sat Nov 06 2021 Adrian Reber <adrian@lisas.de> - 7.6.4-6
- Rebuilt for protobuf 3.19.0
2021-10-28 13:11:41 +00:00
* Thu Oct 28 2021 Remi Collet <remi@remirepo.net> - 7.6.4-5
- rebuild for https://fedoraproject.org/wiki/Changes/php81
2021-10-26 06:45:37 +00:00
* Tue Oct 26 2021 Adrian Reber <adrian@lisas.de> - 7.6.4-4
- Rebuilt for protobuf 3.18.1
2021-10-21 09:20:57 +00:00
* Thu Oct 21 2021 Sandro Mani <manisandro@gmail.com> - 7.6.4-3
- Rebuild (geos)
2021-07-22 13:44:19 +00:00
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2021-07-13 10:15:57 +00:00
* Tue Jul 13 2021 Sandro Mani <manisandro@gmail.com> - 7.6.4-1
- Update to 7.6.4
2021-06-04 18:11:19 +00:00
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 7.6.3-3
- Rebuilt for Python 3.10
2021-05-24 14:19:56 +00:00
* Mon May 24 2021 Jitka Plesnikova <jplesnik@redhat.com> - 7.6.3-2
- Perl 5.34 re-rebuild updated packages
2021-05-22 16:51:30 +00:00
* Sat May 22 2021 Sandro Mani <manisandro@gmail.co;> - 7.6.3-1
- Update to 7.6.3
2021-05-21 10:52:09 +00:00
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 7.6.2-12
- Perl 5.34 rebuild
2021-05-07 10:12:50 +00:00
* Fri May 07 2021 Sandro Mani <manisandro@gmail.com> - 7.6.2-11
- Rebuild (gdal)
2021-03-29 10:16:17 +00:00
* Mon Mar 29 2021 Sandro Mani <manisandro@gmail.com> - 7.6.2-10
- Rebuild (proj)
2021-03-23 23:51:36 +00:00
* Tue Mar 23 2021 Sandro Mani <manisandro@gmail.com> - 7.6.2-9
- Bump
2021-03-07 10:13:35 +00:00
* Sun Mar 07 2021 Sandro Mani <manisandro@gmail.com> - 7.6.2-8
- Rebuild (proj)
2021-03-05 18:59:21 +00:00
* Fri Mar 05 2021 Sandro Mani <manisandro@gmail.com> - 7.6.2-7
- Rebuild (php)
2021-02-13 17:26:10 +00:00
* Sat Feb 13 2021 Sandro Mani <manisandro@gmail.com> - 7.6.2-6
- Rebuild (geos)
2021-02-08 08:32:09 +00:00
* Mon Feb 08 2021 Pavel Raiskup <praiskup@redhat.com> - 7.6.2-5
- rebuild for libpq ABI fix rhbz#1908268
2021-01-26 19:14:57 +00:00
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2021-01-13 08:47:15 +00:00
* Wed Jan 13 09:47:12 CET 2021 Adrian Reber <adrian@lisas.de> - 7.6.2-3
- Rebuilt for protobuf 3.14
2021-01-07 14:35:55 +00:00
* Thu Jan 7 2021 Vít Ondruch <vondruch@redhat.com> - 7.6.2-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0
2020-12-10 10:34:40 +00:00
* Thu Dec 10 2020 Sandro Mani <manisandro@gmail.com> - 7.6.2-1
- Update to 7.6.2
2020-11-13 18:15:41 +00:00
* Fri Nov 13 2020 Sandro Mani <manisandro@gmail.com> - 7.6.1-1
- Update to 7.6.1
2020-11-12 12:02:11 +00:00
* Wed Nov 11 12:47:11 CET 2020 Sandro Mani <manisandro@gmail.com> - 7.4.3-11
- Rebuild (proj, gdal)
2020-10-01 13:26:30 +00:00
* Thu Oct 01 2020 Petr Pisar <ppisar@redhat.com> - 7.4.3-10
- Adapt to new CMake (bug #1864110)
2020-09-24 10:35:03 +00:00
* Thu Sep 24 2020 Adrian Reber <adrian@lisas.de> - 7.4.3-9
- Rebuilt for protobuf 3.13
2020-08-01 04:23:32 +00:00
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.4.3-8
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-07-28 06:51:58 +00:00
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.4.3-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-07-11 00:46:05 +00:00
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 7.4.3-6
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
2020-06-22 15:59:48 +00:00
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 7.4.3-5
- Perl 5.32 rebuild
2020-06-21 19:07:13 +00:00
* Sun Jun 14 2020 Adrian Reber <adrian@lisas.de> - 7.4.3-4
- Rebuilt for protobuf 3.12
2020-05-26 00:52:36 +00:00
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 7.4.3-3
- Rebuilt for Python 3.9
2020-05-21 09:54:45 +00:00
* Thu May 21 2020 Sandro Mani <manisandro@gmail.com> - 7.4.3-2
- Rebuild (gdal)
2020-03-04 15:12:19 +00:00
* Wed Mar 04 2020 Sandro Mani <manisandro@gmail.com> - 7.4.3-1
- Update to 7.4.3
2020-03-03 16:19:48 +00:00
* Tue Mar 03 2020 Sandro Mani <manisandro@gmail.com> - 7.2.2-5.git7fe9b2b
- Rebuild (gdal)
2020-01-29 12:02:25 +00:00
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.2-4.git7fe9b2b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2019-07-25 15:51:56 +00:00
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.2-3.git7fe9b2b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-05-30 12:09:50 +00:00
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 7.2.2-2.git7fe9b2b
- Perl 5.30 rebuild
2019-02-24 09:07:16 +00:00
* Sun Feb 24 2019 Julien Enselme <jujens@jujens.eu> - 7.2.2-1.git7fe9b2b
- Update to 7.2.2
2019-02-04 18:17:05 +00:00
* Mon Feb 04 2019 Devrim Gündüs <devrim@gunduz.org> - 7.0.5-16.git208bb3a
- Rebuild for new GeOS and Proj
2019-02-01 09:38:15 +00:00
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.5-15.git208bb3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2018-07-20 20:32:42 +00:00
* Fri Jul 20 2018 Julien Enselme <jujens@jujens.eu> - 7.0.5-14.git208bb3a
- Remove Python 2 mapscript support
2018-07-13 09:46:48 +00:00
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.5-13.git208bb3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-06-27 20:11:07 +00:00
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 7.0.5-12.git208bb3a
- Perl 5.28 rebuild
2018-03-01 16:00:16 +00:00
* Thu Mar 1 2018 Florian Weimer <fweimer@redhat.com> - 7.0.5-11.git208bb3a
- Rebuild with new redhat-rpm-config/perl build flags
2018-03-01 16:14:12 +00:00
- Add " B u i l d R e q u i r e s : p e r l - d e v e l "
2018-03-01 16:00:16 +00:00
2018-02-13 08:49:17 +00:00
* Tue Feb 13 2018 Sandro Mani <manisandro@gmail.com> - 7.0.5-10.git208bb3a
- Rebuild (giflib)
2018-02-08 00:55:21 +00:00
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.5-9.git208bb3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-10-05 19:59:15 +00:00
* Thu Oct 05 2017 Julien Enselme <jujens@jujens.eu> - 7.0.5-8.git208bb3a
- Use mariadb-connector-c-devel openssl-devel (#1494098)
2017-08-20 14:38:13 +00:00
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 7.0.5-7.git208bb3a
- Add Provides for the old name without %%_isa
2017-08-19 13:38:55 +00:00
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 7.0.5-6.git208bb3a
- Python 2 binary package renamed to python2-mapserver
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
2017-08-03 03:03:49 +00:00
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.5-5.git208bb3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2017-07-26 20:50:57 +00:00
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.5-4.git208bb3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-06-04 12:17:00 +00:00
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 7.0.5-3.git208bb3a
- Perl 5.26 rebuild
2017-05-15 20:04:14 +00:00
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.5-2.git208bb3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
2017-05-15 09:52:56 +00:00
* Mon May 15 2017 Julien Enselme <jujens@jujens.eu> - 7.0.5-1.git208bb3a
- Update to 7.0.5
2017-02-10 20:27:45 +00:00
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.4-3.gitb4bc015
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-01-24 08:02:04 +00:00
* Tue Jan 24 2017 Devrim Gündüz <devrim@gunduz.org> - 7.0.4-2.gitb4bc015
- Rebuilt for Proj 4.9.3
2017-01-19 12:09:32 +00:00
* Thu Jan 19 2017 Julien Enselme <jujens@jujens.eu> - 7.0.4-1.gitb4bc015
- Update to 7.0.4
2017-01-13 13:38:48 +00:00
* Fri Jan 13 2017 Vít Ondruch <vondruch@redhat.com> - 7.0.3-2.git0f9ece8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
2016-12-12 15:51:15 +00:00
* Mon Dec 12 2016 Julien Enselme <jujens@jujens.eu> - 7.0.3-1.git0f9ece8
- Update to 7.0.3
2016-09-21 19:03:52 +00:00
* Wed Sep 21 2016 Julien Enselme <jujens@jujens.eu> - 7.0.2-1.git4ea78eb
- Update to 7.0.2
2016-07-19 07:54:12 +00:00
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.1-4.git6ae2bc6
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2016-06-28 17:28:43 +00:00
* Tue Jun 28 2016 Julien Enselme <jujens@jujens.eu> - 7.0.1-3.git6ae2bc6
- Disable PHP support.
2016-05-14 21:40:21 +00:00
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 7.0.1-2.git6ae2bc6
- Perl 5.24 rebuild
2016-03-29 09:27:52 +00:00
* Thu Feb 25 2016 Julien Enselme <jujens@jujens.eu> - 7.0.1-1.git6ae2bc6
- Update to 7.0.1
2016-02-04 04:52:16 +00:00
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.2-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-08-30 19:00:21 +00:00
* Sun Aug 30 2015 Peter Robinson <pbrobinson@fedoraproject.org> 6.2.2-7
- Rebuild again for GDAL 2.0
2015-08-02 16:46:10 +00:00
* Sun Aug 2 2015 Devrim Gündüz <devrim@gunduz.org> - 6.2.2-6
- Rebuilt for new gdal
2015-06-17 19:29:41 +00:00
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.2.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-06-03 11:21:30 +00:00
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 6.2.2-4
- Perl 5.22 rebuild
2015-05-02 13:54:00 +00:00
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 6.2.2-3
- Rebuilt for GCC 5 C++11 ABI change
2015-03-11 16:59:59 +00:00
* Wed Mar 11 2015 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.2.2-2
- Rebuilt for Proj 4.9.1
2015-03-20 14:19:10 +00:00
- Add patch for GCC5 build, also add -fPIC to CFLAGS
- Add a patch for swig 3.0.5
2015-03-11 16:59:59 +00:00
2014-12-23 18:04:49 +00:00
* Tue Dec 23 2014 Pavel Lisý <pali@fedoraproject.org> - 6.2.2-1
- Update to latest 6.2 release
- BZ 1048689 - CVE-2013-7262 mapserver: SQL injections with postgis TIME filters
- BZ 747409 - MapServer uses internal AGG and does not depend on agg-devel
2014-08-26 23:33:19 +00:00
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 6.2.1-10
- Perl 5.20 rebuild
2014-09-03 10:03:52 +00:00
- Regenerated the wrapper to work with new Perl
2014-08-26 23:33:19 +00:00
2014-08-17 08:40:43 +00:00
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.2.1-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-08-11 11:44:53 +00:00
* Sat Aug 09 2014 Mat Booth <mat.booth@redhat.com> - 6.2.1-8
- Drop dep on gcj.
2014-06-20 06:55:18 +00:00
* Fri Jun 20 2014 Remi Collet <rcollet@redhat.com> - 6.2.1-7
- rebuild for https://fedoraproject.org/wiki/Changes/Php56
- add numerical prefix to extension configuration file
2014-06-20 07:09:12 +00:00
- add minimal PHP extension load test
- add upstream patch for PHP 5.6 (fix #1111478)
2014-06-20 06:55:18 +00:00
2014-06-07 07:57:57 +00:00
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.2.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2013-08-27 15:55:39 +00:00
* Tue Aug 27 2013 Orion Poplawski <orion@cora.nwra.com> - 6.2.1-5
- Rebuild for gdal 1.10.0
2013-08-03 09:04:37 +00:00
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.2.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-17 10:59:08 +00:00
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 6.2.1-3
- Perl 5.18 rebuild
2013-06-11 08:54:23 +00:00
* Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 6.2.1-2
- rebuild for new GD 2.1.0
2013-05-21 13:01:39 +00:00
* Tue May 21 2013 Pavel Lisý <pali@fedoraproject.org> - 6.2.1-1
- Update to latest stable release
- BZ 910689 - dependency on bitstream-vera-sans-fonts changed to dejavu-sans-fonts
- BZ 960856 - Missing dependency: bitstream-vera-sans-fonts
- BZ 747421 - Move CGI executable from /usr/sbin to /usr/libexec
- BZ 796344 - Not compatible with JDK7
- BZ 846543 - mapserver-java is incorrectly packaged (missing required native library)
2013-05-21 13:27:59 +00:00
- trim of changelog
2013-05-21 13:01:39 +00:00
* Tue Apr 09 2013 Pavel Lisý <pali@fedoraproject.org> - 6.2.0-2
- changed MS_REL from 6x to 62
2013-05-21 13:31:08 +00:00
* Thu Apr 04 2013 Pavel Lisý <pali@fedoraproject.org> - 6.2.0-1
2013-05-21 13:01:39 +00:00
- Update to latest stable release
- dependency on bitstream-vera-sans-fonts replaced to dejavu-sans-fonts
2013-03-25 12:41:48 +00:00
* Mon Mar 25 2013 Oliver Falk <oliver@linux-kernel.at> - 6.0.3-10.1
2013-04-09 12:42:43 +00:00
- Rebuild - fix changelog (bogus date)
2013-03-25 12:41:48 +00:00
2013-03-23 10:53:10 +00:00
* Sat Mar 23 2013 Remi Collet <rcollet@redhat.com> - 6.0.3-10
- rebuild for http://fedoraproject.org/wiki/Features/Php55
2013-02-14 06:19:42 +00:00
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.3-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-18 18:20:16 +00:00
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 6.0.3-8
- rebuild due to " j p e g 8 - A B I " feature drop
2012-10-26 07:39:12 +00:00
* Fri Oct 26 2012 Remi Collet <remi@fedoraproject.org> - 6.0.3-7
- conform to PHP Guidelines (#828161)
- add minimal load test for php extension
2013-05-20 08:52:42 +00:00
2012-10-16 09:46:09 +00:00
* Tue Oct 16 2012 Pavel Lisý <pali@fedoraproject.org> - 6.0.3-6
- temporary removed mapserver-java (mapscript) due to build problem
with jdk7
* Fri Oct 12 2012 Pavel Lisý <pali@fedoraproject.org> - 6.0.3-5
- Merged from 6.0.3-4
- fix of build for php4 and swig > 2.0.4
2012-08-14 00:07:06 +00:00
* Tue Aug 14 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.0.3-4
2012-08-14 00:04:44 +00:00
- Rebuilt for new perl.
2012-07-19 23:16:13 +00:00
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-07-10 08:24:25 +00:00
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 6.0.3-2
- Perl 5.16 rebuild
2012-06-30 11:33:12 +00:00
* Sat Jun 30 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.0.3-1
- Update to 6.0.3, for various fixes described at:
https://github.com/mapserver/mapserver/blob/rel-6-0-3-0/HISTORY.TXT
- Update URL, per bz #835426
2012-06-08 13:20:12 +00:00
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 6.0.2-2
- Perl 5.16 rebuild
2012-04-16 17:25:25 +00:00
* Mon Apr 16 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.0.2-1
- Update to 6.0.2, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-6-0-2/mapserver/HISTORY.TXT
2012-01-13 09:20:45 +00:00
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-06 05:19:57 +00:00
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 6.0.1-4
- Rebuild for new libpng
2011-07-21 16:34:19 +00:00
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 6.0.1-3
- Perl mass rebuild
2011-07-20 09:46:18 +00:00
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 6.0.1-2
- Perl mass rebuild
2011-07-18 12:54:00 +00:00
* Mon Jul 18 2011 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.0.1-1
- Update to 6.0.1, for various fixes described at:
http://trac.osgeo.org/mapserver/browser/tags/rel-6-0-1/mapserver/HISTORY.TXT
- Fixes bz #722545
2011-07-19 14:18:12 +00:00
- Apply changes to spec file for new major version.
2016-03-29 09:27:52 +00:00