[SCM] gdal branch, master, updated. upstream/1.8.0-26-g6057817

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the master branch:
commit 95624f65a8ed8a7e62d4d1862d03a7f57aee5937
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Mon May 9 17:45:32 2011 +0200

Now do not hide symbols.

diff --git a/debian/rules b/debian/rules
index 3b403d2..4d3f2f3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -67,7 +67,6 @@ configure-stamp:
--includedir=\$$\{prefix\}/include/gdal \
--with-threads \
--with-grass=no \
-   --with-hide-internal-symbols=yes \
--with-libtiff=internal \
--with-geotiff=internal \
--with-jasper \

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, master, updated. upstream/1.8.0-26-g6057817

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the master branch:
commit 0355429eab7ac4cfd62a51d888e437ff058b3749
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Mon May 9 17:12:07 2011 +0200

Introduced symbol versioning for all symbols in the library.

diff --git a/debian/gdal.ver b/debian/gdal.ver
new file mode 100644
index 000..120827f
--- /dev/null
+++ b/debian/gdal.ver
@@ -0,0 +1,3 @@
+GDAL_1.8 {
+*;
+};
diff --git a/debian/patches/series b/debian/patches/series
index 485f840..1cae244 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -9,3 +9,4 @@ hdf4
 gdal-grass
 ecw-plugin
 mrsid-plugin
+symver
diff --git a/debian/patches/symver b/debian/patches/symver
new file mode 100644
index 000..da31115
--- /dev/null
+++ b/debian/patches/symver
@@ -0,0 +1,16 @@
+Index: gdal/GNUmakefile
+===
+--- gdal.orig/GNUmakefile  2011-05-09 17:04:39.0 +0200
 gdal/GNUmakefile   2011-05-09 17:09:23.0 +0200
+@@ -39,9 +39,9 @@
+ 
+ $(LIBGDAL):   $(GDAL_OBJ:.o=.lo)
+   $(LD) $(LDFLAGS) $(LIBS) -o $@ $(GDAL_OBJ:.o=.lo) \
+-  -rpath $(INST_LIB) \
+   -no-undefined \
+-  -version-info $(LIBGDAL_CURRENT):$(LIBGDAL_REVISION):$(LIBGDAL_AGE)
++  -version-info $(LIBGDAL_CURRENT):$(LIBGDAL_REVISION):$(LIBGDAL_AGE) 
\
++  -Wl,--version-script,$(GDAL_ROOT)/debian/gdal.ver
+ ifeq ($(MACOSX_FRAMEWORK),yes)
+   install_name_tool -id ${OSX_VERSION_FRAMEWORK_PREFIX}/GDAL 
.libs/libgdal.dylib
+ endif

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, master, updated. upstream/1.8.0-26-g6057817

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the master branch:
commit a47089916e864cc9a74ddac7344b4468746ef4ed
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Thu May 12 11:48:58 2011 +0200

Fixed for sqlite3 linking.

