[DebianGIS-dev] r1797 - packages/gdal/trunk/debian/patches

frankie at alioth.debian.org frankie at alioth.debian.org
Mon Nov 10 08:52:36 UTC 2008


Author: frankie
Date: 2008-11-10 08:52:35 +0000 (Mon, 10 Nov 2008)
New Revision: 1797

Removed:
   packages/gdal/trunk/debian/patches/eoverflow.dpatch
   packages/gdal/trunk/debian/patches/pythonmakefile.dpatch
   packages/gdal/trunk/debian/patches/sincos.dpatch
Log:
Removing obsolete patches


Deleted: packages/gdal/trunk/debian/patches/eoverflow.dpatch
===================================================================
--- packages/gdal/trunk/debian/patches/eoverflow.dpatch	2008-11-10 08:50:16 UTC (rev 1796)
+++ packages/gdal/trunk/debian/patches/eoverflow.dpatch	2008-11-10 08:52:35 UTC (rev 1797)
@@ -1,35 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## eoverflow.dpatch by Francesco Paolo Lovergine <frankie at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
- at DPATCH@
-diff -urNad gdal-1.5.2~/gcore/gdalopeninfo.cpp gdal-1.5.2/gcore/gdalopeninfo.cpp
---- gdal-1.5.2~/gcore/gdalopeninfo.cpp	2008-02-23 11:28:24.000000000 +0100
-+++ gdal-1.5.2/gcore/gdalopeninfo.cpp	2008-07-02 17:40:52.000000000 +0200
-@@ -94,10 +94,21 @@
-                 nHeaderBytes = (int) VSIFRead( pabyHeader, 1, 1024, fp );
- 
-                 VSIRewind( fp );
--            } 
-+            }
-+            /* XXX: ENOENT is used to catch the case of virtual filesystem
-+             * when we do not have a real file with such a name. Under some
-+             * circumstances EINVAL reported instead of ENOENT in Windows
-+             * (for filenames containing colon, e.g. "smth://name"). 
-+             * See also: #2437 */
-             else if( errno == 27 /* "File to large" */ 
--                     || errno == ENOENT 
--                     || errno == 79 /* EOVERFLOW - value too large */ )
-+                     || errno == ENOENT || errno == EINVAL
-+#ifdef EOVERFLOW
-+                     || errno == EOVERFLOW
-+#else
-+                     || errno == 75 /* Linux EOVERFLOW */
-+                     || errno == 79 /* Solaris EOVERFLOW */ 
-+#endif
-+                     )
-             {
-                 fp = VSIFOpenL( pszFilename, "rb" );
-                 if( fp != NULL )

Deleted: packages/gdal/trunk/debian/patches/pythonmakefile.dpatch
===================================================================
--- packages/gdal/trunk/debian/patches/pythonmakefile.dpatch	2008-11-10 08:50:16 UTC (rev 1796)
+++ packages/gdal/trunk/debian/patches/pythonmakefile.dpatch	2008-11-10 08:52:35 UTC (rev 1797)
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## python.dpatch by Francesco Paolo Lovergine <frankie at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
- at DPATCH@
-diff -urNad gdal-1.5.1~/swig/python/GNUmakefile gdal-1.5.1/swig/python/GNUmakefile
---- gdal-1.5.1~/swig/python/GNUmakefile	2008-04-19 13:12:54.000000000 +0200
-+++ gdal-1.5.1/swig/python/GNUmakefile	2008-04-19 13:21:27.000000000 +0200
-@@ -2,7 +2,7 @@
- 
- include ../../GDALmake.opt
- 
--ifndef $(PYTHON)
-+ifndef PYTHON
-         PYTHON=python
- endif
- 

Deleted: packages/gdal/trunk/debian/patches/sincos.dpatch
===================================================================
--- packages/gdal/trunk/debian/patches/sincos.dpatch	2008-11-10 08:50:16 UTC (rev 1796)
+++ packages/gdal/trunk/debian/patches/sincos.dpatch	2008-11-10 08:52:35 UTC (rev 1797)
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## sincos.dpatch by Francesco Paolo Lovergine <frankie at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
- at DPATCH@
-diff -urNad gdal-1.5.2~/frmts/hdf4/hdf-eos/GDapi.c gdal-1.5.2/frmts/hdf4/hdf-eos/GDapi.c
---- gdal-1.5.2~/frmts/hdf4/hdf-eos/GDapi.c	2007-11-14 16:12:27.000000000 +0100
-+++ gdal-1.5.2/frmts/hdf4/hdf-eos/GDapi.c	2008-07-22 13:28:47.000000000 +0200
-@@ -6258,7 +6258,7 @@
- 
- 
- 
--#if !defined(HP9000) && !defined(DEC_ALPHA)
-+#if 0
- void
- sincos(double val, double *sin_val, double *cos_val)
- {




More information about the Pkg-grass-devel mailing list