[DebianGIS-dev] r835 - packages/drawmap/branches/upstream

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 12:29:07 + (Fri, 18 May 2007)
New Revision: 835

Added:
   packages/drawmap/branches/upstream/2.5/
Log:
[svn-inject] Tagging upstream source version of drawmap

Copied: packages/drawmap/branches/upstream/2.5 (from rev 834, 
packages/drawmap/branches/upstream/current)


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


[DebianGIS-dev] r838 - in packages/drawmap/trunk/debian: . patches

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 13:14:36 + (Fri, 18 May 2007)
New Revision: 838

Added:
   packages/drawmap/trunk/debian/compat
   packages/drawmap/trunk/debian/patches/03_misc_warns.dpatch
Modified:
   packages/drawmap/trunk/debian/changelog
   packages/drawmap/trunk/debian/control
   packages/drawmap/trunk/debian/patches/00list
   packages/drawmap/trunk/debian/rules
Log:
Major fixes for an up-to-date package.


Modified: packages/drawmap/trunk/debian/changelog
===
--- packages/drawmap/trunk/debian/changelog 2007-05-18 12:29:17 UTC (rev 
837)
+++ packages/drawmap/trunk/debian/changelog 2007-05-18 13:14:36 UTC (rev 
838)
@@ -1,3 +1,16 @@
+drawmap (2.5-3) unstable; urgency=low
+
+  * New maintainership team. Set me as uploader.
+(closes: #361015)
+  * Policy bumped to 3.7.2 (no changes)
+  * Debhelper level moved to 5
+  * Added home page in long description
+  * Added patch 03_misc_warns.dpatch to avoid silly warnings due to missing 
headers.
+  * Now using -02 optimization in debian/rules.
+  * Removed superfluous dh_ rules.
+
+ -- Francesco Paolo Lovergine [EMAIL PROTECTED]  Fri, 18 May 2007 15:02:34 
+0200
+
 drawmap (2.5-2) unstable; urgency=low
 
   * QA Upload

Added: packages/drawmap/trunk/debian/compat
===
--- packages/drawmap/trunk/debian/compat(rev 0)
+++ packages/drawmap/trunk/debian/compat2007-05-18 13:14:36 UTC (rev 
838)
@@ -0,0 +1 @@
+5

Modified: packages/drawmap/trunk/debian/control
===
--- packages/drawmap/trunk/debian/control   2007-05-18 12:29:17 UTC (rev 
837)
+++ packages/drawmap/trunk/debian/control   2007-05-18 13:14:36 UTC (rev 
838)
@@ -1,9 +1,10 @@
 Source: drawmap
 Section: math
 Priority: optional
-Maintainer: Debian QA Group [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4), groff, dpatch
-Standards-Version: 3.6.2
+Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
+Uploaders: Francesco Paolo Lovergine [EMAIL PROTECTED]
+Build-Depends: debhelper (5), groff, dpatch
+Standards-Version: 3.7.2
 
 Package: drawmap
 Architecture: any
@@ -22,3 +23,5 @@
  .
  Outputs sun raster format, portable gray map, or pov format 
  files.
+ .
+  Home page: http://www.ttc-cmc.net/~fme/drawmap.html

Modified: packages/drawmap/trunk/debian/patches/00list
===
--- packages/drawmap/trunk/debian/patches/00list2007-05-18 12:29:17 UTC 
(rev 837)
+++ packages/drawmap/trunk/debian/patches/00list2007-05-18 13:14:36 UTC 
(rev 838)
@@ -1,2 +1,3 @@
-01_drawmap.h.dpatch
-02_dlg.c.dpatch
+01_drawmap.h
+02_dlg.c
+03_misc_warns

Added: packages/drawmap/trunk/debian/patches/03_misc_warns.dpatch
===
--- packages/drawmap/trunk/debian/patches/03_misc_warns.dpatch  
(rev 0)
+++ packages/drawmap/trunk/debian/patches/03_misc_warns.dpatch  2007-05-18 
13:14:36 UTC (rev 838)
@@ -0,0 +1,95 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 03_misc_warns.dpatch by Francesco Paolo Lovergine [EMAIL PROTECTED]
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
[EMAIL PROTECTED]@
+diff -urNad drawmap~/big_buf_io.c drawmap/big_buf_io.c
+--- drawmap~/big_buf_io.c  2007-05-18 14:49:27.0 +0200
 drawmap/big_buf_io.c   2007-05-18 14:51:34.0 +0200
+@@ -48,6 +48,7 @@
+ 
+ #include sys/types.h
+ #include fcntl.h
++#include string.h
+ 
+ int buf_open(const char *, int, mode_t, ...);
+ int buf_close(int);
+diff -urNad drawmap~/big_buf_io_z.c drawmap/big_buf_io_z.c
+--- drawmap~/big_buf_io_z.c2007-05-18 14:49:27.0 +0200
 drawmap/big_buf_io_z.c 2007-05-18 14:51:34.0 +0200
+@@ -45,6 +45,7 @@
+ 
+ #include sys/types.h
+ #include fcntl.h
++#include string.h
+ #include gzip.h
+ 
+ int buf_open_z(const char *, int, mode_t, ...);
+diff -urNad drawmap~/dem.c drawmap/dem.c
+--- drawmap~/dem.c 2001-08-02 08:27:39.0 +0200
 drawmap/dem.c  2007-05-18 14:53:14.0 +0200
+@@ -22,6 +22,7 @@
+ #include stdlib.h
+ #include stdio.h
+ #include math.h
++#include string.h
+ #include drawmap.h
+ #include dem.h
+ 
+diff -urNad drawmap~/dlg.c drawmap/dlg.c
+--- drawmap~/dlg.c 2007-05-18 14:51:33.0 +0200
 drawmap/dlg.c  2007-05-18 14:54:31.0 +0200
+@@ -25,6 +25,7 @@
+ #include unistd.h
+ #include stdio.h
+ #include errno.h
++#include string.h
+ #include drawmap.h
+ #include dlg.h
+ 
+diff -urNad drawmap~/gzip.h drawmap/gzip.h
+--- drawmap~/gzip.h1998-10-12 07:39:28.0 +0200
 drawmap/gzip.h 2007-05-18 14:56:00.0 +0200
+@@ -29,6 +29,7 @@
+  * too often
+  */
+ #include stdio.h
++#include stdlib.h
+ #if !defined(NO_STRING_H) || defined(STDC_HEADERS)
+ # 

[DebianGIS-dev] r839 - packages/drawmap/tags

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 13:15:54 + (Fri, 18 May 2007)
New Revision: 839

Added:
   packages/drawmap/tags/2.5-3/
Log:
[svn-buildpackage] Tagging drawmap (2.5-3)

Copied: packages/drawmap/tags/2.5-3 (from rev 838, packages/drawmap/trunk)


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


[DebianGIS-dev] r841 - packages/drawmap/trunk/debian

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 14:20:31 + (Fri, 18 May 2007)
New Revision: 841

Modified:
   packages/drawmap/trunk/debian/changelog
   packages/drawmap/trunk/debian/control
Log:
Changed section


Modified: packages/drawmap/trunk/debian/changelog
===
--- packages/drawmap/trunk/debian/changelog 2007-05-18 14:14:47 UTC (rev 
840)
+++ packages/drawmap/trunk/debian/changelog 2007-05-18 14:20:31 UTC (rev 
841)
@@ -1,3 +1,10 @@
+drawmap (2.5-4) UNRELEASED; urgency=low
+
+  * NOT RELEASED YET
+  * Changed section to 'science'.
+
+ -- Francesco Paolo Lovergine [EMAIL PROTECTED]  Fri, 18 May 2007 16:19:56 
+0200
+
 drawmap (2.5-3) unstable; urgency=low
 
   * New maintainership team. Set me as uploader.

Modified: packages/drawmap/trunk/debian/control
===
--- packages/drawmap/trunk/debian/control   2007-05-18 14:14:47 UTC (rev 
840)
+++ packages/drawmap/trunk/debian/control   2007-05-18 14:20:31 UTC (rev 
841)
@@ -1,5 +1,5 @@
 Source: drawmap
-Section: math
+Section: science
 Priority: optional
 Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
 Uploaders: Francesco Paolo Lovergine [EMAIL PROTECTED]


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


[DebianGIS-dev] drawmap override disparity

2007-05-18 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

drawmap_2.5-3_i386.deb: package says section is math, override says science.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing [EMAIL PROTECTED])

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