diff --git a/debian/changelog b/debian/changelog
index 625ad8c..e184060 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+gdal (1.8.0-2) experimental; urgency=low
+
+  * Patch: symver. Added symbol versioning (GDAL_X.Y) for all symbols 
+exported by GDAL.
+(closes: #558733)
+  * Patch: spatialite. Added explicit linking to sqlite3 for spatialite.
+This is Debian specific, because Debian spatialite does not embed Sqlite
+functions as in upstream release.
+
+ -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 11:12:36 
+0200
+
 gdal (1.8.0-1) experimental; urgency=low
 
   * New upstream release.
diff --git a/debian/patches/series b/debian/patches/series
index 1cae244..e29d991 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -10,3 +10,4 @@ gdal-grass
 ecw-plugin
 mrsid-plugin
 symver
+spatialite
diff --git a/debian/patches/spatialite b/debian/patches/spatialite
new file mode 100644
index 000..dee9478
--- /dev/null
+++ b/debian/patches/spatialite
@@ -0,0 +1,22 @@
+Index: gdal/configure
+===
+--- gdal.orig/configure2011-05-12 11:09:37.0 +0200
 gdal/configure 2011-05-12 11:12:03.0 +0200
+@@ -22282,7 +22282,7 @@
+ 
+ if test $SPATIALITE_INIT_FOUND = yes; then
+ HAVE_SPATIALITE=yes
+-LIBS=$LIBS -lspatialite
++LIBS=$LIBS -lspatialite -lsqlite3
+ HAVE_SQLITE3=yes
+ fi
+ else
+@@ -22341,7 +22341,7 @@
+ # as there's a spatialite.h file in it, which we don't want to 
include.
+ # We want to include include/spatialite.h instead !
+ SQLITE3_CFLAGS=-I$with_spatialite/include
+-LIBS=$LIBS -L$with_spatialite/lib -lspatialite
++LIBS=$LIBS -L$with_spatialite/lib -lspatialite -lsqlite3
+ HAVE_SQLITE3=yes
+ else
+ { $as_echo $as_me:${as_lineno-$LINENO}: result: disabled 5

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, master, updated. upstream/1.8.0-26-g6057817

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the master branch:
commit 6057817a98132e808708d39cb6b56219c2e94eae
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Thu May 12 13:15:44 2011 +0200

Fixed typo.

diff --git a/debian/control b/debian/control
index f64dc8c..9a85b3d 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: extra
 Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine fran...@debian.org
 Build-Depends: debhelper (= 8), zlib1g-dev, libnetcdf-dev (= 1:4.0.0),
- libjasper-dev, libpng12-dev, libpeg-dev, libgif-dev,
+ libjasper-dev, libpng12-dev, libjpeg-dev, libgif-dev,
  libhdf4-alt-dev, libhdf5-serial-dev (= 1.6.6), libpq-dev, libxerces-c2-dev, 
unixodbc-dev (= 2.2.11),
  python-dev, python-numpy, doxygen, d-shlibs, libgeos-dev, libmysqlclient-dev, 
python-all-dev (= 2.3.5-11~), 
  python-central (= 0.5), libcurl4-gnutls-dev, libsqlite3-dev, libogdi3.2-dev,

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, master, updated. upstream/1.8.0-26-g6057817

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the master branch:
commit e83b62db3bc32be9caeec650f143ca9be21582b6
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Thu May 12 13:13:18 2011 +0200

Fixed for libepsilon = 0.9.1

diff --git a/debian/changelog b/debian/changelog
index e184060..0ce5fd5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,8 +6,12 @@ gdal (1.8.0-2) experimental; urgency=low
   * Patch: spatialite. Added explicit linking to sqlite3 for spatialite.
 This is Debian specific, because Debian spatialite does not embed Sqlite
 functions as in upstream release.
+  * Merged with 1.7 series: added epsilon patch to fix now unsupported unnamed
+union use.
+  * Versioned strict build-dependency on libepsilon.
+  * Depends on libjpeg-dev.
 
- -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 11:12:36 
+0200
+ -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 13:11:06 
+0200
 
 gdal (1.8.0-1) experimental; urgency=low
 
diff --git a/debian/control b/debian/control
index 77416b2..f64dc8c 100644
--- a/debian/control
+++ b/debian/control
@@ -4,12 +4,12 @@ Priority: extra
 Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine fran...@debian.org
 Build-Depends: debhelper (= 8), zlib1g-dev, libnetcdf-dev (= 1:4.0.0),
- libjasper-dev, libpng12-dev, libjpeg-dev, libgif-dev,
- libhdf4-alt-dev, libhdf5-serial-dev (=1.6.6), libpq-dev, libxerces-c2-dev, 
unixodbc-dev (= 2.2.11),
+ libjasper-dev, libpng12-dev, libpeg-dev, libgif-dev,
+ libhdf4-alt-dev, libhdf5-serial-dev (= 1.6.6), libpq-dev, libxerces-c2-dev, 
unixodbc-dev (= 2.2.11),
  python-dev, python-numpy, doxygen, d-shlibs, libgeos-dev, libmysqlclient-dev, 
python-all-dev (= 2.3.5-11~), 
  python-central (= 0.5), libcurl4-gnutls-dev, libsqlite3-dev, libogdi3.2-dev,
  ruby, ruby1.8-dev, chrpath, swig, libtool (= 1.5.24-2), patch, 
libexpat1-dev, libproj-dev,
- libdap-dev, libxml2-dev, libspatialite-dev (= 2.4.0~rc2-4), libepsilon-dev
+ libdap-dev, libxml2-dev, libspatialite-dev (= 2.4.0~rc2-4), libepsilon-dev 
(= 0.9.1)
 Build-Conflicts: python-setuptools
 Standards-Version: 3.9.2
 XS-Python-Version: all
@@ -45,7 +45,7 @@ Package: libgdal1-dev
 Section: libdevel
 Architecture: any
 Depends: libgdal1-1.8.0 (=${binary:Version}), libc6-dev, libnetcdf-dev, 
- libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg62-dev, libgif-dev, 
libhdf4-alt-dev, 
+ libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg-dev, libgif-dev, 
libhdf4-alt-dev, 
  libpq-dev, libxerces-c2-dev, unixodbc-dev, libsqlite3-dev, libgeos-dev,
  libmysqlclient-dev, libhdf5-serial-dev, libltdl3-dev, 
libcurl4-dev|libcurl3-dev,
  libspatialite-dev, libdap-dev, ${misc:Depends}
diff --git a/debian/patches/epsilon b/debian/patches/epsilon
new file mode 100644
index 000..432ae61
--- /dev/null
+++ b/debian/patches/epsilon
@@ -0,0 +1,34 @@
+Index: gdal/frmts/epsilon/epsilondataset.cpp
+===
+--- gdal.orig/frmts/epsilon/epsilondataset.cpp 2011-05-12 11:50:58.0 
+0200
 gdal/frmts/epsilon/epsilondataset.cpp  2011-05-12 11:53:19.0 
+0200
+@@ -237,8 +237,8 @@
+ return CE_Failure;
+ }
+ 
+-int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.w : hdr.tc.w;
+-int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.h : hdr.tc.h;
++int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.w : 
hdr.hdr_data.tc.w;
++int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.h : 
hdr.hdr_data.tc.h;
+ int i;
+ 
+ if (poGDS-nBands == 1)
+@@ -505,12 +505,12 @@
+ continue;
+ }
+ 
+-int W = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.W : hdr.tc.W;
+-int H = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.H : hdr.tc.H;
+-int x = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.x : hdr.tc.x;
+-int y = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.y : hdr.tc.y;
+-int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.w : hdr.tc.w;
+-int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.h : hdr.tc.h;
++int W = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.W : 
hdr.hdr_data.tc.W;
++int H = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.H : 
hdr.hdr_data.tc.H;
++int x = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.x : 
hdr.hdr_data.tc.x;
++int y = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.y : 
hdr.hdr_data.tc.y;
++int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.w : 
hdr.hdr_data.tc.w;
++int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.h : 
hdr.hdr_data.tc.h;
+ 
+ //CPLDebug(EPSILON, W=%d,H=%d,x=%d,y=%d,w=%d,h=%d,offset= 
CPL_FRMT_GUIB,
+ //W, H, x, y, w, h, nStartBlockFileOff);
diff --git 

