update to 7.2.0-beta1 to support Leap 15.0

OBS-URL: https://build.opensuse.org/package/show/Application:Geo/mapserver?expand=0&rev=104
This commit is contained in:
Dirk Stoecker 2018-06-07 11:51:21 +00:00 committed by Git OBS Bridge
parent 342dece093
commit 7d71e76be0
4 changed files with 18 additions and 9 deletions

View File

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

View File

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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Jun 7 11:51:11 UTC 2018 - opensuse@dstoecker.de
- update to 7.2.0-beta1 to support Leap 15.0
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 15 08:37:40 UTC 2017 - opensuse@dstoecker.de Fri Dec 15 08:37:40 UTC 2017 - opensuse@dstoecker.de

View File

@ -20,17 +20,18 @@
# #
%define libname libmapserver2 %define libname libmapserver2
%define python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib(1))")}
%define _cgibindir /srv/www/cgi-bin %define _cgibindir /srv/www/cgi-bin
Name: mapserver Name: mapserver
Version: 7.0.7 %define realversion 7.2.0-beta1
Version: 7.2.0_beta1
Release: 0 Release: 0
Summary: Environment for building spatially-enabled internet applications Summary: Environment for building spatially-enabled internet applications
License: MIT License: MIT
Group: Productivity/Networking/Web/Servers Group: Productivity/Networking/Web/Servers
Url: http://www.mapserver.org Url: http://www.mapserver.org
Source: http://download.osgeo.org/mapserver/%{name}-%{version}.tar.gz Source: http://download.osgeo.org/mapserver/%{name}-%{realversion}.tar.gz
BuildRequires: FastCGI-devel BuildRequires: FastCGI-devel
BuildRequires: apache2-devel BuildRequires: apache2-devel
BuildRequires: autoconf BuildRequires: autoconf
@ -44,10 +45,10 @@ BuildRequires: gcc
BuildRequires: gcc-c++ BuildRequires: gcc-c++
BuildRequires: gd-devel >= 2.0.16 BuildRequires: gd-devel >= 2.0.16
BuildRequires: giflib-devel BuildRequires: giflib-devel
BuildRequires: harfbuzz-devel
BuildRequires: krb5-devel BuildRequires: krb5-devel
BuildRequires: libcurl-devel BuildRequires: libcurl-devel
BuildRequires: libexpat-devel BuildRequires: libexpat-devel
BuildRequires: libgcj-devel
BuildRequires: libgdal-devel >= 1.10 BuildRequires: libgdal-devel >= 1.10
BuildRequires: libgeos-devel BuildRequires: libgeos-devel
BuildRequires: libhdf4 BuildRequires: libhdf4
@ -63,6 +64,8 @@ BuildRequires: pam
BuildRequires: pam-devel BuildRequires: pam-devel
BuildRequires: postgresql-devel >= 9.1 BuildRequires: postgresql-devel >= 9.1
BuildRequires: proj BuildRequires: proj
BuildRequires: libprotobuf-c-devel
BuildRequires: protobuf-c
BuildRequires: readline-devel BuildRequires: readline-devel
BuildRequires: rpm BuildRequires: rpm
BuildRequires: swig BuildRequires: swig
@ -182,10 +185,9 @@ The Mapserver development package provides necessary files to build
against the C Mapserver library. against the C Mapserver library.
%prep %prep
%setup -q %setup -q -n %{name}-%{realversion}
%build %build
mkdir build mkdir build
cd build cd build
#Pre export the PREFIX ( having it on the command line doesn't expand correctly for #Pre export the PREFIX ( having it on the command line doesn't expand correctly for
@ -227,6 +229,7 @@ cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DWITH_PHP=TRUE \ -DWITH_PHP=TRUE \
-DWITH_POSTGIS=TRUE \ -DWITH_POSTGIS=TRUE \
-DWITH_PROJ=TRUE \ -DWITH_PROJ=TRUE \
-DWITH_PROTOBUFC=TRUE \
-DWITH_PYTHON=TRUE \ -DWITH_PYTHON=TRUE \
-DWITH_RUBY=TRUE \ -DWITH_RUBY=TRUE \
-DWITH_SOS=TRUE \ -DWITH_SOS=TRUE \
@ -246,6 +249,7 @@ cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DWITH_SDE=FALSE \ -DWITH_SDE=FALSE \
-DWITH_SDE_PLUGIN=FALSE \ -DWITH_SDE_PLUGIN=FALSE \
-DWITH_EXEMPI=FALSE \ -DWITH_EXEMPI=FALSE \
-Wno-dev \
.. ..
make %{?jobs:-j%{jobs}} make %{?jobs:-j%{jobs}}