[DebianGIS-dev] drawmap_2.5-3_i386.changes ACCEPTED

2007-05-18 Thread Debian Installer

Accepted:
drawmap_2.5-3.diff.gz
  to pool/main/d/drawmap/drawmap_2.5-3.diff.gz
drawmap_2.5-3.dsc
  to pool/main/d/drawmap/drawmap_2.5-3.dsc
drawmap_2.5-3_i386.deb
  to pool/main/d/drawmap/drawmap_2.5-3_i386.deb


Override entries for your package:
drawmap_2.5-3.dsc - source science
drawmap_2.5-3_i386.deb - optional science

Announcing to [EMAIL PROTECTED]
Closing bugs: 361015 


Thank you for your contribution to Debian.

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


[DebianGIS-dev] r840 - in packages/mapserver/trunk/debian: . patches

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 14:14:47 + (Fri, 18 May 2007)
New Revision: 840

Added:
   packages/mapserver/trunk/debian/README.etch
   packages/mapserver/trunk/debian/control.etch
Removed:
   packages/mapserver/trunk/debian/README.sarge
   packages/mapserver/trunk/debian/patches/sarge-backport.patch
Modified:
   packages/mapserver/trunk/debian/TODO.Debian
   packages/mapserver/trunk/debian/changelog
   packages/mapserver/trunk/debian/control
   packages/mapserver/trunk/debian/patches/00list