[SCM] gdal branch, 1.7, updated. upstream/1.7.3-16-geeb124c

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the 1.7 branch:
commit 1da73742b302f98b2c8beb7f102d160ef8cc5b84
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Tue Apr 26 18:10:38 2011 +0200

Fixed changelog version.

diff --git a/debian/changelog b/debian/changelog
index 1c244fb..1d32447 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,3 @@
-gdal (1.7.3-4) unstable; urgency=low
-
-  * Now post-removing rpath also in main lib to avoig tweaking with libtool.
-
- -- Francesco Paolo Lovergine fran...@debian.org  Tue, 26 Apr 2011 18:04:27 
+0200
-
 gdal (1.7.3-3) unstable; urgency=low
 
   * Added libepsilon support. Note that libepsilon is LGPL-3 (too).
@@ -11,6 +5,7 @@ gdal (1.7.3-3) unstable; urgency=low
 the GDAL LICENSE file.
   * Removed obsolete libtool workaround in debian/rules. 
 (closes: #621930)
+  * Now post-removing rpath also in main lib to avoig tweaking with libtool.
 
  -- Francesco Paolo Lovergine fran...@debian.org  Tue, 26 Apr 2011 16:52:20 
+0200
 

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-16-geeb124c

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the 1.7 branch:
commit 1ac97310c423e35984debad1c26d4586cde974f0
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Thu May 12 11:54:51 2011 +0200

Fixed #626234

diff --git a/debian/changelog b/debian/changelog
index 1d32447..1dce35e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+gdal (1.7.3-4) unstable; urgency=low
+
+  * [PATCH] Added epsilon patch to fix syntax oddity in referencing
+eps_block_header union members.
+
+ -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 11:49:37 
+0200
+
 gdal (1.7.3-3) unstable; urgency=low
 
   * Added libepsilon support. Note that libepsilon is LGPL-3 (too).
diff --git a/debian/patches/epsilon b/debian/patches/epsilon
new file mode 100644
index 000..432ae61
--- /dev/null
+++ b/debian/patches/epsilon
@@ -0,0 +1,34 @@
+Index: gdal/frmts/epsilon/epsilondataset.cpp
+===
+--- gdal.orig/frmts/epsilon/epsilondataset.cpp 2011-05-12 11:50:58.0 
+0200
 gdal/frmts/epsilon/epsilondataset.cpp  2011-05-12 11:53:19.0 
+0200
+@@ -237,8 +237,8 @@
+ return CE_Failure;
+ }
+ 
+-int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.w : hdr.tc.w;
+-int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.h : hdr.tc.h;
++int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.w : 
hdr.hdr_data.tc.w;
++int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.h : 
hdr.hdr_data.tc.h;
+ int i;
+ 
+ if (poGDS-nBands == 1)
+@@ -505,12 +505,12 @@
+ continue;
+ }
+ 
+-int W = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.W : hdr.tc.W;
+-int H = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.H : hdr.tc.H;
+-int x = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.x : hdr.tc.x;
+-int y = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.y : hdr.tc.y;
+-int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.w : hdr.tc.w;
+-int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.gs.h : hdr.tc.h;
++int W = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.W : 
hdr.hdr_data.tc.W;
++int H = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.H : 
hdr.hdr_data.tc.H;
++int x = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.x : 
hdr.hdr_data.tc.x;
++int y = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.y : 
hdr.hdr_data.tc.y;
++int w = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.w : 
hdr.hdr_data.tc.w;
++int h = (hdr.block_type == EPS_GRAYSCALE_BLOCK) ? hdr.hdr_data.gs.h : 
hdr.hdr_data.tc.h;
+ 
+ //CPLDebug(EPSILON, W=%d,H=%d,x=%d,y=%d,w=%d,h=%d,offset= 
CPL_FRMT_GUIB,
+ //W, H, x, y, w, h, nStartBlockFileOff);
diff --git a/debian/patches/series b/debian/patches/series
index 485f840..50efd52 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -9,3 +9,4 @@ hdf4
 gdal-grass
 ecw-plugin
 mrsid-plugin
