[DebianGIS-dev] r1547 - packages/gdal/trunk/debian
Author: frankie Date: 2008-04-19 18:52:28 + (Sat, 19 Apr 2008) New Revision: 1547 Modified: packages/gdal/trunk/debian/changelog Log: Releasing 1.5.1-3 Modified: packages/gdal/trunk/debian/changelog === --- packages/gdal/trunk/debian/changelog2008-04-19 18:50:57 UTC (rev 1546) +++ packages/gdal/trunk/debian/changelog2008-04-19 18:52:28 UTC (rev 1547) @@ -7,7 +7,7 @@ * Revised the build/install rules to manage better Swig stuff and specifically Python bindings. - -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Sat, 19 Apr 2008 19:11:11 +0200 + -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Sat, 19 Apr 2008 20:51:48 +0200 gdal (1.5.1-2) unstable; urgency=low ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1546 - in packages/gdal/trunk/debian: . patches
Author: frankie Date: 2008-04-19 18:50:57 + (Sat, 19 Apr 2008) New Revision: 1546 Added: packages/gdal/trunk/debian/patches/pythonmakefile.dpatch Modified: packages/gdal/trunk/debian/changelog packages/gdal/trunk/debian/control packages/gdal/trunk/debian/patches/00list packages/gdal/trunk/debian/rules Log: Fixes for python Modified: packages/gdal/trunk/debian/changelog === --- packages/gdal/trunk/debian/changelog2008-04-19 14:42:00 UTC (rev 1545) +++ packages/gdal/trunk/debian/changelog2008-04-19 18:50:57 UTC (rev 1546) @@ -1,3 +1,14 @@ +gdal (1.5.1-3) unstable; urgency=low + + * Removed old-python stuff still around in debian/rules. + * [PATCH] pythonmakefile.dpatch to fix wrong interpreter override in 1.5.1 +See #2333 on gdal trac. +(closes: #476657) + * Revised the build/install rules to manage better Swig stuff and +specifically Python bindings. + + -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Sat, 19 Apr 2008 19:11:11 +0200 + gdal (1.5.1-2) unstable; urgency=low * Moved libxerces27-dev dependency to libxerces-c2-dev in debian/control as Modified: packages/gdal/trunk/debian/control === --- packages/gdal/trunk/debian/control 2008-04-19 14:42:00 UTC (rev 1545) +++ packages/gdal/trunk/debian/control 2008-04-19 18:50:57 UTC (rev 1546) @@ -6,7 +6,7 @@ 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, libxerces-c2-dev, unixodbc-dev (>=2.2.11), - python-dev, python-numpy, doxygen, d-shlibs, libgeos-dev, dpatch, libmysqlclient15-dev, python-all-dev (>= 2.3.5-11), + python-dev, python-numpy, 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, ruby, ruby1.8-dev, chrpath, swig, libtool (>=1.5.24-2) Standards-Version: 3.7.3 Modified: packages/gdal/trunk/debian/patches/00list === --- packages/gdal/trunk/debian/patches/00list 2008-04-19 14:42:00 UTC (rev 1545) +++ packages/gdal/trunk/debian/patches/00list 2008-04-19 18:50:57 UTC (rev 1546) @@ -4,3 +4,4 @@ rubymakefile man max +pythonmakefile Added: packages/gdal/trunk/debian/patches/pythonmakefile.dpatch === --- packages/gdal/trunk/debian/patches/pythonmakefile.dpatch (rev 0) +++ packages/gdal/trunk/debian/patches/pythonmakefile.dpatch2008-04-19 18:50:57 UTC (rev 1546) @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## python.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 gdal-1.5.1~/swig/python/GNUmakefile gdal-1.5.1/swig/python/GNUmakefile +--- gdal-1.5.1~/swig/python/GNUmakefile2008-04-19 13:12:54.0 +0200 gdal-1.5.1/swig/python/GNUmakefile 2008-04-19 13:21:27.0 +0200 +@@ -2,7 +2,7 @@ + + include ../../GDALmake.opt + +-ifndef $(PYTHON) ++ifndef PYTHON + PYTHON=python + endif + Property changes on: packages/gdal/trunk/debian/patches/pythonmakefile.dpatch ___ Name: svn:executable + * Modified: packages/gdal/trunk/debian/rules === --- packages/gdal/trunk/debian/rules2008-04-19 14:42:00 UTC (rev 1545) +++ packages/gdal/trunk/debian/rules2008-04-19 18:50:57 UTC (rev 1546) @@ -64,8 +64,17 @@ dh_testdir cp `ls GDALmake.opt-*|tail -1` GDALmake.opt - $(MAKE) -C $(CURDIR)/swig/perl generate - $(MAKE) lib-target apps-target swig-target + $(MAKE) lib-target apps-target + $(MAKE) -C $(CURDIR)/swig/perl generate build + $(MAKE) -C $(CURDIR)/swig/ruby generate build + + # it needs pre-installing just after the building due to intermediate cleaning + for V in $(PYVERS); do \ + cp GDALmake.opt-$$V GDALmake.opt; \ + $(MAKE) -C $(CURDIR)/swig/python clean; \ + $(MAKE) -C $(CURDIR)/swig/python generate build; \ + $(MAKE) -C $(CURDIR)/swig/python install DESTDIR=$(CURDIR)/debian/python-tmp; \ + done $(MAKE) docs $(MAKE) man @@ -81,6 +90,7 @@ rm -rf $(CURDIR)/swig/perl/*.c $(CURDIR)/swig/perl/*.cpp rm -f GDALmake.opt-* rm -rf $(CURDIR)/man/man1 + rm -rf $(CURDIR)/debian/tmp $(CURDIR)/debian/python-tmp dh_clean build-stamp configure-stamp @@ -90,21 +100,18 @@ dh_clean -k dh_installdirs - for V in $(
[DebianGIS-dev] r1545 - packages/josm/trunk/debian
Author: nd-guest Date: 2008-04-19 14:42:00 + (Sat, 19 Apr 2008) New Revision: 1545 Modified: packages/josm/trunk/debian/README.Debian Log: Reverted to r1444. Information about the upstream tarball is already present in debian/copyright. Modified: packages/josm/trunk/debian/README.Debian === --- packages/josm/trunk/debian/README.Debian2008-04-19 14:36:48 UTC (rev 1544) +++ packages/josm/trunk/debian/README.Debian2008-04-19 14:42:00 UTC (rev 1545) @@ -13,19 +13,3 @@ in /etc/alternatives/ that is usually used on Debian systems. -- Andreas Putzo <[EMAIL PROTECTED]> Tue, 25 Mar 2008 22:40:12 + - -Upstream tarball - - -Upstream tarball was downloaded using the command: - - svn export http://josm.openstreetmap.de/svn/trunk - -All .jar files have been removed. -All files in the data/ directory have been removed because they contain -(large) test data that is not used by the program. -The directory styles/standard/icons has been removed. It contains icons -that are already provided by the openstreetmap-map-icons-classic package. -All other downloaded files have been packaged as GNU zip'ed tarball -without any further modifications. - ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1544 - packages/josm/trunk/debian
Author: nd-guest Date: 2008-04-19 14:36:48 + (Sat, 19 Apr 2008) New Revision: 1544 Modified: packages/josm/trunk/debian/copyright Log: Reference to common-licenses in debian/copyright. Modified: packages/josm/trunk/debian/copyright === --- packages/josm/trunk/debian/copyright2008-04-19 14:36:20 UTC (rev 1543) +++ packages/josm/trunk/debian/copyright2008-04-19 14:36:48 UTC (rev 1544) @@ -18,15 +18,21 @@ Copyright (c) 2007-2008 Ulf Lamping <[EMAIL PROTECTED]> Copyright (c) 2007-2008 Raphael Mack <[EMAIL PROTECTED]> License: GPL-2+ + Josm is distributed under the GPL, version 2 or later. + On Debian GNU/Linux systems, the complete text of the GNU General Public License + Version 2 can be found in `/usr/share/common-licenses/GPL-2'. Files: debian/* Copyright: Copyright (c) 2007-2008 Andreas Putzo Copyright (c) 2008 Petter Reinholdsten Copyright (c) 2008 Giovanni Mascellani License: GPL-3+ + The Debian packaging information is under the GPL, version 3 or later. + On Debian GNU/Linux systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. Files: src/org/openstreetmap/josm/io/MultiPartFormOutputStream.java -Copyright: Copyright 1994-2007 Sun Microsystems, Inc. +Copyright: Copyright (c) 1994-2007 Sun Microsystems, Inc. License: other Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -80,4 +86,3 @@ . 3. that the endorsement of any product or service by Caltech, JPL or NASA must not be claimed or implied. - ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1543 - packages/josm/trunk/debian
Author: nd-guest Date: 2008-04-19 14:36:20 + (Sat, 19 Apr 2008) New Revision: 1543 Modified: packages/josm/trunk/debian/changelog packages/josm/trunk/debian/control Log: Fix dependencies. Add working jvm's to recommends. Modified: packages/josm/trunk/debian/changelog === --- packages/josm/trunk/debian/changelog2008-04-19 09:18:06 UTC (rev 1542) +++ packages/josm/trunk/debian/changelog2008-04-19 14:36:20 UTC (rev 1543) @@ -1,12 +1,18 @@ -josm (0.0.0.20080415-1) unstable; urgency=low +josm (0.0.0.20080415-1) UNRELEASED; urgency=low + [ Giovanni Mascellani ] * New upstream version fetched using debian/rules get-orig-source. + Many little bugfixes. + Clarifications on upstream copyright status. * Switched to machine interpretable debian/copyright. - -- Giovanni Mascellani <[EMAIL PROTECTED]> Tue, 15 Apr 2008 22:23:34 +0200 + [ Andreas Putzo ] + * Replace dependency on java-gcj-compat with gij-4.1 or jamvm that +work with josm. Add those to recommends to increase the chance +that a working java can be found by the wrapper. (Closes: #475878) + -- Andreas Putzo <[EMAIL PROTECTED]> Sat, 19 Apr 2008 13:59:47 + + josm (0.0.0.20080330-1) unstable; urgency=low [ Giovanni Mascellani ] Modified: packages/josm/trunk/debian/control === --- packages/josm/trunk/debian/control 2008-04-19 09:18:06 UTC (rev 1542) +++ packages/josm/trunk/debian/control 2008-04-19 14:36:20 UTC (rev 1543) @@ -9,7 +9,8 @@ Package: josm Architecture: all -Depends: java-gcj-compat | java2-runtime, libgettext-commons-java, libmetadata-extractor-java, openstreetmap-map-icons-classic +Depends: jamvm | gij-4.1 | java2-runtime, libgettext-commons-java, libmetadata-extractor-java, openstreetmap-map-icons-classic +Recommends: jamvm | gij-4.1 Description: Editor for OpenStreetMap JOSM is an editor for OpenStreetMap (OSM) written in Java. The current version supports stand alone GPX tracks, GPX track data ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] Bug#476657: Bug#476657: python-gdal: not available anymore for python 2.4 in sid
tags 476657 + pending thanks The building and installing are roughly wrong, working on that... On Fri, Apr 18, 2008 at 12:10:23PM +0200, Didrik Pinte wrote: > Package: python-gdal > Version: 1.5.1-2+b1 > Severity: normal > -- Francesco P. Lovergine ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] Processed: Re: Bug#476657: python-gdal: not available anymore for python 2.4 in sid
Processing commands for [EMAIL PROTECTED]: > tags 476657 + pending Bug#476657: python-gdal: not available anymore for python 2.4 in sid There were no tags set. Tags added: pending > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1542 - packages/e00compr/trunk/debian
Author: pabs Date: 2008-04-19 09:18:06 + (Sat, 19 Apr 2008) New Revision: 1542 Modified: packages/e00compr/trunk/debian/copyright Log: change my email in the copyright file Modified: packages/e00compr/trunk/debian/copyright === --- packages/e00compr/trunk/debian/copyright2008-04-19 09:05:05 UTC (rev 1541) +++ packages/e00compr/trunk/debian/copyright2008-04-19 09:18:06 UTC (rev 1542) @@ -1,4 +1,4 @@ -This package was debianized by Paul Wise <[EMAIL PROTECTED]> on +This package was debianized by Paul Wise <[EMAIL PROTECTED]> on Wed, 21 Sep 2005 17:27:22 +0800. It was downloaded from http://avce00.maptools.org/e00compr/ ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1541 - packages/e00compr/trunk/debian
Author: pabs Date: 2008-04-19 09:05:05 + (Sat, 19 Apr 2008) New Revision: 1541 Modified: packages/e00compr/trunk/debian/changelog packages/e00compr/trunk/debian/doc-base Log: Update the doc-base section Modified: packages/e00compr/trunk/debian/changelog === --- packages/e00compr/trunk/debian/changelog2008-04-19 08:58:51 UTC (rev 1540) +++ packages/e00compr/trunk/debian/changelog2008-04-19 09:05:05 UTC (rev 1541) @@ -6,6 +6,7 @@ [ Paul Wise ] * Don't ignore errors in make clean + * Update the doc-base section -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Thu, 03 Jan 2008 14:03:15 +0100 Modified: packages/e00compr/trunk/debian/doc-base === --- packages/e00compr/trunk/debian/doc-base 2008-04-19 08:58:51 UTC (rev 1540) +++ packages/e00compr/trunk/debian/doc-base 2008-04-19 09:05:05 UTC (rev 1541) @@ -2,7 +2,7 @@ Title: e00compr Documentation Author: Daniel Morissette Abstract: E00compr library and conversion program documentation. -Section: Apps/Science +Section: Science/Geoscience Format: text Files: /usr/share/doc/e00compr/e00compr.txt.gz ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1540 - packages/e00compr/trunk/debian
Author: pabs Date: 2008-04-19 08:58:51 + (Sat, 19 Apr 2008) New Revision: 1540 Modified: packages/e00compr/trunk/debian/changelog packages/e00compr/trunk/debian/rules Log: Don't ignore errors in make clean Modified: packages/e00compr/trunk/debian/changelog === --- packages/e00compr/trunk/debian/changelog2008-04-19 08:50:56 UTC (rev 1539) +++ packages/e00compr/trunk/debian/changelog2008-04-19 08:58:51 UTC (rev 1540) @@ -1,8 +1,12 @@ e00compr (1.0.0-7) unstable; urgency=low + [ Francesco Paolo Lovergine ] * Added Homepage and Vcs-* fields in debian/control * Policy bumped to 3.7.3 (no changes) + [ Paul Wise ] + * Don't ignore errors in make clean + -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Thu, 03 Jan 2008 14:03:15 +0100 e00compr (1.0.0-6) unstable; urgency=low Modified: packages/e00compr/trunk/debian/rules === --- packages/e00compr/trunk/debian/rules2008-04-19 08:50:56 UTC (rev 1539) +++ packages/e00compr/trunk/debian/rules2008-04-19 08:58:51 UTC (rev 1540) @@ -18,7 +18,7 @@ clean: dh_testdir dh_testroot - -$(MAKE) clean + [ ! -f Makefile ] || $(MAKE) clean dh_clean install: ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel
[DebianGIS-dev] r1539 - packages/e00compr/trunk/debian
Author: pabs Date: 2008-04-19 08:50:56 + (Sat, 19 Apr 2008) New Revision: 1539 Modified: packages/e00compr/trunk/debian/e00conv.1 Log: forwarded the manual page upstream Modified: packages/e00compr/trunk/debian/e00conv.1 === --- packages/e00compr/trunk/debian/e00conv.12008-04-15 20:29:18 UTC (rev 1538) +++ packages/e00compr/trunk/debian/e00conv.12008-04-19 08:50:56 UTC (rev 1539) @@ -1,3 +1,6 @@ +.\" Forwarded the manual page upstream +.\" http://bugzilla.maptools.org/show_bug.cgi?id=1875 +.\" .TH E00CONV 1 "September 24, 2005" .SH NAME e00conv \- Converts Arc/Info E00 files from ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel