|
@@ -0,0 +1,558 @@
|
|
|
+%global shortver 74
|
|
|
+%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
|
|
+
|
|
|
+Name: grass
|
|
|
+Version: 7.4.0
|
|
|
+Release: 1%{?dist}
|
|
|
+Summary: GRASS GIS - Geographic Resources Analysis Support System
|
|
|
+
|
|
|
+Group: Applications/Engineering
|
|
|
+License: GPLv2+
|
|
|
+URL: https://grass.osgeo.org
|
|
|
+Source0: https://grass.osgeo.org/%{name}%{shortver}/source/%{name}-%{version}.tar.gz
|
|
|
+Source2: %{name}-config.h
|
|
|
+# Patch0: grass72_ctypes_gcc7.diff
|
|
|
+
|
|
|
+BuildRequires: bison
|
|
|
+BuildRequires: blas-devel
|
|
|
+BuildRequires: desktop-file-utils
|
|
|
+BuildRequires: fftw-devel
|
|
|
+BuildRequires: flex
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+BuildRequires: freetype-devel
|
|
|
+%endif
|
|
|
+BuildRequires: gdal-devel
|
|
|
+BuildRequires: geos-devel
|
|
|
+BuildRequires: gettext
|
|
|
+BuildRequires: lapack-devel
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+BuildRequires: libappstream-glib
|
|
|
+%endif
|
|
|
+%if 0%{?fedora}
|
|
|
+BuildRequires: liblas-devel => 1.8.0-12
|
|
|
+%endif
|
|
|
+BuildRequires: libpng-devel
|
|
|
+BuildRequires: libtiff-devel
|
|
|
+BuildRequires: libXmu-devel
|
|
|
+BuildRequires: mesa-libGL-devel
|
|
|
+BuildRequires: mesa-libGLU-devel
|
|
|
+BuildRequires: mysql-devel
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+BuildRequires: netcdf-devel
|
|
|
+%endif
|
|
|
+BuildRequires: numpy
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+BuildRequires: postgresql-devel
|
|
|
+%else
|
|
|
+# RHEL6: PG from http://yum.postgresql.org/9.6/redhat/rhel-$releasever-$basearch/
|
|
|
+BuildRequires: postgresql96-devel postgresql96-libs
|
|
|
+%endif
|
|
|
+BuildRequires: proj-devel
|
|
|
+BuildRequires: proj-epsg
|
|
|
+BuildRequires: proj-nad
|
|
|
+%if (0%{?rhel} <= 6 && !0%{?fedora})
|
|
|
+# argparse is included in python2.7+ but not python2.6
|
|
|
+BuildRequires: python-argparse
|
|
|
+%endif
|
|
|
+BuildRequires: python-dateutil
|
|
|
+BuildRequires: python-devel
|
|
|
+Requires: python-matplotlib
|
|
|
+##?
|
|
|
+#Requires: python-matplotlib-wx
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+BuildRequires: python-pillow
|
|
|
+%else
|
|
|
+BuildRequires: python-imaging
|
|
|
+%endif
|
|
|
+BuildRequires: readline-devel
|
|
|
+BuildRequires: sqlite-devel
|
|
|
+BuildRequires: subversion
|
|
|
+BuildRequires: unixODBC-devel
|
|
|
+BuildRequires: wxGTK-devel
|
|
|
+BuildRequires: zlib-devel
|
|
|
+
|
|
|
+Requires: geos
|
|
|
+Requires: numpy
|
|
|
+Requires: proj-epsg
|
|
|
+Requires: proj-nad
|
|
|
+Requires: wxPython
|
|
|
+
|
|
|
+%if "%{_lib}" == "lib"
|
|
|
+%global cpuarch 32
|
|
|
+%else
|
|
|
+%global cpuarch 64
|
|
|
+%endif
|
|
|
+
|
|
|
+Requires: %{name}%{?isa}-libs = %{version}-%{release}
|
|
|
+
|
|
|
+%description
|
|
|
+GRASS (Geographic Resources Analysis Support System) is a Geographic
|
|
|
+Information System (GIS) used for geospatial data management and
|
|
|
+analysis, image processing, graphics/maps production, spatial
|
|
|
+modeling, and visualization. GRASS is currently used in academic and
|
|
|
+commercial settings around the world, as well as by many governmental
|
|
|
+agencies and environmental consulting companies.
|
|
|
+
|
|
|
+%package libs
|
|
|
+Summary: GRASS GIS runtime libraries
|
|
|
+Group: Applications/Engineering
|
|
|
+
|
|
|
+%description libs
|
|
|
+GRASS GIS runtime libraries
|
|
|
+
|
|
|
+%package gui
|
|
|
+Summary: GRASS GIS GUI
|
|
|
+Group: Applications/Engineering
|
|
|
+Requires: %{name}%{?isa}-libs = %{version}-%{release}
|
|
|
+Requires: %{name}%{?isa} = %{version}-%{release}
|
|
|
+
|
|
|
+%description gui
|
|
|
+GRASS GIS GUI
|
|
|
+
|
|
|
+%package devel
|
|
|
+Summary: GRASS GIS development headers
|
|
|
+Group: Applications/Engineering
|
|
|
+Requires: %{name}%{?isa}-libs = %{version}-%{release}
|
|
|
+
|
|
|
+%description devel
|
|
|
+GRASS GIS development headers
|
|
|
+
|
|
|
+%prep
|
|
|
+%setup -q
|
|
|
+# %patch0 -p1
|
|
|
+
|
|
|
+# Correct mysql_config query
|
|
|
+sed -i -e 's/--libmysqld-libs/--libs/g' configure
|
|
|
+
|
|
|
+# Fixup shebangs
|
|
|
+find -type f | xargs sed -i -e 's,#!/usr/bin/env python,#!%{__python},'
|
|
|
+find -name \*.pl | xargs sed -i -e 's,#!/usr/bin/env perl,#!%{__perl},'
|
|
|
+
|
|
|
+%build
|
|
|
+# Package is not ready for -Werror=format-security or the C++11 standard
|
|
|
+CFLAGS="$(echo ${RPM_OPT_FLAGS} | sed -e 's/ -Werror=format-security//')"
|
|
|
+CXXFLAGS="-std=c++98 ${CFLAGS}"
|
|
|
+%configure \
|
|
|
+ --with-cxx \
|
|
|
+ --with-tiff \
|
|
|
+ --with-png \
|
|
|
+ --with-postgres \
|
|
|
+ --with-mysql \
|
|
|
+ --with-opengl \
|
|
|
+ --with-odbc \
|
|
|
+ --with-fftw \
|
|
|
+ --with-blas \
|
|
|
+ --with-lapack \
|
|
|
+ --with-cairo \
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+ --with-freetype \
|
|
|
+%endif
|
|
|
+ --with-nls \
|
|
|
+ --with-readline \
|
|
|
+ --with-regex \
|
|
|
+ --with-openmp \
|
|
|
+ --with-gdal=%{_bindir}/gdal-config \
|
|
|
+ --with-wxwidgets=%{_bindir}/wx-config \
|
|
|
+ --with-geos=%{_bindir}/geos-config \
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+ --with-netcdf=%{_bindir}/nc-config \
|
|
|
+%endif
|
|
|
+ --with-mysql-includes=%{_includedir}/mysql \
|
|
|
+ --with-mysql-libs=%{_libdir} \
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+ --with-postgres-includes=%{_includedir}/pgsql \
|
|
|
+%else
|
|
|
+ --with-postgres-includes=%{_prefix}/pgsql-9.6/include/ \
|
|
|
+ --with-postgres-libs=%{_prefix}/pgsql-9.6/lib/ \
|
|
|
+%endif
|
|
|
+ --with-cairo-ldflags=-lfontconfig \
|
|
|
+ --with-freetype-includes=%{_includedir}/freetype2 \
|
|
|
+ --with-proj-share=%{_datadir}/proj \
|
|
|
+%if 0%{?fedora}
|
|
|
+ --with-liblas=%{_bindir}/liblas-config
|
|
|
+%endif
|
|
|
+
|
|
|
+%if (0%{?rhel} > 6 || 0%{?fedora})
|
|
|
+make %{?_smp_mflags}
|
|
|
+%else
|
|
|
+# EPEL6: the HTML parser is too strict in Python 6, hence a few manual pages will not be generated
|
|
|
+make %{?_smp_mflags} || echo "EPEL6: ignoring failed manual pages"
|
|
|
+%endif
|
|
|
+
|
|
|
+# by default, grass will be installed to /usr/grass-%%{version}
|
|
|
+# this is not FHS compliant: hide grass-%%{version} in %%{libdir}/grass
|
|
|
+# version will be removed
|
|
|
+%install
|
|
|
+%make_install \
|
|
|
+ prefix=%{buildroot}%{_libdir} \
|
|
|
+ UNIX_BIN=%{buildroot}%{_bindir}
|
|
|
+
|
|
|
+# remove version number
|
|
|
+mv %{buildroot}%{_libdir}/%{name}-%{version} %{buildroot}%{_libdir}/%{name}
|
|
|
+mv %{buildroot}%{_bindir}/%{name}%{shortver} %{buildroot}%{_bindir}/%{name}
|
|
|
+
|
|
|
+# libraries and headers are in GISBASE = %%{_libdir}/%%{name}
|
|
|
+# keep them in GISBASE
|
|
|
+
|
|
|
+# fix paths:
|
|
|
+
|
|
|
+# Change GISBASE in startup script
|
|
|
+sed -i -e 's|%{buildroot}%{_libdir}/%{name}-%{version}|%{_libdir}/%{name}|g' \
|
|
|
+ %{buildroot}%{_bindir}/%{name}
|
|
|
+# fix GRASS_HOME and RUN_GISBASE in Platform.make
|
|
|
+sed -i -e 's|%{buildroot}%{_libdir}/%{name}-%{version}|%{_libdir}/%{name}|g' \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/include/Make/Platform.make
|
|
|
+# fix INST_DIR in Platform.make
|
|
|
+sed -i -e 's|%{name}-%{version}|%{name}|g' \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/include/Make/Platform.make
|
|
|
+# fix ARCH_DISTDIR in Grass.make
|
|
|
+sed -i -e 's|%{buildroot}%{_libdir}/%{name}-%{version}|%{_libdir}/%{name}|g' \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/include/Make/Grass.make
|
|
|
+# fix ARCH_BINDIR in Grass.make
|
|
|
+sed -i -e 's|%{buildroot}%{_bindir}|%{_bindir}|g' \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/include/Make/Grass.make
|
|
|
+# fix GISDBASE in demolocation
|
|
|
+sed -i -e 's|%{buildroot}%{_libdir}/%{name}|%{_libdir}/%{name}|g' \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/demolocation/.grassrc%{shortver}
|
|
|
+# Correct font path
|
|
|
+sed -i -e 's|%{buildroot}%{_libdir}/%{name}|%{_libdir}/%{name}|' \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/etc/fontcap
|
|
|
+# fix paths in grass.pc
|
|
|
+sed -i -e 's|%{_prefix}/%{name}-%{version}|%{_libdir}/%{name}|g' \
|
|
|
+ %{name}.pc
|
|
|
+
|
|
|
+mkdir -p %{buildroot}%{_libdir}/pkgconfig
|
|
|
+install -p -m 644 %{name}.pc %{buildroot}%{_libdir}/pkgconfig
|
|
|
+
|
|
|
+# Create multilib header
|
|
|
+mv %{buildroot}%{_libdir}/%{name}/include/%{name}/config.h \
|
|
|
+ %{buildroot}%{_libdir}/%{name}/include/%{name}/config-%{cpuarch}.h
|
|
|
+install -p -m 644 %{SOURCE2} %{buildroot}%{_libdir}/%{name}/include/%{name}/config.h
|
|
|
+
|
|
|
+# Make man pages available on the system, convert to utf8 and avoid name conflict
|
|
|
+mkdir -p %{buildroot}%{_mandir}/man1
|
|
|
+for man in $(ls %{buildroot}%{_libdir}/%{name}/docs/man/man1/*.1)
|
|
|
+do
|
|
|
+ iconv -f iso8859-1 -t utf8 $man > %{buildroot}%{_mandir}/man1/$(basename $man)"%{name}"
|
|
|
+done
|
|
|
+
|
|
|
+for file in infrastructure.txt ; do
|
|
|
+ iconv -f ISO-8859-1 -t UTF-8 $file > ${file}.tmp && mv -f ${file}.tmp $file
|
|
|
+done
|
|
|
+
|
|
|
+# Make desktop, appdata and icon files available on the system
|
|
|
+mv %{buildroot}%{_libdir}/%{name}/share/* %{buildroot}%{_datadir}
|
|
|
+desktop-file-validate %{buildroot}/%{_datadir}/applications/*.desktop
|
|
|
+# EPEL7 fails on url tag, so we ignore failure:
|
|
|
+appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/appdata/*.appdata.xml || echo "Ignoring appstream-util failure"
|
|
|
+
|
|
|
+# symlink docs from GISBASE to standard system location
|
|
|
+mkdir -p %{buildroot}%{_docdir}
|
|
|
+ln -s %{_libdir}/%{name}/docs %{buildroot}%{_docdir}/%{name}
|
|
|
+
|
|
|
+# Cleanup: nothing to do
|
|
|
+#rm -rf %%{buildroot}%%{_libdir}/%%{name}
|
|
|
+
|
|
|
+# rpm macro for version checking
|
|
|
+mkdir -p ${RPM_BUILD_ROOT}%{macrosdir}
|
|
|
+cat > ${RPM_BUILD_ROOT}%{macrosdir}/macros.%{name} <<EOF
|
|
|
+# %name version is
|
|
|
+%%%{name}_version %{version}
|
|
|
+EOF
|
|
|
+
|
|
|
+%post
|
|
|
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
+
|
|
|
+%postun
|
|
|
+if [ $1 -eq 0 ] ; then
|
|
|
+ /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
|
|
+ /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
+fi
|
|
|
+
|
|
|
+%posttrans
|
|
|
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
+
|
|
|
+%post libs -p /sbin/ldconfig
|
|
|
+
|
|
|
+%postun libs -p /sbin/ldconfig
|
|
|
+
|
|
|
+%files
|
|
|
+%exclude %{_libdir}/%{name}/driver/db/*
|
|
|
+%exclude %{_libdir}/%{name}/lib
|
|
|
+%exclude %{_libdir}/%{name}/include
|
|
|
+%exclude %{_libdir}/%{name}/gui
|
|
|
+%{_libdir}/%{name}
|
|
|
+%{_bindir}/*
|
|
|
+%{_datadir}/appdata/*
|
|
|
+%{_datadir}/applications/*
|
|
|
+%{_datadir}/icons/hicolor/*/apps/*
|
|
|
+%{_mandir}/man1/*
|
|
|
+%{_docdir}/%{name}
|
|
|
+
|
|
|
+%files libs
|
|
|
+%license AUTHORS COPYING GPL.TXT CHANGES
|
|
|
+%{_libdir}/%{name}/lib/*.%{version}.so
|
|
|
+%{_libdir}/%{name}/lib/*.a
|
|
|
+%dir %{_libdir}/%{name}/driver
|
|
|
+%dir %{_libdir}/%{name}/driver/db
|
|
|
+%{_libdir}/%{name}/driver/db/*
|
|
|
+
|
|
|
+%files gui
|
|
|
+%{_libdir}/%{name}/gui
|
|
|
+
|
|
|
+%files devel
|
|
|
+%doc TODO doc/* SUBMITTING
|
|
|
+%{macrosdir}/macros.%{name}
|
|
|
+%{_libdir}/pkgconfig/*
|
|
|
+%dir %{_libdir}/%{name}/lib
|
|
|
+%{_libdir}/%{name}/lib/*[!%{version}].so
|
|
|
+%{_libdir}/%{name}/include
|
|
|
+
|
|
|
+%changelog
|
|
|
+* Mon Jan 15 2018 Markus Metz <metz@mundialis.de> - 7.4.0-1
|
|
|
+- New upstream version 7.4.0
|
|
|
+- Fix grass-devel which needs include/grass and include/Make dirs
|
|
|
+
|
|
|
+* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 7.2.1-2
|
|
|
+- Rebuilt for Boost 1.64
|
|
|
+
|
|
|
+* Wed May 3 2017 Markus Neteler <neteler@mundialis.de> - 7.2.1-1
|
|
|
+- New upstream version 7.2.1
|
|
|
+
|
|
|
+* Thu Mar 2 2017 Markus Neteler <neteler@mundialis.de> - 7.2.0-3
|
|
|
+- Fix for g.extension which needs include/ dir in grass-devel
|
|
|
+
|
|
|
+* Sat Feb 4 2017 Markus Neteler <neteler@mundialis.de> - 7.2.0-2
|
|
|
+- Fixes for EPEL
|
|
|
+
|
|
|
+* Thu Jan 12 2017 Markus Neteler <neteler@mundialis.de> - 7.2.0-1
|
|
|
+- New upstream version 7.2.0
|
|
|
+
|
|
|
+* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 7.0.4-5
|
|
|
+- Rebuild for readline 7.x
|
|
|
+
|
|
|
+* Sun Jan 01 2017 Volker Froehlich <volker27@gmx.at> - 7.0.4-4
|
|
|
+- Rebuild for libgeos
|
|
|
+
|
|
|
+* Fri Oct 7 2016 Orion Poplawski <orion@cora.nwra.com> - 7.0.4-3
|
|
|
+- Add patch to fix desktop file
|
|
|
+- Validate desktop and appdata files
|
|
|
+- Fix script interpreters
|
|
|
+- Convert files to UTF-8 if needed
|
|
|
+
|
|
|
+* Wed Sep 21 2016 Orion Poplawski <orion@cora.nwra.com> - 7.0.4-2
|
|
|
+- Generate rpm macro file for version tracking
|
|
|
+
|
|
|
+* Mon May 9 2016 Devrim Gündüz <devrim@gunduz.org> - 7.0.4-1
|
|
|
+- Update to 7.0.4
|
|
|
+
|
|
|
+* Mon Mar 07 2016 Thomas Kreuzer <thomas.kreuzer@uni-vechta.de> - 7.0.3-1
|
|
|
+- New SPEC file for GRASS GIS 7.0.3
|
|
|
+
|
|
|
+* Tue Sep 23 2014 Richard Hughes <richard@hughsie.com> - 6.4.4-5
|
|
|
+- Install the shipped AppData file
|
|
|
+
|
|
|
+* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.4-3
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
+
|
|
|
+* Sat Aug 09 2014 Ralf Corsépius <corsepius@fedoraproject.org> 6.4.4-2
|
|
|
+- Rebase patches against grass-6.4.4.
|
|
|
+- Convert -Werror=format-security into warnings (RHBZ#1106720).
|
|
|
+- Minor spec cleanup.
|
|
|
+
|
|
|
+* Fri Jul 25 2014 Peter Robinson <pbrobinson@fedoraproject.org> 6.4.4-1
|
|
|
+- Update to 6.4.4
|
|
|
+- Make 64bit conditionals generic
|
|
|
+
|
|
|
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.3-8
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
+
|
|
|
+* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 6.4.3-7
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
|
|
|
+
|
|
|
+* Thu Mar 27 2014 Ville Skyttä <ville.skytta@iki.fi> - 6.4.3-6
|
|
|
+- Don't ship patch backup files
|
|
|
+
|
|
|
+* Mon Oct 14 2013 Volker Fröhlich <volker27@gmx.at> - 6.4.3-5
|
|
|
+- Solve build failure on PPC tests (BZ#961838)
|
|
|
+
|
|
|
+* Wed Oct 9 2013 Devrim Gündüz <devrim@gunduz.org> - 6.4.3-4
|
|
|
+- Rebuild against new GEOS
|
|
|
+
|
|
|
+* Thu Oct 3 2013 Volker Fröhlich <volker27@gmx.at> - 6.4.3-3
|
|
|
+- Add patch for release name encoding crash
|
|
|
+- Use upstream desktop file (BZ #986852)
|
|
|
+- Install icons of different sizes
|
|
|
+
|
|
|
+* Sat Sep 14 2013 Volker Fröhlich <volker27@gmx.at> - 6.4.3-2
|
|
|
+- Remove gcc patch (upstream)
|
|
|
+- Remove useless BR for libjpeg
|
|
|
+- Make config.h a source file instead of defining it in the spec file
|
|
|
+- Truncate changelog
|
|
|
+
|
|
|
+* Thu Sep 12 2013 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.4.3-1
|
|
|
+- Update to 6.4.3
|
|
|
+- Rebuild with new geos.
|
|
|
+
|
|
|
+* Tue Aug 27 2013 Orion Poplawski <orion@cora.nwra.com> - 6.4.2-11
|
|
|
+- Rebuild for gdal 1.10.0
|
|
|
+
|
|
|
+* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.2-10
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
+
|
|
|
+* Fri Apr 12 2013 Jon Ciesla <limburgher@gmail.com> - 6.4.2-9
|
|
|
+- Drop desktop vendor tag.
|
|
|
+
|
|
|
+* Wed Mar 06 2013 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.4.2-8
|
|
|
+- Rebuild with new geos.
|
|
|
+
|
|
|
+* Fri Jan 25 2013 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.4.2-7
|
|
|
+- Rebuild with geos 3.3.7.
|
|
|
+
|
|
|
+* Sun Nov 18 2012 Volker Fröhlich <volker27@gmx.at> - 6.4.2-6
|
|
|
+- Rebuild with ever newer geos
|
|
|
+
|
|
|
+* Wed Nov 14 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.4.2-5
|
|
|
+- Rebuild with new geos.
|
|
|
+
|
|
|
+* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.2-4
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
+
|
|
|
+* Mon Jul 16 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.4.2-3
|
|
|
+- Rebuilt
|
|
|
+
|
|
|
+* Sun Mar 4 2012 Volker Fröhlich <volker27@gmx.at> - 6.4.2-2
|
|
|
+- Solve name conflict with "parallel" man pages (BZ 797824)
|
|
|
+- Correct man page encoding conversion
|
|
|
+- Build with multiple workers; assumuption on race-condition was wrong
|
|
|
+
|
|
|
+* Fri Mar 2 2012 Tom Callaway <spot@fedoraproject.org> - 6.4.2-1
|
|
|
+- update to 6.4.2
|
|
|
+
|
|
|
+* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.1-8
|
|
|
+- Rebuilt for c++ ABI breakage
|
|
|
+
|
|
|
+* Tue Jan 10 2012 Volker Fröhlich <volker27@gmx.at> - 6.4.1-7
|
|
|
+- Race condition in build system assumed -- going back to one worker
|
|
|
+
|
|
|
+* Mon Jan 9 2012 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.4.1-6
|
|
|
+- Rebuilt with new geos
|
|
|
+
|
|
|
+* Wed Nov 23 2011 Volker Fröhlich <volker27@gmx.at> - 6.4.1-5
|
|
|
+- Move string substitution back to the install section, because
|
|
|
+ it causes problems otherwise
|
|
|
+- Add patch for libpng API change
|
|
|
+
|
|
|
+* Wed Nov 02 2011 Volker Fröhlich <volker27@gmx.at> - 6.4.1-4
|
|
|
+- Remove encoding from desktop file
|
|
|
+- Remove BR on wxGTK, because wxGTK requires it anyway
|
|
|
+- Disable Ubuntu patches, because they don't seem to work in Fedora
|
|
|
+- Move all the string substitution for locales and docs to prep
|
|
|
+- Use name macro in Source
|
|
|
+- Drop custom compiler flags -- no evidence they serve a purpose
|
|
|
+- Remove 2 unnecessary chmods
|
|
|
+- Don't use sysconfdir macro in places, where etc means something different
|
|
|
+- Add contributors to documentation
|
|
|
+
|
|
|
+* Wed Nov 02 2011 Volker Fröhlich <volker27@gmx.at> - 6.4.1-3
|
|
|
+- Patch locale and documentation paths properly for the GUI
|
|
|
+
|
|
|
+* Thu Sep 22 2011 Volker Fröhlich <volker27@gmx.at> - 6.4.1-2
|
|
|
+- Remove duplicate documentation
|
|
|
+- Correct further documentation paths
|
|
|
+- Create version-less symlinks for library directory and binary
|
|
|
+- Supply all lang files to the files section directly
|
|
|
+- Add ternary operator patch for Python 2.4 (ELGIS)
|
|
|
+
|
|
|
+* Tue Aug 02 2011 Volker Fröhlich <volker27@gmx.at> - 6.4.1-1
|
|
|
+- Update to 6.4.1
|
|
|
+- Remove explicit lib and include dirs, where not necessary
|
|
|
+- Really build with geos
|
|
|
+- Remove sed call on ncurses
|
|
|
+
|
|
|
+* Tue Aug 02 2011 Volker Fröhlich <volker27@gmx.at> - 6.4.0-4
|
|
|
+- Correct license to GPLv2+
|
|
|
+- Update URL
|
|
|
+- Replace define with global macro
|
|
|
+- Devel package required itself
|
|
|
+- Simplify setup macro
|
|
|
+- Don't add -lm manually anymore
|
|
|
+- Correct FSF postal address
|
|
|
+- Drop cstdio patch
|
|
|
+- Correct Exec and Icon entry in desktop file
|
|
|
+- Remove wrong and unnecessary translation entries from desktop file
|
|
|
+ GRASS didn't start for the first issue
|
|
|
+- Add numpy as requirement
|
|
|
+- Delete defattr, as the defaults work right
|
|
|
+- Use name macro where possible
|
|
|
+- Devel package required itself
|
|
|
+- Changelog doesn't need encoding conversion anymore
|
|
|
+ Same goes for translators and infrastructure files
|
|
|
+- Use mandir macro on one occasion
|
|
|
+- Introduce "shortversion" macro
|
|
|
+- Beautify case construction for 64 bit build flags
|
|
|
+- Update syntax for Require on base package to guidelines
|
|
|
+- Don't list LOCALE files twice, own directory
|
|
|
+- Don't ship same documentation in different packages
|
|
|
+- Drop README
|
|
|
+- Simplify file list in devel package
|
|
|
+- Replace extra icon source with one from the tarball
|
|
|
+
|
|
|
+* Wed Mar 23 2011 Dan Horák <dan@danny.cz> - 6.4.0-3
|
|
|
+- rebuilt for mysql 5.5.10 (soname bump in libmysqlclient)
|
|
|
+
|
|
|
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.0-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
+
|
|
|
+* Mon Nov 22 2010 Viji Nair <viji [AT] fedoraproject DOT org> - 6.4.0-1
|
|
|
+- Rebuilt with new gdal 1.7.3.
|
|
|
+- Updated to upstream version 6.4.0.
|
|
|
+- Removed grass-gdilib.patch
|
|
|
+- Spec review
|
|
|
+
|
|
|
+* Fri Dec 4 2009 Devrim GÜNDÜZ <devrim@gunduz.org> - 6.3.0-15
|
|
|
+- Rebuilt with new geos
|
|
|
+
|
|
|
+* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 6.3.0-14
|
|
|
+- rebuilt with new openssl
|
|
|
+
|
|
|
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.3.0-13
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
+
|
|
|
+* Mon Mar 23 2009 Lubomir Rintel <lkundrak@v3.sk> - 6.3.0-12
|
|
|
+- Fix build with GCC 4.4
|
|
|
+
|
|
|
+* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.3.0-11
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
+
|
|
|
+* Thu Jan 29 2009 Balint Cristian <cristian.balint@gmail.com> - 6.3.0-10
|
|
|
+- email change
|
|
|
+- rebuild for new mysql
|
|
|
+
|
|
|
+* Sun Dec 07 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-9
|
|
|
+- rebuild against newer gdal
|
|
|
+
|
|
|
+* Sun Dec 07 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-8
|
|
|
+- rebuild against newer gdal
|
|
|
+
|
|
|
+* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 6.3.0-7
|
|
|
+- Rebuild for Python 2.6
|
|
|
+
|
|
|
+* Sun Aug 24 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-6
|
|
|
+- bz#458427 (prelink fail)
|
|
|
+- bz#458563 (grass not able to display documentation)
|
|
|
+
|
|
|
+* Sat Jul 05 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-5
|
|
|
+- address bz#454146 (wxPython miss)
|
|
|
+
|
|
|
+* Thu Jun 12 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-4
|
|
|
+- address bz#341391 (multilib issue)
|
|
|
+
|
|
|
+* Mon May 26 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-3
|
|
|
+- bugfix initscripts permission
|
|
|
+
|
|
|
+* Thu May 15 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-2
|
|
|
+- require swig to build
|
|
|
+
|
|
|
+* Thu May 15 2008 Balint Cristian <rezso@rdsor.ro> 6.3.0-1
|
|
|
+- final stable release upstream
|