+epsilon

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-16-geeb124c

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the 1.7 branch:
commit 157dc762dc549f5fd0d249b7cc008d488fdd5326
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Thu May 12 12:25:59 2011 +0200

Build-deps on libepsilon = 0.9.1

diff --git a/debian/changelog b/debian/changelog
index 1dce35e..7703d42 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,11 @@
 gdal (1.7.3-4) unstable; urgency=low
 
-  * [PATCH] Added epsilon patch to fix syntax oddity in referencing
-eps_block_header union members.
+  * [PATCH] Added epsilon patch to fix syntax problem in referencing
+eps_block_header named union members. This is a = 0.9.1 problem 
+with epsilon header file.
+  * Now build-depends on epsilon libraryi by version.
 
- -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 11:49:37 
+0200
+ -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 12:24:15 
+0200
 
 gdal (1.7.3-3) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 3ca67f2..6e44e46 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends: debhelper (= 8), zlib1g-dev, libnetcdf-dev (= 
1:4.0.0),
  python-dev, python-numpy, doxygen, d-shlibs, libgeos-dev, libmysqlclient-dev, 
python-all-dev (= 2.3.5-11~), 
  python-central (= 0.5), libcurl4-gnutls-dev, libsqlite3-dev, libogdi3.2-dev,
  ruby, ruby1.8-dev, chrpath, swig, libtool (= 1.5.24-2), patch, 
libexpat1-dev, libproj-dev,
- libdap-dev, libxml2-dev, libspatialite-dev (= 2.4.0~rc2-4), libepsilon-dev
+ libdap-dev, libxml2-dev, libspatialite-dev (= 2.4.0~rc2-4), libepsilon-dev 
(= 0.9.1)
 Build-Conflicts: python-setuptools
 Standards-Version: 3.9.1
 XS-Python-Version: all

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-16-geeb124c

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the 1.7 branch:
commit a74cf0117849d781eff5d3845ea1587e0ad29cd4
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Wed Jul 13 18:18:56 2011 +0200

Fixating #629964