Log:
Most essential fixes.


Added: packages/mapserver/trunk/debian/README.etch
===
--- packages/mapserver/trunk/debian/README.etch (rev 0)
+++ packages/mapserver/trunk/debian/README.etch 2007-05-18 14:14:47 UTC (rev 
840)
@@ -0,0 +1,7 @@
+Note for packagers
+--
+
+Please, maintain compatibility with Etch to allow easy backporting until 
possible.
+The control.etch files should be updated for backports and used instead of the
+plain control file. All PHP4 stuff is still present for the same reason.
+

Deleted: packages/mapserver/trunk/debian/README.sarge
===
--- packages/mapserver/trunk/debian/README.sarge2007-05-18 13:15:54 UTC 
(rev 839)
+++ packages/mapserver/trunk/debian/README.sarge2007-05-18 14:14:47 UTC 
(rev 840)
@@ -1,21 +0,0 @@
-Backporting MapServer 4.8.* to Sarge
--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-Schuyler Erle [EMAIL PROTECTED] 1 Apr 2006
-
-1) Patch the debian/control and debian/rules files.
-
-$ cd debian
-$ patch -p2 patches/sarge-backport.patch
-
-2) Change the version to 4.8.x-0.0.dgis.sarge.1.
-
-$ cd ..
-$ debchange 
-
-3) Rebuild.
-
-$ dpkg-buildpackage -sa
-
-4) Upload.
-
-=30=

Modified: packages/mapserver/trunk/debian/TODO.Debian
===
--- packages/mapserver/trunk/debian/TODO.Debian 2007-05-18 13:15:54 UTC (rev 
839)
+++ packages/mapserver/trunk/debian/TODO.Debian 2007-05-18 14:14:47 UTC (rev 
840)
@@ -1,4 +1,5 @@
 Debian mapserver TODO list
+--
 
 Include some more bindings when someone requests them.
 Rename perl-mapscript to libmapscript-perl.

Modified: packages/mapserver/trunk/debian/changelog
===
--- packages/mapserver/trunk/debian/changelog   2007-05-18 13:15:54 UTC (rev 
839)
+++ packages/mapserver/trunk/debian/changelog   2007-05-18 14:14:47 UTC (rev 
840)
@@ -1,13 +1,20 @@
 mapserver (4.10.1-1) unstable; urgency=low
 
   [ Francesco Paolo Lovergine ]