diff --git a/debian/changelog b/debian/changelog
index 7703d42..156a951 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+gdal (1.7.3-5) unstable; urgency=low
+
+  * Migrating to libjpeg-dev build-dep and dep. 
+(closes: #629964)
+
+ -- Francesco Paolo Lovergine fran...@debian.org  Wed, 13 Jul 2011 18:16:42 
+0200
+
 gdal (1.7.3-4) unstable; urgency=low
 
   * [PATCH] Added epsilon patch to fix syntax problem in referencing
diff --git a/debian/control b/debian/control
index 6e44e46..75209bf 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: extra
 Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine fran...@debian.org
 Build-Depends: debhelper (= 8), zlib1g-dev, libnetcdf-dev (= 1:4.0.0),
- libjasper-dev, libpng12-dev, libjpeg62-dev, libgif-dev,
+ libjasper-dev, libpng12-dev, libjpeg-dev, libgif-dev,
  libhdf4-alt-dev, libhdf5-serial-dev (=1.6.6), libpq-dev, libxerces-c2-dev, 
unixodbc-dev (= 2.2.11),
  python-dev, python-numpy, doxygen, d-shlibs, libgeos-dev, libmysqlclient-dev, 
python-all-dev (= 2.3.5-11~), 
  python-central (= 0.5), libcurl4-gnutls-dev, libsqlite3-dev, libogdi3.2-dev,
@@ -45,7 +45,7 @@ Package: libgdal1-dev
 Section: libdevel
 Architecture: any
 Depends: libgdal1-1.7.0 (=${binary:Version}), libc6-dev, libnetcdf-dev, 
- libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg62-dev, libgif-dev, 
libhdf4-alt-dev, 
+ libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg-dev, libgif-dev, 
libhdf4-alt-dev, 
  libpq-dev, libxerces-c2-dev, unixodbc-dev, libsqlite3-dev, libgeos-dev,
  libmysqlclient-dev, libhdf5-serial-dev, libltdl3-dev, 
libcurl4-dev|libcurl3-dev,
  libspatialite-dev, libdap-dev, ${misc:Depends}

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-16-geeb124c

2011-07-13 Thread Francesco Paolo Lovergine
The following commit has been merged in the 1.7 branch:
commit eeb124c246e9a07501003eb08726454073e01a5a
Merge: a74cf0117849d781eff5d3845ea1587e0ad29cd4 
5b647a8747224b33a6a4026c3b11f87ef4cd659d
Author: Francesco Paolo Lovergine fran...@debian.org
Date:   Wed Jul 13 18:20:17 2011 +0200

Merge branch '1.7' of ssh://git.debian.org/git/pkg-grass/gdal into 1.7

Conflicts:
debian/changelog

diff --combined debian/changelog
index 156a951,e1f097e..1e7acfc
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,19 -1,3 +1,19 @@@
 +gdal (1.7.3-5) unstable; urgency=low
 +
 +  * Migrating to libjpeg-dev build-dep and dep. 
 +(closes: #629964)
 +
 + -- Francesco Paolo Lovergine fran...@debian.org  Wed, 13 Jul 2011 18:16:42 
+0200
 +
 +gdal (1.7.3-4) unstable; urgency=low
 +
 +  * [PATCH] Added epsilon patch to fix syntax problem in referencing
 +eps_block_header named union members. This is a = 0.9.1 problem 
 +with epsilon header file.
 +  * Now build-depends on epsilon libraryi by version.
 +
 + -- Francesco Paolo Lovergine fran...@debian.org  Thu, 12 May 2011 12:24:15 
+0200
 +
  gdal (1.7.3-3) unstable; urgency=low
  
* Added libepsilon support. Note that libepsilon is LGPL-3 (too).
@@@ -21,7 -5,8 +21,8 @@@
  the GDAL LICENSE file.
* Removed obsolete libtool workaround in debian/rules. 
  (closes: #621930)
-   * Now post-removing rpath also in main lib to avoig tweaking with libtool.
+   * Now post-removing rpath in main library as well to avoid libtool tricks at
+ building time.
  
   -- Francesco Paolo Lovergine fran...@debian.org  Tue, 26 Apr 2011 16:52:20 
+0200
  

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Processing of gdal_1.7.3-5_amd64.changes

2011-07-13 Thread Debian FTP Masters
gdal_1.7.3-5_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  gdal_1.7.3-5.dsc
  gdal_1.7.3-5.debian.tar.gz
  libgdal1-1.7.0_1.7.3-5_amd64.deb
  libgdal1-dev_1.7.3-5_amd64.deb
  gdal-bin_1.7.3-5_amd64.deb
  python-gdal_1.7.3-5_amd64.deb
  libgdal-perl_1.7.3-5_amd64.deb
  libgdal-ruby1.8_1.7.3-5_amd64.deb
  libgdal-ruby_1.7.3-5_amd64.deb
  libgdal-doc_1.7.3-5_all.deb

Greetings,

Your Debian queue daemon (running on host ravel.debian.org)

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, master, updated. upstream/1.8.0-27-g4128d64

2011-07-13 Thread Aron Xu
The following commit has been merged in the master branch:
commit 4128d640badf54e8b9d185f332204f82a6150954
Author: Aron Xu a...@debian.org
Date:   Thu Jul 14 02:32:41 2011 +0800

Transitions: libjpeg-dev, dh_python2; more modifications: libpng-dev.

diff --git a/debian/changelog b/debian/changelog
index 0ce5fd5..07c26f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+gdal (1.8.0-2) UNRELEASED; urgency=low
+
+  * Really use libjpeg-dev to in favor of libjpeg8 transition.
+(Closes: #629964)
+  * Build-Depends on libpng-dev instead of libpng12-dev.
+  * Transition to dh_python2. (Closes: #616821)
+
+ -- Aron Xu a...@debian.org  Thu, 14 Jul 2011 02:30:52 +0800
+
 gdal (1.8.0-2) experimental; urgency=low
 
   * Patch: symver. Added symbol versioning (GDAL_X.Y) for all symbols 
diff --git a/debian/control b/debian/control
index 9a85b3d..a9ab652 100644
--- a/debian/control
+++ b/debian/control
@@ -4,10 +4,10 @@ Priority: extra
 Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine fran...@debian.org
 Build-Depends: debhelper (= 8), zlib1g-dev, libnetcdf-dev (= 1:4.0.0),
- libjasper-dev, libpng12-dev, libjpeg-dev, libgif-dev,
+ libjasper-dev, libpng-dev, libjpeg-dev, libgif-dev,
  libhdf4-alt-dev, libhdf5-serial-dev (= 1.6.6), libpq-dev, libxerces-c2-dev, 
unixodbc-dev (= 2.2.11),
- python-dev, python-numpy, doxygen, d-shlibs, libgeos-dev, libmysqlclient-dev, 
python-all-dev (= 2.3.5-11~), 
- python-central (= 0.5), libcurl4-gnutls-dev, libsqlite3-dev, libogdi3.2-dev,
+ python-numpy, doxygen, d-shlibs, libgeos-dev, libmysqlclient-dev, 
python-all-dev (= 2.6.6-3~), 
+ libcurl4-gnutls-dev, libsqlite3-dev, libogdi3.2-dev,
  ruby, ruby1.8-dev, chrpath, swig, libtool (= 1.5.24-2), patch, 
libexpat1-dev, libproj-dev,
  libdap-dev, libxml2-dev, libspatialite-dev (= 2.4.0~rc2-4), libepsilon-dev 
(= 0.9.1)
 Build-Conflicts: python-setuptools
@@ -45,7 +45,7 @@ Package: libgdal1-dev
 Section: libdevel
 Architecture: any
 Depends: libgdal1-1.8.0 (=${binary:Version}), libc6-dev, libnetcdf-dev, 
- libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg-dev, libgif-dev, 
libhdf4-alt-dev, 
+ libjasper-dev|libjasper-1.701-dev, libpng-dev, libjpeg-dev, libgif-dev, 
libhdf4-alt-dev, 
  libpq-dev, libxerces-c2-dev, unixodbc-dev, libsqlite3-dev, libgeos-dev,
  libmysqlclient-dev, libhdf5-serial-dev, libltdl3-dev, 
libcurl4-dev|libcurl3-dev,
  libspatialite-dev, libdap-dev, ${misc:Depends}
diff --git a/debian/pycompat b/debian/pycompat
deleted file mode 100644
index 0cfbf08..000
--- a/debian/pycompat
+++ /dev/null
@@ -1 +0,0 @@
-2
diff --git a/debian/rules b/debian/rules
index 4d3f2f3..a6794bb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -186,7 +186,7 @@ binary-common:
dh_compress
dh_fixperms
#find $(CURDIR)/debian/python-gdal -name 
GDAL-$(GDAL_MAJOR).$(GDAL_MINOR).$(GDAL_PATCH).egg-info -delete || true
-   dh_pycentral -X.info
+   dh_python2 -X.info
dh_perl
dh_makeshlibs
dh_installdeb

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-17-gcdc2c2b

2011-07-13 Thread Francesco P. Lovergine
The following commit has been merged in the 1.7 branch:
commit cdc2c2b987333e770403f7321d44c6276ba1046d
Author: Francesco P. Lovergine france...@lovergine.com
Date:   Wed Jul 13 20:48:36 2011 +0200

Minor policy change.

diff --git a/debian/changelog b/debian/changelog
index 1e7acfc..963c813 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,9 @@ gdal (1.7.3-5) unstable; urgency=low
 
   * Migrating to libjpeg-dev build-dep and dep. 
 (closes: #629964)
+  * Policy bumped to 3.9.2, no changes needed.
 
- -- Francesco Paolo Lovergine fran...@debian.org  Wed, 13 Jul 2011 18:16:42 
+0200
+ -- Francesco Paolo Lovergine fran...@debian.org  Wed, 13 Jul 2011 20:48:02 
+0200
 
 gdal (1.7.3-4) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 75209bf..c6a3408 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: debhelper (= 8), zlib1g-dev, libnetcdf-dev 
(= 1:4.0.0),
  ruby, ruby1.8-dev, chrpath, swig, libtool (= 1.5.24-2), patch, 
libexpat1-dev, libproj-dev,
  libdap-dev, libxml2-dev, libspatialite-dev (= 2.4.0~rc2-4), libepsilon-dev 
(= 0.9.1)
 Build-Conflicts: python-setuptools
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
 XS-Python-Version: all
 Homepage: http://www.gdal.org/
 Vcs-Browser: http://git.debian.org/?p=pkg-grass/gdal.git

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] osgearth branch, master, updated. 455ea362dc69222425e2f0d8f776d68608418814

2011-07-13 Thread Aron Xu
The following commit has been merged in the master branch:
commit 455ea362dc69222425e2f0d8f776d68608418814
Author: Aron Xu a...@debian.org
Date:   Thu Jul 14 02:55:47 2011 +0800

Depend on libgdal-dev instead of libgdal1-dev.

diff --git a/debian/control b/debian/control
index 57686e5..b313059 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian GIS Project 
pkg-grass-devel@lists.alioth.debian.org
 Uploaders: Pirmin Kalberer pi_...@sourcepole.ch
 Build-Depends: debhelper (= 7), quilt, cmake (= 2.6.2),
  libopenscenegraph-dev (= 2.8.0), openscenegraph (= 2.8.0),
- libgdal1-dev (= 1.6.0), libgeos-dev, libexpat1-dev (= 2.0.1),
+ libgdal-dev (= 1.6.0), libgeos-dev, libexpat1-dev (= 2.0.1),
  libcurl4-gnutls-dev, libzip-dev, libsqlite3-dev
 Standards-Version: 3.9.2
 Homepage: http://osgearth.org/

-- 
osgEarth terrain rendering toolkit

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-20-g2819f17

2011-07-13 Thread Francesco P. Lovergine
The following commit has been merged in the 1.7 branch:
commit 2819f17ad69b203ec9f39e7b2fd85a66049f9939
Author: Francesco P. Lovergine france...@lovergine.com
Date:   Wed Jul 13 23:56:31 2011 +0200

Fixed path in lintian override creation.

diff --git a/debian/rules b/debian/rules
index 04155a7..7d95efc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -168,7 +168,7 @@ install: build
install -o root -g root -d 
$(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples
install -o root -g root -m 755 $(CURDIR)/swig/python/samples/*.py 
$(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples/.
# create lintian overrides file
-   echo libgdal1-1.7.0: embedded-library $$(basename 
debian/tmp/usr/lib/libgdal1.7.0.so.*.*.*|cut -d. -f5,6,7): tiff \
+   echo libgdal1-1.7.0: embedded-library 
usr/lib/libgdal1.7.0.so.$$(basename 
debian/tmp/usr/lib/libgdal1.7.0.so.*.*.*|cut -d. -f5,6,7): tiff \
$(CURDIR)/debian/libgdal1-1.7.0.lintian-overrides
 
 binary-common: 

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-20-g2819f17

2011-07-13 Thread Francesco P. Lovergine
The following commit has been merged in the 1.7 branch:
commit 14ae61ff654cb432aa1437c831b45d897ff1acf9
Author: Francesco P. Lovergine france...@lovergine.com
Date:   Wed Jul 13 23:36:05 2011 +0200

Missing dh_lintian added.

diff --git a/debian/rules b/debian/rules
index 7a67e67..04155a7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -182,6 +182,7 @@ binary-common:
dh_strip
dh_compress
dh_fixperms
+   dh_lintian
dh_pycentral -X.info
dh_perl
dh_makeshlibs

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[SCM] gdal branch, 1.7, updated. upstream/1.7.3-20-g2819f17

2011-07-13 Thread Francesco P. Lovergine
The following commit has been merged in the 1.7 branch:
commit 7de373def0128c114236ff2717a643cc9bafbacd
Author: Francesco P. Lovergine france...@lovergine.com
Date:   Wed Jul 13 23:17:22 2011 +0200

Added a lintian override.

diff --git a/debian/changelog b/debian/changelog
index 963c813..ca3bdef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,9 @@ gdal (1.7.3-5) unstable; urgency=low
   * Migrating to libjpeg-dev build-dep and dep. 
 (closes: #629964)
   * Policy bumped to 3.9.2, no changes needed.
+  * Added a lintian override for the embedded tiff library.
 
- -- Francesco Paolo Lovergine fran...@debian.org  Wed, 13 Jul 2011 20:48:02 
+0200
+ -- Francesco Paolo Lovergine fran...@debian.org  Wed, 13 Jul 2011 23:15:03 
+0200
 
 gdal (1.7.3-4) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index e74ad43..7a67e67 100755
--- a/debian/rules
+++ b/debian/rules
@@ -167,6 +167,9 @@ install: build
# copy sample programs for python-gdal
install -o root -g root -d 
$(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples
install -o root -g root -m 755 $(CURDIR)/swig/python/samples/*.py 
$(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples/.
+   # create lintian overrides file
+   echo libgdal1-1.7.0: embedded-library $$(basename 
debian/tmp/usr/lib/libgdal1.7.0.so.*.*.*|cut -d. -f5,6,7): tiff \
+   $(CURDIR)/debian/libgdal1-1.7.0.lintian-overrides
 
 binary-common: 
dh_testdir
@@ -179,7 +182,6 @@ binary-common:
dh_strip
dh_compress
dh_fixperms
-   #find $(CURDIR)/debian/python-gdal -name 
GDAL-$(GDAL_MAJOR).$(GDAL_MINOR).$(GDAL_PATCH).egg-info -delete || true
dh_pycentral -X.info
dh_perl
dh_makeshlibs

-- 
GDAL/OGR library and tools

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Processing of gdal_1.7.3-5_amd64.changes

2011-07-13 Thread Debian FTP Masters
gdal_1.7.3-5_amd64.changes uploaded successfully to localhost
along with the files:
  gdal_1.7.3-5.dsc
  gdal_1.7.3-5.debian.tar.gz
  libgdal1-1.7.0_1.7.3-5_amd64.deb
  libgdal1-dev_1.7.3-5_amd64.deb
  gdal-bin_1.7.3-5_amd64.deb
  python-gdal_1.7.3-5_amd64.deb
  libgdal-perl_1.7.3-5_amd64.deb
  libgdal-ruby1.8_1.7.3-5_amd64.deb
  libgdal-ruby_1.7.3-5_amd64.deb
  libgdal-doc_1.7.3-5_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


gdal_1.7.3-5_amd64.changes ACCEPTED into unstable

2011-07-13 Thread Debian FTP Masters



Accepted:
gdal-bin_1.7.3-5_amd64.deb
  to main/g/gdal/gdal-bin_1.7.3-5_amd64.deb
gdal_1.7.3-5.debian.tar.gz
  to main/g/gdal/gdal_1.7.3-5.debian.tar.gz
gdal_1.7.3-5.dsc
  to main/g/gdal/gdal_1.7.3-5.dsc
libgdal-doc_1.7.3-5_all.deb
  to main/g/gdal/libgdal-doc_1.7.3-5_all.deb
libgdal-perl_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal-perl_1.7.3-5_amd64.deb
libgdal-ruby1.8_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal-ruby1.8_1.7.3-5_amd64.deb
libgdal-ruby_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal-ruby_1.7.3-5_amd64.deb
libgdal1-1.7.0_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal1-1.7.0_1.7.3-5_amd64.deb
libgdal1-dev_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal1-dev_1.7.3-5_amd64.deb
python-gdal_1.7.3-5_amd64.deb
  to main/g/gdal/python-gdal_1.7.3-5_amd64.deb


Override entries for your package:
gdal-bin_1.7.3-5_amd64.deb - extra science
gdal_1.7.3-5.dsc - source science
libgdal-doc_1.7.3-5_all.deb - extra doc
libgdal-perl_1.7.3-5_amd64.deb - extra perl
libgdal-ruby1.8_1.7.3-5_amd64.deb - extra ruby
libgdal-ruby_1.7.3-5_amd64.deb - extra ruby
libgdal1-1.7.0_1.7.3-5_amd64.deb - extra libs
libgdal1-dev_1.7.3-5_amd64.deb - extra libdevel
python-gdal_1.7.3-5_amd64.deb - extra python

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 629964 


Thank you for your contribution to Debian.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#629964: marked as done (libgdal1-dev: Please Depends/Build-Depends on libjpeg-dev, not libjpeg62-dev)

2011-07-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Jul 2011 22:33:02 +
with message-id e1qh7zk-0001ca...@franck.debian.org
and subject line Bug#629964: fixed in gdal 1.7.3-5
has caused the Debian Bug report #629964,
regarding libgdal1-dev: Please Depends/Build-Depends on libjpeg-dev, not 
libjpeg62-dev
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
629964: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629964
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libgdal1-dev
Version: 1.7.3-4
Severity: important

Hello Debian GIS Project,

There is an upcoming libjpeg transition from libjpeg62 to libjpeg8.
As mentionned on debian-devel-announce[1], please update libgdal1-dev to
Depends and/or Build-Depends on libjpeg-dev instead of libjpeg62-dev.

The following Depends was found:

libgdal1-dev:Depends: libjpeg62-dev 

(Please also check the Build-Depends)

[1] http://lists.debian.org/debian-devel-announce/2010/02/msg6.html

Cheers,
-- 
Bill. ballo...@debian.org

Imagine a large red swirl here. 


---End Message---
---BeginMessage---
Source: gdal
Source-Version: 1.7.3-5

We believe that the bug you reported is fixed in the latest version of
gdal, which is due to be installed in the Debian FTP archive:

gdal-bin_1.7.3-5_amd64.deb
  to main/g/gdal/gdal-bin_1.7.3-5_amd64.deb
gdal_1.7.3-5.debian.tar.gz
  to main/g/gdal/gdal_1.7.3-5.debian.tar.gz
gdal_1.7.3-5.dsc
  to main/g/gdal/gdal_1.7.3-5.dsc
libgdal-doc_1.7.3-5_all.deb
  to main/g/gdal/libgdal-doc_1.7.3-5_all.deb
libgdal-perl_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal-perl_1.7.3-5_amd64.deb
libgdal-ruby1.8_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal-ruby1.8_1.7.3-5_amd64.deb
libgdal-ruby_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal-ruby_1.7.3-5_amd64.deb
libgdal1-1.7.0_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal1-1.7.0_1.7.3-5_amd64.deb
libgdal1-dev_1.7.3-5_amd64.deb
  to main/g/gdal/libgdal1-dev_1.7.3-5_amd64.deb
python-gdal_1.7.3-5_amd64.deb
  to main/g/gdal/python-gdal_1.7.3-5_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 629...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Francesco Paolo Lovergine fran...@debian.org (supplier of updated gdal 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 13 Jul 2011 23:15:03 +0200
Source: gdal
Binary: libgdal1-1.7.0 libgdal1-dev libgdal-doc gdal-bin python-gdal 
libgdal-perl libgdal-ruby1.8 libgdal-ruby
Architecture: source amd64 all
Version: 1.7.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description: 
 gdal-bin   - Geospatial Data Abstraction Library - Utility programs
 libgdal-doc - Documentation for the Geospatial Data Abstraction Library
 libgdal-perl - Perl bindings to the Geospatial Data Abstraction Library
 libgdal-ruby - Ruby bindings to the Geospatial Data Abstraction Library
 libgdal-ruby1.8 - Ruby 1.8 bindings to the Geospatial Data Abstraction Library
 libgdal1-1.7.0 - Geospatial Data Abstraction Library
 libgdal1-dev - Geospatial Data Abstraction Library - Development files
 python-gdal - Python bindings to the Geospatial Data Abstraction Library
Closes: 629964
Changes: 
 gdal (1.7.3-5) unstable; urgency=low
 .
   * Migrating to libjpeg-dev build-dep and dep.
 (closes: #629964)
   * Policy bumped to 3.9.2, no changes needed.
   * Added a lintian override for the embedded tiff library.
Checksums-Sha1: 
 f1f0d231e84d315989b91b2beef4bfbeb9e6e953 1900 gdal_1.7.3-5.dsc
 49e85a1cce27a13f61bc20a3b52758a1703a3231 91631 gdal_1.7.3-5.debian.tar.gz
 54139f9ed2276ab8bcf6a08faeb1359dbc8d413a 3384086 
libgdal1-1.7.0_1.7.3-5_amd64.deb
 820b129cad642b83ae733fecc053e1e00a14ccc1 4627098 libgdal1-dev_1.7.3-5_amd64.deb
 27f30f56fdf4a6a6f47fcda99e1a883a0ecf44a3 235516 gdal-bin_1.7.3-5_amd64.deb
 04e5447f1fb098afa6b656cec90afeee266bd16b 634880 python-gdal_1.7.3-5_amd64.deb
 e3c34c40d138d77cd157b6cee4dbd3d414759af7 400364 libgdal-perl_1.7.3-5_amd64.deb
 fb2dde3265123f9f1eb6e7002cd13b3c4a636d36 179906 
libgdal-ruby1.8_1.7.3-5_amd64.deb
 a411afb5d9a475ce2239d3baff28fe5c8e1edc6b 68918 libgdal-ruby_1.7.3-5_amd64.deb