-  * debian/po/nl.po added. (Closes: #415504)
-  * Moved to gdal 1.4.0 dependency.
+  * debian/po/nl.po added. (closes: #415504)
+  * Moved to gdal 1.4.1 dependency. (closes: #424635, #423538)
+  * Removed php4 support (closes: #418313)
+  * Updated long descriptions.
+  * Removed Thomas Sondag among Uploaders (last contribute dated more than 2 
years ago).
+  * Moved to libcurl4 build-deps.
+  * Added a debian/README.etch for notes on backporting.
+  * A new debian/control.etch file has been introduced to retain etch 
compatibility.
+All php4 related files have been maintained for the same reason. Please, 
don't remove them!
 
   [ Fabio Tranchitella ]
   * New upstream release.
 
- -- Francesco Paolo Lovergine [EMAIL PROTECTED]  Thu, 26 Apr 2007 11:16:20 
+0200
+ -- Francesco Paolo Lovergine [EMAIL PROTECTED]  Fri, 18 May 2007 16:06:27 
+0200
 
 mapserver (4.10.0-6) unstable; urgency=low
 

Modified: packages/mapserver/trunk/debian/control
===
--- packages/mapserver/trunk/debian/control 2007-05-18 13:15:54 UTC (rev 
839)
+++ packages/mapserver/trunk/debian/control 2007-05-18 14:14:47 UTC (rev 
840)
@@ -2,29 +2,16 @@
 Section: devel
 Priority: extra
 Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
-Uploaders: Thomas Sondag [EMAIL PROTECTED], Schuyler Erle [EMAIL 
PROTECTED], Petter Reinholdtsen [EMAIL PROTECTED], Paul Wise [EMAIL 
PROTECTED], Fabio Tranchitella [EMAIL PROTECTED]
+Uploaders: Schuyler Erle [EMAIL PROTECTED], Petter Reinholdtsen [EMAIL 
PROTECTED], Paul Wise [EMAIL PROTECTED], Fabio Tranchitella [EMAIL 
PROTECTED], Francesco Paolo Lovergine [EMAIL PROTECTED]
 Standards-Version: 3.7.2
-Build-Depends: debhelper (= 5.0.37.2), dpatch, libcurl3-gnutls-dev | 
libcurl3-dev, libpng12-dev,
+Build-Depends: debhelper (= 5.0.37.2), dpatch, libcurl4-gnutls-dev | 
libcurl4-dev, libpng12-dev,
  zlib1g-dev (= 1.1.4), libgd2-xpm-dev (= 2.0.1-10), libfreetype6-dev (= 
2.0.9),
- libjpeg62-dev, libgdal1-dev (=1.4.0), proj, libwww-dev, libpq-dev, php4-dev, 
php5-dev, swig,
+ libjpeg62-dev, libgdal1-dev (=1.4.0), proj, libwww-dev, libpq-dev, php5-dev, 
swig,
  python-all, python-all-dev, python-central (= 0.5), libgeos-dev (= 2.2.3-2)
 Build-Depends-Indep: python-docutils
 Build-Conflicts: 

[DebianGIS-dev] r842 - in packages/gdal/trunk/debian: . patches

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 21:12:04 + (Fri, 18 May 2007)
New Revision: 842

Added:
   packages/gdal/trunk/debian/patches/gcc43.dpatch
Modified:
   packages/gdal/trunk/debian/changelog
   packages/gdal/trunk/debian/control
   packages/gdal/trunk/debian/patches/00list
Log:
Multiple fixes


Modified: packages/gdal/trunk/debian/changelog
===
--- packages/gdal/trunk/debian/changelog2007-05-18 14:20:31 UTC (rev 
841)
+++ packages/gdal/trunk/debian/changelog2007-05-18 21:12:04 UTC (rev 
842)
@@ -1,3 +1,14 @@
+gdal (1.4.1-6) unstable; urgency=low
+
+  * New patch gcc43.dpatch, to be compliant with gcc 4.3. Thanks Martin 
Michlmayr.
+(closes: #419827)
+  * Revised libgdal1-dev dependencies due to libtool .la file. Thanks Kurt 
Roeckx.
+(closes: #421992)
+  * Removed fake libsqlite0-dev build-dep.
+  * Explicitly removing libtool .libs dir in clean target.
+
+ -- Francesco Paolo Lovergine [EMAIL PROTECTED]  Fri, 18 May 2007 22:28:24 
+0200
+
 gdal (1.4.1-5) unstable; urgency=low
 
   * libcfitsio3 library is now GPL on Debian, so disabled due to 
incompatibility with GDAL copyright.

Modified: packages/gdal/trunk/debian/control
===
--- packages/gdal/trunk/debian/control  2007-05-18 14:20:31 UTC (rev 841)
+++ packages/gdal/trunk/debian/control  2007-05-18 21:12:04 UTC (rev 842)
@@ -6,9 +6,8 @@
 Build-Depends: debhelper (= 5.0.37.2), zlib1g-dev, netcdfg-dev,
  libtiff4-dev, libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg62-dev, 
libungif4-dev,
  libhdf4g-dev, libhdf5-serial-dev, libpq-dev | postgresql-dev, 
libxerces27-dev, unixodbc-dev (=2.2.11), 
- libsqlite0-dev, python-dev, python-numeric, doxygen, d-shlibs,
- libgeos-dev, dpatch, libmysqlclient15-dev, python-all-dev (= 2.3.5-11), 
python-central (=0.5), 
- libcurl4-dev|libcurl-dev, libsqlite3-dev, libogdi3.2-dev
+ python-dev, python-numeric, doxygen, d-shlibs, libgeos-dev, dpatch, 
libmysqlclient15-dev, python-all-dev (= 2.3.5-11), 
+ python-central (=0.5), libcurl4-dev|libcurl-dev, libsqlite3-dev, 
libogdi3.2-dev
 Standards-Version: 3.7.2
 XS-Python-Version: all
 
@@ -45,8 +44,8 @@
 Architecture: any
 Depends: libgdal1-1.4.0 (=${Source-Version}), libc6-dev, netcdfg-dev, 
libtiff4-dev, 
  libjasper-dev|libjasper-1.701-dev, libpng12-dev, libjpeg62-dev, 
libungif4-dev, libhdf4g-dev, 
- libpq-dev | postgresql-dev, libxerces27-dev, unixodbc-dev, libsqlite0-dev, 
libgeos-dev,
- libmysqlclient15-dev, libhdf5-serial-dev
+ libpq-dev | postgresql-dev, libxerces27-dev, unixodbc-dev, libsqlite3-dev, 
libgeos-dev,
+ libmysqlclient15-dev, libhdf5-serial-dev, libltdl3-dev, 
libcurl4-dev|libcurl-dev
 Suggests: libgdal-doc
 Provides: libgdal-dev
 Replaces: libgdal1-1.3.1-dev, libgdal1-1.3.2-dev

Modified: packages/gdal/trunk/debian/patches/00list
===
--- packages/gdal/trunk/debian/patches/00list   2007-05-18 14:20:31 UTC (rev 
841)
+++ packages/gdal/trunk/debian/patches/00list   2007-05-18 21:12:04 UTC (rev 
842)
@@ -2,3 +2,4 @@
 ogdi
 swig
 doc
+gcc43

Added: packages/gdal/trunk/debian/patches/gcc43.dpatch
===
--- packages/gdal/trunk/debian/patches/gcc43.dpatch 
(rev 0)
+++ packages/gdal/trunk/debian/patches/gcc43.dpatch 2007-05-18 21:12:04 UTC 
(rev 842)
@@ -0,0 +1,29 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## gcc43.dpatch by Francesco Paolo Lovergine [EMAIL PROTECTED]
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Patch to be compliant with gcc 4.3
+
[EMAIL PROTECTED]@
+diff -urNad gdal-1.4.1~/frmts/idrisi/IdrisiDataset.cpp 
gdal-1.4.1/frmts/idrisi/IdrisiDataset.cpp
+--- gdal-1.4.1~/frmts/idrisi/IdrisiDataset.cpp 2007-04-10 17:15:19.0 
+0200
 gdal-1.4.1/frmts/idrisi/IdrisiDataset.cpp  2007-05-18 22:14:49.0 
+0200
+@@ -34,6 +34,7 @@
+ #include ogr_spatialref.h
+ #include gdal_pam.h
+ #include gdal_alg.h
++#include climits
+ 
+ CPL_CVSID($Id: IdrisiDataset.cpp 10646 2007-01-18 02:38:10Z warmerdam $);
+ 
+diff -urNad gdal-1.4.1~/frmts/ilwis/ilwisdataset.cpp 
gdal-1.4.1/frmts/ilwis/ilwisdataset.cpp
+--- gdal-1.4.1~/frmts/ilwis/ilwisdataset.cpp   2007-04-10 17:15:31.0 
+0200
 gdal-1.4.1/frmts/ilwis/ilwisdataset.cpp2007-05-18 22:14:31.0 
+0200
+@@ -29,6 +29,7 @@
+ 
+ #include ilwisdataset.h
+ #include float.h
++#include climits
+ 
+ // IniFile.cpp: implementation of the IniFile class.
+ //


Property changes on: packages/gdal/trunk/debian/patches/gcc43.dpatch
___
Name: svn:executable
   + *


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


[DebianGIS-dev] r844 - packages/gdal/tags

2007-05-18 Thread frankie
Author: frankie
Date: 2007-05-18 21:37:46 + (Fri, 18 May 2007)
New Revision: 844

Added:
   packages/gdal/tags/1.4.1-6/
Log:
Tagging 1.4.1-6


Copied: packages/gdal/tags/1.4.1-6 (from rev 843, packages/gdal/trunk)


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