From frankie at haydn.debian.org Thu Mar 2 12:55:27 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Thu Mar 2 12:55:29 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: frankie Date: 06/03/02 12:55:27 Modified: . dgis-status.pl Log: Added colors for package classes based on version compares. Revision Changes Path 1.5 +138 -7 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- dgis-status.pl 27 Feb 2006 16:09:34 -0000 1.4 +++ dgis-status.pl 2 Mar 2006 12:55:26 -0000 1.5 @@ -28,6 +28,10 @@ use Getopt::Std; use FileHandle; +use AptPkg::Config '$_config'; +use AptPkg::System '$_system'; +use AptPkg::Version; + getopts ('odhvf:'); # -o option: only do difference (no wget) our($opt_o, $opt_h, $opt_v, $opt_b, $opt_c, $opt_d, $opt_f); @@ -120,6 +124,26 @@ color: #ffffff; background-color: #df0451; } +table.pkg tr.orange { + color: #000000; + background-color: #f09005; +} +table.pkg tr.yellow { + color: #000000; + background-color: #f0f005; +} +table.pkg tr.green { + color: #000000; + background-color: #a0f005; +} +table.pkg tr.red { + color: #000000; + background-color: #f03000; +} +table.pkg tr.othered { + color: #000000; + background-color: #dc5858; +} --> @@ -127,6 +151,10 @@ +

Go to DebianGis Wiki + + + +
+ @@ -138,18 +166,45 @@ EOF +$_config->init; +$_system = $_config->system; + +my $vs = $_system->versioning; for my $p ( sort keys %dgishash ) { next unless $p; for my $s ( keys %paths ) { - $dgishash{$p}->{$s} = "none" unless $dgishash{$p}->{$s}; + $dgishash{$p}->{$s} = " " unless $dgishash{$p}->{$s}; } my $p_url = $p; - if ( $dgishash{$p}->{stable} ne "none" || $dgishash{$p}->{unstable} ne "none" ) { + my $tr_class = "class='green'"; + if ( $dgishash{$p}->{stable} ne " " || $dgishash{$p}->{unstable} ne " " ) { $p_url = "$p"; } + if ( $dgishash{$p}->{unstable} ne " " && $dgishash{$p}->{stable} eq " " ) { + $tr_class = "class='green'"; + } + if ( $dgishash{$p}->{unstable} eq " " && $dgishash{$p}->{stable} eq " " && + $dgishash{$p}->{'dgis-unstable'} eq " " && $dgishash{$p}->{'dgis-stable'} ) { + $tr_class = "class='yellow'"; + } + if ( $dgishash{$p}->{unstable} ne " " && $dgishash{$p}->{stable} ne " " && + $vs->compare($dgishash{$p}->{unstable},$dgishash{$p}->{stable}) > 0 ) { + $tr_class = "class='green'"; + } + if ( $dgishash{$p}->{unstable} ne " " && $dgishash{$p}->{'dgis-unstable'} ne " " && + $vs->compare($dgishash{$p}->{unstable},$dgishash{$p}->{'dgis-unstable'}) > 0 ) { + $tr_class = "class='othered'"; + } + if ( $dgishash{$p}->{unstable} ne " " && $dgishash{$p}->{'dgis-unstable'} ne " " && + $vs->compare($dgishash{$p}->{unstable},$dgishash{$p}->{'dgis-unstable'}) < 0 ) { + $tr_class = "class='red'"; + } + if ( $dgishash{$p}->{unstable} eq " " && $dgishash{$p}->{'dgis-unstable'} ne " " ) { + $tr_class = "class='orange'"; + } print < + @@ -162,11 +217,87 @@ my $now = gmtime; print < +

DebianGis Source Packages

$p_url $dgishash{$p}->{stable} $dgishash{$p}->{unstable}
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Color legend

+ + + + +
 
+
+Available in DebianGis, not yet in sid +
+ + + + +
 
+
+Available in Sid, not in stable +
+ + + + +
 
+
+Not yet packaged at all +
+ + + + +
 
+
+New in DebianGis, obsolete in sid +
+ + + + +
 
+
+Obsolete in DebianGis, up-to-date in sid +
+

Status at: $now
Total of Stable/Unstable/DebianGisStable/DebianGisUnstable packages: $tot_pkgs{stable}/$tot_pkgs{unstable}/$tot_pkgs{'dgis-stable'}/$tot_pkgs{'dgis-unstable'} -

Generated by this GPL licensed perl script - written by: Francesco P. Lovergine for DebianGis use. +

Generated by this GPL licensed perl script + written by: Francesco P. Lovergine for DebianGis use. +

+

Go to DebianGis Wiki From frankie at debian.org Thu Mar 2 15:02:14 2006 From: frankie at debian.org (Francesco Paolo Lovergine) Date: Thu Mar 2 15:48:31 2006 Subject: [DebianGIS-dev] Bug#354990: Please add a fontsel script Message-ID: <20060302150214.27514.22308.reportbug@klecker> Package: mapserver Severity: wishlist See http://mapserver.gis.umn.edu/cgi-bin/wiki.pl?FontSet It's quite rough but it could be useful, at least among examples files... -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686 Locale: LANG=it_IT@euro, LC_CTYPE=it_IT@euro (charmap=ISO-8859-15) From frankie at haydn.debian.org Sat Mar 4 09:06:00 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Sat Mar 4 09:06:03 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/04 09:06:00 Modified: . dgis-packages.inc Log: added gpx2shp Revision Changes Path 1.6 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- dgis-packages.inc 27 Feb 2006 12:09:12 -0000 1.5 +++ dgis-packages.inc 4 Mar 2006 09:06:00 -0000 1.6 @@ -43,6 +43,7 @@ 'jump', 'thuban', 'paraview', +'gpx2shp', ); 1; From pere at haydn.debian.org Sun Mar 5 10:46:28 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 5 10:46:31 2006 Subject: [DebianGIS-dev] CVS Update: gpx2shp/debian changelog Message-ID: User: pere Date: 06/03/05 10:46:28 Modified: debian changelog Log: releasing version 0.69-2 Revision Changes Path 1.5 +4 -2 gpx2shp/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/changelog?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/changelog?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/changelog.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/gpx2shp/debian/changelog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- changelog 4 Jan 2006 09:30:04 -0000 1.4 +++ changelog 5 Mar 2006 10:46:28 -0000 1.5 @@ -1,15 +1,17 @@ -gpx2shp (0.69-2) UNRELEASED; urgency=low +gpx2shp (0.69-2) unstable; urgency=low [ Petter Reinholdtsen ] * Make package group maintained by the Debian GIS Project. * Add new co-maintainer Jon Saints as uploader. * Start using dpatch, and add it to build-depends. * Move patch to Makefile.am into new patch 10_check_clean.dpatch. + * Increased standard-version from 3.6.1 to 3.6.2 (no changes). + * Updated FSF address in debian/copyright. [ Paul Wise ] * Add the homepage to the package description - -- Paul Wise Wed, 4 Jan 2006 17:29:07 +0800 + -- Petter Reinholdtsen Sun, 5 Mar 2006 11:29:12 +0100 gpx2shp (0.69-1) unstable; urgency=low From pere at haydn.debian.org Sun Mar 5 10:46:36 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 5 10:46:38 2006 Subject: [DebianGIS-dev] CVS Update: gpx2shp/debian control copyright rules Message-ID: User: pere Date: 06/03/05 10:46:36 Modified: debian control copyright rules Log: [ Petter Reinholdtsen ] * Make package group maintained by the Debian GIS Project. * Add new co-maintainer Jon Saints as uploader. * Start using dpatch, and add it to build-depends. * Move patch to Makefile.am into new patch 10_check_clean.dpatch. * Increased standard-version from 3.6.1 to 3.6.2 (no changes). * Updated FSF address in debian/copyright. [ Paul Wise ] * Add the homepage to the package description Revision Changes Path 1.5 +1 -1 gpx2shp/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/control?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/control?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/control.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/gpx2shp/debian/control,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- control 4 Jan 2006 09:30:04 -0000 1.4 +++ control 5 Mar 2006 10:46:36 -0000 1.5 @@ -4,7 +4,7 @@ Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen , Jon Saints Build-Depends: debhelper (>= 4.0.0), dpatch, proj, libexpat1-dev -Standards-Version: 3.6.1 +Standards-Version: 3.6.2 Package: gpx2shp Architecture: any 1.2 +3 -3 gpx2shp/debian/copyright CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/copyright?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/copyright?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/copyright.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: copyright =================================================================== RCS file: /cvsroot/pkg-grass/gpx2shp/debian/copyright,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- copyright 26 Dec 2005 22:51:39 -0000 1.1 +++ copyright 5 Mar 2006 10:46:36 -0000 1.2 @@ -12,7 +12,7 @@ Software Foundation; either version 2, or (at your option) any later version. -Bash is distributed in the hope that it will be useful, but WITHOUT +gpx2shp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -20,5 +20,5 @@ You should have received a copy of the GNU General Public License with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, or with the Debian GNU/Linux gpx2shp source package as the file COPYING. If not, -write to the Free Software Foundation, Inc., 59 Temple Place - Suite -330, Boston, MA 02111-1307, USA. +write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301, USA. 1.3 +2 -2 gpx2shp/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/rules?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/rules?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/rules.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/gpx2shp/debian/rules,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- rules 26 Dec 2005 23:06:50 -0000 1.2 +++ rules 5 Mar 2006 10:46:36 -0000 1.3 @@ -40,7 +40,8 @@ touch build-stamp -clean: unpatch +clean: doclean unpatch +doclean: dh_testdir dh_testroot rm -f build-stamp @@ -54,7 +55,6 @@ cp -f /usr/share/misc/config.guess config.guess endif - dh_clean install: build From pere at haydn.debian.org Sun Mar 5 10:46:36 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 5 10:46:38 2006 Subject: [DebianGIS-dev] CVS Update: gpx2shp/debian/patches 00list Message-ID: User: pere Date: 06/03/05 10:46:36 Added: debian/patches 00list Log: [ Petter Reinholdtsen ] * Make package group maintained by the Debian GIS Project. * Add new co-maintainer Jon Saints as uploader. * Start using dpatch, and add it to build-depends. * Move patch to Makefile.am into new patch 10_check_clean.dpatch. * Increased standard-version from 3.6.1 to 3.6.2 (no changes). * Updated FSF address in debian/copyright. [ Paul Wise ] * Add the homepage to the package description Revision Changes Path 1.1 gpx2shp/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/patches/00list?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/patches/00list?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 00list =================================================================== 10_check_clean From katie at ftp-master.debian.org Sun Mar 5 10:52:05 2006 From: katie at ftp-master.debian.org (Archive Administrator) Date: Sun Mar 5 10:52:15 2006 Subject: [DebianGIS-dev] Processing of gpx2shp_0.69-2_i386.changes Message-ID: gpx2shp_0.69-2_i386.changes uploaded successfully to localhost along with the files: gpx2shp_0.69-2.dsc gpx2shp_0.69-2.diff.gz gpx2shp_0.69-2_i386.deb Greetings, Your Debian queue daemon From installer at ftp-master.debian.org Sun Mar 5 11:02:18 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Sun Mar 5 11:10:48 2006 Subject: [DebianGIS-dev] gpx2shp_0.69-2_i386.changes ACCEPTED Message-ID: Accepted: gpx2shp_0.69-2.diff.gz to pool/main/g/gpx2shp/gpx2shp_0.69-2.diff.gz gpx2shp_0.69-2.dsc to pool/main/g/gpx2shp/gpx2shp_0.69-2.dsc gpx2shp_0.69-2_i386.deb to pool/main/g/gpx2shp/gpx2shp_0.69-2_i386.deb Announcing to debian-devel-changes@lists.debian.org Thank you for your contribution to Debian. From shwdf2006 at yahoo.com Mon Mar 6 00:55:33 2006 From: shwdf2006 at yahoo.com (Jack Ren) Date: Mon Mar 6 00:55:37 2006 Subject: [DebianGIS-dev] Total Language Solutions Message-ID: Dear Project Manager, With the best intention, we are writing this letter to see if there is any possibility that we could work together as global partners. Shanghai Wonderful Translation Company, a leading translation & interpretation company in China, dedicates itself in providing our clients with highly professional language solutions. Focusing on the electronics, manufacturing, engineering, website &software localization, hi-tech, automation and legal fields, we have defined an important client base. And we are part of a network of more than 100 language firms, which themselves have large pools of linguists scattered all over China and the world. Please tell us if you need our professional translation services after you go through this letter. Thank you! For further information, please contact me or log on our website: www.shwdf.com We would greatly appreciate it if you would seriously consider our proposal. Best regards, Jack Ren Sales Manager Tel: 0086-21-58915169 Ext 803 0086-13621818660 Fax: 0086-21-58431814 E-mail: shwdf2006@hotmail.com From pabs3 at bonedaddy.net Tue Mar 7 05:37:49 2006 From: pabs3 at bonedaddy.net (Paul Wise) Date: Tue Mar 7 05:48:15 2006 Subject: [DebianGIS-dev] Bug#354990: FontSet script licence? Message-ID: <1141709869.6014.56.camel@localhost.localdomain> Hi Tyler, It was requested[1] that your FONTSET script[2] be included in the debian mapserver package[3]. For us to do this, we need you to assign a DFSG-free[4] licence to the script and add a copyright notice to it. Also, is there any reason this script is not included in mapserver itself? 1. http://bugs.debian.org/354990 2. http://mapserver.gis.umn.edu/cgi-bin/wiki.pl?FontSet 3. http://packages.debian.org/unstable/source/mapserver 4. http://www.debian.org/social_contract#guidelines -- bye, pabs http://wiki.debian.org/PaulWise -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060307/395392e8/attachment.pgp From pabs-guest at haydn.debian.org Tue Mar 7 07:14:24 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Tue Mar 7 07:14:26 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pabs-guest Date: 06/03/07 07:14:24 Modified: . dgis-packages.inc Log: Change libbatik-java (the binary package) to batik (the source package). Revision Changes Path 1.7 +1 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.7&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.7&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.7&r2=1.6&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- dgis-packages.inc 4 Mar 2006 09:06:00 -0000 1.6 +++ dgis-packages.inc 7 Mar 2006 07:14:24 -0000 1.7 @@ -31,7 +31,7 @@ 'kflog', 'ircmarkers', 'drawmap', -'libbatik-java', +'batik', 'jgrass', 'deegree', 'gpsprint', From frankie at debian.org Tue Mar 7 09:24:30 2006 From: frankie at debian.org (Francesco Paolo Lovergine) Date: Tue Mar 7 09:48:12 2006 Subject: Bug#354990: [DebianGIS-dev] Bug#354990: FontSet script licence? In-Reply-To: <1141709869.6014.56.camel@localhost.localdomain> References: <1141709869.6014.56.camel@localhost.localdomain> Message-ID: <20060307092430.GA9327@mithrandir> On Tue, Mar 07, 2006 at 01:37:49PM +0800, Paul Wise wrote: > Hi Tyler, > > It was requested[1] that your FONTSET script[2] be included in the > debian mapserver package[3]. For us to do this, we need you to assign a > DFSG-free[4] licence to the script and add a copyright notice to it. > > Also, is there any reason this script is not included in mapserver > itself? > > 1. http://bugs.debian.org/354990 > 2. http://mapserver.gis.umn.edu/cgi-bin/wiki.pl?FontSet > 3. http://packages.debian.org/unstable/source/mapserver > 4. http://www.debian.org/social_contract#guidelines > Just for note, the script requires a bit of patching in order to work as is on Debian and any other Linux afaik.... -- Francesco P. Lovergine From frankie at haydn.debian.org Tue Mar 7 20:00:56 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 7 20:01:01 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc dgis-status.pl Message-ID: User: frankie Date: 06/03/07 20:00:56 Modified: . dgis-packages.inc dgis-status.pl Log: Added upstream urls and revised packages listed. Revision Changes Path 1.8 +46 -43 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.8&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.8&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.8&r2=1.7&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- dgis-packages.inc 7 Mar 2006 07:14:24 -0000 1.7 +++ dgis-packages.inc 7 Mar 2006 20:00:55 -0000 1.8 @@ -1,49 +1,52 @@ # -# Add source packages for debian-gis in the list +# Add source packages for debian-gis in the list, order is not important. +# Please always add a precise url for upstream software, and possibly +# keep it up-to-date. # -our @dgislist = ( -'grass', -'jama', -'jts', -'postgis', -'mapserver', -'qgis', -'avce00', -'libgdal-grass', -'libterralib', -'gdal', -'proj', -'earth3d', -'gmt', -'geos', -'openev', -'ogdi', -'zmapserver', -'opencv', -'gpsbabel', -'gpsdrive', -'gpsman', -'gpstrans', -'grace', -'grace6', -'gts', -'kflog', -'ircmarkers', -'drawmap', -'batik', -'jgrass', -'deegree', -'gpsprint', -'demeter', -'demtools', -'musmap', -'e00compr', -'openscenegraph', -'jump', -'thuban', -'paraview', -'gpx2shp', +our %dgislist = ( +'grass' => 'http://grass.itc.it/' , +'jama' => 'http://math.nist.gov/javanumerics/jama/', +'jts' => 'http://www.vividsolutions.com/jts/jtshome.htm', +'postgis' => 'http://postgis.refractions.net/', +'mapserver' => 'http://mapserver.gis.umn.edu/', +'qgis' => 'http://qgis.org/', +'avce00' => 'http://avce00.maptools.org/avce00/', +'libgdal-grass' => 'http://www.gdal.org/', +'libterralib' => 'http://cvs.dpi.inpe.br/', +'gdal' => 'http://www.gdal.org/', +'proj' => 'http://proj.maptools.org/', +'earth3d' => 'http://www.earth3d.org/', +'gmt' => 'http://gmt.soest.hawaii.edu/', +'geos' => 'http://geos.refractions.net/', +'openev' => 'http://openev.sourceforge.net/', +'ogdi' => 'http://ogdi.sourceforge.net/', +'primagis' => 'http://primagis.fi/', +'opencv' => 'http://sourceforge.net/projects/opencvlibrary/', +'gpsbabel' => 'http://gpsbabel.sourceforge.net/', +'gpsdrive' => 'http://www.gpsdrive.cc/', +'gpsman' => 'http://www.ncc.up.pt/gpsman/', +'gpstrans' => 'http://gpstrans.sourceforge.net/', +'grace' => 'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/', +'grace6' => 'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/', +'gts' => 'http://gts.sourceforge.net/', +'kflog' => 'http://www.kflog.org/kflog/', +'ircmarkers' => 'http://www.df7cb.de/projects/ircmarkers/', +'drawmap' => 'http://www.ttc-cmc.net/~fme/drawmap.html', +'batik' => 'http://xmlgraphics.apache.org/batik/', +'jgrass' => 'http://www.hydrologis.com/html/jgrass/jgrass_en.html', +'deegree' => 'http://deegree.sourceforge.net/', +'gpsd' => 'http://gpsd.berlios.de/', +'demeter' => 'http://www.terrainengine.com/index.html', +'demtools' => 'http://www.arq.net/~kasten/demtools/', +'musmap' => 'http://musmap.sourceforge.net/', +'e00compr' => 'http://avce00.maptools.org/e00compr/index.html', +'openscenegraph' => 'http://www.openscenegraph.org/', +'jump' => 'http://www.vividsolutions.com/jump/', +'thuban' => 'http://thuban.intevation.org/', +'paraview' => 'http://www.paraview.org/HTML/Index.html', +'gpx2shp' => 'http://gpx2shp.sourceforge.jp/', +'python-pcl' => 'http://zcologia.org/cartography/', ); 1; 1.6 +10 -4 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- dgis-status.pl 2 Mar 2006 12:55:26 -0000 1.5 +++ dgis-status.pl 7 Mar 2006 20:00:56 -0000 1.6 @@ -74,6 +74,8 @@ } } +#system("$wget{$verbose} bugs.txt http://merkel.debian.org/~hertzog/pts/bugs.txt"); + my %files = undef; my %dgishash = undef; my %tot_pkgs = undef; @@ -86,7 +88,7 @@ } -for my $p (@main::dgislist) { $dgishash{$p} = {}; } +for my $p (keys %main::dgislist) { $dgishash{$p} = {}; } for my $s ( keys %paths ) { $tot_pkgs{$s} = 0; @@ -176,11 +178,15 @@ for my $s ( keys %paths ) { $dgishash{$p}->{$s} = " " unless $dgishash{$p}->{$s}; } - my $p_url = $p; + my $p_url = "$p"; my $tr_class = "class='green'"; if ( $dgishash{$p}->{stable} ne " " || $dgishash{$p}->{unstable} ne " " ) { - $p_url = "$p"; + $p_url .= " (PTS,"; + } + else { + $p_url .= " (" if $main::dgislist{$p}; } + $p_url .= "UP)" if $main::dgislist{$p}; if ( $dgishash{$p}->{unstable} ne " " && $dgishash{$p}->{stable} eq " " ) { $tr_class = "class='green'"; } From frankie at haydn.debian.org Tue Mar 7 21:37:58 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 7 21:38:00 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/07 21:37:57 Modified: . dgis-packages.inc Log: Revision Changes Path 1.9 +2 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.9&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.9&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.9&r2=1.8&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- dgis-packages.inc 7 Mar 2006 20:00:55 -0000 1.8 +++ dgis-packages.inc 7 Mar 2006 21:37:57 -0000 1.9 @@ -42,11 +42,12 @@ 'musmap' => 'http://musmap.sourceforge.net/', 'e00compr' => 'http://avce00.maptools.org/e00compr/index.html', 'openscenegraph' => 'http://www.openscenegraph.org/', -'jump' => 'http://www.vividsolutions.com/jump/', +'openjump' => 'http://jump-pilot.sourceforge.net/', 'thuban' => 'http://thuban.intevation.org/', 'paraview' => 'http://www.paraview.org/HTML/Index.html', 'gpx2shp' => 'http://gpx2shp.sourceforge.jp/', 'python-pcl' => 'http://zcologia.org/cartography/', +'libcgal' => 'http://www.cgal.org/', ); 1; From pabs-guest at haydn.debian.org Wed Mar 8 01:29:56 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 8 01:29:59 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: pabs-guest Date: 06/03/08 01:29:56 Modified: . dgis-status.pl Log: Shorter URLs to the PTS Revision Changes Path 1.7 +2 -2 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.7&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.7&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.7&r2=1.6&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- dgis-status.pl 7 Mar 2006 20:00:56 -0000 1.6 +++ dgis-status.pl 8 Mar 2006 01:29:56 -0000 1.7 @@ -181,7 +181,7 @@ my $p_url = "$p"; my $tr_class = "class='green'"; if ( $dgishash{$p}->{stable} ne " " || $dgishash{$p}->{unstable} ne " " ) { - $p_url .= " (PTS,"; + $p_url .= " (PTS,"; } else { $p_url .= " (" if $main::dgislist{$p}; From owner at bugs.debian.org Tue Mar 7 23:18:40 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed Mar 8 07:55:56 2006 Subject: [DebianGIS-dev] Processed: reassign from lost packages In-Reply-To: <20060307225540.GA14006@deprecation.cyrius.com> References: <20060307225540.GA14006@deprecation.cyrius.com> Message-ID: Processing commands for control@bugs.debian.org: > reassign 324289 hplip Bug#324289: hplip-base: unnessary conf file question Warning: Unknown package 'hplip-base' Bug reassigned from package `hplip-base' to `hplip'. > reassign 343727 kernel-image-2.4.27-2-k6 Bug#343727: unresolved symbols in module xfs.o Warning: Unknown package 'kernel-image-2.4.27-1-k6' Bug reassigned from package `kernel-image-2.4.27-1-k6' to `kernel-image-2.4.27-2-k6'. > reassign 333007 libarts1-dev Bug#333007: libarts1c2: libmcop has hard-coded path "/tmp" Warning: Unknown package 'libarts1c2' Bug reassigned from package `libarts1c2' to `libarts1-dev'. > reassign 339773 libbakery-2.3-11c2a Bug#339773: bakery2.3 update Warning: Unknown package 'libbakery-2.3-11c2' Bug reassigned from package `libbakery-2.3-11c2' to `libbakery-2.3-11c2a'. > reassign 344599 libboost-python1.33.1 Bug#344599: libboost-python1.33.0c2a: Includes extraneous directory Warning: Unknown package 'libboost-python1.33.0c2a' Bug reassigned from package `libboost-python1.33.0c2a' to `libboost-python1.33.1'. > reassign 316345 libcamel1.2-6 Bug#316345: libcamel1.2-0: evolution crashes at startup in camel_partition_table_lookup Warning: Unknown package 'libcamel1.2-0' Bug reassigned from package `libcamel1.2-0' to `libcamel1.2-6'. > reassign 341795 libcegui-mk2-0c2a Bug#341795: libcegui-mk2-0: libCEGUIOpenGLRenderer .so files not included in amd64 Warning: Unknown package 'libcegui-mk2-0' Bug reassigned from package `libcegui-mk2-0' to `libcegui-mk2-0c2a'. > reassign 342049 libcegui-mk2-0c2a Bug#342049: libcegui-mk2-0: some texture images unnecessarily (vertically) flipped when loaded Warning: Unknown package 'libcegui-mk2-0' Bug reassigned from package `libcegui-mk2-0' to `libcegui-mk2-0c2a'. > reassign 320255 libenchant1c2a Bug#320255: build needs to specify --with-ispell-dir=/usr/lib/ispell Warning: Unknown package 'libenchant1c2' Bug reassigned from package `libenchant1c2' to `libenchant1c2a'. > reassign 339852 libgdal1-1.3.1 Bug#339852: libgdal1c2: Broken replaces dependency Warning: Unknown package 'libgdal1c2' Bug reassigned from package `libgdal1c2' to `libgdal1-1.3.1'. > reassign 330755 libgl1-mesa-dri Bug#330755: libgl1-mesa-dri-dev: no man pages Warning: Unknown package 'libgl1-mesa-dri-dev' Bug reassigned from package `libgl1-mesa-dri-dev' to `libgl1-mesa-dri'. > reassign 209656 libglui2c2 Bug#209656: The package description does not follow Debian policy Warning: Unknown package 'libglui2c102' Bug reassigned from package `libglui2c102' to `libglui2c2'. > reassign 216618 libglui2c2 Bug#216618: libglui2c102: mouse wheel down causes segfault Warning: Unknown package 'libglui2c102' Bug reassigned from package `libglui2c102' to `libglui2c2'. > reassign 349575 libenchant1c2a Bug#349575: gtkglextmm depends on outdated gtkmm Warning: Unknown package 'libgtkglextmm1c2' Bug reassigned from package `libgtkglextmm1c2' to `libenchant1c2a'. > reassign 336860 libgwenhywfar17c2 Bug#336860: libgwen: dumps log to console after default install, should log to file Warning: Unknown package 'libgwenhywfar17' Bug reassigned from package `libgwenhywfar17' to `libgwenhywfar17c2'. > reassign 330505 openoffice.org Bug#330505: OO doesn't open remote (smb) files Warning: Unknown package 'openoffice.org-gnomevfs' Bug reassigned from package `openoffice.org-gnomevfs' to `openoffice.org'. > reassign 315941 openoffice.org Bug#315941: openoffice.org2: ooffice2 crashes when i select java under Tools/Options/OpenOffice.org Warning: Unknown package 'openoffice.org2' Bug reassigned from package `openoffice.org2' to `openoffice.org'. > reassign 333547 openoffice.org Bug#333547: openoffice.org2-writer: Spellchecker only check the content of the first page Warning: Unknown package 'openoffice.org2' Bug reassigned from package `openoffice.org2' to `openoffice.org'. > reassign 351781 openoffice.org Bug#351781: openoffice.org2: OO ignores system font settings Warning: Unknown package 'openoffice.org2' Bug reassigned from package `openoffice.org2' to `openoffice.org'. > reassign 326190 openoffice.org Bug#326190: openoffice.org2-calc: missing ms style key shortcut. Warning: Unknown package 'openoffice.org2-calc' Bug reassigned from package `openoffice.org2-calc' to `openoffice.org'. > reassign 326189 openoffice.org Bug#326189: openoffice.org2-core: random crash with mix stable/testing/unstable/experimental Warning: Unknown package 'openoffice.org2-core' Bug reassigned from package `openoffice.org2-core' to `openoffice.org'. > reassign 325788 openoffice.org Bug#325788: openoffice.org2-writer: Saving as .rtf breaks accented characters Warning: Unknown package 'openoffice.org2-writer' Bug reassigned from package `openoffice.org2-writer' to `openoffice.org'. > reassign 326091 openoffice.org Bug#326091: openoffice.org2-writer: crash at opening a ms-word document Warning: Unknown package 'openoffice.org2-writer' Bug reassigned from package `openoffice.org2-writer' to `openoffice.org'. > reassign 321424 paintlib2c2a Bug#321424: paintlib2c2: Throws std::length_error in _init() Warning: Unknown package 'paintlib2c2' Bug reassigned from package `paintlib2c2' to `paintlib2c2a'. > reassign 351224 libmysqlclient12-dev Bug#351224: virtual package libmysqlclient-dev not containing up2date libmysqlclient12-dev from mysql4.1 Warning: Unknown package 'libmysqlclient-dev' Bug reassigned from package `libmysqlclient-dev' to `libmysqlclient12-dev'. > reassign 339802 libmimelib1c2a Bug#339802: libmimelib1c2: Fails to install packege with apt Warning: Unknown package 'libmimelib1c2' Bug reassigned from package `libmimelib1c2' to `libmimelib1c2a'. > reassign 334773 libtse3-0.3.1c2a Bug#334773: kguitar crashes after startup if compiled with libtse3 Warning: Unknown package 'libtse3-0.2.7c2' Bug reassigned from package `libtse3-0.2.7c2' to `libtse3-0.3.1c2a'. > reassign 336452 linux-2.6 Bug#336452: realtime-lsm-source does not build against the linux-image-2.6.14-1-k7 Warning: Unknown package 'linux-image-2.6.14-1-k7' Bug reassigned from package `linux-image-2.6.14-1-k7' to `linux-2.6'. > reassign 334551 im-sdk Bug#334551: please enhance description Warning: Unknown package 'libiiimutils0' Bug reassigned from package `libiiimutils0' to `im-sdk'. > -- Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From frankie at haydn.debian.org Wed Mar 8 12:55:26 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Wed Mar 8 12:55:28 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/08 12:55:26 Modified: . dgis-packages.inc Log: Added ossim Revision Changes Path 1.10 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.10&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.10&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.10&r2=1.9&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- dgis-packages.inc 7 Mar 2006 21:37:57 -0000 1.9 +++ dgis-packages.inc 8 Mar 2006 12:55:26 -0000 1.10 @@ -48,6 +48,7 @@ 'gpx2shp' => 'http://gpx2shp.sourceforge.jp/', 'python-pcl' => 'http://zcologia.org/cartography/', 'libcgal' => 'http://www.cgal.org/', +'ossim' => 'http://www.ossim.org/', ); 1; From dan at campingfools.com Wed Mar 8 13:34:35 2006 From: dan at campingfools.com (dan@campingfools.com) Date: Wed Mar 8 13:48:19 2006 Subject: [DebianGIS-dev] Bug#355877: grass: Can't use the PNG monitor Message-ID: <55419.198.24.6.135.1141824875.squirrel@www.campingfools.com> Package: grass Version: 6.0.1-1+b1 Severity: important *** Please type your report below this line *** Can't start a PNG monitor (used to export images). Create by doing this: grass60 GRASS 6.0.1 > d.mon start=PNG I get this error back: /usr/lib/grass/driver/PNG: relocation error: /usr/lib/grass/driver/PNG: symbol _setjmp, version GLIBC_2.3.4 not defined in file libc.so.6 with link time reference Problem selecting PNG. Will try once more Socket is already in use or not accepting connections. Use d.mon to select a monitor I try d.mon select: GRASS 6.0.1 > d.mon select=PNG Socket is already in use or not accepting connections. Use d.mon to select a monitor -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: powerpc (ppc) Kernel: Linux 2.6.11.10-dan-4 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages grass depends on: ii fftw2 [fftw2-doubl 2.1.3-16 Library for computing Fast Fourier ii gnome-terminal [x- 2.8.2-2 The GNOME 2 terminal emulator appl ii konsole [x-termina 4:3.3.2-1sarge1 KDE X terminal emulator ii lesstif2 1:0.93.94-11.4 OSF/Motif 2.1 implementation relea ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an ii libfreetype6 2.1.7-2.4 FreeType 2 font engine, shared lib ii libgcc1 1:3.4.3-13 GCC support library pn libgdal1c2a Not found. ii libgrass 6.0.0-1 GRASS GIS development libraries ii libice6 4.3.0.dfsg.1-14sarge1 Inter-Client Exchange library ii libjasper-1.701-1 1.701.0-2 The JasPer JPEG-2000 runtime libra ii libjpeg62 6b-10 The Independent JPEG Group's JPEG pn libmysqlclient14 Not found. ii libncurses5 5.4-4 Shared libraries for terminal hand ii libpng12-0 1.2.8rel-1 PNG library - runtime pn libpq4 Not found. ii libreadline5 5.0-10 GNU readline and history libraries ii libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management pn libstdc++6 Not found. ii libtiff4 3.7.2-3 Tag Image File Format (TIFF) libra ii libx11-6 4.3.0.dfsg.1-14sarge1 X Window System protocol client li ii libxext6 4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte ii libxmu6 4.3.0.dfsg.1-14sarge1 X Window System miscellaneous util ii libxt6 4.3.0.dfsg.1-14sarge1 X Toolkit Intrinsics ii proj 4.4.9-1 Cartographic projection filter and ii tcl8.3 8.3.5-4 Tcl (the Tool Command Language) v8 ii tk8.3 8.3.5-4 Tk toolkit for Tcl and X11, v8.3 - ii unixodbc 2.2.4-11 ODBC tools libraries ii xlibmesa-gl [libgl 4.3.0.dfsg.1-14sarge1 Mesa 3D graphics library [XFree86] ii xlibmesa-glu [libg 4.3.0.dfsg.1-14sarge1 Mesa OpenGL utility library [XFree ii xterm [x-terminal- 4.3.0.dfsg.1-14sarge1 X terminal emulator ii zlib1g 1:1.2.2-4.sarge.2 compression library - runtime -- no debconf information From dan at campingfools.com Wed Mar 8 13:55:30 2006 From: dan at campingfools.com (dan@campingfools.com) Date: Wed Mar 8 14:03:22 2006 Subject: [DebianGIS-dev] Bug#355877: Acknowledgement (grass: Can't use the PNG monitor)] Message-ID: <10089.198.24.6.135.1141826130.squirrel@www.campingfools.com> I believe this is a simple case of installed package dependency problems. Please disregard the bug, sorry for the bother. -dan ---------------------------- Original Message ---------------------------- Subject: Bug#355877: Acknowledgement (grass: Can't use the PNG monitor) From: "Debian Bug Tracking System" Date: Wed, March 8, 2006 8:48 am To: dan@campingfools.com -------------------------------------------------------------------------- Thank you for the problem report you have sent regarding Debian. This is an automatically generated reply, to let you know your message has been received. It is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Debian GIS Project If you wish to submit further information on your problem, please send it to 355877@bugs.debian.org (and *not* to submit@bugs.debian.org). Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Debian bug tracking system administrator (administrator, Debian Bugs database) From frankie at debian.org Wed Mar 8 16:13:48 2006 From: frankie at debian.org (Francesco P. Lovergine) Date: Wed Mar 8 16:33:17 2006 Subject: [DebianGIS-dev] Bug#355900: Please add mapserver mapfile syntax to vim Message-ID: <20060308161348.GA8144@ba.issia.cnr.it> Package: vim Version: 1:6.4-007+1 Severity: wishlist Please add the following file to /usr/share/vim/vimcurrent/syntax dir: http://old-mapserver.gis.umn.edu/user_utilities/map.vim.txt It requires also adding something like: " Mapserver config file au BufNewFile,BufRead *.map setf map to filetype.vim Thanks -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686 Locale: LANG=it_IT@euro, LC_CTYPE=it_IT@euro (charmap=ISO-8859-15) Versions of packages vim depends on: ii libc6 2.3.6-3 GNU C Library: Shared libraries an ii libgpmg1 1.19.6-22 General Purpose Mouse - shared lib ii libncurses5 5.5-1 Shared libraries for terminal hand ii vim-common 1:6.4-007+1 Vi IMproved - Common files ii vim-runtime 1:6.4-007+1 Vi IMproved - Runtime files vim recommends no packages. -- no debconf information -- Francesco P. Lovergine From pabs-guest at haydn.debian.org Sat Mar 11 04:49:56 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Sat Mar 11 04:50:02 2006 Subject: [DebianGIS-dev] CVS Update: gdal/debian watch Message-ID: User: pabs-guest Date: 06/03/11 04:49:56 Modified: debian watch Log: Clean up watch files Revision Changes Path 1.2 +0 -4 gdal/debian/watch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/watch?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/watch?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/watch.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: watch =================================================================== RCS file: /cvsroot/pkg-grass/gdal/debian/watch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- watch 15 Dec 2005 02:23:49 -0000 1.1 +++ watch 11 Mar 2006 04:49:55 -0000 1.2 @@ -1,6 +1,2 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# Site Version Action version=2 ftp://ftp.remotesensing.org/pub/gdal/gdal-(.*)\.tar\.gz debian uupdate From pabs-guest at haydn.debian.org Sat Mar 11 04:49:56 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Sat Mar 11 04:50:04 2006 Subject: [DebianGIS-dev] CVS Update: gpx2shp/debian watch Message-ID: User: pabs-guest Date: 06/03/11 04:49:56 Modified: debian watch Log: Clean up watch files Revision Changes Path 1.2 +0 -5 gpx2shp/debian/watch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/watch?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/watch?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gpx2shp/debian/watch.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: watch =================================================================== RCS file: /cvsroot/pkg-grass/gpx2shp/debian/watch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- watch 26 Dec 2005 22:51:39 -0000 1.1 +++ watch 11 Mar 2006 04:49:56 -0000 1.2 @@ -1,7 +1,2 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# Site Directory Pattern Version Script version=2 - http://sourceforge.jp /projects/gpx2shp/files/ gpx2shp-(.*)\.tar\.gz debian uupdate From pabs-guest at haydn.debian.org Sat Mar 11 04:49:56 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Sat Mar 11 04:50:04 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian watch Message-ID: User: pabs-guest Date: 06/03/11 04:49:56 Modified: debian watch Log: Clean up watch files Revision Changes Path 1.2 +0 -4 postgis/debian/watch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/watch?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/watch?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/watch.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: watch =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/watch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- watch 26 Mar 2005 22:29:24 -0000 1.1 +++ watch 11 Mar 2006 04:49:56 -0000 1.2 @@ -1,6 +1,2 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# Site Directory Pattern Version Script version=2 http://postgis.refractions.net/postgis-(.*)\.tar\.gz debian uupdate From pabs-guest at haydn.debian.org Sat Mar 11 04:49:57 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Sat Mar 11 04:50:05 2006 Subject: [DebianGIS-dev] CVS Update: thuban/debian watch Message-ID: User: pabs-guest Date: 06/03/11 04:49:57 Modified: debian watch Log: Clean up watch files Revision Changes Path 1.2 +0 -4 thuban/debian/watch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/thuban/debian/watch?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/thuban/debian/watch?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/thuban/debian/watch.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: watch =================================================================== RCS file: /cvsroot/pkg-grass/thuban/debian/watch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- watch 1 Feb 2006 19:09:32 -0000 1.1 +++ watch 11 Mar 2006 04:49:56 -0000 1.2 @@ -1,6 +1,2 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# Site Version Action version=2 ftp://intevation.de/thuban/Thuban-(.*)\.tar\.gz debian uupdate From pere at haydn.debian.org Sat Mar 11 11:57:14 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 11:57:17 2006 Subject: [DebianGIS-dev] CVS Update: openjump - New directory Message-ID: User: pere Date: 06/03/11 11:57:14 openjump - New directory From pere at haydn.debian.org Sat Mar 11 11:57:25 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 11:57:26 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian - New directory Message-ID: User: pere Date: 06/03/11 11:57:25 openjump/debian - New directory From pere at haydn.debian.org Sat Mar 11 12:11:34 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 12:11:37 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian ant.properties changelog compat control copyright openjump.dirs openjump.menu rules Message-ID: User: pere Date: 06/03/11 12:11:34 Added: debian ant.properties changelog compat control copyright openjump.dirs openjump.menu rules Log: First draft for openjump. Revision Changes Path 1.1 openjump/debian/ant.properties CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/ant.properties?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/ant.properties?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: ant.properties =================================================================== javadoc-dir=api 1.1 openjump/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: changelog =================================================================== openjump (1.0-1) unstable; urgency=low * Initial Release. -- Petter Reinholdtsen Sun, 11 Jul 1999 12:41:22 +0200 1.1 openjump/debian/compat CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/compat?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/compat?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: compat =================================================================== 4 1.1 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control =================================================================== Source: openjump Section: devel Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant Standards-Version: 3.6.2 Package: openjump Section: devel Architecture: all Depends: kaffe | java1-runtime | java2-runtime Recommends: xlibs Description: Geographic Information System OpenJump is a extendable GIS toolbox written in Java. . Homepage: http://www.openjump.org/ 1.1 openjump/debian/copyright CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/copyright?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/copyright?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: copyright =================================================================== This package was debianized by Petter Reinholdtsen on Sat Mar 11 13:02:10 CET 2006. It was downloaded from Copyright: Copyright Vivid Solutions and the OpenJump developers. License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL'. 1.1 openjump/debian/openjump.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump.dirs =================================================================== usr/share/java usr/bin 1.1 openjump/debian/openjump.menu CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump.menu =================================================================== ?package(bsh):needs="text" section="Apps/Programming" \ title="BeanShell (text)" command="/usr/bin/bsh" ?package(bsh):needs="X11" section="Apps/Programming" \ title="BeanShell (windowed)" command="/usr/bin/xbsh" 1.1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: rules =================================================================== #!/usr/bin/make -f # debian/rules file for openjump (uses cdbs) export UPSTREAM_VERSION = $(shell head -1 debian/changelog | cut -f2 -d\( | cut -f1 -d\) | cut -f1 -d\-) include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/ant.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk JAVA_HOME := /usr/lib/kaffe ANT_HOME := /usr/share/ant DEB_ANT_ARGS := -f etc/build.xml DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar servlet-2.3 bsf javacc DEB_ANT_BUILD_TARGET := jar clean:: rm -rf build install/openjump:: # install -m 644 dist/bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh-$(UPSTREAM_VERSION).jar # ln -s bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh.jar install -m 755 debian/openjump debian/openjump/usr/bin/openjump From pere at haydn.debian.org Sat Mar 11 12:32:00 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 12:32:02 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian openjump-build.xml rules Message-ID: User: pere Date: 06/03/11 12:32:00 Modified: debian rules Added: debian openjump-build.xml Log: Copy the ant rule from openjump CVS, as it is missing in the source zipfile. Revision Changes Path 1.2 +1 -1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- rules 11 Mar 2006 12:11:34 -0000 1.1 +++ rules 11 Mar 2006 12:32:00 -0000 1.2 @@ -9,7 +9,7 @@ JAVA_HOME := /usr/lib/kaffe ANT_HOME := /usr/share/ant -DEB_ANT_ARGS := -f etc/build.xml +DEB_ANT_ARGS := -f debian/openjump-build.xml DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar servlet-2.3 bsf javacc DEB_ANT_BUILD_TARGET := jar 1.1 openjump/debian/openjump-build.xml CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-build.xml?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-build.xml?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump-build.xml =================================================================== Manifest-Version: 1.0 Sealed: false ${Name}-Version: ${version} Build-Date: ${TODAY} Build-Time: ${TSTAMP} From pere at haydn.debian.org Sat Mar 11 12:38:12 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 12:38:13 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian openjump-build.xml Message-ID: User: pere Date: 06/03/11 12:38:12 Modified: debian openjump-build.xml Log: Make sure the lib/ directory is created. Revision Changes Path 1.2 +1 -0 openjump/debian/openjump-build.xml CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-build.xml?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-build.xml?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-build.xml.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: openjump-build.xml =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/openjump-build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- openjump-build.xml 11 Mar 2006 12:32:00 -0000 1.1 +++ openjump-build.xml 11 Mar 2006 12:38:11 -0000 1.2 @@ -108,6 +108,7 @@ + From pere at haydn.debian.org Sat Mar 11 12:44:42 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 12:44:44 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian rules Message-ID: User: pere Date: 06/03/11 12:44:42 Modified: debian rules Log: Try to build with jikes. Revision Changes Path 1.3 +3 -2 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- rules 11 Mar 2006 12:32:00 -0000 1.2 +++ rules 11 Mar 2006 12:44:41 -0000 1.3 @@ -9,13 +9,14 @@ JAVA_HOME := /usr/lib/kaffe ANT_HOME := /usr/share/ant +DEB_ANT_COMPILER := jikes DEB_ANT_ARGS := -f debian/openjump-build.xml -DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar servlet-2.3 bsf javacc +DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar DEB_ANT_BUILD_TARGET := jar clean:: - rm -rf build + rm -rf build lib install/openjump:: # install -m 644 dist/bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh-$(UPSTREAM_VERSION).jar From pere at haydn.debian.org Sat Mar 11 12:52:38 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 12:52:40 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian control rules Message-ID: User: pere Date: 06/03/11 12:52:38 Modified: debian control rules Log: Add jts and log4j as build dependencies. Revision Changes Path 1.2 +1 -1 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- control 11 Mar 2006 12:11:34 -0000 1.1 +++ control 11 Mar 2006 12:52:38 -0000 1.2 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen -Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant +Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant, libjts-java, liblog4j1.2-java Standards-Version: 3.6.2 Package: openjump 1.4 +1 -1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- rules 11 Mar 2006 12:44:41 -0000 1.3 +++ rules 11 Mar 2006 12:52:38 -0000 1.4 @@ -12,7 +12,7 @@ DEB_ANT_COMPILER := jikes DEB_ANT_ARGS := -f debian/openjump-build.xml -DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar +DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 DEB_ANT_BUILD_TARGET := jar clean:: From pere at haydn.debian.org Sat Mar 11 13:11:09 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 13:11:11 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian rules control Message-ID: User: pere Date: 06/03/11 13:11:09 Modified: debian rules control Log: Switch to ecj and add lots of build dependencies. Revision Changes Path 1.5 +9 -4 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- rules 11 Mar 2006 12:52:38 -0000 1.4 +++ rules 11 Mar 2006 13:11:09 -0000 1.5 @@ -9,15 +9,20 @@ JAVA_HOME := /usr/lib/kaffe ANT_HOME := /usr/share/ant -DEB_ANT_COMPILER := jikes -DEB_ANT_ARGS := -f debian/openjump-build.xml -DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 +DEB_ANT_BUILDFILE := debian/openjump-build.xml DEB_ANT_BUILD_TARGET := jar +DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 xercesImpl jdom1 jama junit + +# Jikes +#DEB_ANT_COMPILER := jikes +# ECJ +DEB_ANT_COMPILER := org.eclipse.jdt.core.JDTCompilerAdapter +DEB_JARS := $(DEB_JARS) ecj clean:: rm -rf build lib - + install/openjump:: # install -m 644 dist/bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh-$(UPSTREAM_VERSION).jar # ln -s bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh.jar 1.3 +1 -1 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- control 11 Mar 2006 12:52:38 -0000 1.2 +++ control 11 Mar 2006 13:11:09 -0000 1.3 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen -Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant, libjts-java, liblog4j1.2-java +Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom1-java, libjama-java, junit Standards-Version: 3.6.2 Package: openjump From pere at haydn.debian.org Sat Mar 11 14:14:36 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 14:14:39 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian rules control Message-ID: User: pere Date: 06/03/11 14:14:36 Modified: debian rules control Log: More dependencies. Revision Changes Path 1.6 +2 -1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- rules 11 Mar 2006 13:11:09 -0000 1.5 +++ rules 11 Mar 2006 14:14:36 -0000 1.6 @@ -12,7 +12,8 @@ DEB_ANT_BUILDFILE := debian/openjump-build.xml DEB_ANT_BUILD_TARGET := jar -DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 xercesImpl jdom1 jama junit +DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 \ + xercesImpl jdom0 jama junit bsh batik # Jikes #DEB_ANT_COMPILER := jikes 1.4 +1 -1 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- control 11 Mar 2006 13:11:09 -0000 1.3 +++ control 11 Mar 2006 14:14:36 -0000 1.4 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen -Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom1-java, libjama-java, junit +Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java Standards-Version: 3.6.2 Package: openjump From pere at haydn.debian.org Sat Mar 11 14:23:32 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 14:23:35 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian openjump.menu Message-ID: User: pere Date: 06/03/11 14:23:32 Modified: debian openjump.menu Log: Correct menu. Revision Changes Path 1.2 +2 -4 openjump/debian/openjump.menu CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: openjump.menu =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/openjump.menu,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- openjump.menu 11 Mar 2006 12:11:34 -0000 1.1 +++ openjump.menu 11 Mar 2006 14:23:32 -0000 1.2 @@ -1,4 +1,2 @@ -?package(bsh):needs="text" section="Apps/Programming" \ - title="BeanShell (text)" command="/usr/bin/bsh" -?package(bsh):needs="X11" section="Apps/Programming" \ - title="BeanShell (windowed)" command="/usr/bin/xbsh" +?package(openjump):needs="X11" section="Apps/Science" \ + title="OpenJump" command="/usr/bin/openjump" From pere at haydn.debian.org Sat Mar 11 14:52:38 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 14:52:40 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/11 14:52:38 Modified: . dgis-packages.inc Log: Add the roadmap application. Revision Changes Path 1.11 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.11&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.11&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.11&r2=1.10&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- dgis-packages.inc 8 Mar 2006 12:55:26 -0000 1.10 +++ dgis-packages.inc 11 Mar 2006 14:52:37 -0000 1.11 @@ -49,6 +49,7 @@ 'python-pcl' => 'http://zcologia.org/cartography/', 'libcgal' => 'http://www.cgal.org/', 'ossim' => 'http://www.ossim.org/', +'roadmap' => 'http://roadmap.digitalomaha.net/', ); 1; From pere at haydn.debian.org Sat Mar 11 15:04:10 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 15:04:13 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian rules control Message-ID: User: pere Date: 06/03/11 15:04:10 Modified: debian rules control Log: Change runtime to gcj. Revision Changes Path 1.7 +1 -1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.7&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.7&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.7&r2=1.6&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- rules 11 Mar 2006 14:14:36 -0000 1.6 +++ rules 11 Mar 2006 15:04:10 -0000 1.7 @@ -7,7 +7,7 @@ include /usr/share/cdbs/1/class/ant.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk -JAVA_HOME := /usr/lib/kaffe +JAVA_HOME := /usr/lib/jvm/java-gcj ANT_HOME := /usr/share/ant DEB_ANT_BUILDFILE := debian/openjump-build.xml 1.5 +1 -1 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- control 11 Mar 2006 14:14:36 -0000 1.4 +++ control 11 Mar 2006 15:04:10 -0000 1.5 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen -Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-1), ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java +Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, java-gcj-compat-dev, ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java Standards-Version: 3.6.2 Package: openjump From pere at haydn.debian.org Sat Mar 11 15:04:57 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 15:05:01 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian rules Message-ID: User: pere Date: 06/03/11 15:04:57 Modified: debian rules Log: Document that buoy is missing on the jars list. Revision Changes Path 1.8 +1 -1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.8&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.8&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.8&r2=1.7&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- rules 11 Mar 2006 15:04:10 -0000 1.7 +++ rules 11 Mar 2006 15:04:57 -0000 1.8 @@ -13,7 +13,7 @@ DEB_ANT_BUILDFILE := debian/openjump-build.xml DEB_ANT_BUILD_TARGET := jar DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 \ - xercesImpl jdom0 jama junit bsh batik + xercesImpl jdom0 jama junit bsh batik # buoy # Jikes #DEB_ANT_COMPILER := jikes From pere at haydn.debian.org Sat Mar 11 15:25:17 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 15:25:22 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc dgis-status.pl Message-ID: User: pere Date: 06/03/11 15:25:17 Modified: . dgis-packages.inc dgis-status.pl Log: Add support for wnpp link. Add a few wnpp references. Sort list alphabeticaly. Revision Changes Path 1.12 +45 -45 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.12&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.12&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.12&r2=1.11&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- dgis-packages.inc 11 Mar 2006 14:52:37 -0000 1.11 +++ dgis-packages.inc 11 Mar 2006 15:25:17 -0000 1.12 @@ -5,51 +5,51 @@ # our %dgislist = ( -'grass' => 'http://grass.itc.it/' , -'jama' => 'http://math.nist.gov/javanumerics/jama/', -'jts' => 'http://www.vividsolutions.com/jts/jtshome.htm', -'postgis' => 'http://postgis.refractions.net/', -'mapserver' => 'http://mapserver.gis.umn.edu/', -'qgis' => 'http://qgis.org/', -'avce00' => 'http://avce00.maptools.org/avce00/', -'libgdal-grass' => 'http://www.gdal.org/', -'libterralib' => 'http://cvs.dpi.inpe.br/', -'gdal' => 'http://www.gdal.org/', -'proj' => 'http://proj.maptools.org/', -'earth3d' => 'http://www.earth3d.org/', -'gmt' => 'http://gmt.soest.hawaii.edu/', -'geos' => 'http://geos.refractions.net/', -'openev' => 'http://openev.sourceforge.net/', -'ogdi' => 'http://ogdi.sourceforge.net/', -'primagis' => 'http://primagis.fi/', -'opencv' => 'http://sourceforge.net/projects/opencvlibrary/', -'gpsbabel' => 'http://gpsbabel.sourceforge.net/', -'gpsdrive' => 'http://www.gpsdrive.cc/', -'gpsman' => 'http://www.ncc.up.pt/gpsman/', -'gpstrans' => 'http://gpstrans.sourceforge.net/', -'grace' => 'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/', -'grace6' => 'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/', -'gts' => 'http://gts.sourceforge.net/', -'kflog' => 'http://www.kflog.org/kflog/', -'ircmarkers' => 'http://www.df7cb.de/projects/ircmarkers/', -'drawmap' => 'http://www.ttc-cmc.net/~fme/drawmap.html', -'batik' => 'http://xmlgraphics.apache.org/batik/', -'jgrass' => 'http://www.hydrologis.com/html/jgrass/jgrass_en.html', -'deegree' => 'http://deegree.sourceforge.net/', -'gpsd' => 'http://gpsd.berlios.de/', -'demeter' => 'http://www.terrainengine.com/index.html', -'demtools' => 'http://www.arq.net/~kasten/demtools/', -'musmap' => 'http://musmap.sourceforge.net/', -'e00compr' => 'http://avce00.maptools.org/e00compr/index.html', -'openscenegraph' => 'http://www.openscenegraph.org/', -'openjump' => 'http://jump-pilot.sourceforge.net/', -'thuban' => 'http://thuban.intevation.org/', -'paraview' => 'http://www.paraview.org/HTML/Index.html', -'gpx2shp' => 'http://gpx2shp.sourceforge.jp/', -'python-pcl' => 'http://zcologia.org/cartography/', -'libcgal' => 'http://www.cgal.org/', -'ossim' => 'http://www.ossim.org/', -'roadmap' => 'http://roadmap.digitalomaha.net/', +'avce00' => {url=>'http://avce00.maptools.org/avce00/'}, +'batik' => {url=>'http://xmlgraphics.apache.org/batik/'}, +'deegree' => {url=>'http://deegree.sourceforge.net/'}, +'demeter' => {url=>'http://www.terrainengine.com/index.html'}, +'demtools' => {url=>'http://www.arq.net/~kasten/demtools/'}, +'drawmap' => {url=>'http://www.ttc-cmc.net/~fme/drawmap.html'}, +'e00compr' => {url=>'http://avce00.maptools.org/e00compr/index.html'}, +'earth3d' => {url=>'http://www.earth3d.org/'}, +'gdal' => {url=>'http://www.gdal.org/'}, +'geos' => {url=>'http://geos.refractions.net/'}, +'gmt' => {url=>'http://gmt.soest.hawaii.edu/'}, +'gpsbabel' => {url=>'http://gpsbabel.sourceforge.net/'}, +'gpsd' => {url=>'http://gpsd.berlios.de/'}, +'gpsdrive' => {url=>'http://www.gpsdrive.cc/'}, +'gpsman' => {url=>'http://www.ncc.up.pt/gpsman/'}, +'gpstrans' => {url=>'http://gpstrans.sourceforge.net/'}, +'gpx2shp' => {url=>'http://gpx2shp.sourceforge.jp/'}, +'grace' => {url=>'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/'}, +'grace6' => {url=>'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/'}, +'grass' => {url=>'http://grass.itc.it/'}, +'gts' => {url=>'http://gts.sourceforge.net/'}, +'ircmarkers' => {url=>'http://www.df7cb.de/projects/ircmarkers/'}, +'jama' => {url=>'http://math.nist.gov/javanumerics/jama/'}, +'jgrass' => {url=>'http://www.hydrologis.com/html/jgrass/jgrass_en.html'}, +'jts' => {url=>'http://www.vividsolutions.com/jts/jtshome.htm'}, +'kflog' => {url=>'http://www.kflog.org/kflog/'}, +'libcgal' => {url=>'http://www.cgal.org/'}, +'libgdal-grass' => {url=>'http://www.gdal.org/'}, +'libterralib' => {url=>'http://cvs.dpi.inpe.br/'}, +'mapserver' => {url=>'http://mapserver.gis.umn.edu/'}, +'musmap' => {url=>'http://musmap.sourceforge.net/',wnpp=>'344345'}, +'ogdi' => {url=>'http://ogdi.sourceforge.net/'}, +'opencv' => {url=>'http://sourceforge.net/projects/opencvlibrary/'}, +'openev' => {url=>'http://openev.sourceforge.net/',wnpp=>'291562'}, +'openjump' => {url=>'http://jump-pilot.sourceforge.net/'}, +'openscenegraph' => {url=>'http://www.openscenegraph.org/'}, +'ossim' => {url=>'http://www.ossim.org/'}, +'paraview' => {url=>'http://www.paraview.org/HTML/Index.html',wnpp=>'304334'}, +'postgis' => {url=>'http://postgis.refractions.net/'}, +'primagis' => {url=>'http://primagis.fi/'}, +'proj' => {url=>'http://proj.maptools.org/'}, +'python-pcl' => {url=>'http://zcologia.org/cartography/'}, +'qgis' => {url=>'http://qgis.org/'}, +'roadmap' => {url=>'http://roadmap.digitalomaha.net/',wnpp=>'276135'}, +'thuban' => {url=>'http://thuban.intevation.org/'}, ); 1; 1.8 +6 -3 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.8&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.8&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.8&r2=1.7&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- dgis-status.pl 8 Mar 2006 01:29:56 -0000 1.7 +++ dgis-status.pl 11 Mar 2006 15:25:17 -0000 1.8 @@ -180,13 +180,16 @@ } my $p_url = "$p"; my $tr_class = "class='green'"; + my $pkg_url = $main::dgislist{$p}->{url}; if ( $dgishash{$p}->{stable} ne " " || $dgishash{$p}->{unstable} ne " " ) { $p_url .= " (PTS,"; } else { - $p_url .= " (" if $main::dgislist{$p}; + $p_url .= " (" if $pkg_url; + my $pkg_wnpp = $main::dgislist{$p}->{wnpp}; + $p_url .= "WNPP," if $pkg_wnpp; } - $p_url .= "UP)" if $main::dgislist{$p}; + $p_url .= "UP)" if $pkg_url; if ( $dgishash{$p}->{unstable} ne " " && $dgishash{$p}->{stable} eq " " ) { $tr_class = "class='green'"; } From pere at haydn.debian.org Sat Mar 11 15:27:21 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 15:27:23 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/11 15:27:21 Modified: . dgis-packages.inc Log: Add buoy, a dependency of openjump. Revision Changes Path 1.13 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.13&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.13&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.13&r2=1.12&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- dgis-packages.inc 11 Mar 2006 15:25:17 -0000 1.12 +++ dgis-packages.inc 11 Mar 2006 15:27:21 -0000 1.13 @@ -7,6 +7,7 @@ our %dgislist = ( 'avce00' => {url=>'http://avce00.maptools.org/avce00/'}, 'batik' => {url=>'http://xmlgraphics.apache.org/batik/'}, +'buoy' => {url=>'http://buoy.sourceforge.net/',wnpp=>'356355'}, 'deegree' => {url=>'http://deegree.sourceforge.net/'}, 'demeter' => {url=>'http://www.terrainengine.com/index.html'}, 'demtools' => {url=>'http://www.arq.net/~kasten/demtools/'}, From pere at haydn.debian.org Sat Mar 11 15:31:25 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 15:31:27 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: pere Date: 06/03/11 15:31:25 Modified: . dgis-status.pl Log: Check debian/contrib for packages as well. Revision Changes Path 1.9 +3 -1 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.9&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.9&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.9&r2=1.8&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- dgis-status.pl 11 Mar 2006 15:25:17 -0000 1.8 +++ dgis-status.pl 11 Mar 2006 15:31:25 -0000 1.9 @@ -45,7 +45,9 @@ 'dgis-stable' => "http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/main/source/", 'dgis-unstable' => "http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/main/source/", 'stable' => "http://merkel.debian.org/debian/dists/stable/main/source/", + 'stable' => "http://merkel.debian.org/debian/dists/stable/contrib/source/", 'unstable' => "http://merkel.debian.org/debian/dists/unstable/main/source/", + 'unstable' => "http://merkel.debian.org/debian/dists/unstable/contrib/source/", ); my $sources = "Sources"; From pere at haydn.debian.org Sat Mar 11 16:21:23 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 16:21:27 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/11 16:21:23 Modified: . dgis-packages.inc Log: Jump and OpenJump seem to be developed in parallel. Revision Changes Path 1.14 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.14&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.14&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.14&r2=1.13&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- dgis-packages.inc 11 Mar 2006 15:27:21 -0000 1.13 +++ dgis-packages.inc 11 Mar 2006 16:21:23 -0000 1.14 @@ -31,6 +31,7 @@ 'jama' => {url=>'http://math.nist.gov/javanumerics/jama/'}, 'jgrass' => {url=>'http://www.hydrologis.com/html/jgrass/jgrass_en.html'}, 'jts' => {url=>'http://www.vividsolutions.com/jts/jtshome.htm'}, +'jump' => {url=>'http://vividsolutions.com/jump/'}, 'kflog' => {url=>'http://www.kflog.org/kflog/'}, 'libcgal' => {url=>'http://www.cgal.org/'}, 'libgdal-grass' => {url=>'http://www.gdal.org/'}, From pere at haydn.debian.org Sat Mar 11 17:05:40 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 17:05:43 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian/patches - New directory Message-ID: User: pere Date: 06/03/11 17:05:40 openjump/debian/patches - New directory From pere at haydn.debian.org Sat Mar 11 17:06:21 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 17:06:24 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian/patches 01_unused_sunapi.diff Message-ID: User: pere Date: 06/03/11 17:06:21 Added: debian/patches 01_unused_sunapi.diff Log: Add patch to avoid sun private API. Revision Changes Path 1.1 openjump/debian/patches/01_unused_sunapi.diff CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 01_unused_sunapi.diff =================================================================== --- openjump-1.0.orig/src/com/vividsolutions/jump/workbench/datasource/SaveDatasetAsPlugIn.java +++ openjump-1.0/src/com/vividsolutions/jump/workbench/datasource/SaveDatasetAsPlugIn.java @@ -35,8 +35,6 @@ import java.awt.event.WindowEvent; import java.util.Collection; -import sun.security.action.GetLongAction; - import com.vividsolutions.jts.util.Assert; import com.vividsolutions.jump.I18N; --- openjump-1.0.orig/src/com/vividsolutions/jump/workbench/JUMPWorkbenchContext.java +++ openjump-1.0/src/com/vividsolutions/jump/workbench/JUMPWorkbenchContext.java @@ -35,8 +35,6 @@ import javax.swing.JInternalFrame; -import sun.security.action.GetBooleanAction; - import com.vividsolutions.jump.util.Blackboard; import com.vividsolutions.jump.workbench.driver.DriverManager; import com.vividsolutions.jump.workbench.model.LayerManager; From pere at haydn.debian.org Sat Mar 11 17:41:52 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 17:41:53 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: pere Date: 06/03/11 17:41:52 Modified: . dgis-status.pl Log: Make sure to use separate file names for all downloaded package files. Revision Changes Path 1.10 +3 -3 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.10&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.10&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.10&r2=1.9&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- dgis-status.pl 11 Mar 2006 15:31:25 -0000 1.9 +++ dgis-status.pl 11 Mar 2006 17:41:52 -0000 1.10 @@ -45,9 +45,9 @@ 'dgis-stable' => "http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/main/source/", 'dgis-unstable' => "http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/main/source/", 'stable' => "http://merkel.debian.org/debian/dists/stable/main/source/", - 'stable' => "http://merkel.debian.org/debian/dists/stable/contrib/source/", + 'stable-contrib'=> "http://merkel.debian.org/debian/dists/stable/contrib/source/", 'unstable' => "http://merkel.debian.org/debian/dists/unstable/main/source/", - 'unstable' => "http://merkel.debian.org/debian/dists/unstable/contrib/source/", + 'unstable-contrib'=> "http://merkel.debian.org/debian/dists/unstable/contrib/source/", ); my $sources = "Sources"; From frankie at haydn.debian.org Sat Mar 11 17:43:12 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Sat Mar 11 17:43:14 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/11 17:43:12 Modified: . dgis-packages.inc Log: Added a couple of pkgs Revision Changes Path 1.15 +2 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.15&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.15&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.15&r2=1.14&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- dgis-packages.inc 11 Mar 2006 16:21:23 -0000 1.14 +++ dgis-packages.inc 11 Mar 2006 17:43:12 -0000 1.15 @@ -52,6 +52,8 @@ 'qgis' => {url=>'http://qgis.org/'}, 'roadmap' => {url=>'http://roadmap.digitalomaha.net/',wnpp=>'276135'}, 'thuban' => {url=>'http://thuban.intevation.org/'}, +'udig' => {url=>'http://udig.refractions.net/confluence/display/UDIG/Home'}, +'geoip' => {url=>'http://www.maxmind.com/app/c'}, ); 1; From frankie at haydn.debian.org Sat Mar 11 18:33:15 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Sat Mar 11 18:33:18 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: frankie Date: 06/03/11 18:33:15 Modified: . dgis-status.pl Log: Now manages contrib and other distro subdir correctly. Revision Changes Path 1.11 +11 -9 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.11&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.11&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.11&r2=1.10&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- dgis-status.pl 11 Mar 2006 17:41:52 -0000 1.10 +++ dgis-status.pl 11 Mar 2006 18:33:15 -0000 1.11 @@ -42,12 +42,10 @@ my %wget = ( 'quiet' => 'wget --passive-ftp --quiet -O ','verbose' => 'wget --passive-ftp -O ' ); my %gunzip = ( 'quiet' => 'gunzip --force --quiet ', 'verbose' => 'gunzip --force' ); my %paths = ( - 'dgis-stable' => "http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/main/source/", - 'dgis-unstable' => "http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/main/source/", - 'stable' => "http://merkel.debian.org/debian/dists/stable/main/source/", - 'stable-contrib'=> "http://merkel.debian.org/debian/dists/stable/contrib/source/", - 'unstable' => "http://merkel.debian.org/debian/dists/unstable/main/source/", - 'unstable-contrib'=> "http://merkel.debian.org/debian/dists/unstable/contrib/source/", + 'dgis-stable' => ["http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/main/source/"], + 'dgis-unstable' => ["http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/main/source/"], + 'stable' => ["http://merkel.debian.org/debian/dists/stable/main/source/","http://merkel.debian.org/debian/dists/stable/contrib/source/"], + 'unstable' => ["http://merkel.debian.org/debian/dists/unstable/main/source/","http://merkel.debian.org/debian/dists/unstable/contrib/source/"], ); my $sources = "Sources"; @@ -71,8 +69,12 @@ unless ($opt_o) { # Skip wget if -o option "only difference" for my $s ( keys %paths ) { - system ("$wget{$verbose} $s.$sourcesgz $paths{$s}/$sourcesgz"); - system ("$gunzip{$verbose} $s.$sourcesgz") if -f "$s.$sourcesgz"; + unlink $s.$sources if -f $s.$sources; + for my $i ( 0 .. $#{$paths{$s}} ) { + system ("$wget{$verbose} $s.$sourcesgz $paths{$s}->[$i]/$sourcesgz"); + system ("$gunzip{$verbose} -c $s.$sourcesgz >> $s.$sources") if -f "$s.$sourcesgz"; + unlink "$s.$sourcesgz" if -f "$s.$sourcesgz"; + } } } From frankie at haydn.debian.org Sat Mar 11 18:45:56 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Sat Mar 11 18:45:58 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: frankie Date: 06/03/11 18:45:56 Modified: . dgis-status.pl Log: Missing " added... Revision Changes Path 1.12 +2 -2 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.12&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.12&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.12&r2=1.11&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- dgis-status.pl 11 Mar 2006 18:33:15 -0000 1.11 +++ dgis-status.pl 11 Mar 2006 18:45:56 -0000 1.12 @@ -69,7 +69,7 @@ unless ($opt_o) { # Skip wget if -o option "only difference" for my $s ( keys %paths ) { - unlink $s.$sources if -f $s.$sources; + unlink "$s.$sources" if -f "$s.$sources"; for my $i ( 0 .. $#{$paths{$s}} ) { system ("$wget{$verbose} $s.$sourcesgz $paths{$s}->[$i]/$sourcesgz"); system ("$gunzip{$verbose} -c $s.$sourcesgz >> $s.$sources") if -f "$s.$sourcesgz"; From pere at haydn.debian.org Sat Mar 11 20:32:47 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 20:32:51 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian log4j.xml Message-ID: User: pere Date: 06/03/11 20:32:47 Added: debian log4j.xml Log: Copy file from the binary distro, as it is missing in the source zipfile. Revision Changes Path 1.1 openjump/debian/log4j.xml CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/log4j.xml?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/log4j.xml?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: log4j.xml =================================================================== From pere at haydn.debian.org Sat Mar 11 20:36:28 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 20:36:32 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian ant.properties changelog control openjump-wrapper openjump.dirs rules Message-ID: User: pere Date: 06/03/11 20:36:28 Modified: debian ant.properties changelog control openjump.dirs rules Added: debian openjump-wrapper Log: Get the build working (except missing buoy). Revision Changes Path 1.2 +1 -0 openjump/debian/ant.properties CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/ant.properties?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/ant.properties?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/ant.properties.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: ant.properties =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/ant.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ant.properties 11 Mar 2006 12:11:34 -0000 1.1 +++ ant.properties 11 Mar 2006 20:36:08 -0000 1.2 @@ -1 +1,2 @@ javadoc-dir=api +build.sysclasspath=only 1.2 +3 -0 openjump/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/changelog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- changelog 11 Mar 2006 12:11:34 -0000 1.1 +++ changelog 11 Mar 2006 20:36:09 -0000 1.2 @@ -1,6 +1,9 @@ openjump (1.0-1) unstable; urgency=low * Initial Release. + * Add 01_unused_sunapi.diff to avoid importing unused private SUN API. + * Add 02_imageio.patch to rewrite the JPEG reading code to use the + publicly documented API instead of the private SUN API. -- Petter Reinholdtsen Sun, 11 Jul 1999 12:41:22 +0200 1.6 +2 -2 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- control 11 Mar 2006 15:04:10 -0000 1.5 +++ control 11 Mar 2006 20:36:09 -0000 1.6 @@ -3,13 +3,13 @@ Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen -Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, java-gcj-compat-dev, ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java +Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe, ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java Standards-Version: 3.6.2 Package: openjump Section: devel Architecture: all -Depends: kaffe | java1-runtime | java2-runtime +Depends: kaffe | java1-runtime | java2-runtime, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java Recommends: xlibs Description: Geographic Information System OpenJump is a extendable GIS toolbox written in Java. 1.2 +1 -0 openjump/debian/openjump.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.dirs?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.dirs?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.dirs.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: openjump.dirs =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/openjump.dirs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- openjump.dirs 11 Mar 2006 12:11:34 -0000 1.1 +++ openjump.dirs 11 Mar 2006 20:36:09 -0000 1.2 @@ -1,2 +1,3 @@ usr/share/java +usr/share/openjump usr/bin 1.9 +13 -4 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.9&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.9&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.9&r2=1.8&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- rules 11 Mar 2006 15:04:57 -0000 1.8 +++ rules 11 Mar 2006 20:36:28 -0000 1.9 @@ -7,7 +7,7 @@ include /usr/share/cdbs/1/class/ant.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk -JAVA_HOME := /usr/lib/jvm/java-gcj +JAVA_HOME := /usr/lib/kaffe ANT_HOME := /usr/share/ant DEB_ANT_BUILDFILE := debian/openjump-build.xml @@ -15,6 +15,10 @@ DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 \ xercesImpl jdom0 jama junit bsh batik # buoy +# Make sure the jars are built using the upstream version number +# instead of the source release date. +DEB_ANT_ARGS += -Dversion=$(UPSTREAM_VERSION) + # Jikes #DEB_ANT_COMPILER := jikes # ECJ @@ -25,6 +29,11 @@ rm -rf build lib install/openjump:: -# install -m 644 dist/bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh-$(UPSTREAM_VERSION).jar -# ln -s bsh-$(UPSTREAM_VERSION).jar debian/bsh/usr/share/java/bsh.jar - install -m 755 debian/openjump debian/openjump/usr/bin/openjump + install -m644 build/jump-api-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-api-$(UPSTREAM_VERSION).jar + ln -s jump-api-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-api.jar + + install -m644 build/jump-workbench-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-workbench-$(UPSTREAM_VERSION).jar + ln -s jump-workbench-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-workbench.jar + + install -m755 debian/openjump-wrapper debian/openjump/usr/bin/openjump + install -m644 debian/log4j.xml debian/openjump/usr/share/openjump/ 1.1 openjump/debian/openjump-wrapper CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-wrapper?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump-wrapper?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump-wrapper =================================================================== #!/bin/sh LIBDIR=/usr/share/openjump PLUGINDIR=$LIBDIR/ext PROPFILE=$LIBDIR/workbench-properties.xml LOG4JFILE=$LIBDIR/log4j.xml if [ -z "$JAVA" ] ; then JAVA=java fi # List of java packages from /usr/share/java to load JARS="bsh buoy jama jdom0 jts xercesImpl xml-apis log4j-1.2 batik-all \ jump-api jump-workbench" CLASSPATH= for jar in $JARS; do if [ -f /usr/share/java/$jar.jar ] ; then CLASSPATH="$CLASSPATH:/usr/share/java/$jar.jar" else echo error: missing /usr/share/java/$jar.jar fi done exec $JAVA \ -Dswing.defaultlaf=javax.swing.plaf.metal.MetalLookAndFeel \ -Dlog4j.configuration=file:$LOG4JFILE \ -Xms256M \ -Xmx256M \ -cp $CLASSPATH \ com.vividsolutions.jump.workbench.JUMPWorkbench \ -properties $PROPFILE \ -plug-in-directory $PLUGINDIR From pere at haydn.debian.org Sat Mar 11 20:36:29 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 20:36:32 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian/patches 02_imageio.patch Message-ID: User: pere Date: 06/03/11 20:36:29 Added: debian/patches 02_imageio.patch Log: Get the build working (except missing buoy). Revision Changes Path 1.1 openjump/debian/patches/02_imageio.patch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 02_imageio.patch =================================================================== --- openjump-1.0.orig/src/org/openjump/io/SIDLayer.java +++ openjump-1.0/src/org/openjump/io/SIDLayer.java @@ -52,11 +52,12 @@ import java.util.Iterator; import java.util.List; +import javax.imageio.ImageIO; +import javax.imageio.ImageReader; +import javax.imageio.stream.FileImageInputStream; + import org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn; -import com.sun.image.codec.jpeg.JPEGCodec; -import com.sun.image.codec.jpeg.JPEGDecodeParam; -import com.sun.image.codec.jpeg.JPEGImageDecoder; import com.vividsolutions.jts.geom.Envelope; import com.vividsolutions.jts.util.Assert; import com.vividsolutions.jump.I18N; @@ -291,10 +292,11 @@ if (((jpgFile.exists()) && (jpgFile.isFile()) && (jpgFile.canRead()))) { - FileInputStream in = new FileInputStream(jpgFilename); - JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in); - JPEGDecodeParam dp = decoder.getJPEGDecodeParam(); - BufferedImage image = decoder.decodeAsBufferedImage(); + FileImageInputStream in = new FileImageInputStream(new File(jpgFilename)); + ImageReader decoder = (ImageReader) ImageIO.getImageReadersByFormatName("JPEG"); + decoder.setInput(in); + BufferedImage image = decoder.read(0); + decoder.dispose(); in.close(); if (!sid_colorspace.equals("GREYSCALE")) From pere at haydn.debian.org Sat Mar 11 22:01:42 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 22:01:47 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian/patches 02_imageio.patch Message-ID: User: pere Date: 06/03/11 22:01:42 Modified: debian/patches 02_imageio.patch Log: Fix typo and clean up indentation. Revision Changes Path 1.2 +3 -3 openjump/debian/patches/02_imageio.patch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: 02_imageio.patch =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/patches/02_imageio.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- 02_imageio.patch 11 Mar 2006 20:36:28 -0000 1.1 +++ 02_imageio.patch 11 Mar 2006 22:01:42 -0000 1.2 @@ -24,9 +24,9 @@ - JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in); - JPEGDecodeParam dp = decoder.getJPEGDecodeParam(); - BufferedImage image = decoder.decodeAsBufferedImage(); -+ FileImageInputStream in = new FileImageInputStream(new File(jpgFilename)); -+ ImageReader decoder = (ImageReader) ImageIO.getImageReadersByFormatName("JPEG"); -+ decoder.setInput(in); ++ FileImageInputStream in = new FileImageInputStream(new File(jpgFilename)); ++ ImageReader decoder = (ImageReader) ImageIO.getImageReadersByFormatName("JPEG").next(); ++ decoder.setInput(in); + BufferedImage image = decoder.read(0); + decoder.dispose(); in.close(); From pere at haydn.debian.org Sat Mar 11 22:27:47 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 22:27:49 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian/patches 01_unused_sunapi.diff 02_imageio.patch Message-ID: User: pere Date: 06/03/11 22:27:47 Modified: debian/patches 01_unused_sunapi.diff 02_imageio.patch Log: Add some patch documentation. Revision Changes Path 1.2 +5 -0 openjump/debian/patches/01_unused_sunapi.diff CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: 01_unused_sunapi.diff =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- 01_unused_sunapi.diff 11 Mar 2006 17:06:21 -0000 1.1 +++ 01_unused_sunapi.diff 11 Mar 2006 22:27:47 -0000 1.2 @@ -1,3 +1,8 @@ +Avoid importing SUNs private API. These imports are unused, so there +is no rewrites needed. + +Patch was sent uptream by pere@hungry.com 2006-03-11. + --- openjump-1.0.orig/src/com/vividsolutions/jump/workbench/datasource/SaveDatasetAsPlugIn.java +++ openjump-1.0/src/com/vividsolutions/jump/workbench/datasource/SaveDatasetAsPlugIn.java @@ -35,8 +35,6 @@ 1.3 +5 -0 openjump/debian/patches/02_imageio.patch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: 02_imageio.patch =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/patches/02_imageio.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- 02_imageio.patch 11 Mar 2006 22:01:42 -0000 1.2 +++ 02_imageio.patch 11 Mar 2006 22:27:47 -0000 1.3 @@ -1,3 +1,8 @@ +Avoid using SUNs private API. Rewritten to use the public API +available since Java 1.4 instead. Rewrite was done by Wolfgang Baer. + +Patch was sent uptream by pere@hungry.com 2006-03-11. + --- openjump-1.0.orig/src/org/openjump/io/SIDLayer.java +++ openjump-1.0/src/org/openjump/io/SIDLayer.java @@ -52,11 +52,12 @@ From pere at haydn.debian.org Sat Mar 11 22:29:50 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 22:29:53 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian README.Debian README.Debian-source changelog control openjump-wrapper openjump.1 openjump.manpages openjump.menu openjump.sh rules Message-ID: User: pere Date: 06/03/11 22:29:50 Modified: debian changelog control openjump.menu rules Added: debian README.Debian README.Debian-source openjump.1 openjump.manpages openjump.sh Removed: debian openjump-wrapper Log: Adjust build rules based on the old jump package from Wolfgang Baer. Include manual page. Revision Changes Path 1.3 +1 -0 openjump/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/changelog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- changelog 11 Mar 2006 20:36:09 -0000 1.2 +++ changelog 11 Mar 2006 22:29:50 -0000 1.3 @@ -4,6 +4,7 @@ * Add 01_unused_sunapi.diff to avoid importing unused private SUN API. * Add 02_imageio.patch to rewrite the JPEG reading code to use the publicly documented API instead of the private SUN API. + * Add simple manual page openjump(1). -- Petter Reinholdtsen Sun, 11 Jul 1999 12:41:22 +0200 1.7 +12 -6 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.7&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.7&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.7&r2=1.6&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- control 11 Mar 2006 20:36:09 -0000 1.6 +++ control 11 Mar 2006 22:29:50 -0000 1.7 @@ -1,5 +1,5 @@ Source: openjump -Section: devel +Section: contrib/science Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen @@ -7,12 +7,18 @@ Standards-Version: 3.6.2 Package: openjump -Section: devel Architecture: all -Depends: kaffe | java1-runtime | java2-runtime, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java -Recommends: xlibs -Description: Geographic Information System - OpenJump is a extendable GIS toolbox written in Java. +Depends: j2re1.4 | j2re1.5 | java2-runtime, libjts-java, libjama-java, libjdom0-java, libxerces2-java, bsh, liblog4j1.2-java, junit, libbatik-java +Suggests: java-virtual-machine +Description: Open Java Unified Mapping Platform JUMP + The Open Java Unified Mapping Platform (JUMP) is a GUI-based application + for viewing and processing spatial data. It includes many common spatial + and GIS functions. + . + OpenJUMP has the following features: + * provides viewing, editing, and processing spatial datasets + * provides an API giving full programmatic access + * is highly modular and extensible . Homepage: http://www.openjump.org/ 1.3 +1 -1 openjump/debian/openjump.menu CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.menu.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: openjump.menu =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/openjump.menu,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- openjump.menu 11 Mar 2006 14:23:32 -0000 1.2 +++ openjump.menu 11 Mar 2006 22:29:50 -0000 1.3 @@ -1,2 +1,2 @@ ?package(openjump):needs="X11" section="Apps/Science" \ - title="OpenJump" command="/usr/bin/openjump" + title="OpenJUMP" command="/usr/bin/openjump" 1.10 +1 -1 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.10&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.10&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.10&r2=1.9&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- rules 11 Mar 2006 20:36:28 -0000 1.9 +++ rules 11 Mar 2006 22:29:50 -0000 1.10 @@ -35,5 +35,5 @@ install -m644 build/jump-workbench-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-workbench-$(UPSTREAM_VERSION).jar ln -s jump-workbench-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-workbench.jar - install -m755 debian/openjump-wrapper debian/openjump/usr/bin/openjump + install -m755 debian/openjump.sh debian/openjump/usr/bin/openjump install -m644 debian/log4j.xml debian/openjump/usr/share/openjump/ 1.1 openjump/debian/README.Debian CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: README.Debian =================================================================== Openjump for Debian ------------------- OpenJUMP ATM needs a Java 1.4 runtime because of heavy swing usage. Although it compiles against kaffe and classpath, it fail to run. You can adjust the memory parameters passed to the jvm thought the JAVA_ARGS variable, e.g.: JAVA_ARGS=-mx256m jump on the command line. -- Petter Reinholdtsen , Sat, 11 Feb 2006 22:11:29 +0100 1.1 openjump/debian/README.Debian-source CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian-source?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian-source?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: README.Debian-source =================================================================== Openjump for Debian ------------------- As upstream distributes as zip file I had to repackage jump: - unzip OpenJump--src.zip into a openjump- directory - build the openjump_.orig.tar.gz -- Petter Reinholdtsen , Sat, 11 Feb 2006 22:11:29 +0100 1.1 openjump/debian/openjump.1 CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.1?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.1?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump.1 =================================================================== .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH OpenJUMP 1 "March 11, 2006" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME openjump \- A Java GIS Program .SH SYNOPSIS .B openjump .I .SH DESCRIPTION This manual page documents briefly the .B openjump command. This manual page was written for the Debian distribution because the original program does not have a manual page. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBopenjump\fP is a GIS program that allows to work with spatial datasets. It supports reading/writing of shapefiles and GML and provides processing operations for spatial data analysis. .SH OPTIONS This program does not have any option. Just start it! .SH ENVIRONMENT .IP \fBDEBUG\fP If this environment variable is set, openjump gives more information on how it finds its different elements. .IP \fBJAVACMD\fP Default value for the java virtual machine (the \fBjava\fP command). .IP \fBJAVA_BINDIR\fP If $\fBJAVACMD\fP is not set, the java virtual machine is searched under $\fBJAVA_BINDIR\fP\fI/java\fP. .IP \fBJAVA_HOME\fP If $\fBJAVACMD\fP and $\fBJAVA_BINDIR\fP are not set, the java virtual machine is searched under $\fBJAVA_HOME\fP\fI/bin/java\fP. .IP \fBPATH\fP If all $\fBJAVA\fP... environment variables fail, the java virtual machine command (\fBjava\fP) is searched in the $\fBPATH\fP (with \fBwhich\fP). .SH FILES .IP \fI/usr/bin/java\fP If all searches through environment variables fail, the java virtual machine is expected to be \fI/usr/bin/java\fP; if not, \fBjump\fP exits with an error. .SH SEE ALSO .UE .SH AUTHOR This manual page was written for jump by Wolfgang Baer , for the Debian project (but may be used by others). It was adjusted for openjump by Petter Reinholdtsen. 1.1 openjump/debian/openjump.manpages CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.manpages?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.manpages?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump.manpages =================================================================== debian/openjump.1 1.1 openjump/debian/openjump.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/openjump.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: openjump.sh =================================================================== #!/bin/sh # 2005-02-02, based on the start script from freemind package # 2006-03-11, modified to start openjump instead of jump pkglibdir=/usr/share/openjump PLUGINDIR=$pkglibdir/ext PROPFILE=$pkglibdir/workbench-properties.xml LOG4JFILE=$pkglibdir/log4j.xml DEB_JAR_PATH="/usr/share/java" _debug() { if [ -n "${DEBUG}" ] then echo "DEBUG: $1" >&2 shift for text in "$@" do echo " ${text}" >&2 done fi } _error() { echo "ERROR: $1" >&2 shift for text in "$@" do echo " ${text}" >&2 done } findjava() { # We try hard to find the proper 'java' command if [ -n "${JAVACMD}" ] && [ -x "${JAVACMD}" ] then _debug "Using \$JAVACMD to find java virtual machine." elif [ -n "${JAVA_BINDIR}" ] && [ -x "${JAVA_BINDIR}/java" ] then JAVACMD="${JAVA_BINDIR}/java" _debug "Using \$JAVA_BINDIR to find java virtual machine." elif [ -n "${JAVA_HOME}" ] && [ -x "${JAVA_HOME}/bin/java" ] then JAVACMD="${JAVA_HOME}/bin/java" _debug "Using \$JAVA_HOME to find java virtual machine." else JAVACMD=$(which java) if [ -n "${JAVACMD}" ] && [ -x "${JAVACMD}" ] then _debug "Using \$PATH to find java virtual machine." elif [ -x /usr/bin/java ] then _debug "Using /usr/bin/java to find java virtual machine." JAVACMD=/usr/bin/java fi fi # if we were successful, we return 0 else we complain and return 1 if [ -n "${JAVACMD}" ] && [ -x "${JAVACMD}" ] then _debug "Using '$JAVACMD' as java virtual machine..." return 0 else _error "Couldn't find a java virtual machine," \ "define JAVACMD, JAVA_BINDIR, JAVA_HOME or PATH." return 1 fi } _debug "Openjump parameters are '${@}'." findjava if [ $? -ne 0 ] then exit 1 fi # List of java jar libraries from $DEB_JAR_PATH to load JARS="\ jump-api jump-workbench \ bsh buoy jama jdom0 jts xercesImpl xml-apis log4j-1.2 batik-all \ " JUMP_CLASSPATH= for jar in $JARS; do if [ -f $DEB_JAR_PATH/$jar.jar ] ; then JUMP_CLASSPATH="$JUMP_CLASSPATH:$DEB_JAR_PATH/$jar.jar" else _error "missing $DEB_JAR_PATH/$jar.jar" fi done _debug "Used classpath is '${JUMP_CLASSPATH}'" if [ -z "$JAVA_ARGS" ] ; then # Copied from example script in openjump binary distribution JAVA_ARGS="-Xms256M -Xmx256M" fi exec ${JAVACMD} \ ${JAVA_ARGS} \ -Dlog4j.configuration=file:$LOG4JFILE \ -cp ${JUMP_CLASSPATH} \ com.vividsolutions.jump.workbench.JUMPWorkbench \ -properties $PROPFILE \ -plug-in-directory ${PLUGINDIR} From pere at haydn.debian.org Sat Mar 11 22:52:04 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 22:52:06 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian rules Message-ID: User: pere Date: 06/03/11 22:52:04 Modified: debian rules Log: Use DESTDIR variable. Revision Changes Path 1.11 +7 -6 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.11&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.11&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.11&r2=1.10&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- rules 11 Mar 2006 22:29:50 -0000 1.10 +++ rules 11 Mar 2006 22:52:04 -0000 1.11 @@ -28,12 +28,13 @@ clean:: rm -rf build lib +DESTDIR=debian/openjump install/openjump:: - install -m644 build/jump-api-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-api-$(UPSTREAM_VERSION).jar - ln -s jump-api-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-api.jar + install -m644 build/jump-api-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-api-$(UPSTREAM_VERSION).jar + ln -s jump-api-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-api.jar - install -m644 build/jump-workbench-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-workbench-$(UPSTREAM_VERSION).jar - ln -s jump-workbench-$(UPSTREAM_VERSION).jar debian/openjump/usr/share/java/jump-workbench.jar + install -m644 build/jump-workbench-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-workbench-$(UPSTREAM_VERSION).jar + ln -s jump-workbench-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-workbench.jar - install -m755 debian/openjump.sh debian/openjump/usr/bin/openjump - install -m644 debian/log4j.xml debian/openjump/usr/share/openjump/ + install -m755 debian/openjump.sh $(DESTDIR)/usr/bin/openjump + install -m644 debian/log4j.xml $(DESTDIR)/usr/share/openjump/ From pere at haydn.debian.org Sat Mar 11 22:53:15 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 11 22:53:21 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian buoy.jar.uu changelog rules Message-ID: User: pere Date: 06/03/11 22:53:15 Modified: debian changelog rules Added: debian buoy.jar.uu Log: Add gross hack to get this package to work with current unstable. Revision Changes Path 1.4 +6 -1 openjump/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/changelog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changelog 11 Mar 2006 22:29:50 -0000 1.3 +++ changelog 11 Mar 2006 22:53:15 -0000 1.4 @@ -1,4 +1,4 @@ -openjump (1.0-1) unstable; urgency=low +openjump (1.0-0.0.dgis.unstable.1) unstable; urgency=low * Initial Release. * Add 01_unused_sunapi.diff to avoid importing unused private SUN API. @@ -6,5 +6,10 @@ publicly documented API instead of the private SUN API. * Add simple manual page openjump(1). + * Include buoy.jar binary in source while we wait for a debian + package (bug #356355). This package is not fit for the debian + repository with this hack present. It is created for testing + purposed only. + -- Petter Reinholdtsen Sun, 11 Jul 1999 12:41:22 +0200 1.12 +12 -2 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.12&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.12&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.12&r2=1.11&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- rules 11 Mar 2006 22:52:04 -0000 1.11 +++ rules 11 Mar 2006 22:53:15 -0000 1.12 @@ -13,6 +13,7 @@ DEB_ANT_BUILDFILE := debian/openjump-build.xml DEB_ANT_BUILD_TARGET := jar DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 \ + `pwd`/debian/buoy.jar \ xercesImpl jdom0 jama junit bsh batik # buoy # Make sure the jars are built using the upstream version number @@ -25,16 +26,25 @@ DEB_ANT_COMPILER := org.eclipse.jdt.core.JDTCompilerAdapter DEB_JARS := $(DEB_JARS) ecj +pre-build:: debian/buoy.jar + clean:: rm -rf build lib + rm -f debian/buoy.jar + +debian/buoy.jar: debian/buoy.jar.uu + cd debian; uudecode buoy.jar.uu DESTDIR=debian/openjump -install/openjump:: +install/openjump:: debian/buoy.jar install -m644 build/jump-api-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-api-$(UPSTREAM_VERSION).jar ln -s jump-api-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-api.jar install -m644 build/jump-workbench-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-workbench-$(UPSTREAM_VERSION).jar ln -s jump-workbench-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-workbench.jar - install -m755 debian/openjump.sh $(DESTDIR)/usr/bin/openjump + install -m755 $(DESTDIR).sh $(DESTDIR)/usr/bin/openjump install -m644 debian/log4j.xml $(DESTDIR)/usr/share/openjump/ + + # This is a hack until a buoy debian package is available (bug #356355) + install -m644 debian/buoy.jar $(DESTDIR)/usr/share/java/buoy.jar 1.1 openjump/debian/buoy.jar.uu CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/buoy.jar.uu?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/buoy.jar.uu?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: buoy.jar.uu =================================================================== begin 644 buoy.jar M4$L#!`H``````.NB@3$````````````````)````345402U)3D8O4$L#!!0` M"``(`.JB@3$````````````````4````345402U)3D8O34%.249%4U0N34;S M32]I;G1E>JG)W,"VHO^IAX(DZ*$_H#\J.O?.(F30RSGG?CO?#^[=Y]?[!X!# M[*6A8RN%!+9%*8E23F(GB=TD*@SZ@S.\X0%#KM,/_43:[OO$I+M^`/;[=H3 M1YQGH!;<.G<,U4B/WW,OL%KGQFG=JE MB*W6ZNV(T_+=<.PQI*_\<#+@9XXP+L:Z'(SL>]O`$JH&%I`RD,:B`0.+#+O_ M)618%VPK#!S7DLA%?\0'(NP?:A3TAU#K2(I+*E:TW:QW4:%WTL&0A`I%Y*#7 M5$04V0W9-?J^A&6J&3J-"=>HKYN--S"S,85B;D^AFJ4IM!=)6Z&:)V%@2_P0 M)%TXTS!1;$O&(>*M0*)"ZJ(/T#?I2U3<&8]"),+"A:1R&?M0[DX&DWL:C))"]XQL>,;!+AE(8]\1/P1/:RRX8W'<$ MM0?^G>\-_:CO7:6)B/HM*=$,,H+4]*:!AM/>:WT3M49S]EU85TK5N9"GJ$Q+ M/I`CRRBA*I?/99B88UA]YX`,ZTJ"/TYU]21(11SI8FUJ6\;6!:*P*T)T!;`Z57PZHZ[AKJ&NV1E?V& M\X3\PP165,E#!2EG#1I"KZ*Z/KX`4$L'"+GIK^?'`0``-P,``%!+`P04``@` M"`#KHH$Q````````````````(@```&)U;WDO979E;G0O1&]C=6UE;G1,:6YK M179E;G0N8VQAVD,W:N&DR,W?FG+EGIO?WGY^_`#Q$ MOP43W28,K"C3:^$65I6Y;6+-Q!T3=P6,$[FW'Z0""^XPBT^=_.CL:O=,H!X< M!Q'+J^Z!=^Q]=D8G,MIW=-)Y=7H4)*&,/FVI(\'&'PR!YYPU#9N;=V/?"'2^1ZEPD:^E'.1+HYO?E33=C/SMD MX(Y):U+`;C%JQ^Z7#VO0O7_K"K2)4&*=B&5F6)ME;3,8^8D\2F4<<6'GF-#C M.-MIPJF(:Q"WE>]LK4!,V5IK.\X2/W@IU3R=?\0_4"TLS.">A29:%B[!,F%; MZ."JA6NX+K#TO^$%%K7,+)6AHS-OA@>!K_8P1LMW<$ZPQR;+T?K7]*9-P\=E M\-%Q"ZCPHUR^Q(I23%]G?@:SM',\?6"^2M\>K/^`&*R?H3*X?X;J5\UHT\ZC M1KM,7I=]5LCJX3(SO9S'^A5`1^H>H2-U4X7Q`A:+>QQZ5:L/OJ'RY:*YH9.V M;FCE@**A4(LMR(\+U0E/7E6Y$5T$%I?N;]&)38B)I4O"SW"BX\`/\*'%N$A`5 M[V*>YYR9N1^?;^\`)MAW8*#G0,>>C;Z-`<$ZB].XF!'TX?&<8)QG"TGH!'$J MK\J'4.9W(DRXX@59))*YR&.5-T6C6,9KPF$0EMF3+SYCG50-0G\8K,1&^(E([_WK<"6C8JHFF[+N>W_;A-92I(M$-A+.;5;FD;R, MU0Z]GP/'BNW"A.6BBS;AX-_="-W?HXPC_AL#ZND@I<+6YLQG3^S-T2OHF0,- M6VRMJCC$-ENW!L!!BSW?C79#GC%:4^C1R0NT;[9352?,.:T4!C6J45#1#CH@ M@]0EE>9NQ?6^`%!+!PA9@O_%'P$``-$!``!02P,$%``(``@`ZZ*!,0`````` M`````````!P```!B=6]Y+V5V96YT+T5V96YT4V]UV-FEJO&6^2F M(M[06%9I\2`//J5*%TNJT">M\M$J_3GJUS/+)B0KI97:,SU]3G=__9WNGOSV MUX]W`#R*60UQ#$6P3\,C&):7_1H.X#D-!S&BX1">%^FPZ%Z0(R^*-*IB3,41 M#=5B>E2>+T5P3+9&(C@N[R]KT&%4T6)<15+#@QB2[90&$Q/B,B7+I&Q,R6*I M.*%A/5Z1)2U+1M19D7)BF1?II`I;A:-`,T^967?(RK["E^C0">.4D2BX5CK1 M9]O&V2'+<7L5A)^RLI:[34$@WG)807!7+F4JJ*&5.5S(C)OV(6,\34W=4"YI MI`\;MB7O)670G;+H>\W0>"%W-N&%2_3+.I(KV$F3[G4CE>J_"T-!<]R'D3:R MDXE=:<-Q>AQ)TQ5<2^P5=/V7,`LT M(ZYM92>]P*&\81L9^CU2(:IB\3?('P^L77C`-B?2])G89[I3N93@RWC2O?A* M8-=*),^$$SF;,%3OW]L-;89B9W MREQP3=4IR\D;;G+*T[%XXI5O*63Z^YI_WP.6%$7M@@K8+&8ZVM#.4LC;N:3I M.-ZVCDYTZ7!14'%*QVF<47%6QSF<5_&JCM-UO*'C3;PE9W?J>!L%!4WS M.`;3:7/22/?9DX4,/?:?29IYU\IE%:Q>3/G.PL2$:2MX:#C7Z%],XT2ND$TU MGIZRDE.-&4G5=!IUS.`=WFZH%_4T8)6!:LJ-)".2[BLXHJ.=_&> MCO=Q5<<'N*SC&CY4T'#?:]'Q$0HZ/L8G$N53'=1 MY<47HB#"AO#*B%CC+17*MV:1BM5)D]UF,FW89LJO!RH;XBWWK>TU_[:G0*6_ M82-#?`_<@Z!<^;6+=6P5\V3!D'ZH6&5C['\Z/2!=:9)(&0F.Y[Y2@]9:3I_C M6)-9F4\#=BXC)Y><$Z?5=#I2R)MVTF(.6(Z2^`HFE,W1J.0<*XVF+O1V,#WIP'=/M2TK[ M6/[DC8]YX]JQSO$MX(W"*(]6FH82OW]^G*HXCGK]`S%P5Z>"?!9U=K67K>LB,!B)W%$&%F<-/H' M2TY$>AQ/>(ZKL!5/\K0X[O(=*YT,%^'>]?8B@CW!6/`7C,>"181Z0H&MX6@X M%KIS`P.Q4#3<642XHPAU%EM*KY$>-:;>F464:_!KU,?40&=;$56SJ"',TB%M M;B:LW/S[!W&ZO"=X\^^O;D,?O8WJT5M845=31"V=UM:MY$+;.I%7<2GB@5N( M_E3.LI/D@*C#Z,9R]*(.3Z$!3Y/A[N9>YNE[FZGJ)*Y&VTW^`-M?0Q]V@Q]_.$G]K MO!U@NO4[K/X5*UIOXT%FMN9[K!9&BXC]@/I95#/)M92^0*2#RG6!K<%H4$R* M:+B!N$A1ZA_Z&>M[0K%0$8UMWV!Y+-1.NPUS,T$R^/MMK!]MNX4FN25/+U9" MZ\,OS%=##U9P?9&YCC+',=;$$>J/,M=CS/TX_Y4SJ!FGYBA7$VE,P,$DOT=3 M'E][:+D7*\GD;G*SA7_"5U`R++,T769INLS2-%GJ)Q=I1A5;86F@7+[?\HPP MW>VS%)P+;&LH9]\L4D,I^:`D),EK3+*(C7,S`>;^QWR"S2QC$++*3VL$!5[I M:33A#)OM'.&=Y]446";37C*/,V@3:DN`--I+,M(>W>5DNLO)=)?;@Q^F$O`O M^2[)=Y6!/[VN#'R32.M\X,,=`KN(3;.\83Z;9Y81]Y_SN)N\-KM`W!;A-J9CG5V3N@>^D%N9MZ+CAY4YMT7I3_J M#0G.A8D48=W7L;K))X%*[F0P9J;EFU".AS+1%L]))WO4*6&OM%-3%6?>P(1Y M>B5Y/KJT1)^#4Y,G(>O;BW()]4Q-GDTBDQF!1@1Q6^@'VF9T_AJ>/,FI;,!! MF[#S3_#OUS*LT,Q?MQ=NX9K7@`-4>''V\(\N+H^-F]6OW#?3* MJ`+7?2!:`4'N/&0"/0B@_>G=GQSGH_O]\_ M`)QA.T`531\M'VU"[5REREX0NH=1G.MY^*+&#]*&]T7HCXZ&!.]2CR5A,U*I MO,FGL31W(IXPTXIT(B9#893#"]*SCRHC[);MY$RF-ASH),\BG=DK!_MLF^G< M)*SN+',EU*V'89\5OFN,(LX='QR?-*M?>V^@5T85^([C".R@CBY6 M.=LOE8R#HE.`-32XC\O6L<%J7G#Q>NL'4$L'"`4SQ<\1`0``J@$``%!+`P04 M``@`"`#KHH$Q````````````````(````&)U;WDO979E;G0O2V5Y4')E9R+5,?:T_)J?/[L0M0L,N M?^__60BU7\V%/U.6O?K*O3B\F%:CBT/D>)OIX@=RAO7%.X!!D=@'R7446!TSJ^9S_7U3,]$$1NLEJ)-9BD9,E'._$Q4 M&&G2]E=F5N="]+97E296QE87-E9$5V96YT+F-L87-S?5#! M3L)0$)R%0@51"E(5P41OHHEX\(;Q0C0I$@]J\%SH(D^A34J!]#?\$T\F'OP` M/TK<%@[&$-_AO=G9>3.;_?K^^`1PAG(2F,^ST&#JV-:Q0TA?*%<%EX2]HW9W MXH7UF7*>.*@_QD^C95FU#D%K>@X3\FWE\NUDU&7_P>X.A2FVO9X][-B^BNHE MJ04#-2;L+PQYRFY0O^'PCH=LC]FYBHB&1(^]B=\3?6E5LMC,!NP2J$7(C#Q' M]17[8DL607_A<#%2]CXVN591L/DWY?39GMHYI+!+J/PS#:'\J[N80#3+7G7E M:BS93;/6P2&2LM#HR&P2E99;EZJ/-<&`<7Q2H-<#4S-317I'XDVXA/2`K+Q` M!7E4D1%T+K]%+_QZ[&<@APUQB]"FJ!(Q,E"(\PP4!:6DOQ4[EGX`4$L'""(D M7F4X`0``YP$``%!+`P04``@`"`#KHH$Q````````````````'@```&)U;WDO M979E;G0O2V5Y5'EP961%=F5N="YC;&%S=1U;.K8)Q4L9RN2*L'/D]B91VII)_TDDK0>5VHYM'7<)FA7Y M@F"Z,A1WDU%/Q!VO-^1.U8WZWK#KQ3*K%TTM">28%>>"8BK"I'4KTD[Z(OSK MK&JS[SB:Q'TFUY;9LL8L$"&!'$)I%/GR48J8-&A@:A\=\NA.:OT=R?"8O9[M*KV(Z=W06'R/$ML\>[L$^!8Y$K M@165S9/3"KT>U+5\O?`.>N-6#CI'@S.PAW7L,Q6XX*],1XDG4&@591;+T!JS M<@J9V&"3#%5056:;2K'V`U!+!PC276WC,@$``-P!``!02P,$%``(``@`ZZ*! M,0```````````````"(```!B=6]Y+V5V96YT+TUO=7-E0VQI8VME9$5V96YT M+F-L87-S?9'-3L)`%(7/*%"H*(*T_H"".W\2<8]Q0S0I03<23(B;MHPP"AU2 M6I#W\$5U\;;@1@3B9/,W#/WSGSG9N;CZ^T=P"EV=2QC6\..A@)# MXDQX(CAGV#MH.*&<5B:BT^5!Y5:%:MVBT;8.6PRQFNQPADQ#>/PZ'#C<;]I. MGS*YAG3M?LOV1;2?)V-!3XR(.H/R,?>"RI4,1[S6%^XC[UQ$F2KYCV3HNW0A MO\B>.),>]QA8G2$UD!UQ+[A/7&;1?*(Y9=#="%F3H1;#'=AHQ%!F*_[7-4/A5GK6J#LVKI85/:?V\ M)?:Q1'\0#>J0#..T)FCWC!7H%,VCXRS[+!LQ(VXD#,U(&JE7L!>J+$&C5:<( ME&"@C"2I.Z2B6[3JBFH2)TW,2*UB39TVD<$Z>44J2RJN5(Y40JD-4II2>>(F ME3(IER+.IG+>^@902P<(.L>R#FT!``!#`@``4$L#!!0`"``(`.NB@3$````` M```````````B````8G5O>2]E=F5N="]-;W5S941R86=G961%=F5N="YC;&%S M\8+B[)$/2BP<3;P+30!F:264`^RY.) M!S_`3_)@?-UP,)'82?>K?DO52WU^OW\`.,-.'FG86=2RV"*8Y]*7<9M0/^SV MDV#>G$EO*.+F@PZMCN,X1SV"<1%X@E#J2E_<)I.^"._=_I@SE6XP<,<]-Y3J MOTP:\4A&A-T%HY@*/V[>!$DD+D-W.!3>E9N6?NXYR;\_'U]@[@##M%9&'GT2U_&74+S<#!*@F5[(;U'$;?O M=.CT'<.N.IIRI#8*Q.QVZH53_GZ013V1$V$T9 MQ5SX8[6\4F5/O=MP\[9II'-OH)>.)W1Q2)'H(D:6EAC MU-6C%@I<@48EE)E0H75LZ&X+%6RRD$)51CF-:HQ,[K0T=_T;4$L'"//HN=H[ M`0``]@$``%!+`P04``@`"`#KHH$Q````````````````(0```&)U;WDO979E M;G0O36]U&ET961%=F5N="YC;&%S((N6K;D(GGG:>E"NW7-=]Z3/H%]% M`6>H>2+DM]ETP.-[?S"AC.5%0W_2]V,AXY^DGHY$PK"?,_(9#]/6390EO+L0 M*0^Z,M$F[23*XB'U-U9)$\U\Q$,&UF,H3Z-`/`D>$RUSR19D2P;S3E%<"RGK M_-4X'_LSOPH=._2_?V;Y7K!R-ZY6@LTBO2;5"4 MH((2>?OTK,X^#QW=*3J&KFFO8"^4+JBB21YHPL(>U@AUU%,;9:I`H0JJ1"C1 M.C94MXT:-DE(HCJAHD(6(8,Z;<7=^`902P<(#]0K^#D!``#S`0``4$L#!!0` M"``(`.NB@3$````````````````@````8G5O>2]E=F5N="]-;W5S94UO=F5D M179E;G0N8VQA$'^$/NC'<&%L;@)'?NN8\YY\[]_'[_`'".W1(,N`5L%;#- M8%V(2*1MAL91=Y#)N3<3X1-/O7OM6AW?]X_[#.:E##E#M2LB?I--!CR^"P9C MRM2[C)+>$].>7BEXA9))S*+A]3NK%(F MEMF(1PRLPU"SN M-SJ!G)8GHMOC?OE6I4J]1JM=.V@Q1*NRRQG2#>'PJV#8X6[3Z@RHDFU(VQJT M+%>$YWDQZO>%1ZPS4C[FCE^^E(''KUWN>;Q['E8JI._)P+7I0FZ1//%,^MQA M8'6&Y%!VQ;W@+O&R&NTGVE,&W1X(^[$J`\=G2(WD*!@U7='K<9?Z;9+H!+XO MB42_45H7(C1H_G%S_&"-K12B*#`4_K/-D/_5GEE50_-N<>%3UG[>$GN(T!^$ MBQR28(QBG$[/6(9.V3P\RK#/DA$U8D;Z%.!!I%G3)0A($2$H3N MD`QO4=05JTD\*>(,T0I6U;2)--9(*T090C&%LH3B"JT3TA3*$6]"(9-J2>+9 M4,J;WU!+!PCY"&&6;0$``$,"``!02P,$%``(``@`ZZ*!,0`````````````` M`",```!B=6]Y+V5V96YT+TUO=7-E4F5L96%S961%=F5N="YC;&%S"JRP6KJDM"+_PS_BR<2#/\`? MY-$X78@QD;C)SKR=F7WO9??CZ^T=P#$*!I:PJ6-+1YXA=B)BU^=^^4:E2KU&JUW;;S%H5=GC#*F&D_)&[?OE"!F-^Q1UNCWGO+"Q5R,!8!EZ7;F07Z1/19,!=!E9G M2`QE3]P)[A$QJ]%^HCUE,+J.Z#Y49>#Z#,F1'`6CIB?Z?>Y1OTT2G<#W)9$8 MUTKK7(0. M23%*,4:G9RS#H&P='*;99\G4S*@9,W4S;B9>P5ZH$X%.T:`,%&&BA#BA6R3" M6Q0-Q6H13Y(X0[2"535M(84UT@I1FE!4H0RAF$+KA'2%LL0;5\BB6H)X2]E=F5N="]-;W5S95-C*9V;44&L2%F3WWSKEGSIV9G[^__P#P`)T2ZFB4D,>FC1RV+-RQ M<-?"/8'"+!@>R5B@TNU/U=Q+0J]G?H^X_CB(@OB)P$9S$6%OUWRM0X'5N$,F7TU%?C@_\?LA,N:L&?GCHCP,=I\ER]4-.)W!^, M51C*X3.=T@8F:CH>Z(K9L8P$Q)Z`/5+#X%T@QU00NQSO.>8"I8DI/IB?DN\D MP=.1FD;L;XGE,GRM8C\.%'5LVM]/I2O-5O?$/_.]T(^.O%?]$SG06VM*+SV> M*BD+#ZB4B#P/=%>KEUO8UL(6[CMHHN7`1MN!A:+`^C\[YX$;1_XLOLCIZ292 M0O6"0&(G72A?-LKCX+RC1J[GR%6!&_ZF[.S;N%7-:UW*)K?T.FW?F"["=R M,G`X7Z4"J+R&3=2PQ7K@+16IP;5EP*!KW$L8M((R*S6ZC@K]:.02Y0VJ$A4, M6B6R#+I!5#3H)I%-G37<2OUZ_&O=?/LSLA_/315,=T7(,..X M4?_1CE.[H\,.PUAWR`]R_Y$.I\@3,AC>2FIB++<2]"$+[ M3`RX#,)#E5`C1;+K)./46^WT@3\:>N)(*O/*;Z=-13!1 MQI*)`L9,%%$BI7_ZHG/3!E$H?5LCIVY/>*K%7XRXO1]"*^[)YT'7CJOIP+!* M5Y<#G3<,>LB9[M90YA0SA)=ATCI.V17A&8I3UOH;F+7^"L/:>$7F63,F:*V2 M%K!(>DWB+V$2R_0"*S&/G@J@=\J'Z9UR,FA?Q73B8U-4WW+6"XRGD7A>@VM: MT(P+$D'ZS5!+(6?^DK=2R75=U?@&4$L'"!C/]?&%`0``V`(``%!+`P04``@` M"`#KHH$Q````````````````)@```&)U;WDO979E;G0O4V5L96-T:6]N0VAA M;F=E9$5V96YT+F-L87-SA5++2L-`%#W3Q,;&:&M]UU=UH6D*1M>^%J(@%!44 MA>[2=J@C,8$T5?PG%PJ*X,(/\*/$.Y/X0`(2N'/GY)YSSYV9]X_7-P#K6#8Q M@(J)/&8+E,W),&]@P<"B@2I#_E9TNCQF&&^T^N&=FVS="[5L,I@B.(G";L1[ M/0;6),*6"$2\PS!E9S%JYPSZ7MCA#,6&"/A1_[K%HS.OY1-2;H1MSS_W(B'W M*:C'EX*TEQ,U?L.#V#WE/F_'(@SV+KV@RSO[$B4WTYD]F[)I@;*+=)9)NY8] MC25ZA[_FT>P:362>AOVHS0^$=%/);+UVY=UX%BR,R;!D81`%"R:&&*K_V6:8 MD&RW'PO?5IIH/%$MU='@P&H?^HEJD]L$+V5JF#35A-J5<3WK=Z*567F;2=HWP< M$VD?5_4%!IPG:`_?XGD%;BA!*RE(!>D$,95!UN__D+M`0``*P,``%!+`P04``@`"`#KHH$Q````````````````'0```&)U;WDO M979E;G0O5&]O;%1I<$5V96YT+F-L87-S=5++;M-0$#W73Q),DZ8O0@NT].6X M$NZ"!0C$`@2+$D&E1NW:2:WV5L8W2IU&W?(_2"`1(;'@`_@HQ,RUB2IC-C-W M9LZ9<\;RK]\_?@+81U"'BXT:'#SBL,EAB\.VBQT7NRY\`6Q< MDG`[EXNOXC0+>THE/3E\PP6[NU3CT8"P-?)P4ER[['>J[W49I$\V_0X=?8MJ M;8X,$.>?VULT+P397R854>M'6O*M9(OS-_T\Y@4>FNAXJ*'NX38\#W5Y(<:M?X'4$L'"*7L'?+L`0``V@,``%!+`P04``@` M"`#KHH$Q````````````````(@```&)U;WDO979E;G0O5F%L=65#:&%N9V5D M179E;G0N8VQA[*`J#L@D; M%7J7MH=Z)":0)HK_:1<;3`J[V`_P1\G>YN__]!\![ MO#%11--$":_*U+5D>6U@Q\"N@39#Z5I,9SQFV!B,D_#&3;?NF5H.&$P1G$;A M+.+S.0,;$>&#"$1\Q+!IYS&Z0P:]'TXY0V4@`OXYN1SSZ)LW]@FI#<*)YP^] M2,A]!NKQN2#MG52-7_$@=H>>G_#^N1?,^/18(I1D*]=O)`W+U)UEYVC8W?R3 M6&+^Z=%9-+M+IS&_ADDTX2=")FG\9_ONPKOR+%A8EZ5C805E"R96&5K/Q66H M2Z:;Q,)W%?)E?,$G,MXC6AKM'\$>*(I/*FXZ39>)#GVO$A@,%.@A>_JJ!9F` M5IUP"R^HOJ3=1VCT!C"F35)I?J5\.%M"'B%LS,G`%YY<6):>Z9>:D,C((0(1=RU+S M2O2R$LL2@1K!NE)!(OI(LD"U('G]G,2\='W_I*S4Y!(V1@9&!B8&$&!D861@ M9F`!L1A8@203`QL`4$L'""-G4Y]\````GP```%!+`P04``@`"`#KHH$Q```` M````````````(0```&)U;WDO979E;G0O5VED9V5T1F]C=7-%=F5N="YC;&%S M*>Z!@W^L#AK3KIXTT8VI7-EO#P24'^,D#JTE.-CG+=[&HM;L(I=:_# M.%$6]BBY)F6=5[?QNY03;BMB7\8!#F6$<"1#Q!)#\H_ZZ;Z<:M2Q[3%^YN)S M2B\1G:^/0::Y9%+GABN>=LJ]9WC1>:$%.'\A(4.O'@#=*0T?KYZ^A9^P$"1" MEBFZHTB@-9(OO(*ETF_PY0LO\#\1YH-,\RHI0/](0@IAI+%"4=[54"X,.+L( M>3-GMX8H*?EN'3'2TM4B[IVFT,I9@?PS_(^S(X(.F'6L99?@63-L8NL_XK.% MXH3#VOX&4$L'"/&O\3R:`0``$0,``%!+`P04``@`"`#KHH$Q```````````` M````'P```&)U;WDO979E;G0O5VED9V5T2V5Y179E;G0N8VQA^6JP(U"J3"IH[#<:]>J!0*H>=*3`3%/Y M\M.PWY+A5Z_5(Y-O!FVO=^"%2LD3[@MD^T%''2D9TL8ZE>.HO4%=+V1-G37T^Q)[%"K5YHEW MX;D]SS]V/[=.9%OWT"6'\0DX+)EX!KG(9$_IT>?OS_E6FUI8M[&!BHTLJC8L M3`DL_G=K`@MF$F\TB/-W&>>!*D[D'TXF8'.M!_VSP(_$-WO4SK?\MKF["7Q\ M=ZDRGT0:/&]^"3T\WTR27!8Y,M.,OI'3K%/;_`U1*A?3Q4S1^H-$;?,7DC^8 M2<#F^I0Z8`FS**.(93QA](&.5#(W`Q@T2R]AT!SR5&HTCX+1.M3E.8U&#E'& MH`4\HPO/%,_CB5S^M4>Z]A/)[[<#9`SYQC2VHX*X,1\;2H\1;TT4OS15KZX! M4$L'"#4@D8/)`0``4@,``%!+`P04``@`"`#KHH$Q````````````````(0`` M`&)U;WDO979E;G0O5VED9V5T36]UK.=;;IMXHTMBC^7$0B><&PUER4T-ONT7/0:^TQ%+IRP!F6^B+B M;])QP.-=/Q@14^[+T!_M^;%0YXPL)$=BRK`Z=^6G/#HW?2W3*7^I"%5_*M,X MI/R<&#"P'@EG1SPBN,U@C>5`'`H>DQ%[1^\9@QV.1'C2E6E$0SD3.4DGN[$8 M#GE,\0,R#-(DD61@4:F=S+S2;/6/_5/?&_G1T'L;'/-0%5I3X5J MQ*E^ZUC-NO9H5Q6,]B?D/URT5]3D4]V6,T_(VF*X@[7_$3];*+ZKLQJ_`%!+ M!PCAC=7Y^`$``)T#``!02P,$%``(``@`ZZ*!,0```````````````"(```!B M=6]Y+V5V96YT+U=I9&=E=%=I;F1O=T5V96YT+F-L87-SC5++3L)`%#T#A4JM M(HJ(O,0WC\3J6N.&:$+2Z$*#;@LT6`.M01[QKS3QD;@PKOTHXYUI(8:'<=&9 MN?>><^X]T_GZ?O\`L(]=!4FD9*05!)$)(8`U&5D9ZS(V&()]J]XP.PQ1O=IU M'C0WU*[$=DCU(\NV.L<,F=P(P*X[?0]6SE<8I))3-QG"NF6;9]U6U6Q?&M4F M919UIV8T*T;;XK&7E#HWUCVINJ)FS[0'35WE$Y[A_>^=;KM&A,3T]@P^J\[` MR@PABB\\1C27UV^-GJ$U#;NAG5=OS1K'AD0/UW2,(!-M*Z[(J<5GC8T-ML=U M96RJV,(V>19MC/Y@+A4*=E3,(,20^LL@V1I2!Y!?Q=@8URO$I]T%@TIKR6G= M.;8K,;@$WF*8)X?+.7UD:OX;I75Z'T$PR/3YN`-Z0WXZ*YBE5:7HFF(_[8N% MXBO8)WRI-_@+Q1=(3Y3U88[6>8%($CZ%"-(4`UF7A3`6`'&*T,?$:0E18M)0 MB'E=--IY+5!XAO0X%`Z*9$X(JB[`$V180?P_Y(.)Y%6!2OP`4$L'")#B_'Z8 M`0``-@,``%!+`P04``@`"`#KHH$Q````````````````)0```&)U;WDO979E M;G0O5VEN9&]W06-T:79A=&5D179E;G0N8VQA56);(P\#"(,3(($_`6D8&&105($L@ZJ#2)DX&;@`1O'"];#!P!02P<(%_W710(!``"R`0``4$L#!!0`"``(`.NB M@3$````````````````C````8G5O>2]E=F5N="]7:6YD;W=#;&]S:6YG179E M;G0N8VQAFYGWR'Q^O2\!]-'RL8&ZAST/#8;*E50R MOV8X/@^B0B]Z[CHASN#0_LQA%"XV*5<(#8EU MZ*U>7#;P\0;V2L"!1]FWA3:V<$`7V"\;*7PK5,4V:E9NQ\[L?@-02P<(+FHW M@?\```"L`0``4$L#!!0`"``(`.NB@3$````````````````G````8G5O>2]E M=F5N="]7:6YD;W=$96%C=&EV871E9$5V96YT+F-L87-S._5OUSX&!@8#!F$N M!F8&?G8&`78&048&-IO,O,P2.T8&60V?I-+\2OWRS)3TU!+]\,R\E/SR<##' M6C.,D8'%.3\EE9&!WR;!C'1)34PNR2Q++$E-<04)6P/=4)Q?6I0,U"6%VPF,#%S! M8%5NF2#SI;$;II>56);(P\#"(,3(H$C0:D8&&10U((L@*J'2)DX&;@`1O'"];#!P!02P<(B&:T_@0!``"X`0``4$L#!!0` M"``(`.NB@3$````````````````G````8G5O>2]E=F5N="]7:6YD;W=$96EC M;VYI9FEE9$5V96YT+F-L87-S._5OUSX&!@8#!F$N!F8&?G8&`78&048&-IO, MO,P2.T8&60V?I-+\2OWRS)3TU!+]\,R\E/SR<##'6C.,D8'%.3\EE9&!WR;!C'1) MS4S.S\M,RTQ-<04)6P/=4)Q?6I0,U"6%VPF,#%S!8%5NF2#SI;$;II>56);( MP\#"(,3(H$C0:D8&&10U((L@*J'2)DX&;@ M`1O'"];#!P!02P<(4M$-HP0!``"X`0``4$L#!!0`"``(`.NB@3$````````` M```````E````8G5O>2]E=F5N="]7:6YD;W=)8V]N:69I961%=F5N="YC;&%S M)#!5E*,C*+&1D4(6:FEJ7FP8ST3,[/RTS+3$UQ!0E:`UU0G%]: ME`S4(X7;`8P,7,%@56Z9(-,EL1FEEY58ELC#P,(@Q,@@3\!:1@89%!4@2R#J MH-)R>$+#4S.,09&!"1B*(,`(A"P,K$"2#)#!5E*,C*+&1GD(6:F MEJ7FP8P,2BW.K$I-<04)60/M+\XO+4H&ZI#";3TC`UP6LE(X,,BCS(`H@JJ+0OA`P!02P<(%[]GBOT```"K`0``4$L#!!0`"``(`.NB@3$````````` M```````D````8G5O>2]I;G1E4%46D%J]5J+WO8R]Z'/>Q]V-OVO6\V<^U,UO"; M[\O[_N_[_[_KS?*[,GQ/H?HU[O!];OF!##_D^DV[\`QM_E.%/;/R9C;_(\%>N_R;#FUS_789_,/A/ M-OXEP[^Y_H\,_^7&MR3XGX1`38@R9G&=+6,.U[DRYG$MR2ASG2^CHD`3GB*A MJF`!SN&BD(LB+N9R4`L+*&Q8ZF$90JT8(F$\Q5HX[I<@2U8(6&E M`ENY7J!`!]<+%>CBNDK!:N:O9OYJYJ]F_FJLX:*6BT4*;,Q: MCZI<`(GB[A:@7V M<[U&@2C7:Q6(<7V&`N-=:GV<#D:2IL_"-)]>78_V1L93>(TW1Z=^(--86N*AX6'3R6?N/>&X'HV: M7NEJV[0IYR*G3XI<7$M8Y>73.S4^"TF;'IY(;`Y%8J9/M;=/AYY(ICSJTSSZ M(K%!?;(YG(P<""5GF;OA%XSJB4AL..6UQ,>K10NY^/P](V$]%AF*F)Y^(VQW M^>6='8E%DA2F90U>X;ET%T).4!_4$`H[:(FZ)L8&M'AO:"!*+<4=>C@4W16* M1]A.->8D1R(4R#4&6X2/92P4#0@Y8AAM'@R-4QL%B!K3)D4S[P^]'AK2@HC5 M\S7+11VSA1YM=JI':#(9$%X!XY3SKZ)OEG8`H7(6)WJ]C-D#<48B%7(S9BJX MZ)TQ9H41O;G&S("8\4P=?5HM8?:-:%HTY5#G/5KA8@VY)I,3R8Z:D8&P((V5 M#KQ%5^Z+TF1&K?!!D$=3@4+`D!427JLLHL'22%M@&T[[-S03.[0HD\XHH5!+ M(S>.J<6^8#8'6O9),Z"8KV#2'E_T8IYT1Y*MS8P9J\"ZX5(4/PK6T"QS-36(#FM+N/Q5>@I=5;,%6%3[$W@O=WHZW MM`K7>U+:[SD5;O#TL5]S*MS(/I5I/M8MI\)-[%)F<[%?Q>X6:T[CP5;O$>BEW8K<)M;E'7U:?"[>Z) MNF\^%>Y@E_E.%^OB4W$[GJ_"(3>/^_)3X3"[E+M=S+M/Q1W8DQ*R[@J.E+Y4 MFE=HQJO1KL*=3%EMH_2Z+%6XR[U@Z7>E"G>S4VV:D_NJ5.$>/T?G3:G"O=ZC M*?;A;Q7[;1J>GN%Y^;ASN_3AN+.ZJMF3+X0B MZR;H'MBOA7F[O6[QCD@B21<@]:A(3R0LT-U7G`<+7N0%=^I\*5E.M;Z)C^6S MT#,7L/!"UQV((`WI\:[0&-V?V0TBG>1T-Q@B:H3E]JN\=R2N3W(*Z[C-K59: MLTBB.9&(#,?8;HOK8]XYZQZZS-,S:4HHJ`SJ8^-Z3&Q1:<-2*[,QVTFF.+V5 MM$.#@ZY%K?7.)V<<1/)4.M/-O=A+O#L[W01%R0R%:RM.FR6==1#,(0+'84G/ M^6RPZ,*S=1V_]-DZ'$2WN=3-?2(6^228CH[EOE\(=(!HVVA2,7&`MM)TR.[4 M!SG:XHG6@Z*YG3Y[J'FW4?53&LI[S>_J("571#(GDMBNCT^,]\8C]`:-BTYT M3O+);=-$,BER,\_OKZWM]+.GG0=9,!A)C(>2X9'4P$KL9\\(8B,=]R5BM&KV MSPMCZ,:;W/CF*C3MYC%C,D7&BFC1'7HRE$HL_0=OR);Y?(90CDN>9!G?F!5^ M/,PQXSD2,A8PZ.\?]-I5Z[.$/G$BB5Z-HBL>BD_17>))LX=)%KHA*]6AU89: MB$,"\B`)$W``)N$@3$$E9''ZS'^/X@R:Z@JXC&J$=XNVR\F^PF9?2?95-OL] M9+_79K^/[*MM]C5DO]]F?P!D3M+)O@[X1^8DW&9=[[!N<%@W.JR;'-;-#NL6 MAW6KP[K-8=WNL.YP6(<VP[G%8]]JL,OKM"-Q'Y8?):J/5 MR:)::9R&O,9E1T%Z5*S81ZB<`_P'OEK(@460#W7P4;)*#6^X'QX0;(K81Z1_ M#\)#!F?V%=2/O+)S&Y\`.>>RPW!RV6.0_R(4%BM/PBG]CT/^@Y!'+<=`/0S7 M$U;`V!P#*Q!8@<`2A!4R5F1@A0(K%%@?87,9*S:PN0*;*[`-A,UC[%0#FR>P M>0*K)JR$L5(#*Q%8"6&'8'YC/X_X\J,@T]"E8U#6>(P:J2V79A&EGN7U4;/*M&SRM93L9.,[!Z@=4+R7(A620[-9<( MS2+2/)_Z-G#?I4;?!M&WP>1M9&R9@34*K-'.6^3D72YX:XCW!#<^"RL.P=$4 M_"PT'8*'B#+`E"L-RH"@#)@G9Q5CIQO8*H&M,D_.:L;6&-AJ@:TVEV8M8V<8 MV%J!K36GL(ZQ]0:V3F#KQ!06&%.HL4WA)#31+,ZTPJD+YE&Y'!Z%-7`+#H(J@#?#`CL-9_5PO.T9S/09G MTW,./1OI.9>>\^AIGH9-QR!H#5P1W8>@"49L[X"`^0X(P"?@DT+T4WZB+6]# MM-5#-$JBL0RBG_83;7L;HIL]1.,DFLP@^H@I>@&]&]FKSA#=XBDZ#>T>0@?I MQ3IE$ZHSA>I,H4?]A+;Z"&WS$+J4A"[+(/28GU"'CU"GA]"5)'15!J''_82Z M?(2Z/82N)J%K,@@]`4>]#\;V&:'SZ=E!3P\]O?3LI&<7/7W3L-M#]%HZ&-?Y M'HQC0G0:GDR)]M'%RU[5AFC_C.@>>BZ@Y\)IN,A#Y$:HHBS#$JDV1:I)Y"DA M\K2?R,4>(GL]1&XCD=LSB!SW$]GG%@E-PX"'R)TD1N3/"/(3?N1#-O)A#_+[B?2!#.0GX=D4>1=E M2.Q5:I"/"/*3L&(:(A[<#T,)!8#%76IREQ+WYP3W\_=;P1CV&]P0-[VB&X7W>CSMJ<8]Y<#]%W$]GX'[!CSMF<>L> MW,\0]XD,W"_Z<8];W)=X<#]'W,]GX/Y"YBU[:=8MD_F_"`@SAF=DY<6-%(*/ M=!R'[/YIR*'SFGM",.6(XVSG7F%RY]&[[HOP)=%:#%^&KU!]74KIJV)$K_P? M4$L'")R3YI/T"P``=R(``%!+`P04``@`"`#KHH$Q````````````````(P`` M`&)U;WDO:6YT97)N86PO179E;G1,:6YK4F5C;W)D+F-L87-SE55=4UM5%%TG M";DD7@KAHR#R4;15(-!8JVBET`)"Q:9`20`I]>.2',B%D(2;&RS:%V=\ZC_0 M)\<'>96.36=T[/CLCU+7.3<0*,$97_;99Y]]]EY[G7WW_>OOWUX`>!O;840P M%D('Q@W<"L/O;6XK,:'$I+)-A=&$CT*8QHP2=Y3M8R5FE?A$B;L&X@;N*<Z[UM!0]-7C3SMGNN$!K_YD$ M`\L"@:E\6@HTQNV_)ST(;34@ MJ$1U=BXM'PF(68&&M%TL6&XJHTMC`1FK.$':>?I`P*?2 M&O3THY0LJ.WH\0MK_Y-V83.U]-*$$_F2DY(SMGJ.UI>(OZKNF^C%DHE7T4FN M:[2,B=?09:);B1XEEK%BXE.L&GA@8@T/37RFQ.?XPL278+QUI$RD80ETG,<@ MV_!EQDQ(;`A$_P<')C:1,6";V,+2$?K3=`AT_V?O"?C[U5/YV4_G/"2?)\*L M"Y9CL378\&S+HOI`!M9J-&:D:IK,Y[/2(H2ZF8EX8IH`XV<.>2.07%SBH:&; M97[C'!1LH:#7<\IA=J!6ZP:*]M=25T1OOV[QH$WRMFF\42/H6HT\M>+6,]24 M52HR3/NIKS&9ONY#O%R7;2,^A4JP:&*8E`)O?@! MH:<('R#X%*^H@RK\9@)7_YL0KE%_A_"NZWR7O)C'L(=X,J0Q#&$85WF;XY'W M/`S?5C!$*QC,L2[?CP@34"3@G6?3@A!CA&F$K.->/X(@.4J?*>NP?ZU(0RKCP$W8KJ1O)P<\P`@<( M^,>[O\>5"K;&/]%4P=L8^`.157\T44;SR@%Z:GCXZ>&=MLP-E]%:1ML!ZI7: M_IU/'/SSY)"8&CBO)'^X:BWH3E#UCG`/W*6<)]H%5G0?=Y"@ST-Z+V$#*]BA M7L`J=CD%2_3]AC-0\3#.ROK(S;MXCXQLD+D1O$]ME_6.X`/=R/NXH1EA_<=\ M/<:'FB^!4]LJX9H+A MN@F.&RNXB"T3VVA7<-.DX)8.;FNSH\V=,NZ683&4ILH=RYAAW1DFX8F=A?;K M]/>0\H]4H.+'#$TKKZ!SR&#T0U)/Y31@1AZA-2<<"2\0Q$I'<]! M(WZO)@SM3$T%L8P"X=D#%8P]F:F^$H'TJ/8@3**1?*;T%(US_7:U,$-]H?\D MC%P9.>(D3&*.*CK:=#DN8;6,'L<]W*?U]*4^`<D M#>ENQ_9D2BG[^1PL6GJK+>OLJ-D0^R(08QFE.Z^=OPL&3K8?^A_"@(9:VM8" MIVT5A>LR=*R\;(9Y@N9Y.3R2(WW%:-,#XO3*&`KZ^.09Y%>Q1O8R16]1I`S0 MZOX`>W.*PBF*W=XW&-W>#!=JI1G*7RA=0(ULC14*F/3NJ" MP]:N=IVT?!9/5$7B`_BHBK$3J4)"R4H>CV?.G#D[]I^'^]\`7F,K0!&K/IX% M\+`68!T;/C9]U'TT&(IOI9)FGR'7WCYCR!_H"\%0B:42QZ.KODA[O)]0I!KK M`4_.>"KM>1K,FZ\R8P!#>*B42`\2GF6"(JVX/]+?(ZF,2!5/HI[624]>'VGJ MI=.7>QUJP0=&:G4JTDN=7HD+AF8['O(QC_B-B<18*!.]PQ+3E3"U9?H MI#\4`\-0_Z_.6&9&T*P8MMKSIF3_>=VRW$;9C23JKK6?C4RDD7;.9:G&^IN( MN;&$J],!.A6?1DK96R(2M%"@-\#@TX/P:-$`Z!20%]%.%XC"SD^P'RY=)EMT MP0V$9,,)`(M8@KWJ952GQ>^1" M)\3DX:FKJ:%">Y6\@LN7')Z^OU!+!PC`SO<&I`$``,H"``!02P,$%``(``@` MZZ*!,0```````````````"0```!B=6]Y+VEN=&5R;F%L+U1O;VQ4:7!-;VYI M=&]R)#(N8VQA?=A51J$.:]G/.>\YSG7.#7[V\_`$SA M@Q=M"(KP(R1B'!,B)A$6Z6%:Q`P>B'B(1UR<%?#8"R_F^/9$I.VI@`A_F1?A MPS-NO2!@4,=M=B7LX3U#?_VR4'YVI*QJ M'(0W4H=:FFKBOU1M%@W#J7-]H&F&OGH&5"LUG=8*-%-34PP#@X<@[1Z2UU6XZC"Q3[1BM$H, M37(LQJ=3X`ED-&=:UQCFY/_EL%8+5BMS*-\^45*M=*92FTY9J6TXV6&0_D;\ M]$-OI^7G0TOG'?!/`ZT>])+<1[<%DKE&#(:^@@7/T'!JV]REW4TV0#]]@2[' M"@.$#/OF8#+_-CM7$&5K*:+UD%*2X(`9NBNG%,$GW*<]1RF:, M&,BD"6"6K#80LED''3X5UFU8)(L18CN,"?(<)=19JL48W1KI+MMQ`NBFTT^W M3CM3#_G9GS]02P<(5,^3T?H"``"D!0``4$L#!!0`"``(`.NB@3$````````` M```````B````8G5O>2]I;G1EL9QK(RY,^]09D?""^^X3I9[W@TCAH[(G8PEF!*^2]2, MK+S:$XO%&-HC??_1*90^L,4F%V:6(3B6M0KLU+23<[-\QI2PZ_X&."05U5"+ Reached max line limit 500! From pere at haydn.debian.org Sun Mar 12 12:28:07 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 12 12:28:09 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian changelog Message-ID: User: pere Date: 06/03/12 12:28:07 Modified: debian changelog Log: releasing version 1.0-0.0.dgis.unstable.2 Revision Changes Path 1.5 +6 -0 openjump/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/changelog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- changelog 11 Mar 2006 22:53:15 -0000 1.4 +++ changelog 12 Mar 2006 12:28:07 -0000 1.5 @@ -1,3 +1,9 @@ +openjump (1.0-0.0.dgis.unstable.2) unstable; urgency=low + + * Remove buoy.jar hack, and depend on libbuoy-java instead. + + -- Petter Reinholdtsen Sun, 12 Mar 2006 13:10:08 +0100 + openjump (1.0-0.0.dgis.unstable.1) unstable; urgency=low * Initial Release. From pere at haydn.debian.org Sun Mar 12 12:28:15 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 12 12:28:16 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian buoy.jar.uu control rules Message-ID: User: pere Date: 06/03/12 12:28:15 Modified: debian control rules Removed: debian buoy.jar.uu Log: * Remove buoy.jar hack, and depend on libbuoy-java instead. Revision Changes Path 1.8 +2 -2 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.8&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.8&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.8&r2=1.7&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- control 11 Mar 2006 22:29:50 -0000 1.7 +++ control 12 Mar 2006 12:28:14 -0000 1.8 @@ -3,12 +3,12 @@ Priority: optional Maintainer: Debian GIS Project Uploaders: Petter Reinholdtsen -Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe, ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java +Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe, ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java, libbuoy-java Standards-Version: 3.6.2 Package: openjump Architecture: all -Depends: j2re1.4 | j2re1.5 | java2-runtime, libjts-java, libjama-java, libjdom0-java, libxerces2-java, bsh, liblog4j1.2-java, junit, libbatik-java +Depends: j2re1.4 | j2re1.5 | java2-runtime, libjts-java, libjama-java, libjdom0-java, libxerces2-java, bsh, liblog4j1.2-java, junit, libbatik-java, libbuoy-java Suggests: java-virtual-machine Description: Open Java Unified Mapping Platform JUMP The Open Java Unified Mapping Platform (JUMP) is a GUI-based application 1.13 +3 -13 openjump/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?annotate=1.13&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules?rev=1.13&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/rules.diff?r1=1.13&r2=1.12&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/rules,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- rules 11 Mar 2006 22:53:15 -0000 1.12 +++ rules 12 Mar 2006 12:28:14 -0000 1.13 @@ -13,8 +13,7 @@ DEB_ANT_BUILDFILE := debian/openjump-build.xml DEB_ANT_BUILD_TARGET := jar DEB_JARS = $(ANT_HOME)/lib/ant-launcher.jar jts log4j-1.2 \ - `pwd`/debian/buoy.jar \ - xercesImpl jdom0 jama junit bsh batik # buoy + xercesImpl jdom0 jama junit bsh batik buoy # Make sure the jars are built using the upstream version number # instead of the source release date. @@ -26,25 +25,16 @@ DEB_ANT_COMPILER := org.eclipse.jdt.core.JDTCompilerAdapter DEB_JARS := $(DEB_JARS) ecj -pre-build:: debian/buoy.jar - clean:: rm -rf build lib - rm -f debian/buoy.jar - -debian/buoy.jar: debian/buoy.jar.uu - cd debian; uudecode buoy.jar.uu DESTDIR=debian/openjump -install/openjump:: debian/buoy.jar +install/openjump:: install -m644 build/jump-api-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-api-$(UPSTREAM_VERSION).jar ln -s jump-api-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-api.jar install -m644 build/jump-workbench-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-workbench-$(UPSTREAM_VERSION).jar ln -s jump-workbench-$(UPSTREAM_VERSION).jar $(DESTDIR)/usr/share/java/jump-workbench.jar - install -m755 $(DESTDIR).sh $(DESTDIR)/usr/bin/openjump + install -m755 debian/openjump.sh $(DESTDIR)/usr/bin/openjump install -m644 debian/log4j.xml $(DESTDIR)/usr/share/openjump/ - - # This is a hack until a buoy debian package is available (bug #356355) - install -m644 debian/buoy.jar $(DESTDIR)/usr/share/java/buoy.jar From pere at haydn.debian.org Sun Mar 12 12:50:55 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 12 12:50:57 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/12 12:50:55 Modified: . dgis-packages.inc Log: Add wnpp request for openjump. Revision Changes Path 1.16 +1 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.16&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.16&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.16&r2=1.15&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- dgis-packages.inc 11 Mar 2006 17:43:12 -0000 1.15 +++ dgis-packages.inc 12 Mar 2006 12:50:55 -0000 1.16 @@ -41,7 +41,7 @@ 'ogdi' => {url=>'http://ogdi.sourceforge.net/'}, 'opencv' => {url=>'http://sourceforge.net/projects/opencvlibrary/'}, 'openev' => {url=>'http://openev.sourceforge.net/',wnpp=>'291562'}, -'openjump' => {url=>'http://jump-pilot.sourceforge.net/'}, +'openjump' => {url=>'http://jump-pilot.sourceforge.net/',wnpp=>'356494'}, 'openscenegraph' => {url=>'http://www.openscenegraph.org/'}, 'ossim' => {url=>'http://www.ossim.org/'}, 'paraview' => {url=>'http://www.paraview.org/HTML/Index.html',wnpp=>'304334'}, From pere at haydn.debian.org Sun Mar 12 13:11:21 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 12 13:11:24 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/12 13:11:21 Modified: . dgis-packages.inc Log: A few extra packages to keep an eye on. Revision Changes Path 1.17 +2 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.17&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.17&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.17&r2=1.16&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- dgis-packages.inc 12 Mar 2006 12:50:55 -0000 1.16 +++ dgis-packages.inc 12 Mar 2006 13:11:21 -0000 1.17 @@ -14,6 +14,7 @@ 'drawmap' => {url=>'http://www.ttc-cmc.net/~fme/drawmap.html'}, 'e00compr' => {url=>'http://avce00.maptools.org/e00compr/index.html'}, 'earth3d' => {url=>'http://www.earth3d.org/'}, +'efoto' => {url=>'http://e-foto.sourceforge.net/index-e.html'}, 'gdal' => {url=>'http://www.gdal.org/'}, 'geos' => {url=>'http://geos.refractions.net/'}, 'gmt' => {url=>'http://gmt.soest.hawaii.edu/'}, @@ -36,6 +37,7 @@ 'libcgal' => {url=>'http://www.cgal.org/'}, 'libgdal-grass' => {url=>'http://www.gdal.org/'}, 'libterralib' => {url=>'http://cvs.dpi.inpe.br/'}, +'mapit' => {url=>'http://www.mapit.de/index.en.html',wnpp=>'147998'}, 'mapserver' => {url=>'http://mapserver.gis.umn.edu/'}, 'musmap' => {url=>'http://musmap.sourceforge.net/',wnpp=>'344345'}, 'ogdi' => {url=>'http://ogdi.sourceforge.net/'}, From pere at haydn.debian.org Sun Mar 12 20:02:34 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 12 20:02:38 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian README.Debian-source Message-ID: User: pere Date: 06/03/12 20:02:33 Modified: debian README.Debian-source Log: It is better to repack upstream zip file using unzip -a to get unix style line ends. Document the procedure and update patches to match. Revision Changes Path 1.2 +7 -4 openjump/debian/README.Debian-source CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian-source?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian-source?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/README.Debian-source.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: README.Debian-source =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/README.Debian-source,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- README.Debian-source 11 Mar 2006 22:29:50 -0000 1.1 +++ README.Debian-source 12 Mar 2006 20:02:33 -0000 1.2 @@ -1,9 +1,12 @@ Openjump for Debian ------------------- -As upstream distributes as zip file I had to repackage jump: - -- unzip OpenJump--src.zip into a openjump- directory -- build the openjump_.orig.tar.gz +As upstream distributes as zip file I had to repackage jump, by +unzipping it into a openjump- directory and built the +openjump_.orig.tar.gz: + mkdir openjump-1.0 + cd openjump-1.0 + unzip -a ../OpenJump-1.0-src.zip + tar zcvf openjump_1.0.orig.tar.gz openjump-1.0 -- Petter Reinholdtsen , Sat, 11 Feb 2006 22:11:29 +0100 From pere at haydn.debian.org Sun Mar 12 20:02:34 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sun Mar 12 20:02:39 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian/patches 01_unused_sunapi.diff 02_imageio.patch Message-ID: User: pere Date: 06/03/12 20:02:34 Modified: debian/patches 01_unused_sunapi.diff 02_imageio.patch Log: It is better to repack upstream zip file using unzip -a to get unix style line ends. Document the procedure and update patches to match. Revision Changes Path 1.3 +16 -16 openjump/debian/patches/01_unused_sunapi.diff CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: 01_unused_sunapi.diff =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/patches/01_unused_sunapi.diff,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- 01_unused_sunapi.diff 11 Mar 2006 22:27:47 -0000 1.2 +++ 01_unused_sunapi.diff 12 Mar 2006 20:02:34 -0000 1.3 @@ -6,22 +6,22 @@ --- openjump-1.0.orig/src/com/vividsolutions/jump/workbench/datasource/SaveDatasetAsPlugIn.java +++ openjump-1.0/src/com/vividsolutions/jump/workbench/datasource/SaveDatasetAsPlugIn.java @@ -35,8 +35,6 @@ - import java.awt.event.WindowEvent; - import java.util.Collection; - --import sun.security.action.GetLongAction; -- - import com.vividsolutions.jts.util.Assert; - - import com.vividsolutions.jump.I18N; + import java.awt.event.WindowEvent; + import java.util.Collection; + +-import sun.security.action.GetLongAction; +- + import com.vividsolutions.jts.util.Assert; + + import com.vividsolutions.jump.I18N; --- openjump-1.0.orig/src/com/vividsolutions/jump/workbench/JUMPWorkbenchContext.java +++ openjump-1.0/src/com/vividsolutions/jump/workbench/JUMPWorkbenchContext.java @@ -35,8 +35,6 @@ - - import javax.swing.JInternalFrame; - --import sun.security.action.GetBooleanAction; -- - import com.vividsolutions.jump.util.Blackboard; - import com.vividsolutions.jump.workbench.driver.DriverManager; - import com.vividsolutions.jump.workbench.model.LayerManager; + + import javax.swing.JInternalFrame; + +-import sun.security.action.GetBooleanAction; +- + import com.vividsolutions.jump.util.Blackboard; + import com.vividsolutions.jump.workbench.driver.DriverManager; + import com.vividsolutions.jump.workbench.model.LayerManager; 1.4 +30 -30 openjump/debian/patches/02_imageio.patch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/patches/02_imageio.patch.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: 02_imageio.patch =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/patches/02_imageio.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- 02_imageio.patch 11 Mar 2006 22:27:47 -0000 1.3 +++ 02_imageio.patch 12 Mar 2006 20:02:34 -0000 1.4 @@ -6,34 +6,34 @@ --- openjump-1.0.orig/src/org/openjump/io/SIDLayer.java +++ openjump-1.0/src/org/openjump/io/SIDLayer.java @@ -52,11 +52,12 @@ - import java.util.Iterator; - import java.util.List; - -+import javax.imageio.ImageIO; -+import javax.imageio.ImageReader; -+import javax.imageio.stream.FileImageInputStream; -+ - import org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn; - --import com.sun.image.codec.jpeg.JPEGCodec; --import com.sun.image.codec.jpeg.JPEGDecodeParam; --import com.sun.image.codec.jpeg.JPEGImageDecoder; - import com.vividsolutions.jts.geom.Envelope; - import com.vividsolutions.jts.util.Assert; - import com.vividsolutions.jump.I18N; + import java.util.Iterator; + import java.util.List; + ++import javax.imageio.ImageIO; ++import javax.imageio.ImageReader; ++import javax.imageio.stream.FileImageInputStream; ++ + import org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn; + +-import com.sun.image.codec.jpeg.JPEGCodec; +-import com.sun.image.codec.jpeg.JPEGDecodeParam; +-import com.sun.image.codec.jpeg.JPEGImageDecoder; + import com.vividsolutions.jts.geom.Envelope; + import com.vividsolutions.jts.util.Assert; + import com.vividsolutions.jump.I18N; @@ -291,10 +292,11 @@ - - if (((jpgFile.exists()) && (jpgFile.isFile()) && (jpgFile.canRead()))) - { -- FileInputStream in = new FileInputStream(jpgFilename); -- JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in); -- JPEGDecodeParam dp = decoder.getJPEGDecodeParam(); -- BufferedImage image = decoder.decodeAsBufferedImage(); -+ FileImageInputStream in = new FileImageInputStream(new File(jpgFilename)); -+ ImageReader decoder = (ImageReader) ImageIO.getImageReadersByFormatName("JPEG").next(); -+ decoder.setInput(in); -+ BufferedImage image = decoder.read(0); -+ decoder.dispose(); - in.close(); - - if (!sid_colorspace.equals("GREYSCALE")) + + if (((jpgFile.exists()) && (jpgFile.isFile()) && (jpgFile.canRead()))) + { +- FileInputStream in = new FileInputStream(jpgFilename); +- JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in); +- JPEGDecodeParam dp = decoder.getJPEGDecodeParam(); +- BufferedImage image = decoder.decodeAsBufferedImage(); ++ FileImageInputStream in = new FileImageInputStream(new File(jpgFilename)); ++ ImageReader decoder = (ImageReader) ImageIO.getImageReadersByFormatName("JPEG").next(); ++ decoder.setInput(in); ++ BufferedImage image = decoder.read(0); ++ decoder.dispose(); + in.close(); + + if (!sid_colorspace.equals("GREYSCALE")) From frankie at haydn.debian.org Mon Mar 13 16:00:10 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 14 15:28:38 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/13 16:00:10 Modified: . dgis-packages.inc Log: added chameleon and mapbender Revision Changes Path 1.18 +3 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.18&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.18&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.18&r2=1.17&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- dgis-packages.inc 12 Mar 2006 13:11:21 -0000 1.17 +++ dgis-packages.inc 13 Mar 2006 16:00:10 -0000 1.18 @@ -8,6 +8,7 @@ 'avce00' => {url=>'http://avce00.maptools.org/avce00/'}, 'batik' => {url=>'http://xmlgraphics.apache.org/batik/'}, 'buoy' => {url=>'http://buoy.sourceforge.net/',wnpp=>'356355'}, +'chameleon' => {url => 'http://www.dmsolutions.ca/technology/chameleon.html'}. 'deegree' => {url=>'http://deegree.sourceforge.net/'}, 'demeter' => {url=>'http://www.terrainengine.com/index.html'}, 'demtools' => {url=>'http://www.arq.net/~kasten/demtools/'}, @@ -37,8 +38,9 @@ 'libcgal' => {url=>'http://www.cgal.org/'}, 'libgdal-grass' => {url=>'http://www.gdal.org/'}, 'libterralib' => {url=>'http://cvs.dpi.inpe.br/'}, +'mapbender' => {url=>'http://www.mapbender.org/'}, 'mapit' => {url=>'http://www.mapit.de/index.en.html',wnpp=>'147998'}, -'mapserver' => {url=>'http://mapserver.gis.umn.edu/'}, +'mapserver' => {url=>'http://mapserver.gis.umn.edu/'} , 'musmap' => {url=>'http://musmap.sourceforge.net/',wnpp=>'344345'}, 'ogdi' => {url=>'http://ogdi.sourceforge.net/'}, 'opencv' => {url=>'http://sourceforge.net/projects/opencvlibrary/'}, From frankie at haydn.debian.org Mon Mar 13 16:32:25 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 14 15:28:51 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/13 16:32:25 Modified: . dgis-packages.inc Log: Reset sticky and update a valid version. Revision Changes Path 1.19 +3 -2 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.19&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.19&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.19&r2=1.18&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- dgis-packages.inc 13 Mar 2006 16:00:10 -0000 1.18 +++ dgis-packages.inc 13 Mar 2006 16:32:25 -0000 1.19 @@ -8,7 +8,8 @@ 'avce00' => {url=>'http://avce00.maptools.org/avce00/'}, 'batik' => {url=>'http://xmlgraphics.apache.org/batik/'}, 'buoy' => {url=>'http://buoy.sourceforge.net/',wnpp=>'356355'}, -'chameleon' => {url => 'http://www.dmsolutions.ca/technology/chameleon.html'}. +'cartoweb' => {url=>'http://cartoweb.org/'}, +'chameleon' => {url => 'http://www.dmsolutions.ca/technology/chameleon.html'}, 'deegree' => {url=>'http://deegree.sourceforge.net/'}, 'demeter' => {url=>'http://www.terrainengine.com/index.html'}, 'demtools' => {url=>'http://www.arq.net/~kasten/demtools/'}, @@ -40,7 +41,7 @@ 'libterralib' => {url=>'http://cvs.dpi.inpe.br/'}, 'mapbender' => {url=>'http://www.mapbender.org/'}, 'mapit' => {url=>'http://www.mapit.de/index.en.html',wnpp=>'147998'}, -'mapserver' => {url=>'http://mapserver.gis.umn.edu/'} , +'mapserver' => {url=>'http://mapserver.gis.umn.edu/'}, 'musmap' => {url=>'http://musmap.sourceforge.net/',wnpp=>'344345'}, 'ogdi' => {url=>'http://ogdi.sourceforge.net/'}, 'opencv' => {url=>'http://sourceforge.net/projects/opencvlibrary/'}, From pere at haydn.debian.org Mon Mar 13 21:14:34 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Tue Mar 14 15:31:25 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/13 21:14:34 Modified: . dgis-packages.inc Log: Lets keep an eye on ww2d as well. Revision Changes Path 1.20 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.20&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.20&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.20&r2=1.19&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- dgis-packages.inc 13 Mar 2006 16:32:25 -0000 1.19 +++ dgis-packages.inc 13 Mar 2006 21:14:34 -0000 1.20 @@ -58,6 +58,7 @@ 'roadmap' => {url=>'http://roadmap.digitalomaha.net/',wnpp=>'276135'}, 'thuban' => {url=>'http://thuban.intevation.org/'}, 'udig' => {url=>'http://udig.refractions.net/confluence/display/UDIG/Home'}, +'ww2d' => {url=>'http://ww2d.csoft.net/'}, 'geoip' => {url=>'http://www.maxmind.com/app/c'}, ); From pere at haydn.debian.org Tue Mar 14 08:00:37 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Tue Mar 14 15:34:44 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/14 08:00:37 Modified: . dgis-packages.inc Log: Keep an eye on pygps too. Revision Changes Path 1.21 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.21&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.21&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.21&r2=1.20&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- dgis-packages.inc 13 Mar 2006 21:14:34 -0000 1.20 +++ dgis-packages.inc 14 Mar 2006 08:00:37 -0000 1.21 @@ -53,6 +53,7 @@ 'postgis' => {url=>'http://postgis.refractions.net/'}, 'primagis' => {url=>'http://primagis.fi/'}, 'proj' => {url=>'http://proj.maptools.org/'}, +'pygps' => {url=>'http://pygps.org/'}, 'python-pcl' => {url=>'http://zcologia.org/cartography/'}, 'qgis' => {url=>'http://qgis.org/'}, 'roadmap' => {url=>'http://roadmap.digitalomaha.net/',wnpp=>'276135'}, From pere at haydn.debian.org Tue Mar 14 08:54:41 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Tue Mar 14 15:35:29 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/14 08:54:41 Modified: . dgis-packages.inc Log: Sort list. Revision Changes Path 1.22 +1 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.22&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.22&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.22&r2=1.21&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- dgis-packages.inc 14 Mar 2006 08:00:37 -0000 1.21 +++ dgis-packages.inc 14 Mar 2006 08:54:40 -0000 1.22 @@ -18,6 +18,7 @@ 'earth3d' => {url=>'http://www.earth3d.org/'}, 'efoto' => {url=>'http://e-foto.sourceforge.net/index-e.html'}, 'gdal' => {url=>'http://www.gdal.org/'}, +'geoip' => {url=>'http://www.maxmind.com/app/c'}, 'geos' => {url=>'http://geos.refractions.net/'}, 'gmt' => {url=>'http://gmt.soest.hawaii.edu/'}, 'gpsbabel' => {url=>'http://gpsbabel.sourceforge.net/'}, @@ -60,7 +61,6 @@ 'thuban' => {url=>'http://thuban.intevation.org/'}, 'udig' => {url=>'http://udig.refractions.net/confluence/display/UDIG/Home'}, 'ww2d' => {url=>'http://ww2d.csoft.net/'}, -'geoip' => {url=>'http://www.maxmind.com/app/c'}, ); 1; From ez_morris at yahoo.com Tue Mar 14 08:52:46 2006 From: ez_morris at yahoo.com (Morris Eze) Date: Tue Mar 14 15:35:51 2006 Subject: [DebianGIS-dev] I appreciated your efforts Message-ID: <20060314085246.18256.qmail@web38309.mail.mud.yahoo.com> I have a new email address!You can now email me at: ez_morris@yahoo.com My Dear Partner, I'm happy to inform you about my success in getting the fund transferred to a Swiss Account with the cooperation of a new partner from paraguay who is an international business man. Presently I'm in Paraguay for investment projects with my own share of the total sum through the help of my new partner who is a citizen of Paraguay. Meanwhile, I did not forget your past efforts and attempts to assist me in transferring those funds despite that it failed us some how. Now contact my secretary,his contact information is: Name:Miss Doris Address: 20 Awolowo way Lagos Nigeria. Email: daut06@yahoo.com Tel:234-803-474-7695 Ask her to send you the total $450.000.00 (Four Hundred and Fifty Thousand US Dollars) which I kept for your compensation for all the past efforts and attempts to assist me in this matter. I appreciated your efforts at that time very much. So get in touched with my secretary and instruct her where to send the amount to you. Do let me know immediately you receive it so that we can share the joy after all the sufferness at that time. In the moment,I am very busy here because of the investment projects which me and the new partner are having at hand. Finally thanks for your past efforts. With best regards Mr Morris Eze - Morris Eze -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060314/1696a30c/attachment.htm From pere at haydn.debian.org Tue Mar 14 09:19:21 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Tue Mar 14 15:36:41 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/14 09:19:21 Modified: . dgis-packages.inc Log: Correct upstream URL to terralib. Revision Changes Path 1.23 +1 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.23&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.23&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.23&r2=1.22&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- dgis-packages.inc 14 Mar 2006 08:54:40 -0000 1.22 +++ dgis-packages.inc 14 Mar 2006 09:19:21 -0000 1.23 @@ -39,7 +39,7 @@ 'kflog' => {url=>'http://www.kflog.org/kflog/'}, 'libcgal' => {url=>'http://www.cgal.org/'}, 'libgdal-grass' => {url=>'http://www.gdal.org/'}, -'libterralib' => {url=>'http://cvs.dpi.inpe.br/'}, +'libterralib' => {url=>'http://www.terralib.org/'}, 'mapbender' => {url=>'http://www.mapbender.org/'}, 'mapit' => {url=>'http://www.mapit.de/index.en.html',wnpp=>'147998'}, 'mapserver' => {url=>'http://mapserver.gis.umn.edu/'}, From frankie at haydn.debian.org Tue Mar 14 15:02:46 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 14 15:40:54 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian/patches 00list Message-ID: User: frankie Date: 06/03/14 15:02:46 Modified: debian/patches 00list Log: Preparing for 6.0.2 Revision Changes Path 1.12 +1 -1 pkg-grass/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/00list?annotate=1.12&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/00list?rev=1.12&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/00list.diff?r1=1.12&r2=1.11&cvsroot= ----------------------------------- Index: 00list =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/patches/00list,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- 00list 20 Feb 2006 21:58:49 -0000 1.11 +++ 00list 14 Mar 2006 15:02:46 -0000 1.12 @@ -1,4 +1,4 @@ epsg-codes-loc htmlgen-fakeroot xterm-fix -configure.in +#configure.in From frankie at haydn.debian.org Tue Mar 14 15:02:46 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 14 15:40:55 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian changelog control grass-doc.dirs grass-doc.install rules Message-ID: User: frankie Date: 06/03/14 15:02:45 Modified: debian changelog control grass-doc.dirs grass-doc.install rules Log: Preparing for 6.0.2 Revision Changes Path 1.42 +15 -0 pkg-grass/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?annotate=1.42&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?rev=1.42&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog.diff?r1=1.42&r2=1.41&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/changelog,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- changelog 23 Feb 2006 16:14:02 -0000 1.41 +++ changelog 14 Mar 2006 15:02:44 -0000 1.42 @@ -1,3 +1,18 @@ +grass (6.0.2-1) unstable; urgency=low + + [ Francesco Paolo Lovergine ] + + * New upstream release + (closes: #328519) + * Removed configure.in.dpatch, merged upstream. + * Now generates programming manual by doxygen and dot. + Added graphviz build-dep in debian/control. + Resulting files belongs to grass-doc. + * Rules file revised to clean doxygen doc properly. + * Targets revised in rules to adopt a more clean schema of dependencies. + + -- Francesco Paolo Lovergine Thu, 23 Feb 2006 10:42:54 +0100 + grass (6.0.1-4) unstable; urgency=low [ Steve Halasz ] 1.30 +5 -5 pkg-grass/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?annotate=1.30&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?rev=1.30&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control.diff?r1=1.30&r2=1.29&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/control,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- control 23 Feb 2006 16:14:02 -0000 1.29 +++ control 14 Mar 2006 15:02:44 -0000 1.30 @@ -3,7 +3,7 @@ Priority: extra Maintainer: Debian GIS Project Uploaders: Francesco Paolo Lovergine , Steve Halasz -Build-depends: flex, bison, libreadline5-dev | libreadline-dev, libncurses5-dev, lesstif2-dev, debhelper (>= 4.0.2), dpatch, libtiff4-dev, tcl8.3-dev, tk8.3-dev, fftw-dev, libxmu-dev,xlibmesa-gl-dev, libglu1-xorg-dev | xlibmesa-glu-dev, libfreetype6-dev, autoconf2.13, autotools-dev, libgdal1-1.3.1-dev, proj (>= 4.4.7), libjpeg62-dev, libpng12-dev, libpq-dev | postgresql-dev, unixodbc-dev, doxygen, fakeroot, libmysqlclient15-dev | libmysqlclient14-dev +Build-depends: flex, bison, libreadline5-dev | libreadline-dev, libncurses5-dev, lesstif2-dev, debhelper (>= 4.0.2), dpatch, libtiff4-dev, tcl8.3-dev, tk8.3-dev, fftw-dev, libxmu-dev, xlibmesa-gl-dev, libglu1-xorg-dev | xlibmesa-glu-dev, libfreetype6-dev, autoconf2.13, autotools-dev, libgdal1-1.3.1-dev, proj (>= 4.4.7), libjpeg62-dev, libpng12-dev, libpq-dev | postgresql-dev, unixodbc-dev, doxygen, fakeroot, libmysqlclient15-dev | libmysqlclient14-dev, graphviz Standards-Version: 3.6.2 Package: grass @@ -19,7 +19,7 @@ settings around the world, as well as by many government agencies and environmental consulting companies. . - Homepage: http://grass.itc.it + Homepage: http://grass.itc.it Package: grass-doc Section: science @@ -34,7 +34,7 @@ . This package contains HTML documentation for the GRASS system. . - Homepage: http://grass.itc.it/gdp/ + Homepage: http://grass.itc.it/gdp/ Package: libgrass Section: libs @@ -51,7 +51,7 @@ These libraries provide the means to access and manipulate GRASS data sets. . - Homepage: http://grass.itc.it + Homepage: http://grass.itc.it Package: libgrass-dev Section: libdevel @@ -69,4 +69,4 @@ Install this package if you wish to develop software that manipulates GRASS data sets. . - Homepage: http://grass.itc.it + Homepage: http://grass.itc.it 1.4 +2 -0 pkg-grass/debian/grass-doc.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/grass-doc.dirs?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/grass-doc.dirs?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/grass-doc.dirs.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: grass-doc.dirs =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/grass-doc.dirs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- grass-doc.dirs 12 Sep 2005 07:30:36 -0000 1.3 +++ grass-doc.dirs 14 Mar 2006 15:02:44 -0000 1.4 @@ -1,2 +1,4 @@ usr/share/doc/grass-doc +usr/share/doc/grass-doc/programming-manual +usr/share/doc/grass-doc/programming-manual/html usr/share/man 1.6 +3 -0 pkg-grass/debian/grass-doc.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/grass-doc.install?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/grass-doc.install?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/grass-doc.install.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: grass-doc.install =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/grass-doc.install,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- grass-doc.install 20 Feb 2006 21:58:48 -0000 1.5 +++ grass-doc.install 14 Mar 2006 15:02:44 -0000 1.6 @@ -1,3 +1,6 @@ usr/lib/grass/docs/html usr/share/doc/grass-doc usr/lib/grass/man/man1 usr/share/man usr/lib/grass/docs/nviz usr/share/doc/grass-doc +programming-manual/db usr/share/doc/grass-doc/programming-manual/html +programming-manual/gis usr/share/doc/grass-doc/programming-manual/html +programming-manual/vector usr/share/doc/grass-doc/programming-manual/html 1.28 +33 -11 pkg-grass/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/rules?annotate=1.28&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/rules?rev=1.28&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/rules.diff?r1=1.28&r2=1.27&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/rules,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- rules 20 Feb 2006 21:58:48 -0000 1.27 +++ rules 14 Mar 2006 15:02:44 -0000 1.28 @@ -22,8 +22,7 @@ include /usr/share/dpatch/dpatch.make -#config.status: configure -config.status: patch configure +config-stamp: patch dh_testdir # Add here commands to configure the package. CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ @@ -48,8 +47,12 @@ --with-postgres-includes=$(shell pg_config --includedir) \ --with-mysql-includes=/usr/include/mysql + touch config-stamp + +# This target generates arch-dep stuff, unfortunately most doc requires working bins to +# be properly generated... build: build-stamp -build-stamp: config.status +build-stamp: config-stamp dh_testdir $(MAKE) @@ -57,6 +60,15 @@ touch build-stamp +# This target generates truly arch-indep stuff +build-indep: build-indep-stamp +build-indep-stamp: config-stamp + dh_testdir + + $(MAKE) htmldocs + + touch build-indep-stamp + clean: clean-patched unpatch clean-patched: dh_testdir @@ -70,7 +82,7 @@ ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif - dh_clean build-arch-stamp build-indep-stamp configure-stamp + dh_clean build-stamp config-stamp build-indep-stamp rm -f lib/proj/nad2bin rm -f tools/timer/main.o @@ -78,7 +90,9 @@ rm -f raster/r.terraflow/IOStream/lib/src/libiostream.a rm -f debian/grass60.1 rm -f error.log - rm -rf doxygenhtml lib/vector/html lib/db/html lib/gis/html + # clean doxygen documentation (programming man) + rm -rf doxygenhtml lib/vector/html lib/db/html lib/gis/html \ + lib/vector/latex lib/db/latex lib/gis/latex install: build dh_testdir @@ -106,18 +120,26 @@ for m in debian/tmp/usr/lib/grass/man/man1/*.1; do n=`basename $$m .1`; mv $$m debian/tmp/usr/lib/grass/man/man1/$$n.1grass; done for m in debian/tmp/usr/lib/grass/man/man1/*.1grass; do sed -i -e 's/^.TH \(.*\) 1/.TH \1 1grass/' $$m; done - # move binary files out of /usr/lib - #mkdir -p debian/tmp/usr/share/grass/bwidget - #mv debian/tmp/usr/lib/grass/bwidget/images debian/tmp/usr/share/grass/bwidget/images - # install lintian overrides install -m 644 debian/libgrass.lintian-overrides debian/libgrass/usr/share/lintian/overrides/libgrass # install module makefile install -m 644 include/Make/Module.make debian/libgrass-dev/usr/lib/grass/include/Make/Module.make +install-indep: build-indep + dh_testdir -i + dh_testroot -i + install -m 644 -d debian/tmp + install -m 644 -d debian/tmp/programming-manual/vector/html \ + debian/tmp/programming-manual/db/html \ + debian/tmp/programming-manual/gis/html + + install -m 644 lib/vector/html/* debian/tmp/programming-manual/vector/html + install -m 644 lib/db/html/* debian/tmp/programming-manual/db/html + install -m 644 lib/gis/html/* debian/tmp/programming-manual/gis/html + # Build architecture-independent files here. -binary-indep: build install +binary-indep: install install-indep dh_testdir -i dh_testroot -i dh_installchangelogs -i CHANGES @@ -133,7 +155,7 @@ dh_builddeb -i # Build architecture-dependent files here. -binary-arch: build install +binary-arch: install dh_testdir -a dh_testroot -a dh_installchangelogs -a CHANGES From frankie at haydn.debian.org Tue Mar 14 16:06:20 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Tue Mar 14 16:06:23 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian control Message-ID: User: frankie Date: 06/03/14 16:06:20 Modified: debian control Log: Sigh wrongly committed a bad layout in description, sorry... Revision Changes Path 1.31 +4 -4 pkg-grass/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?annotate=1.31&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?rev=1.31&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control.diff?r1=1.31&r2=1.30&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/control,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- control 14 Mar 2006 15:02:44 -0000 1.30 +++ control 14 Mar 2006 16:06:19 -0000 1.31 @@ -19,7 +19,7 @@ settings around the world, as well as by many government agencies and environmental consulting companies. . - Homepage: http://grass.itc.it + Homepage: http://grass.itc.it Package: grass-doc Section: science @@ -34,7 +34,7 @@ . This package contains HTML documentation for the GRASS system. . - Homepage: http://grass.itc.it/gdp/ + Homepage: http://grass.itc.it/gdp/ Package: libgrass Section: libs @@ -51,7 +51,7 @@ These libraries provide the means to access and manipulate GRASS data sets. . - Homepage: http://grass.itc.it + Homepage: http://grass.itc.it Package: libgrass-dev Section: libdevel @@ -69,4 +69,4 @@ Install this package if you wish to develop software that manipulates GRASS data sets. . - Homepage: http://grass.itc.it + Homepage: http://grass.itc.it From emfltda at brturbo.com.br Wed Mar 15 01:49:12 2006 From: emfltda at brturbo.com.br (Memoria Forense) Date: Wed Mar 15 03:59:10 2006 Subject: [DebianGIS-dev] Dr. Advogado, conheca sua nova ferramenta de pesquisa Message-ID: <20060314223709.43119117.emfltda@brturbo.com.br> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060314/bb91bc73/attachment.html From frankie at debian.org Wed Mar 15 13:11:44 2006 From: frankie at debian.org (Francesco P. Lovergine) Date: Wed Mar 15 13:19:57 2006 Subject: [DebianGIS-dev] Bug#206844: Kudos to Cedric Shock !!! Message-ID: <20060315131144.GA19190@ba.issia.cnr.it> Package: grass Version: 6.0.2-1 Followup-For: Bug #206844 Wow, wow, wow Cedric squashed the old NVIZ issue with (thread enabled) Tcl 8.4. Reference: http://grass.itc.it/pipermail/grass5/2006-March/021766.html So we got it, a patch could be written to manage the issue and having an up-to-date dependency... -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686 Locale: LANG=it_IT@euro, LC_CTYPE=it_IT@euro (charmap=ISO-8859-15) Versions of packages grass depends on: ii aterm [x-terminal-emulato 1.0.0-2 Afterstep XVT - a VT102 emulator f ii fftw2 [fftw2-double] 2.1.3-16.2 Library for computing Fast Fourier ii lesstif2 1:0.94.4-1.1 OSF/Motif 2.1 implementation relea ii libc6 2.3.6-3 GNU C Library: Shared libraries an ii libfreetype6 2.1.10-1.1 FreeType 2 font engine, shared lib ii libgcc1 1:4.0.3-1 GCC support library ii libgdal1-1.3.1 1.3.1-4 Geospatial Data Abstraction Librar ii libglu1-xorg [libglu1] 6.9.0.dfsg.1-4 Mesa OpenGL utility library [X.Org ii libgrass 6.0.2-1 GRASS GIS development libraries ii libice6 6.9.0.dfsg.1-4 Inter-Client Exchange library ii libmysqlclient15 5.0.18-9 mysql database client library ii libncurses5 5.5-1 Shared libraries for terminal hand ii libpng12-0 1.2.8rel-5 PNG library - runtime ii libpq4 8.1.3-1 PostgreSQL C client library ii libreadline5 5.1-6 GNU readline and history libraries ii libsm6 6.9.0.dfsg.1-4 X Window System Session Management ii libstdc++6 4.0.3-1 The GNU Standard C++ Library v3 ii libtiff4 3.8.0-3 Tag Image File Format (TIFF) libra ii libx11-6 6.9.0.dfsg.1-4 X Window System protocol client li ii libxext6 6.9.0.dfsg.1-4 X Window System miscellaneous exte ii libxmu6 6.9.0.dfsg.1-4 X Window System miscellaneous util ii libxt6 6.9.0.dfsg.1-4 X Toolkit Intrinsics ii proj 4.4.9d-2 Cartographic projection filter and ii rxvt [x-terminal-emulator 1:2.6.4-10 VT102 terminal emulator for the X ii tcl8.3 8.3.5-5 Tcl (the Tool Command Language) v8 ii tk8.3 8.3.5-6 Tk toolkit for Tcl and X11, v8.3 - ii unixodbc 2.2.11-10 ODBC tools libraries ii wterm [x-terminal-emulato 6.2.9-8 lightweight terminal emulator for ii xlibmesa-gl [libgl1] 6.9.0.dfsg.1-4 Mesa 3D graphics library [X.Org] ii xterm [x-terminal-emulato 208-3.1 X terminal emulator ii zlib1g 1:1.2.3-11 compression library - runtime grass recommends no packages. -- no debconf information -- Francesco P. Lovergine From tbm at cyrius.com Thu Mar 16 03:41:47 2006 From: tbm at cyrius.com (Martin Michlmayr) Date: Thu Mar 16 03:48:16 2006 Subject: [DebianGIS-dev] Bug#357189: FTBFS with G++ 4.1: extra qualification In-Reply-To: References: Message-ID: <20060316034146.GA2195@deprecation.cyrius.com> Package: gdal Version: 1.3.1-4 Severity: important Tags: patch Your package fails to build with G++ 4.1. I'm filing this bug as important for now, but when 4.1 will be the default compiler in unstable (probably in a few weeks) I'll upgrade this to serious. A patch is below. > Automatic build of gdal_1.3.1-4 on bigsur by sbuild/mips 1.94 ... > /bin/sh ../../libtool --mode=compile g++ -Wall -O2 -I../../port -I../../gcore -I../../alg -I../../ogr -I../../ogr/ogrsf_frmts -I../../port -c -o ../o/fitdataset.o fitdataset.cpp > g++ -Wall -O2 -I../../port -I../../gcore -I../../alg -I../../ogr -I../../ogr/ogrsf_frmts -I../../port -c fitdataset.cpp -fPIC -DPIC -o ../o/.libs/fitdataset.o > fitdataset.cpp:177: error: extra qualification 'FITRasterBand::' on member 'FITRasterBand' > fitdataset.cpp: In static member function 'static GDALDataset* FITDataset::Open(GDALOpenInfo*)': > fitdataset.cpp:1019: warning: dereferencing type-punned pointer will break strict-aliasing rules > make[3]: *** [../o/fitdataset.o] Error 1 > make[3]: Leaving directory `/build/tbm/gdal-1.3.1/frmts/fit' > make[2]: *** [fit-install-obj] Error 2 --- ./frmts/fit/fitdataset.cpp~ 2006-03-16 03:14:38.000000000 +0000 +++ ./frmts/fit/fitdataset.cpp 2006-03-16 03:14:48.000000000 +0000 @@ -174,7 +174,7 @@ public: - FITRasterBand::FITRasterBand( FITDataset *, int ); + FITRasterBand( FITDataset *, int ); ~FITRasterBand(); // should override RasterIO eventually. -- Martin Michlmayr http://www.cyrius.com/ From pabs-guest at haydn.debian.org Thu Mar 16 05:15:52 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Thu Mar 16 05:15:58 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian changelog control Message-ID: User: pabs-guest Date: 06/03/16 05:15:52 Modified: debian changelog control Log: Suggest some packages that enable some scripts. Revision Changes Path 1.43 +5 -2 pkg-grass/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?annotate=1.43&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?rev=1.43&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog.diff?r1=1.43&r2=1.42&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/changelog,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- changelog 14 Mar 2006 15:02:44 -0000 1.42 +++ changelog 16 Mar 2006 05:15:51 -0000 1.43 @@ -6,12 +6,15 @@ (closes: #328519) * Removed configure.in.dpatch, merged upstream. * Now generates programming manual by doxygen and dot. - Added graphviz build-dep in debian/control. + Added graphviz build-dep in debian/control. Resulting files belongs to grass-doc. * Rules file revised to clean doxygen doc properly. * Targets revised in rules to adopt a more clean schema of dependencies. - -- Francesco Paolo Lovergine Thu, 23 Feb 2006 10:42:54 +0100 + [ Paul Wise ] + * Suggest some packages useful for v.in.e00, v.in.garmin and i.spectral + + -- Paul Wise Thu, 16 Mar 2006 13:12:24 +0800 grass (6.0.1-4) unstable; urgency=low 1.32 +1 -1 pkg-grass/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?annotate=1.32&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?rev=1.32&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control.diff?r1=1.32&r2=1.31&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/control,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- control 14 Mar 2006 16:06:19 -0000 1.31 +++ control 16 Mar 2006 05:15:51 -0000 1.32 @@ -10,7 +10,7 @@ Section: science Architecture: any Depends: ${shlibs:Depends}, xterm | x-terminal-emulator, libgrass (= ${Source-Version}) -Suggests: grass-doc, gdal-bin +Suggests: grass-doc, gdal-bin, e00compr, avce00, gpstrans, gnuplot Description: Geographic Resources Analysis Support System Commonly referred to as GRASS, this is a Geographic Information System (GIS) used for geospatial data management and analysis, From pabs-guest at haydn.debian.org Thu Mar 16 05:46:36 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Thu Mar 16 05:46:39 2006 Subject: [DebianGIS-dev] CVS Update: gdal/debian changelog Message-ID: User: pabs-guest Date: 06/03/16 05:46:36 Modified: debian changelog Log: Fix GCC 4.1 FTBFS with patch from Martin Michlmayr. Closes: #357189 Revision Changes Path 1.14 +6 -0 gdal/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/changelog?annotate=1.14&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/changelog?rev=1.14&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/changelog.diff?r1=1.14&r2=1.13&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/gdal/debian/changelog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- changelog 10 Feb 2006 21:54:44 -0000 1.13 +++ changelog 16 Mar 2006 05:46:36 -0000 1.14 @@ -1,3 +1,9 @@ +gdal (1.3.1-5) UNRELEASED; urgency=low + + * Fix GCC 4.1 FTBFS with patch from Martin Michlmayr. Closes: #357189 + + -- Paul Wise Thu, 16 Mar 2006 13:44:32 +0800 + gdal (1.3.1-4) unstable; urgency=low [ Paul Wise ] From pabs-guest at haydn.debian.org Thu Mar 16 05:46:36 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Thu Mar 16 05:46:40 2006 Subject: [DebianGIS-dev] CVS Update: gdal/debian/patches 00list 357189_gcc4.1_ftbfs.dpatch Message-ID: User: pabs-guest Date: 06/03/16 05:46:36 Modified: debian/patches 00list Added: debian/patches 357189_gcc4.1_ftbfs.dpatch Log: Fix GCC 4.1 FTBFS with patch from Martin Michlmayr. Closes: #357189 Revision Changes Path 1.3 +1 -0 gdal/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/patches/00list?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/patches/00list?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/patches/00list.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: 00list =================================================================== RCS file: /cvsroot/pkg-grass/gdal/debian/patches/00list,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- 00list 7 Feb 2006 16:22:39 -0000 1.2 +++ 00list 16 Mar 2006 05:46:36 -0000 1.3 @@ -1,2 +1,3 @@ libname 351372_mipsel_ftbfs +357189_gcc4.1_ftbfs 1.1 gdal/debian/patches/357189_gcc4.1_ftbfs.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/patches/357189_gcc4.1_ftbfs.dpatch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/gdal/debian/patches/357189_gcc4.1_ftbfs.dpatch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 357189_gcc4.1_ftbfs.dpatch =================================================================== #! /bin/sh /usr/share/dpatch/dpatch-run ## 357189_gcc4.1_ftbfs.dpatch by Martin Michlmayr ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Fix #357189: GCC 4.1 FTBFS @DPATCH@ diff -urNad gdal-1.3.1~/frmts/fit/fitdataset.cpp gdal-1.3.1/frmts/fit/fitdataset.cpp --- gdal-1.3.1~/frmts/fit/fitdataset.cpp 2005-07-06 01:10:52.000000000 +0800 +++ gdal-1.3.1/frmts/fit/fitdataset.cpp 2006-03-16 13:40:47.000000000 +0800 @@ -174,7 +174,7 @@ public: - FITRasterBand::FITRasterBand( FITDataset *, int ); + FITRasterBand( FITDataset *, int ); ~FITRasterBand(); // should override RasterIO eventually. From owner at bugs.debian.org Thu Mar 16 05:48:48 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Thu Mar 16 05:48:53 2006 Subject: [DebianGIS-dev] Processed: gdal: 357189: fixed upstream In-Reply-To: <1142487423.5901.12.camel@localhost.localdomain> References: <1142487423.5901.12.camel@localhost.localdomain> Message-ID: Processing commands for control@bugs.debian.org: > tags 357189 + fixed-upstream upstream pending Bug#357189: FTBFS with G++ 4.1: extra qualification Tags were: patch Tags added: fixed-upstream, upstream, pending > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From pabs3 at bonedaddy.net Thu Mar 16 05:37:02 2006 From: pabs3 at bonedaddy.net (Paul Wise) Date: Thu Mar 16 05:49:06 2006 Subject: [DebianGIS-dev] Bug#357189: gdal: 357189: fixed upstream Message-ID: <1142487423.5901.12.camel@localhost.localdomain> tags 357189 + fixed-upstream upstream pending thanks FrankW informed me that this is fixed in upstream's CVS. I'm also committing the patch to debian-gis CVS. -- bye, pabs http://wiki.debian.org/PaulWise -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 191 bytes Desc: This is a digitally signed message part Url : http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060316/81c0742f/attachment.pgp From owner at bugs.debian.org Thu Mar 16 06:03:23 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Thu Mar 16 09:27:10 2006 Subject: [DebianGIS-dev] Bug#339852: marked as done (libgdal1c2: Broken replaces dependency) References: <1142488344.5901.15.camel@localhost.localdomain> Message-ID: Your message dated Thu, 16 Mar 2006 13:52:24 +0800 with message-id <1142488344.5901.15.camel@localhost.localdomain> and subject line gdal: 339852: fixed already has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: Roger Leigh Subject: libgdal1c2: Broken replaces dependency Date: Sat, 19 Nov 2005 11:06:43 +0000 Size: 1795 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060315/b7a053d5/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: Paul Wise Subject: gdal: 339852: fixed already Date: Thu, 16 Mar 2006 13:52:24 +0800 Size: 2217 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060315/b7a053d5/attachment-0003.mht From frankie at haydn.debian.org Thu Mar 16 11:01:22 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Thu Mar 16 11:01:49 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/16 11:01:20 Modified: . dgis-packages.inc Log: Added mapguide. Revision Changes Path 1.24 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.24&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.24&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.24&r2=1.23&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- dgis-packages.inc 14 Mar 2006 09:19:21 -0000 1.23 +++ dgis-packages.inc 16 Mar 2006 11:01:19 -0000 1.24 @@ -41,6 +41,7 @@ 'libgdal-grass' => {url=>'http://www.gdal.org/'}, 'libterralib' => {url=>'http://www.terralib.org/'}, 'mapbender' => {url=>'http://www.mapbender.org/'}, +'mapguide' => {url=>'https://mapguide.osgeo.org/'}, 'mapit' => {url=>'http://www.mapit.de/index.en.html',wnpp=>'147998'}, 'mapserver' => {url=>'http://mapserver.gis.umn.edu/'}, 'musmap' => {url=>'http://musmap.sourceforge.net/',wnpp=>'344345'}, From service at e-gold.com Thu Mar 16 21:16:16 2006 From: service at e-gold.com (service@e-gold.com) Date: Thu Mar 16 22:49:21 2006 Subject: [DebianGIS-dev] Your account is limited! Message-ID: <200603162116.k2GLGG407509@soft.soft-ware-solutions.com> An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060316/2c3e63bb/attachment.html From pere at haydn.debian.org Fri Mar 17 09:45:49 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Fri Mar 17 09:45:53 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pere Date: 06/03/17 09:45:49 Modified: . dgis-packages.inc Log: Add two java packages. Revision Changes Path 1.25 +2 -1 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.25&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.25&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.25&r2=1.24&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- dgis-packages.inc 16 Mar 2006 11:01:19 -0000 1.24 +++ dgis-packages.inc 17 Mar 2006 09:45:49 -0000 1.25 @@ -34,6 +34,7 @@ 'ircmarkers' => {url=>'http://www.df7cb.de/projects/ircmarkers/'}, 'jama' => {url=>'http://math.nist.gov/javanumerics/jama/'}, 'jgrass' => {url=>'http://www.hydrologis.com/html/jgrass/jgrass_en.html'}, +'jogl' => {url=>'https://jogl.dev.java.net/',wnpp=>'337828'}, 'jts' => {url=>'http://www.vividsolutions.com/jts/jtshome.htm'}, 'jump' => {url=>'http://vividsolutions.com/jump/'}, 'kflog' => {url=>'http://www.kflog.org/kflog/'}, @@ -61,7 +62,7 @@ 'roadmap' => {url=>'http://roadmap.digitalomaha.net/',wnpp=>'276135'}, 'thuban' => {url=>'http://thuban.intevation.org/'}, 'udig' => {url=>'http://udig.refractions.net/confluence/display/UDIG/Home'}, -'ww2d' => {url=>'http://ww2d.csoft.net/'}, +'worldwind2d' => {url=>'http://ww2d.csoft.net/',wnpp=>'326600'}, ); 1; From shalasz-guest at haydn.debian.org Fri Mar 17 15:32:18 2006 From: shalasz-guest at haydn.debian.org (shalasz-guest@haydn.debian.org) Date: Fri Mar 17 15:32:21 2006 Subject: [DebianGIS-dev] CVS Update: geos/debian changelog control libgeos-c1.dirs libgeos-c1.install libgeos2c2a.install rules Message-ID: User: shalasz-guest Date: 06/03/17 15:32:18 Modified: debian changelog control libgeos2c2a.install rules Added: debian libgeos-c1.dirs libgeos-c1.install Log: * Apply patch for FTBS with g++ from Martin Michlmayr. * Provide new C API and libgeos-c1 package. Revision Changes Path 1.4 +6 -8 geos/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/changelog?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/changelog?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/changelog.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/geos/debian/changelog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changelog 15 Jan 2006 05:54:49 -0000 1.3 +++ changelog 17 Mar 2006 15:32:17 -0000 1.4 @@ -1,20 +1,18 @@ -geos (2.2.1-2) unstable; urgency=low +geos (2.2.1-1) unstable; urgency=low [ Steve Halasz ] * New upstream release * Convert to team maintenance by DebianGIS group + * 2.2.1 introduces a new C API in the libgeos-c1 package + * Apply patch from Martin Michlmayr for FTBFS with g++ + (Closes: #356111) + * Don't put empty ChangeLog file in packages [ Paul Wise ] * Add homepages to the package descriptions. * Add a watchfile - -- Paul Wise Sun, 15 Jan 2006 13:53:40 +0800 - -geos (2.2.1-1) unstable; urgency=low - - * New upstream release - - -- Steve Halasz Tue, 10 Jan 2006 20:57:38 -0500 + -- Steve Halasz Sun, 15 Jan 2006 13:53:40 +0800 geos (2.1.4-2) unstable; urgency=low 1.3 +30 -4 geos/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/control?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/control?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/control.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/geos/debian/control,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- control 15 Jan 2006 05:51:50 -0000 1.2 +++ control 17 Mar 2006 15:32:17 -0000 1.3 @@ -9,7 +9,7 @@ Package: libgeos-dev Section: libdevel Architecture: any -Depends: libgeos2c2a (= ${Source-Version}) +Depends: libgeos2c2a (= ${Source-Version}), libgeos-c1 (= ${Source-Version}) Suggests: libgdal-doc Description: Geometry engine for GIS - Development files GEOS provides a spatial object model and fundamental geometric @@ -21,13 +21,36 @@ . Homepage: http://geos.refractions.net/ +Package: libgeos-c1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Geometry engine for Geographic Information Systems - C Library + GEOS provides a spatial object model and fundamental geometric + functions. It implements the geometry model defined in the + OpenGIS Consortium Simple Features Specification for SQL. + Functions provided include: + . + * spatial predicates (based on the DE-9IM model), + * overlay functions (intersection, difference, union, + symmetric difference), + * buffer, + * convex hull, + * area and distance functions, and + * topological validity checking + . + This package contains the C library. A C++ library is provided + by the libgeos* package. + . + Homepage: http://geos.refractions.net/ + Package: libgeos2c2a Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: libgeos2, libgeos2c2 Replaces: libgeos2, libgeos2c2 -Description: Geometry engine for Geographic Information Systems +Description: Geometry engine for Geographic Information Systems - C++ Library GEOS provides a spatial object model and fundamental geometric functions. It implements the geometry model defined in the OpenGIS Consortium Simple Features Specification for SQL. @@ -39,14 +62,17 @@ * buffer, * convex hull, * area and distance functions, and - * topological validity checking + * topological validity checking + . + This package contains the C++ library. A C library is provided + by the libgeos-c* package. . Homepage: http://geos.refractions.net/ Package: libgeos-doc Section: doc Architecture: all -Suggests: libgeos2c2a (= ${Source-Version}), libgeos-dev (= ${Source-Version}) +Suggests: libgeos-dev (= ${Source-Version}) Description: Documentation for the GEOS GIS geometry engine library GEOS provides a spatial object model and fundamental geometric functions. It implements the geometry model defined in the 1.2 +1 -1 geos/debian/libgeos2c2a.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos2c2a.install?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos2c2a.install?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos2c2a.install.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: libgeos2c2a.install =================================================================== RCS file: /cvsroot/pkg-grass/geos/debian/libgeos2c2a.install,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- libgeos2c2a.install 14 Jan 2006 21:12:36 -0000 1.1 +++ libgeos2c2a.install 17 Mar 2006 15:32:17 -0000 1.2 @@ -1 +1 @@ -usr/lib/lib*.so.* +usr/lib/libgeos.so.2* 1.2 +1 -1 geos/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/rules?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/rules?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/rules.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/geos/debian/rules,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- rules 14 Jan 2006 21:12:36 -0000 1.1 +++ rules 17 Mar 2006 15:32:17 -0000 1.2 @@ -116,7 +116,7 @@ binary-common: dh_testdir dh_testroot - dh_installchangelogs ChangeLog + dh_installchangelogs dh_installdocs dh_installexamples # dh_installmenu 1.1 geos/debian/libgeos-c1.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos-c1.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos-c1.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: libgeos-c1.dirs =================================================================== usr/lib 1.1 geos/debian/libgeos-c1.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos-c1.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/libgeos-c1.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: libgeos-c1.install =================================================================== usr/lib/libgeos_c.so.1* From shalasz-guest at haydn.debian.org Fri Mar 17 15:32:18 2006 From: shalasz-guest at haydn.debian.org (shalasz-guest@haydn.debian.org) Date: Fri Mar 17 15:32:22 2006 Subject: [DebianGIS-dev] CVS Update: geos/debian/patches 00list g++4.1-extra-qualifications.dpatch isvalid.dpatch Message-ID: User: shalasz-guest Date: 06/03/17 15:32:18 Added: debian/patches 00list g++4.1-extra-qualifications.dpatch Removed: debian/patches isvalid.dpatch Log: * Apply patch for FTBS with g++ from Martin Michlmayr. * Provide new C API and libgeos-c1 package. Revision Changes Path 1.1 geos/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/patches/00list?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/patches/00list?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 00list =================================================================== g++4.1-extra-qualifications 1.1 geos/debian/patches/g++4.1-extra-qualifications.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/patches/g++4.1-extra-qualifications.dpatch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/geos/debian/patches/g++4.1-extra-qualifications.dpatch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: g++4.1-extra-qualifications.dpatch =================================================================== #! /bin/sh /usr/share/dpatch/dpatch-run ## g++4.1-extra-qualifications.dpatch by ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Fix FTBFS with g++ 4.1. Patch from Martin Michlmayr. @DPATCH@ diff -urNad geos-2.2.1~/source/headers/geos/geom.h geos-2.2.1/source/headers/geos/geom.h --- geos-2.2.1~/source/headers/geos/geom.h 2005-11-29 12:52:21.000000000 -0500 +++ geos-2.2.1/source/headers/geos/geom.h 2006-03-17 09:44:16.000000000 -0500 @@ -358,52 +358,52 @@ //double distance(Coordinate& p); static Coordinate nullCoord; - void Coordinate::setNull() { + void setNull() { x=DoubleNotANumber; y=DoubleNotANumber; z=DoubleNotANumber; } - static Coordinate& Coordinate::getNull() { + static Coordinate& getNull() { return nullCoord; } - Coordinate::Coordinate() { + Coordinate() { x=0.0; y=0.0; z=DoubleNotANumber; } - Coordinate::Coordinate(double xNew, double yNew, double zNew) { + Coordinate(double xNew, double yNew, double zNew) { x=xNew; y=yNew; z=zNew; } #ifndef PROFILE_COORDINATE_COPIES - Coordinate::Coordinate(const Coordinate& c){ + Coordinate(const Coordinate& c){ x=c.x; y=c.y; z=c.z; } #else - Coordinate::Coordinate(const Coordinate& c); + Coordinate(const Coordinate& c); Coordinate &operator=(const Coordinate &c); #endif - Coordinate::Coordinate(double xNew, double yNew){ + Coordinate(double xNew, double yNew){ x=xNew; y=yNew; z=DoubleNotANumber; } - void Coordinate::setCoordinate(const Coordinate& other) { + void setCoordinate(const Coordinate& other) { x = other.x; y = other.y; z = other.z; } - bool Coordinate::equals2D(const Coordinate& other) const { + bool equals2D(const Coordinate& other) const { if (x != other.x) { return false; } @@ -413,7 +413,7 @@ return true; } - int Coordinate::compareTo(const Coordinate& other) const { + int compareTo(const Coordinate& other) const { if (x < other.x) { return -1; } @@ -429,22 +429,22 @@ return 0; } - bool Coordinate::equals3D(const Coordinate& other) const { + bool equals3D(const Coordinate& other) const { return (x == other.x) && ( y == other.y) && ((z == other.z)||(ISNAN(z) && ISNAN(other.z))); } - void Coordinate::makePrecise(const PrecisionModel *precisionModel) { + void makePrecise(const PrecisionModel *precisionModel) { x = precisionModel->makePrecise(x); y = precisionModel->makePrecise(y); } - double Coordinate::distance(const Coordinate& p) const { + double distance(const Coordinate& p) const { double dx = x - p.x; double dy = y - p.y; return sqrt(dx * dx + dy * dy); } - int Coordinate::hashCode() { + int hashCode() { //Algorithm from Effective Java by Joshua Bloch [Jon Aquino] int result = 17; result = 37 * result + hashCode(x); @@ -456,7 +456,7 @@ * Returns a hash code for a double value, using the algorithm from * Joshua Bloch's book Effective Java */ - static int Coordinate::hashCode(double x) { + static int hashCode(double x) { int64 f = (int64)(x); return (int)(f^(f>>32)); } From noreply at henning.makholm.net Fri Mar 17 22:08:08 2006 From: noreply at henning.makholm.net (Debian testing watch) Date: Sat Mar 18 07:54:28 2006 Subject: [DebianGIS-dev] gpx2shp 0.69-2 MIGRATED to testing Message-ID: FYI: The status of the gpx2shp source package in Debian's testing distribution has changed. Previous version: 0.69-1 Current version: 0.69-2 -- This email is automatically generated; henning@makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From frankie at haydn.debian.org Sat Mar 18 10:17:50 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Sat Mar 18 10:17:53 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-status.pl Message-ID: User: frankie Date: 06/03/18 10:17:50 Modified: . dgis-status.pl Log: Added contrib to dgis repos. Revision Changes Path 1.13 +3 -3 scripts/dgis-status.pl CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?annotate=1.13&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl?rev=1.13&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-status.pl.diff?r1=1.13&r2=1.12&cvsroot= ----------------------------------- Index: dgis-status.pl =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-status.pl,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- dgis-status.pl 11 Mar 2006 18:45:56 -0000 1.12 +++ dgis-status.pl 18 Mar 2006 10:17:50 -0000 1.13 @@ -42,8 +42,8 @@ my %wget = ( 'quiet' => 'wget --passive-ftp --quiet -O ','verbose' => 'wget --passive-ftp -O ' ); my %gunzip = ( 'quiet' => 'gunzip --force --quiet ', 'verbose' => 'gunzip --force' ); my %paths = ( - 'dgis-stable' => ["http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/main/source/"], - 'dgis-unstable' => ["http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/main/source/"], + 'dgis-stable' => ["http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/main/source/","http://pkg-grass.alioth.debian.org/debian-gis/dists/stable/contrib/source/"], + 'dgis-unstable' => ["http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/main/source/","http://pkg-grass.alioth.debian.org/debian-gis/dists/unstable/contrib/source/"], 'stable' => ["http://merkel.debian.org/debian/dists/stable/main/source/","http://merkel.debian.org/debian/dists/stable/contrib/source/"], 'unstable' => ["http://merkel.debian.org/debian/dists/unstable/main/source/","http://merkel.debian.org/debian/dists/unstable/contrib/source/"], ); From pere at haydn.debian.org Sat Mar 18 11:36:12 2006 From: pere at haydn.debian.org (pere@haydn.debian.org) Date: Sat Mar 18 11:36:17 2006 Subject: [DebianGIS-dev] CVS Update: openjump/debian changelog control Message-ID: User: pere Date: 06/03/18 11:36:12 Modified: debian changelog control Log: Upload to debian. Revision Changes Path 1.6 +9 -15 openjump/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/changelog.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/changelog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- changelog 12 Mar 2006 12:28:07 -0000 1.5 +++ changelog 18 Mar 2006 11:36:12 -0000 1.6 @@ -1,21 +1,15 @@ -openjump (1.0-0.0.dgis.unstable.2) unstable; urgency=low +openjump (1.0-1) unstable; urgency=low - * Remove buoy.jar hack, and depend on libbuoy-java instead. - - -- Petter Reinholdtsen Sun, 12 Mar 2006 13:10:08 +0100 - -openjump (1.0-0.0.dgis.unstable.1) unstable; urgency=low - - * Initial Release. + * Initial Release. This package need to go to contrib for now, as + it builds ok but fail to run with classpath. Working with the + classpath developers to fix this. (Closes: #356494) * Add 01_unused_sunapi.diff to avoid importing unused private SUN API. * Add 02_imageio.patch to rewrite the JPEG reading code to use the publicly documented API instead of the private SUN API. - * Add simple manual page openjump(1). - - * Include buoy.jar binary in source while we wait for a debian - package (bug #356355). This package is not fit for the debian - repository with this hack present. It is created for testing - purposed only. + * Add simple manual page openjump(1) based on jump(1) page written + by Wolfgang Baer. + * Copied ant rule and log4j config from upstream CVS, to get + the source building and the program running. - -- Petter Reinholdtsen Sun, 11 Jul 1999 12:41:22 +0200 + -- Petter Reinholdtsen Sat, 18 Mar 2006 12:32:08 +0100 1.9 +4 -4 openjump/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?annotate=1.9&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control?rev=1.9&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/openjump/debian/control.diff?r1=1.9&r2=1.8&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/openjump/debian/control,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- control 12 Mar 2006 12:28:14 -0000 1.8 +++ control 18 Mar 2006 11:36:12 -0000 1.9 @@ -2,14 +2,13 @@ Section: contrib/science Priority: optional Maintainer: Debian GIS Project -Uploaders: Petter Reinholdtsen +Uploaders: Petter Reinholdtsen , Wolfgang Baer Build-Depends-Indep: debhelper (>= 4.2.30), cdbs, kaffe, ant, libjts-java, liblog4j1.2-java, libxerces2-java, libjdom0-java, libjama-java, junit, bsh, libbatik-java, libbuoy-java Standards-Version: 3.6.2 Package: openjump Architecture: all -Depends: j2re1.4 | j2re1.5 | java2-runtime, libjts-java, libjama-java, libjdom0-java, libxerces2-java, bsh, liblog4j1.2-java, junit, libbatik-java, libbuoy-java -Suggests: java-virtual-machine +Depends: j2re1.4 | java2-runtime, libjts-java, libjama-java, libjdom0-java, libxerces2-java, bsh, liblog4j1.2-java, junit, libbatik-java, libbuoy-java Description: Open Java Unified Mapping Platform JUMP The Open Java Unified Mapping Platform (JUMP) is a GUI-based application for viewing and processing spatial data. It includes many common spatial @@ -18,7 +17,8 @@ OpenJUMP has the following features: * provides viewing, editing, and processing spatial datasets * provides an API giving full programmatic access + * loading map data using WMS * is highly modular and extensible . - Homepage: http://www.openjump.org/ + Homepage: http://jump-pilot.sourceforge.net/ From katie at ftp-master.debian.org Sat Mar 18 11:42:28 2006 From: katie at ftp-master.debian.org (Archive Administrator) Date: Sat Mar 18 11:42:50 2006 Subject: [DebianGIS-dev] Processing of openjump_1.0-1_i386.changes Message-ID: openjump_1.0-1_i386.changes uploaded successfully to localhost along with the files: openjump_1.0-1.dsc openjump_1.0.orig.tar.gz openjump_1.0-1.diff.gz openjump_1.0-1_all.deb Greetings, Your Debian queue daemon From installer at ftp-master.debian.org Sat Mar 18 11:47:08 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Sat Mar 18 11:49:16 2006 Subject: [DebianGIS-dev] openjump_1.0-1_i386.changes is NEW Message-ID: (new) openjump_1.0-1.diff.gz optional contrib/science (new) openjump_1.0-1.dsc optional contrib/science (new) openjump_1.0-1_all.deb optional contrib/science Open Java Unified Mapping Platform JUMP The Open Java Unified Mapping Platform (JUMP) is a GUI-based application for viewing and processing spatial data. It includes many common spatial and GIS functions. . OpenJUMP has the following features: * provides viewing, editing, and processing spatial datasets * provides an API giving full programmatic access * loading map data using WMS * is highly modular and extensible . Homepage: http://jump-pilot.sourceforge.net/ (new) openjump_1.0.orig.tar.gz optional contrib/science Changes: openjump (1.0-1) unstable; urgency=low . * Initial Release. This package need to go to contrib for now, as it builds ok but fail to run with classpath. Working with the classpath developers to fix this. (Closes: #356494) * Add 01_unused_sunapi.diff to avoid importing unused private SUN API. * Add 02_imageio.patch to rewrite the JPEG reading code to use the publicly documented API instead of the private SUN API. * Add simple manual page openjump(1) based on jump(1) page written by Wolfgang Baer. * Copied ant rule and log4j config from upstream CVS, to get the source building and the program running. Announcing to debian-devel-changes@lists.debian.org Closing bugs: 356494 Your package contains new components which requires manual editing of the override file. It is ok otherwise, so please be patient. New packages are usually added to the override file about once a week. You may have gotten the distribution wrong. You'll get warnings above if files already exist in other distributions. From mparent-guest at haydn.debian.org Sat Mar 18 13:05:32 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Sat Mar 18 13:05:37 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian .cvsignore changelog Message-ID: User: mparent-guest Date: 06/03/18 13:05:32 Modified: debian .cvsignore changelog Log: New upstream release (cvs) Revision Changes Path 1.2 +1 -0 musmap/debian/.cvsignore CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/.cvsignore?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/.cvsignore?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/.cvsignore.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: .cvsignore =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- .cvsignore 12 Jan 2006 20:12:31 -0000 1.1 +++ .cvsignore 18 Mar 2006 13:05:32 -0000 1.2 @@ -6,6 +6,7 @@ packages-tmp packages-tmp-include rules +rules.new substvars templates tmp-musmap 1.5 +7 -0 musmap/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/changelog?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/changelog?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/changelog.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/changelog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- changelog 16 Jan 2006 22:47:04 -0000 1.4 +++ changelog 18 Mar 2006 13:05:32 -0000 1.5 @@ -1,3 +1,10 @@ +musmap (0.9.1.cvs20060219-1) unstable; urgency=low + + * Mathieu Parent + - New upstream + + -- Mathieu Parent Sat, 18 Mar 2006 13:34:24 +0100 + musmap (0.9.1.cvs20060116) unstable; urgency=low * Mathieu Parent From pabs-guest at haydn.debian.org Tue Mar 21 00:36:07 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Tue Mar 21 00:36:11 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: pabs-guest Date: 06/03/21 00:36:07 Modified: . dgis-packages.inc Log: Add mapping apps mentioned here: http://industry.slashgeo.org/industry/06/03/19/215236.shtml Revision Changes Path 1.26 +3 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.26&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.26&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.26&r2=1.25&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- dgis-packages.inc 17 Mar 2006 09:45:49 -0000 1.25 +++ dgis-packages.inc 21 Mar 2006 00:36:06 -0000 1.26 @@ -21,6 +21,7 @@ 'geoip' => {url=>'http://www.maxmind.com/app/c'}, 'geos' => {url=>'http://geos.refractions.net/'}, 'gmt' => {url=>'http://gmt.soest.hawaii.edu/'}, +'gmap' => {url=>'http://gmap.sourceforge.net/'}, 'gpsbabel' => {url=>'http://gpsbabel.sourceforge.net/'}, 'gpsd' => {url=>'http://gpsd.berlios.de/'}, 'gpsdrive' => {url=>'http://www.gpsdrive.cc/'}, @@ -60,6 +61,8 @@ 'python-pcl' => {url=>'http://zcologia.org/cartography/'}, 'qgis' => {url=>'http://qgis.org/'}, 'roadmap' => {url=>'http://roadmap.digitalomaha.net/',wnpp=>'276135'}, +'roadnav' => {url=>'http://roadnav.sourceforge.net/'}, +'roadster' => {url=>'http://linuxadvocate.org/projects/roadster/'}, 'thuban' => {url=>'http://thuban.intevation.org/'}, 'udig' => {url=>'http://udig.refractions.net/confluence/display/UDIG/Home'}, 'worldwind2d' => {url=>'http://ww2d.csoft.net/',wnpp=>'326600'}, From tbm at cyrius.com Tue Mar 21 22:11:03 2006 From: tbm at cyrius.com (Martin Michlmayr) Date: Tue Mar 21 22:45:55 2006 Subject: [DebianGIS-dev] Bug#358243: FTBFS with G++ 4.1: extra qualification In-Reply-To: References: Message-ID: <20060321221103.GD27698@deprecation.cyrius.com> Package: libterralib Version: 3.0.3b2-3 Severity: important Tags: patch Your package fails to build with G++ 4.1. I'm filing this bug as important for now, but when 4.1 will be the default compiler in unstable (probably in a few weeks) I'll upgrade this to serious. A patch is attached. > Automatic build of libterralib_3.0.3b2-3 on bigsur by sbuild/mips 1.106 ... > g++ -c -pipe -Wall -W -g -D_REENTRANT -fPIC -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I../../src/terralib/kernel -I../../src/terralib/functions -I../../src/tiff -I../../src/zlib -I/usr/include/qt3 -o .obj/TeComputeAttributeStrategies.o ../../src/terralib/kernel/TeComputeAttributeStrategies.cpp > ../../src/terralib/kernel/TeRaster.h:230: warning: 'class TeRaster::iterator' has virtual functions but non-virtual destructor > ../../src/terralib/kernel/TeSlice.h:51: error: extra qualification 'TeSlice::' on member 'TeSlice' > ../../src/terralib/kernel/TeSlice.h:54: error: extra qualification 'TeSlice::' on member 'TeSlice' > ../../src/terralib/kernel/TeLegendEntry.h:57: error: extra qualification 'TeLegendEntry::' on member 'TeLegendEntry' > ../../src/terralib/kernel/TeLegendEntry.h:65: error: extra qualification 'TeLegendEntry::' on member 'TeLegendEntry' > make[2]: *** [.obj/TeComputeAttributeStrategies.o] Error 1 > make[2]: Leaving directory `/build/tbm/libterralib-3.0.3b2/terralibx/terralib' --- ./src/terralib/kernel/TeSlice.h~ 2006-03-21 22:00:07.000000000 +0000 +++ ./src/terralib/kernel/TeSlice.h 2006-03-21 22:00:16.000000000 +0000 @@ -48,10 +48,10 @@ string to_; //! interval upper value //! Constructor - TeSlice::TeSlice () : count_(0),from_(""),to_("") {} + TeSlice () : count_(0),from_(""),to_("") {} //! Constructor - TeSlice::TeSlice(const string& from, const string& to, int count=0) : + TeSlice(const string& from, const string& to, int count=0) : count_(count), from_(from), to_(to) {} --- ./src/terralib/kernel/TeLegendEntry.h~ 2006-03-21 22:00:28.000000000 +0000 +++ ./src/terralib/kernel/TeLegendEntry.h 2006-03-21 22:00:38.000000000 +0000 @@ -54,7 +54,7 @@ public: //! Constructor - TeLegendEntry::TeLegendEntry () : + TeLegendEntry () : label_(""), id_(-1), theme_(0), @@ -62,7 +62,7 @@ {} //! Constructor - TeLegendEntry::TeLegendEntry (const TeSlice& slice) : + TeLegendEntry (const TeSlice& slice) : slice_(slice), id_(-1), theme_(0), -- Martin Michlmayr http://www.cyrius.com/ From noreply at henning.makholm.net Tue Mar 21 22:08:12 2006 From: noreply at henning.makholm.net (Debian testing watch) Date: Tue Mar 21 22:48:56 2006 Subject: [DebianGIS-dev] grass 6.0.1-3 MIGRATED to testing Message-ID: FYI: The status of the grass source package in Debian's testing distribution has changed. Previous version: 6.0.1-1 Current version: 6.0.1-3 -- This email is automatically generated; henning@makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From noreply at henning.makholm.net Tue Mar 21 22:08:10 2006 From: noreply at henning.makholm.net (Debian testing watch) Date: Tue Mar 21 22:48:56 2006 Subject: [DebianGIS-dev] gdal 1.3.1-4 MIGRATED to testing Message-ID: FYI: The status of the gdal source package in Debian's testing distribution has changed. Previous version: 1.2.6-1.3 Current version: 1.3.1-4 -- This email is automatically generated; henning@makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From noreply at henning.makholm.net Tue Mar 21 22:08:15 2006 From: noreply at henning.makholm.net (Debian testing watch) Date: Tue Mar 21 22:48:57 2006 Subject: [DebianGIS-dev] libgdal-grass 1.3.1-1 MIGRATED to testing Message-ID: FYI: The status of the libgdal-grass source package in Debian's testing distribution has changed. Previous version: 1.2.6-1 Current version: 1.3.1-1 -- This email is automatically generated; henning@makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From noreply at henning.makholm.net Tue Mar 21 22:08:18 2006 From: noreply at henning.makholm.net (Debian testing watch) Date: Tue Mar 21 22:48:58 2006 Subject: [DebianGIS-dev] mapserver 4.8.1-2 MIGRATED to testing Message-ID: FYI: The status of the mapserver source package in Debian's testing distribution has changed. Previous version: (not in testing) Current version: 4.8.1-2 -- This email is automatically generated; henning@makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From pabs-guest at haydn.debian.org Wed Mar 22 08:03:33 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 08:03:36 2006 Subject: [DebianGIS-dev] CVS Update: libterralib/debian changelog Message-ID: User: pabs-guest Date: 06/03/22 08:03:33 Modified: debian changelog Log: Closes: #358243: Fix GCC 4.1 FTBFS, patch from Martin Michlmayr Revision Changes Path 1.4 +2 -1 libterralib/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/libterralib/debian/changelog?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/libterralib/debian/changelog?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/libterralib/debian/changelog.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/libterralib/debian/changelog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changelog 4 Jan 2006 09:32:20 -0000 1.3 +++ changelog 22 Mar 2006 08:03:33 -0000 1.4 @@ -1,8 +1,9 @@ libterralib (3.0.3b2-4) UNRELEASED; urgency=low * Make Homepage conform to the developers reference + * Fix GCC 4.1 FTBFS, patch from Martin Michlmayr. Closes: #358243 - -- Paul Wise Wed, 4 Jan 2006 17:31:30 +0800 + -- Paul Wise Wed, 22 Mar 2006 15:57:53 +0800 libterralib (3.0.3b2-3) unstable; urgency=low From pabs-guest at haydn.debian.org Wed Mar 22 08:03:33 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 08:03:37 2006 Subject: [DebianGIS-dev] CVS Update: libterralib/debian/patches 358243_gcc4.1_FTBFS.patch Message-ID: User: pabs-guest Date: 06/03/22 08:03:33 Added: debian/patches 358243_gcc4.1_FTBFS.patch Log: Closes: #358243: Fix GCC 4.1 FTBFS, patch from Martin Michlmayr Revision Changes Path 1.1 libterralib/debian/patches/358243_gcc4.1_FTBFS.patch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/libterralib/debian/patches/358243_gcc4.1_FTBFS.patch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/libterralib/debian/patches/358243_gcc4.1_FTBFS.patch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 358243_gcc4.1_FTBFS.patch =================================================================== diff -Nur libterralib-3.0.3b2/src/terralib/kernel/TeLegendEntry.h libterralib-3.0.3b2.new/src/terralib/kernel/TeLegendEntry.h --- libterralib-3.0.3b2/src/terralib/kernel/TeLegendEntry.h 2004-11-20 02:27:45.000000000 +0800 +++ libterralib-3.0.3b2.new/src/terralib/kernel/TeLegendEntry.h 2006-03-22 15:55:51.000000000 +0800 @@ -54,7 +54,7 @@ public: //! Constructor - TeLegendEntry::TeLegendEntry () : + TeLegendEntry () : label_(""), id_(-1), theme_(0), @@ -62,7 +62,7 @@ {} //! Constructor - TeLegendEntry::TeLegendEntry (const TeSlice& slice) : + TeLegendEntry (const TeSlice& slice) : slice_(slice), id_(-1), theme_(0), diff -Nur libterralib-3.0.3b2/src/terralib/kernel/TeSlice.h libterralib-3.0.3b2.new/src/terralib/kernel/TeSlice.h --- libterralib-3.0.3b2/src/terralib/kernel/TeSlice.h 2005-03-29 03:56:51.000000000 +0800 +++ libterralib-3.0.3b2.new/src/terralib/kernel/TeSlice.h 2006-03-22 15:55:51.000000000 +0800 @@ -48,10 +48,10 @@ string to_; //! interval upper value //! Constructor - TeSlice::TeSlice () : count_(0),from_(""),to_("") {} + TeSlice () : count_(0),from_(""),to_("") {} //! Constructor - TeSlice::TeSlice(const string& from, const string& to, int count=0) : + TeSlice(const string& from, const string& to, int count=0) : count_(count), from_(from), to_(to) {} From owner at bugs.debian.org Wed Mar 22 08:18:08 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed Mar 22 08:28:21 2006 Subject: [DebianGIS-dev] Processed: libterralib: 358243: fixed in cvs In-Reply-To: <1143014628.5931.50.camel@localhost.localdomain> References: <1143014628.5931.50.camel@localhost.localdomain> Message-ID: Processing commands for control@bugs.debian.org: > tags 358243 + upstream pending Bug#358243: FTBFS with G++ 4.1: extra qualification Tags were: patch Tags added: upstream, pending > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From pabs3 at bonedaddy.net Wed Mar 22 08:03:48 2006 From: pabs3 at bonedaddy.net (Paul Wise) Date: Wed Mar 22 08:30:21 2006 Subject: [DebianGIS-dev] Bug#358243: libterralib: 358243: fixed in cvs Message-ID: <1143014628.5931.50.camel@localhost.localdomain> tags 358243 + upstream pending thanks I've committed this to the debian-gis CVS repository, thanks. -- bye, pabs http://wiki.debian.org/PaulWise -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 191 bytes Desc: This is a digitally signed message part Url : http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060322/563226c4/attachment.pgp From pere at hungry.com Wed Mar 22 07:11:15 2006 From: pere at hungry.com (Petter Reinholdtsen) Date: Wed Mar 22 09:41:36 2006 Subject: [DebianGIS-dev] libterralib fail to build with gcc 4.1 Message-ID: <2flpskf7y3w.fsf@saruman.uio.no> Hi I am the Debian maintainer of terralib. We just got a report that it isn't building with gcc 4.1. Please have a look at for the patch. Will this problem be fixed in the next release of terralib? When is a new tarball release of terralib planned? Friendly, -- Petter Reinholdtsen From pere at hungry.com Wed Mar 22 07:29:43 2006 From: pere at hungry.com (Petter Reinholdtsen) Date: Wed Mar 22 09:41:39 2006 Subject: [DebianGIS-dev] Re: libterralib fail to build with gcc 4.1 In-Reply-To: <2flpskf7y3w.fsf@saruman.uio.no> References: <2flpskf7y3w.fsf@saruman.uio.no> Message-ID: <20060322072943.GG5550@saruman.uio.no> [Petter Reinholdtsen] > I am the Debian maintainer of terralib. We just got a report that > it isn't building with gcc 4.1. Please have a look at > for the patch. Will this > problem be fixed in the next release of terralib? When is a new > tarball release of terralib planned? When visiting to look for a new release, I discovered that people are expected to register their email address to be able to fetch the LGPLed source, and to add insult to misery the web form isn't working. I tried to give it a fake mail address and it refused to accept the input. It is probably requiring javascript, which I keep turned off for security reasons. Anyway, with an upstream that refuses anonymous download, I am not really interested in maintaining the package. I do not want to spend the extra time to jump through the hoops created. Are anyone else in the Debian GIS group interested in maintaining terralib? CC to upstream, in case they are interested in changing their publishing practice. Friendly, -- Petter Reinholdtsen From frankie at debian.org Wed Mar 22 09:40:20 2006 From: frankie at debian.org (Francesco P. Lovergine) Date: Wed Mar 22 09:44:02 2006 Subject: [DebianGIS-dev] Bug#358243: libterralib: 358243: fixed in cvs In-Reply-To: <1143014628.5931.50.camel@localhost.localdomain> References: <1143014628.5931.50.camel@localhost.localdomain> Message-ID: <20060322094020.GB15037@ba.issia.cnr.it> On Wed, Mar 22, 2006 at 04:03:48PM +0800, Paul Wise wrote: > tags 358243 + upstream pending > thanks > > I've committed this to the debian-gis CVS repository, thanks. > Upstream forwarding for those issues would be a Good Thing(TM). Is that already done by anyone? -- Francesco P. Lovergine From pabs-guest at haydn.debian.org Wed Mar 22 15:07:40 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:07:43 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian control Message-ID: User: pabs-guest Date: 06/03/22 15:07:39 Modified: debian control Log: Add homepages to postgis Revision Changes Path 1.2 +8 -0 postgis/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/control,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- control 26 Mar 2005 22:29:24 -0000 1.1 +++ control 22 Mar 2006 15:07:39 -0000 1.2 @@ -23,6 +23,8 @@ follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. + . + Homepage: http://postgis.refractions.net Package: libpostgis-doc Section: doc @@ -38,7 +40,10 @@ follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. + . This package contains documentation for PostGIS. + . + Homepage: http://postgis.refractions.net Package: libpostgisjava Section: science @@ -55,4 +60,7 @@ follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. + . This package adds JDBC support. + . + Homepage: http://postgis.refractions.net From pabs-guest at haydn.debian.org Wed Mar 22 15:09:18 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:43 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian COPYRIGHT.pgsql##_src logtop mktemplate_gis.sh.in postgresql.vars rmtemplate_gis.sh sofiles Message-ID: User: pabs-guest Date: 06/03/22 15:09:16 Removed: debian COPYRIGHT.pgsql##_src logtop mktemplate_gis.sh.in postgresql.vars rmtemplate_gis.sh sofiles Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:34 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:45 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql72_src config.status configure Message-ID: User: pabs-guest Date: 06/03/22 15:09:34 Removed: debian/pgsql72_src config.status configure Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:35 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:47 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql72_src/config install-sh mkinstalldirs Message-ID: User: pabs-guest Date: 06/03/22 15:09:35 Removed: debian/pgsql72_src/config install-sh mkinstalldirs Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:37 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:48 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql72_src/src Makefile.custom Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Message-ID: User: pabs-guest Date: 06/03/22 15:09:37 Removed: debian/pgsql72_src/src Makefile.custom Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:41 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:54 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql73_src config.status configure Message-ID: User: pabs-guest Date: 06/03/22 15:09:41 Removed: debian/pgsql73_src config.status configure Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:43 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:55 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql73_src/config install-sh mkinstalldirs Message-ID: User: pabs-guest Date: 06/03/22 15:09:43 Removed: debian/pgsql73_src/config install-sh mkinstalldirs Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:45 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:56 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql73_src/src Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Message-ID: User: pabs-guest Date: 06/03/22 15:09:45 Removed: debian/pgsql73_src/src Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:49 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:09:57 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql74_src config.status configure Message-ID: User: pabs-guest Date: 06/03/22 15:09:49 Removed: debian/pgsql74_src config.status configure Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:51 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:10:02 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql74_src/config install-sh mkinstalldirs Message-ID: User: pabs-guest Date: 06/03/22 15:09:51 Removed: debian/pgsql74_src/config install-sh mkinstalldirs Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:53 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:10:04 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql74_src/src Makefile.custom Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Message-ID: User: pabs-guest Date: 06/03/22 15:09:53 Removed: debian/pgsql74_src/src Makefile.custom Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:57 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:10:05 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql80_src config.status configure Message-ID: User: pabs-guest Date: 06/03/22 15:09:57 Removed: debian/pgsql80_src config.status configure Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:09:58 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:10:14 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql80_src/config install-sh mkinstalldirs Message-ID: User: pabs-guest Date: 06/03/22 15:09:58 Removed: debian/pgsql80_src/config install-sh mkinstalldirs Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:10:02 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:10:15 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/pgsql80_src/src Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Message-ID: User: pabs-guest Date: 06/03/22 15:10:01 Removed: debian/pgsql80_src/src Makefile.global Makefile.global.in Makefile.port Makefile.shlib nls-global.mk Log: Remove files not used with postgis 1.1 From pabs-guest at haydn.debian.org Wed Mar 22 15:10:04 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:10:15 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/sofiles.in control control.java control.nojava control.withjava libpostgis#SOVER#.dirs libpostgis#SOVER#.docs libpostgis#SOVER#.examples libpostgis#SOVER#.install libpostgis#SOVER#.postinst libpostgis#SOVER#.prerm libpostgis-doc.doc-base libpostgis-doc.docs libpostgisjava.dirs libpostgisjava.docs libpostgisjava.examples libpostgisjava.install Message-ID: User: pabs-guest Date: 06/03/22 15:10:04 Removed: debian/sofiles.in control control.java control.nojava control.withjava libpostgis#SOVER#.dirs libpostgis#SOVER#.docs libpostgis#SOVER#.examples libpostgis#SOVER#.install libpostgis#SOVER#.postinst libpostgis#SOVER#.prerm libpostgis-doc.doc-base libpostgis-doc.docs libpostgisjava.dirs libpostgisjava.docs libpostgisjava.examples libpostgisjava.install Log: Remove files not used with postgis 1.1 From frankie at haydn.debian.org Wed Mar 22 15:30:24 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Wed Mar 22 15:30:27 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/control.source - New directory Message-ID: User: frankie Date: 06/03/22 15:30:24 postgis/debian/control.source - New directory From frankie at haydn.debian.org Wed Mar 22 15:38:30 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Wed Mar 22 15:38:39 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/patches - New directory Message-ID: User: frankie Date: 06/03/22 15:38:30 postgis/debian/patches - New directory From pabs-guest at haydn.debian.org Wed Mar 22 15:41:16 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:41:23 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian README.Debian _oneutils.package _supported.postgresql changelog control createdb.postgis createdb.postgis.1 debian_versionname.sh logtop.sh mktemplate_gis.1 mkupstreampatch.sh pg_majdotmin.sh postgis_wrapper.in postgresq-postgis-common.manpages postgresql.vars.awk postgresql.vars.mk postgresql.vars.sh rmtemplate_gis.1 rules rules-1.1 sofiles.mk Message-ID: User: pabs-guest Date: 06/03/22 15:41:16 Modified: debian README.Debian changelog control rules Added: debian _oneutils.package _supported.postgresql createdb.postgis createdb.postgis.1 debian_versionname.sh logtop.sh mktemplate_gis.1 mkupstreampatch.sh pg_majdotmin.sh postgis_wrapper.in postgresq-postgis-common.manpages postgresql.vars.awk postgresql.vars.mk postgresql.vars.sh rmtemplate_gis.1 rules-1.1 sofiles.mk Log: Add Alex's postgis 1.1 packaging. TODO: patches for stuff outside debian/ Revision Changes Path 1.2 +54 -22 postgis/debian/README.Debian CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/README.Debian?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/README.Debian?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/README.Debian.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: README.Debian =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/README.Debian,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- README.Debian 26 Mar 2005 22:29:24 -0000 1.1 +++ README.Debian 22 Mar 2006 15:41:16 -0000 1.2 @@ -8,42 +8,74 @@ upstream installation scheme. changes i've proposed to the upstream makefiles are of general benefit (not especially for debian). -postgis dependency on postgresql consists of a few configuration files, and the -include files for the server and client postgresql api's. here, the include -files are pointing to where debian has those installed, and the other files -are been copied from the source tree of the relevant postgresql distribution, -as updated by postgresql configure. +for postgis older than 1.1.0: +making postgis dependency on postgresql sources consists of a few configuration +files, and the include files for the server and client postgresql api's. here, +the include files are pointing to where debian has those installed, and the +other files are been copied from the source tree of the relevant postgresql +distribution, as updated by postgresql configure. the installed postgresql api version can be determined automatically, and thus the postgresql configuration will be automatically selected. -the debian/pgsql##_src directories contain files from the original postgresql +the debian/pgsql_src directory contains files from the original postgresql source for it's various versions, and those files are copyrighted differently. -see debian/COPYRIGHT.pgsql##_src. -if you happen to experiment with a postgresql source tree not represented here, -or that it's api include files are not been installed the way debian would -(pg_config --includedir), please make a link debian/pgsql_src to your own -postgresql source tree root, or define PGSQL_SRC as for upstream postgis. - -the installation process is creating a template database named template_gis, -that may be used to automaticaly create postgis enabled databases. the template -database may be made manually at a later time, if postgis installation process -will not detect a running postgresql server. +see debian/pgsql_src/COPYRIGHT.pg. +if you are adding pgsql_src for a new version, please replace eventual host +specific variables, like CC=i386-linux-gcc, with their generic counterparts, +like gcc here. the resulting packages will have the library SONAME included in their names, so that upgrading will not break older files. thus, the user will allways create -databases with the newest installed postgis, while upgrading databases based +databases with the newest installed postgis, while databases based upon older versions will still work with their own postgis version, until explicitly upgraded. in a vision, that every postgis database will create and install a package, dependent on postgis at the SONAME version when the database was created, older postgis may be removed only after the user has upgraded every -dependent database. +dependent database. a query on the versions of postgis used in various databases +may fail the prerm in case existing databases are depending on this postgis +version. to install from the sources, please do: -zcat $location/postgis_1.0.0RC4-2.diff.gz | patch -p1; chmod ug+x debian/rules, +zcat $location/postgis_$version.diff.gz | patch -p1; chmod ug+x debian/rules, being in the root of your current postgis distribution. -please run 'fakeroot debian/rules clean' after 'dpkg-buildpackage -rfakeroot' -before making postgis for another postgresql version. +to perform the tests, your current $USER should have creating database privilege, +and should have received at least select permissions on the tables that come with +postgis: geometry_columns and spatial_ref_sys. to automatically grant superuser +privileges on postgis tables only, become root or postgres or cluster dba, and run +mktemplate_gis --user=$db_owner_to_be. +grant create database privilege to the same user, separately. +rmtemplate_gis will remove such template. + +please consult the relevant manpages. + +the postgis template will not be installed upon postgis installation, nor +removed upon removing postgis. the main importance of the template is for +allowing non-dba/non-cluster owners to be able to create databases (createdb +privilege needed, of course), and doing this would anyway require running +mktemplate_gis with custom parameters, especially for the user to own the +template and for the postgis version to be used herein. + +if you are using the new multicluster architecture of postgresql, please note +the following: +manually activating the template_gis related scripts might need specification +of the postgresql version and cluster, like: +PGCLUSTER=8.0/main [your_command], +or calling: +[your_command] --cluster 7.4/mycluster + +new configuration files are available to set system-wide/user specific defaults +for the template database name, postgis version to use, dba to make the +template, instead of the cluster owner (for multicluster versions only), or +famous postgres etc. the template scripts are scanning /etc/default/postgis, +~/.postgis/profile, the environment, and then the command line for the values +of the parameters. later scanned values are overriding earlier ones. + +the package will now build only for the postgresql versions listed in: +debian/_supported.postgresql, provided that those are installed in your systems. +if you wish to modify this file, please just run: +debian/rules maintainer-config +afterwards. please direct any problems and questions on this package (but not on the upstream software) to me, -alexbodn@012.net.il +alexbodn@012.net.il, or roberto.boati@gmail.com 1.2 +227 -1 postgis/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/changelog?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/changelog?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/changelog.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/changelog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- changelog 26 Mar 2005 22:29:24 -0000 1.1 +++ changelog 22 Mar 2006 15:41:16 -0000 1.2 @@ -1,8 +1,234 @@ +postgis (1.1.0-7) unstable; urgency=low + + * postgresql-postgis-common should depend on postgresql-common | postgresql, + not the other way. + + -- Alex Bodnaru Tue, 21 Mar 2006 03:13:04 +0200 + +postgis (1.1.0-6) unstable; urgency=low + + * Closes: #312675 + postgresql-postgis-utils is the only utils package, replacing the + previous postgresql-pg_version-postgis-utils. a further elimination + of older method reminiscence. + + -- Alex Bodnaru Sat, 18 Mar 2006 23:13:04 +0200 + +postgis (1.1.0-5) unstable; urgency=low + + * Closes: #312675 + postgresql-postgis-utils is the only utils package, replacing the + previous postgresql-pg_version-postgis-utils. + * Closes: 335631 + Depends on libgeos which passed c2 ABI transition. + * Uses /usr/share/postgresql-common/supported-versions to dynamically + detect postgresql supported versions. thanks martin. + + -- Alex Bodnaru Thu, 9 Mar 2006 04:26:05 +0200 + +postgis (1.1.0-4) unstable; urgency=low + + * made invariable control file to match standards. the control file + may be made automatically by calling 'debian/rules maintainer-configure' + * the supported postgresql versions may be filtered, by filling + 'debian/_supported.postgresql'. + * the postgis binary packages have been renamed, to obey the postgresql + standard for extension packages: now their name allways begins with + 'postgresql', eventually followed by the postgresql major and minor + version, if a specific one is needed. + 'libpostgis' has become 'postgis'. + + -- Alex Bodnaru Mon, 27 Feb 2006 03:26:15 +0200 + +postgis (1.1.0-3) unstable; urgency=low + + * minor bug fixes + * recompilation + + -- Alex Bodnaru Sun, 26 Feb 2006 05:16:09 +0200 + +postgis (1.1.0-2) unstable; urgency=low + + * minor bug fixes + * the package builds again on systems without multiclustering postgresql. + + -- Alex Bodnaru Wed, 28 Dec 2005 07:11:39 +0200 + +postgis (1.1.0-1) unstable; urgency=low + + * Automatic upstream version tracking. + + -- Alex Bodnaru Wed, 21 Dec 2005 05:15:37 +0200 + +postgis (1.0.4-2) unstable; urgency=low + + * Closes: #321913 Closes: #312676 + Support of multiple postgis installations on the same postgresql server. + Please note: + - The template database will be template_gis#SONAME#, + - The famous (lw)?postgis.sql file will be postgis#SONAME#.sql, + where #SONAME# is roughly the major upstream postgis version. + * Closes: #323120 + The building process is autodetecting the appropriate postgresql-dev. + * README.Debian updated to support multiversion postgresql architecture. + * Closes: #314854 + Newer upstream version. + * Minor improvements to make the build process more quiet. + * Default variables are being kept in configuration files. Thus, the same + package diff will serve for postgis-0.9 and 1.0. + * Closes: #310100 + The template database is no longer been installed/removed with every + installation/remove/upgrade of postgis. It should have received finer + grained parameters, anyway . + + -- Alex Bodnaru Sun, 16 Oct 2005 03:31:03 +0200 + +postgis (0.9.2-1) unstable; urgency=low + + * Basic support for libpostgis0. + The only package(s) made are the library and examples one(s), so that + postgis-0.9.2 databases can be created and used, while not clashing with + files and utilities for postgis-1.0. + + -- Alex Bodnaru Sun, 9 Oct 2005 09:49:04 +0200 + +postgis (1.0.4-1) unstable; urgency=low + + * Automatic upstream version tracking. + * Closes: #316519 + Changed the dependencies in control file to work with multiversion + postgresql. + + -- Alex Bodnaru Sat, 1 Oct 2005 18:07:37 +0300 + +postgis (1.0.3-1) unstable; urgency=low + + * Automatic upstream version tracking. + * Adapted regress/test_index_concurrency to createdb.postgis method. + + -- Alex Bodnaru Thu, 1 Sep 2005 04:27:26 +0300 + +postgis (1.0.1-1) unstable; urgency=low + + * Automatic upstream version tracking. + * Closes: #309528 + binary-all has been separated from binary-arch + * Closes: #311732 + upstream fix: problem with ' char in field names. + * Closes: #310094 + all warnings have been clarified and/or the issues have been fixed + * libpostgis-java-debug has been split from libpostgis-java + * bug #308728 has been reassigned to postgresql + + -- Alex Bodnaru Fri, 27 May 2005 17:17:06 +0300 + +postgis (1.0.0-2) unstable; urgency=low + + * Closes: #308848 + gcj has been specifically set as the required java compiler, although other + java compilers would do as well + * Closes: #310101 + createdb.postgis documentation updated + + -- Alex Bodnaru Fri, 27 May 2005 05:02:45 +0300 + +postgis (1.0.0-1) unstable; urgency=low + + * First official release for the Debian archive. + * Corrected build-depends. + + -- Alex Bodnaru Thu, 5 May 2005 10:02:45 +0200 + +postgis (1.0.0RELEASE-4) unstable; urgency=low + + * example wkb_reader now compiles generically. tested with i386 and ppc. + + -- Alex Bodnaru Thu, 5 May 2005 05:14:02 +0300 + +postgis (1.0.0RELEASE-3) unstable; urgency=low + + * mktemplate_gis and rmtemplate_gis work on dash. + + -- Alex Bodnaru Sat, 30 Apr 2005 17:34:02 +0300 +postgis (1.0.0RELEASE-2) unstable; urgency=low + + * Fixed minor typos in manual pages. + * Documented the special debian usage of the ogc_test_suite. + * Fixed bug in automatic upstream version tracking. + + -- Alex Bodnaru Sat, 30 Apr 2005 16:25:22 +0300 + + +postgis (1.0.0RELEASE-1) unstable; urgency=low + + * Automatic upstream version tracking. + + -- Alex Bodnaru Sat, 30 Apr 2005 15:33:00 +0300 + +postgis (1.0.0RELEASE-1) unstable; urgency=low + + * Automatic upstream version tracking. + * added libpostgisjava replacement directive. + * improved automatic upstream version sensing: adding RELEASE for clean + upstream versions. + + -- Alex Bodnaru Sun, 24 Apr 2005 20:04:36 +0300 + +postgis (1.0.0RC6-6) unstable; urgency=low + + * renamed libpostgisjava to libpostgis-java + * specified libgeos2 version 2.1.1 and above as a dependency. + upstream authors will be warned to document this too. + + -- Alex Bodnaru Fri, 22 Apr 2005 18:49:01 +0200 + +postgis (1.0.0RC6-5) unstable; urgency=low + + * Cleaned up removal of .cvsignore files, so it will not be imposed on upstream. + * Added optional usage of postgresql-dev installed at custom location. + * NOTICE: Since manpages have been added and constantly updated after 1.0.0rc6 + was released, please copy them from postgis-cvs to the orig directory, or + use orig file uploaded with this package + * Improved the dependencies system, following suggestions from + Markus Schaber + + -- Alex Bodnaru Fri, 15 Apr 2005 14:49:01 +0200 + +postgis (1.0.0RC6-4) unstable; urgency=low + + * Adjusted useless i386-linux-gcc to gcc (existent for postgresql 7.4 only), thanks to comments from + Giuseppe Sacco + + -- Alex Bodnaru Tue, 12 Apr 2005 04:12:01 +0200 + +postgis (1.0.0RC6-3) unstable; urgency=low + + * Improved build-depends, thanks to comments from + Giuseppe Sacco + + -- Alex Bodnaru Mon, 11 Apr 2005 05:15:01 +0200 + +postgis (1.0.0RC6-2) unstable; urgency=low + + * Improved mktemplate_gis, and renamed from mktemplate_gis.sh. + * Updated man pages. + * Using createdb.postgis as the main method of creating gis enambled databases. + * Updated upstream testing scripts to use createdb.postgis. + * Fixind problem: postgres should be able to call mktemplate_gis. + + -- Alex Bodnaru Thu, 31 Mar 2005 05:05:41 +0200 + +postgis (1.0.0RC6-1) unstable; urgency=low + + * Automatic upstream version tracking. + + -- Alex Bodnaru Thu, 31 Mar 2005 05:05:41 +0200 + postgis (1.0.0RC4-2) unstable; urgency=low * Minor bugfix in debian/rules * Removed need for executable files in ./debian. rules is the only executable. - * Improvement for mktemplate_gis.sh: now it may be run to grant full privileges to any user as argument. + * Improvement for mktemplate_gis: now it may be run to grant full privileges to any user as argument. -- Alex Bodnaru Tue, 22 Mar 2005 03:51:20 +0200 1.3 +141 -24 postgis/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/control,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- control 22 Mar 2006 15:07:39 -0000 1.2 +++ control 22 Mar 2006 15:41:16 -0000 1.3 @@ -1,19 +1,17 @@ Source: postgis -Section: science +Section: libs Priority: optional Maintainer: Alex Bodnaru -Build-Depends: debhelper (>= 4.0.0), devscripts, findutils, libgeos-dev, proj, c-compiler, c++-compiler, postgresql-dev (>= 7.2.0), libpgjava, java-compiler, fastjar -Standards-Version: 3.6.1 +Build-Depends: debhelper (>= 4.0.0), devscripts, gawk | awk, binutils | binutils-multiarch, flex, bison, autoconf, libgeos-dev, proj, libpgjava, gcj | java-compiler, fastjar , postgresql-server-dev-8.0, postgresql-server-dev-7.4, postgresql-server-dev-8.1 +Standards-Version: 3.6.2 -Package: libpostgis1-pg74 -Section: science +Package: postgresql-postgis-examples +Section: doc Priority: optional -Provides: libpostgis -Architecture: any -Depends: ${shlibs:Depends}, postgresql (>= 7.4.0), postgresql-contrib (>= 7.4.0), sudo -Conflicts: postgresql (>> 7.4.99) -Recommends: libpostgis1-pg74-doc (= ${Source-Version}) -Description: geographic objects support for PostgreSQL +Conflicts: libpostgis-examples +Replaces: libpostgis-examples +Architecture: all +Description: geographic objects support for PostgreSQL. Examples PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, @@ -23,13 +21,14 @@ follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. - . - Homepage: http://postgis.refractions.net - -Package: libpostgis-doc + This package contains examples for PostGIS . + +Package: postgresql-postgis-doc Section: doc Priority: optional Architecture: all +Conflicts: libpostgis-doc +Replaces: libpostgis-doc Description: geographic objects support for PostgreSQL. Documentation PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, @@ -40,16 +39,16 @@ follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. - . This package contains documentation for PostGIS. - . - Homepage: http://postgis.refractions.net -Package: libpostgisjava -Section: science +Package: postgresql-postgis-java +Section: libs Priority: optional +Conflicts: libpostgis-jdbc, libpostgisjava, libpostgis-java Architecture: all -Depends: libpostgis, libpgjava +Depends: libpgjava +Recommends: postgresql-postgis +Replaces: libpostgis-jdbc, libpostgisjava, libpostgis-java Description: geographic objects support for PostgreSQL. JDBC PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, @@ -60,7 +59,125 @@ follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. - . This package adds JDBC support. - . - Homepage: http://postgis.refractions.net + +Package: postgresql-postgis-java-debug +Section: libdevel +Priority: optional +Architecture: all +Depends: postgresql-postgis-java (= ${Source-Version}) +Conflicts: libpostgis-jdbc, libpostgisjava, libpostgis-java-debug +Replaces: libpostgis-jdbc, libpostgisjava, libpostgis-java-debug +Description: geographic objects support for PostgreSQL. JDBC debugging + PostGIS adds support for geographic objects to the + PostgreSQL object-relational database. In effect, + PostGIS "spatially enables" the PostgreSQL server, + allowing it to be used as a backend spatial database + for geographic information systems (GIS), much like + ESRI's SDE or Oracle's Spatial extension. PostGIS + follows the OpenGIS "Simple Features Specification + for SQL" and will be submitted for conformance + testing at version 1.0. + This package adds JDBC support, with debug facilities. + +Package: postgresql-postgis-common +Section: libs +Priority: optional +Architecture: all +Depends: postgresql-common | postgresql +Replaces: libpostgis0-common, libpostgis1-common, libpostgis-common +Conflicts: libpostgis0-common, libpostgis1-common, libpostgis-common +Description: geographic objects support for PostgreSQL. common files + PostGIS adds support for geographic objects to the + PostgreSQL object-relational database. In effect, + PostGIS "spatially enables" the PostgreSQL server, + allowing it to be used as a backend spatial database + for geographic information systems (GIS), much like + ESRI's SDE or Oracle's Spatial extension. PostGIS + follows the OpenGIS "Simple Features Specification + for SQL" and will be submitted for conformance + testing at version 1.0. + This package contains files common to postgresql-postgis packages + installed concurrently on the same system. + +Package: postgresql-8.0-postgis1 +Section: libs +Priority: optional +Provides: postgresql-postgis, postgresql-postgis1 +Conflicts: postgis, libpostgis1-pg8.0 +Replaces: libpostgis, libpostgis1-pg8.0 +Architecture: any +Depends: ${shlibs:Depends}, postgresql-postgis-utils , postgresql-8.0, postgresql-contrib-8.0 +Suggests: postgresql-postgis-examples (>= ${Source-Version}) +Description: geographic objects support for PostgreSQL + PostGIS adds support for geographic objects to the + PostgreSQL object-relational database. In effect, + PostGIS "spatially enables" the PostgreSQL server, + allowing it to be used as a backend spatial database + for geographic information systems (GIS), much like + ESRI's SDE or Oracle's Spatial extension. PostGIS + follows the OpenGIS "Simple Features Specification + for SQL" and will be submitted for conformance + testing at version 1.0. + +Package: postgresql-7.4-postgis1 +Section: libs +Priority: optional +Provides: postgresql-postgis, postgresql-postgis1 +Conflicts: postgis, libpostgis1-pg7.4 +Replaces: libpostgis, libpostgis1-pg7.4 +Architecture: any +Depends: ${shlibs:Depends}, postgresql-postgis-utils , postgresql-7.4, postgresql-contrib-7.4 +Suggests: postgresql-postgis-examples (>= ${Source-Version}) +Description: geographic objects support for PostgreSQL + PostGIS adds support for geographic objects to the + PostgreSQL object-relational database. In effect, + PostGIS "spatially enables" the PostgreSQL server, + allowing it to be used as a backend spatial database + for geographic information systems (GIS), much like + ESRI's SDE or Oracle's Spatial extension. PostGIS + follows the OpenGIS "Simple Features Specification + for SQL" and will be submitted for conformance + testing at version 1.0. + +Package: postgresql-8.1-postgis1 +Section: libs +Priority: optional +Provides: postgresql-postgis, postgresql-postgis1 +Conflicts: postgis, libpostgis1-pg8.1 +Replaces: libpostgis, libpostgis1-pg8.1 +Architecture: any +Depends: ${shlibs:Depends}, postgresql-postgis-utils , postgresql-8.1, postgresql-contrib-8.1 +Suggests: postgresql-postgis-examples (>= ${Source-Version}) +Description: geographic objects support for PostgreSQL + PostGIS adds support for geographic objects to the + PostgreSQL object-relational database. In effect, + PostGIS "spatially enables" the PostgreSQL server, + allowing it to be used as a backend spatial database + for geographic information systems (GIS), much like + ESRI's SDE or Oracle's Spatial extension. PostGIS + follows the OpenGIS "Simple Features Specification + for SQL" and will be submitted for conformance + testing at version 1.0. + +Package: postgresql-postgis-utils +Section: libs +Priority: optional +Architecture: any +Depends: postgresql-postgis-common (= ${Source-Version}) +Replaces: , libpostgis1-pg74, libpostgis-utils-pg7.4, postgresql-7.4-postgis-utils, libpostgis1-pg80, libpostgis-utils-pg8.0, postgresql-8.0-postgis-utils, libpostgis1-pg81, libpostgis-utils-pg8.1, postgresql-8.1-postgis-utils +Conflicts: , libpostgis1-pg74, libpostgis-utils-pg7.4, postgresql-7.4-postgis-utils, libpostgis1-pg80, libpostgis-utils-pg8.0, postgresql-8.0-postgis-utils, libpostgis1-pg81, libpostgis-utils-pg8.1, postgresql-8.1-postgis-utils +Description: geographic objects support for PostgreSQL. client utilities + PostGIS adds support for geographic objects to the + PostgreSQL object-relational database. In effect, + PostGIS "spatially enables" the PostgreSQL server, + allowing it to be used as a backend spatial database + for geographic information systems (GIS), much like + ESRI's SDE or Oracle's Spatial extension. PostGIS + follows the OpenGIS "Simple Features Specification + for SQL" and will be submitted for conformance + testing at version 1.0. + This package contains files common to postgresql-postgis packages + installed concurrently on the same system, but depending on + postgresql server . + 1.2 +145 -128 postgis/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rules?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rules?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rules.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/rules,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- rules 26 Mar 2005 22:29:24 -0000 1.1 +++ rules 22 Mar 2006 15:41:16 -0000 1.2 @@ -9,62 +9,52 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -main_prefix := $(shell pg_config --configure | \ - awk 'BEGIN {RS = " "; FS = "=";} {if (match($$1,"--prefix$$")) {gsub("'\''$$", "", $$0); print $$2;}}') + +# file to include for version-specific commands +include debian/rules-1.1 + +main_prefix:=usr REL_DEBDIR=debian DEBDIR=$(CURDIR)/$(REL_DEBDIR) -JAVA_PATH=/usr/share/java -XSLBASE=$(shell find /usr/share/ -path */html/docbook.xsl | head -n1 | \ - awk '{gsub("/html/docbook.xsl$$","",$$0); print $$0;}') - -LIB_NAME=`ls lwgeom/lib*.so.* | head -n1` -#determine postgreql src directory -PGSQL_SRC:=${PGSQL_SRC} -pg_ver:= -ifeq (,$(PGSQL_SRC)) -ifeq (,$(findstring Makefile,$(wildcard $(DEBDIR)/pgsql_src/src/*))) - override pg_majdotmin:=$(shell pg_config --version | \ - awk '{print $$2;}' | awk -F . '{print $$1"."$$2;}') - override pg_ver=$(shell echo $(pg_majdotmin) | awk -F . '{print $$1$$2;}') -endif -override PGSQL_SRC:=$(DEBDIR)/pgsql$(pg_ver)_src -ifeq (,$(findstring Makefile,$(wildcard $(PGSQL_SRC)/src/*))) - override PGSQL_SRC:= -endif -endif -ifeq (,$(PGSQL_SRC)) - override PGSQL_SRC:=$(CURDIR)/../.. -endif - -PG_VAR=PGSQL_SRC=$(PGSQL_SRC) make -f $(DEBDIR)/postgresql.vars -# WARNING: do not use those vars before touching the files in configure: -bindir=$(shell $(PG_VAR) REQVAR=bindir) -datadir=$(shell $(PG_VAR) REQVAR=datadir) -docdir=$(shell $(PG_VAR) REQVAR=docdir) -libdir=$(shell $(PG_VAR) REQVAR=pkglibdir) +JAVA_PATH=/$(main_prefix)/share/java -DESTDIR=$(DEBDIR)/tmp -REL_DESTDIR=$(REL_DEBDIR)/tmp -ifeq (,$(pg_ver)) - override pg_majdotmin:=$(shell grep -w PG_VERSION $(PGSQL_SRC)/src/include/*config.h | \ - awk '{gsub("\"","",$$3); print $$3;}' | awk -F . '{print $$1"."$$2;}') - override pg_ver=$(shell echo $(pg_majdotmin) | awk -F . '{print $$1$$2;}') +pg_majdotmin=$(shell $(PG_CONFIG) --version | \ + awk '{print $$2;}' | awk -F . '{print $$1"."$$2;}') + +ifneq (,$(shell dpkg-query -W postgresql-common | awk '{print $$2;}')) + PG_TYPE=multipg + $(shell chmod ug+x $(DEBDIR)/pg_majdotmin.sh) + FIND_PG_CONFIGS=find /$(main_prefix)/lib/postgresql -name pg_config -exec $(DEBDIR)/pg_majdotmin.sh '{}' $(DEBDIR)/_supported.postgresql ';' + PG_CONFIGS=$(shell $(FIND_PG_CONFIGS)) + PG_VERSIONS=$(foreach PG_CONFIG,$(PG_CONFIGS),$(shell echo $(pg_majdotmin);)) + ONEUTILS=$(DEBDIR)/_oneutils.package else - our_postgres="true" + PG_TYPE=onepg + PG_CONFIGS=pg_config + PG_CONFIG=$(PG_CONFIGS) + PG_VERSIONS=$(pg_majdotmin) endif -AWK_PG_REP='{gsub("@pg_datadir@", "$(datadir)"); \ - gsub("@pg_bindir@", "$(bindir)"); \ - gsub("@pg_docdir@", "$(docdir)"); \ - gsub("@pg_libdir@", "$(libdir)"); \ - gsub("@pg_version@", "$(pg_ver)"); \ - gsub("@pg_majdotmin@", "$(pg_majdotmin)"); \ - print $$0;}' +bindir=$(shell $(PG_CONFIG) --bindir) +sharedir=$(main_prefix)/share/postgresql-postgis-common +examplesdir=$(main_prefix)/share/postgresql-postgis$(INITIAL_MAJOR)-examples -MAKE+= USE_GEOS=1 GEOS_DIR=$(main_prefix) USE_PROJ=1 PROJ_DIR=$(main_prefix) \ - PGSQL_SRC=$(PGSQL_SRC) +DESTDIR=$(DEBDIR)/tmp +REL_DESTDIR=$(REL_DEBDIR)/tmp +PATCHDIR=$(DEBDIR)/patches +PATCHFILE=$(PATCHDIR)/upstream-$(version).diff +PATCHLEVEL=`cat $(PATCHDIR)/patch.level` +PATCHREJ=$(PATCHDIR)/rejects +main_bin=$(main_prefix)/bin +pg_main_bin=$(main_prefix)/lib/postgresql/bin + +export CURDIR DESTDIR DEBDIR LIB_LOC main_prefix main_bin sharedir \ + HAVE_DOC HAVE_UTILS HAVE_COMMON HAVE_JAVA DIR_JAVA JAVA_DEBUG \ + PG_CONFIG PG_VERSIONS INITIAL_MAJOR CLASSPATH major pg_main_bin + +MAKE+= USE_GEOS=1 GEOS_DIR=/$(main_prefix) USE_PROJ=1 PROJ_DIR=/$(main_prefix) CFLAGS += -Wall -g @@ -78,128 +68,155 @@ endif # shared library versions -major=`grep ^SO_MAJOR_VERSION Version.config | cut -d= -f2` -minor=`grep ^SO_MINOR_VERSION Version.config | cut -d= -f2` -micro=`grep ^SO_MICRO_VERSION Version.config | cut -d= -f2` +major:=$(shell grep ^SO_MAJOR_VERSION $(VERSION_FILE) | cut -d= -f2) +minor:=$(shell grep ^SO_MINOR_VERSION $(VERSION_FILE) | cut -d= -f2) +micro:=$(shell grep ^SO_MICRO_VERSION $(VERSION_FILE) | cut -d= -f2) version=$(major).$(minor).$(micro) -EXTRA_VER=-pg$(pg_ver) -SONAME=$(shell objdump -p $(LIB_NAME) | grep SONAME | \ - awk '{if (match($$2,/\.so\.[0-9]+$$/)) print substr($$2,RSTART+4)}') -PKG_NAME=$(DEBDIR)/libpostgis$(SONAME)$(EXTRA_VER) +COMMON_PG_FILES=PG_CONFIG=$(PG_CONFIG) make -f $(DEBDIR)/sofiles.mk + +PREP_CONTROL=$(COMMON_PG_FILES) control +PREP_PG_FILES=$(COMMON_PG_FILES) build +CLEAN_PG_FILES=$(COMMON_PG_FILES) clean + +CLEAN_BUILD_INSTALL = $(MAKE) clean; \ + $(CURDIR)/configure --with-pgsql=$(PG_CONFIG); \ + $(MAKE); \ + $(MAKE) loaderdumper utils; \ + $(MAKE) install DESTDIR=$(DESTDIR); \ + $(PREP_PG_FILES); \ + chmod ug+x $(DEBDIR)/scriptslink.sh; \ + ONEUTILS=$(ONEUTILS) $(DEBDIR)/scriptslink.sh $(POSTGIS_SQL) + +# actions +maintainer-configure: maintainer-clean +# build the control file acording to pg_type + chmod ug+x $(DEBDIR)/control.source/mkcontrol.$(PG_TYPE).sh + SRC=$(DEBDIR)/control.source DEST=$(DEBDIR)/sofiles.in ONEUTILS=$(ONEUTILS) $(DEBDIR)/control.source/mkcontrol.$(PG_TYPE).sh + $(foreach PG_CONFIG,$(PG_CONFIGS),$(PREP_CONTROL);) + rm -f $(DEBDIR)/sofiles.in/control + +maintainer-clean: + cat $(DEBDIR)/control.source/control.0 | sed -e 's/@major@/$(INITIAL_MAJOR)/g' > $(DEBDIR)/control + +pg_versions: +# echo $(PG_CONFIGS) + echo $(PG_VERSIONS) | sed -e 's/\ /\n/g' | sort -n + +# standard actions configure: configure-stamp configure-stamp: + @echo ++++++++++++++++++ C O N F I G U R E +++++++++++++++++++++ dh_testdir -ifneq (,$(our_postgres)) -# our postgresql configureation files repository is not keeping the file dates, so remind it ... - touch $(PGSQL_SRC)/config.status - touch $(PGSQL_SRC)/src/Makefile.global - ln -s $(shell pg_config --includedir)/server $(PGSQL_SRC)/src/include - mkdir $(PGSQL_SRC)/src/interfaces - ln -s $(shell pg_config --includedir) $(PGSQL_SRC)/src/interfaces/libpq +#check if needed + dpkg-checkbuilddeps + # commands to configure the package. + make distclean; make Makefile.config + # patch doesn't necessarily have to succeed +ifneq (,$(wildcard $(PATCHFILE))) + -patch -s -r $(PATCHREJ) -p$(PATCHLEVEL) -N < $(PATCHFILE) endif - # Add here commands to configure the package. + rm -f $(PATCHREJ) touch configure-stamp build: build-stamp build-stamp: configure-stamp + @echo ++++++++++++++++++ B U I L D +++++++++++++++++++++ dh_testdir + chmod ug+x $(DEBDIR)/logtop.sh + $(DEBDIR)/logtop.sh $(version) + echo $(shell cd ..; dpkg-source -b `basename $(CURDIR)`; cd $(CURDIR)) # Add here commands to compile the package. +ifeq ($(PG_TYPE),onepg) $(MAKE) - @echo finding xsl stylesheets... - XSLBASE=$(XSLBASE) $(MAKE) -C doc html - DEBUGJAR=postgis_debug.fastjar JAR=fastjar $(MAKE) -C jdbc2 jar - source $(DEBDIR)/logtop $(version) - make -f $(DEBDIR)/sofiles LIB_NAME=$(LIB_NAME) EXTRA_VER=$(EXTRA_VER) build +endif + $(BUILD_JAVA) + $(BUILD_DOC) touch build-stamp clean: configure-stamp + @echo ++++++++++++++++++ C L E A N +++++++++++++++++++++ dh_testdir dh_testroot rm -f build-stamp configure-stamp dh_clean - make -f $(DEBDIR)/sofiles LIB_NAME=$(LIB_NAME) EXTRA_VER=$(EXTRA_VER) clean # Add here commands to clean up after the build process. - $(MAKE) clean - $(MAKE) -C doc clean - $(MAKE) -C doc maintainer-clean - $(MAKE) -C jdbc2 clean -ifneq (,$(our_postgres)) - rm -f $(PGSQL_SRC)/src/include - rm -f $(PGSQL_SRC)/src/interfaces/libpq - -rmdir $(PGSQL_SRC)/src/interfaces -endif + $(foreach PG_CONFIG,$(PG_CONFIGS),$(CLEAN_PG_FILES);) +#check if needed + dpkg-checkbuilddeps + $(CLEAN_JAVA) + $(CLEAN_DOC) + $(MAKE) distclean + chmod ug+x $(DEBDIR)/mkupstreampatch.sh + $(DEBDIR)/mkupstreampatch.sh $(version) +# rm -f $(DEBDIR)/sofiles.in/control install: build + @echo ++++++++++++++++++ I N S T A L L +++++++++++++++++++++ dh_testdir dh_testroot dh_clean -k - awk $(AWK_PG_REP) $(DEBDIR)/control > $(DEBDIR)/control1 - mv $(DEBDIR)/control1 $(DEBDIR)/control - awk $(AWK_PG_REP) $(PKG_NAME).dirs > $(PKG_NAME).dirs1 - mv $(PKG_NAME).dirs1 $(PKG_NAME).dirs - awk $(AWK_PG_REP) $(PKG_NAME).install > $(PKG_NAME).install1 - mv $(PKG_NAME).install1 $(PKG_NAME).install - awk $(AWK_PG_REP) $(PKG_NAME).files > $(PKG_NAME).files1 - mv $(PKG_NAME).files1 $(PKG_NAME).files - awk $(AWK_PG_REP) $(PKG_NAME).postinst > $(PKG_NAME).postinst1 - mv $(PKG_NAME).postinst1 $(PKG_NAME).postinst - awk $(AWK_PG_REP) $(PKG_NAME).prerm > $(PKG_NAME).prerm1 - mv $(PKG_NAME).prerm1 $(PKG_NAME).prerm - dh_installdirs -A - + mkdir -p $(DESTDIR)/$(main_bin) + mkdir -p $(DESTDIR)/$(pg_main_bin) + mkdir -p $(DESTDIR)/$(examplesdir) + mkdir -p $(DESTDIR)/$(sharedir) + mkdir -p $(DESTDIR)/etc/default # commands to install the package into debian/tmp +ifeq ($(PG_TYPE),onepg) $(MAKE) install DESTDIR=$(DESTDIR) - DEBUGJAR=postgis_debug.fastjar JAR=fastjar $(MAKE) -C jdbc2 install DESTDIR=$(DESTDIR)$(JAVA_PATH) - - cp utils/*.pl $(DESTDIR)/$(bindir) - cat $(DEBDIR)/mktemplate_gis.sh.in | awk $(AWK_PG_REP) > $(DESTDIR)/$(bindir)/mktemplate_gis.sh - chmod 755 $(DESTDIR)/$(bindir)/mktemplate_gis.sh - cp $(DEBDIR)/rmtemplate_gis.sh $(DESTDIR)/$(bindir) - chmod 755 $(DESTDIR)/$(bindir)/rmtemplate_gis.sh + $(PREP_PG_FILES) + chmod ug+x $(DEBDIR)/scriptslink.sh + $(DEBDIR)/scriptslink.sh $(POSTGIS_SQL) +else +# make and install postgis for each postgresql version + $(foreach PG_CONFIG,$(PG_CONFIGS),$(CLEAN_BUILD_INSTALL);) +endif + $(INSTALL_JAVA) + cp $(DEBDIR)/profile $(DESTDIR)/etc/default/postgis + dh_installdirs -A + cp -r $(CURDIR)/regress $(CURDIR)/extras/ogc_test_suite $(CURDIR)/extras/wkb_reader $(DESTDIR)/$(examplesdir) -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. +# chmod ug+x $(DEBDIR)/logtop.sh +# $(DEBDIR)/logtop.sh $(version) -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot dh_installchangelogs CHANGES + dh_installman + dh_compress dh_installdocs - dh_installexamples regress dh_install --sourcedir=$(DESTDIR) dh_movefiles --sourcedir=$(REL_DESTDIR) #this style is required for woody -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo - dh_installman dh_link dh_strip - find . -name .cvsignore -exec rm -f '{}' ';' -# here, only small files get compressed, with little improvement but hard to use -# dh_compress -# find $(PKG_NAME) -path *regress/*.gz -exec gzip -d '{}' ';' + find $(REL_DEBDIR) -name .cvsignore -exec rm -f '{}' ';' + find $(REL_DEBDIR) -name CVS -exec rm -df '{}' ';' dh_fixperms -# dh_perl -# dh_python dh_makeshlibs --noscripts - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdeb -i + dh_shlibdeps -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdeb -s + dh_shlibdeps -s + dh_gencontrol -s + dh_md5sums -s + dh_builddeb -s binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure + +.PHONY: build clean maintainer-clean binary-indep binary-arch binary install configure 1.1 postgis/debian/_oneutils.package CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/_oneutils.package?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/_oneutils.package?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: _oneutils.package =================================================================== if this file is named _oneutils.package, only one postgresql-postgis-utils package will be generated. please rename this file in case you want to build separate utils for each supported postgresql. 1.1 postgis/debian/_supported.postgresql CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/_supported.postgresql?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/_supported.postgresql?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: _supported.postgresql =================================================================== 7.4 8.1 8.0 1.1 postgis/debian/createdb.postgis CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/createdb.postgis?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/createdb.postgis?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: createdb.postgis =================================================================== #!/bin/sh # create a database using the given template # other parameters are passed to createdb, # but the specified owner will not have # extra privileges on objects in the template. see createdb.postgis(1) source /usr/share/postgresql-postgis-common/postgis_env.sh for ARGVN in $1 $2 ; do if [ `expr substr $ARGVN 1 11` = "--template=" ]; then TDB=`echo $ARGVN | sed -e s/^--template=//` elif [ `expr substr $ARGVN 1 6` = "--help" ]; then echo "Usage of `basename $0`" echo "Supply arguments as follows" echo "--template=templatename of the template to use" echo "Other arguments will be passed verbatim to createdb," echo "and it may return additional messages." echo "You must usually have createdb privileges" echo "in order to use `basename $0`" exit 1 fi done PWD1=`pwd` cd /tmp exec createdb -T $TDB "$@" cd $PWD1 1.1 postgis/debian/createdb.postgis.1 CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/createdb.postgis.1?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/createdb.postgis.1?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: createdb.postgis.1 =================================================================== .TH "createdb.postgis" "1" "" "Roberto Boati" "Postgis utilities" .SH "NAME" .LP createdb.postgis \- Create Postgis database in a PostgreSQL server. .SH "SYNTAX" .LP createdb.postgis [\fIoptions\fP] \fIdatabase_name\fP .SH "DESCRIPTION" .LP This program create a database for working with Postgis geometries. .br Using this program any user with createdb permissions can create a spatial enabled database. .SH "OPTIONS" .LP .TP <\fIdatabase_name\fP> Database to be created. .TP <\fIoptions\fP> All options from createdb(1), except choice of template database, can be used here. Specifying an owner here will not be able to set ownership to the tables originating from the template database used, unless the template owner, that is calling this script, is dba. Otherwise, you could only build databases owned by the template owner. .TP The most significant option would be \fI\-\-template\fP below. .TP \fB\-\-template=\fR<\fItemplatedb\fP> Set template name to be <\fItemplatedb\fP> .TP Envirunment variable: \fITEMPLATEDB\fR. .TP .TP \fB\-\-help\fR Output help information and exit. .SH "ENVIRONMENT" .TP .B TEMPLATEDB If .RB $ TEMPLATEDB is set, its value is used as the default template name. .SH "FILES" .LP The environment variables for template_gis creation, removal and usage may be stored in files, as follows: .TP .B /etc/default/postgis will designate default values for the whole system. .TP .B $HOME/.postgis/profile will designate the values used by the current user by default. Beware, this is the current SYSTEM user, not the dba or the database owner to become. As those values are more user specific, they supersede the ones in the system default file for the current user. .SH "NOTES" .LP The order of precedence of the variables definition: .TP .B 1. Command line options. .TP .B 2. Environment variables. .TP .B 3. The user specific profile file. .TP .B 4. The system wide default file. .TP .B The builtin (hardwired) values are not a good choice. .SH "EXAMPLES" .LP To run this program you can simply type: .LP # \fBcreatedb.postgis mypostgis\fR .SH "AUTHORS" .LP Alex Bodnaru .br Roberto Boati .SH "SEE ALSO" .LP createdb.postgis(1), createdb(1), dropdb(1) 1.1 postgis/debian/debian_versionname.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/debian_versionname.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/debian_versionname.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: debian_versionname.sh =================================================================== #!/bin/sh case `cat /etc/debian_version` in 3.1) echo sarge ;; 3.0) echo woody ;; 2.2) echo potato ;; 2.1) echo slink ;; 2.0) echo hamm ;; *) echo "unknown debian release" # exit 1 esac #exit 0 1.1 postgis/debian/logtop.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/logtop.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/logtop.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: logtop.sh =================================================================== #!/bin/sh LOG_FILE=debian/changelog DEB_VER0="1" LOG_TOP=`head -n1 $LOG_FILE` # first log line LOG_FULL_VER=`echo $LOG_TOP | awk '{gsub("[)(]", "", $2); print $2;}'` # full ver LOG_VER=`echo $LOG_FULL_VER | awk -F '-' '{print $1;}'` # upstream part LOG_VER=`echo $LOG_VER | awk '{print toupper($0);}'` LOG_DEB_VER=`echo $LOG_FULL_VER | awk -F '-' '{print $2;}'` # debian part LOG_PKG=`echo $LOG_TOP | awk '{print $1;}'` NEW_VER=`echo $1 | awk '{sub("([^.0-9]+)", "+&"); print $0;}'` NEW_PKG=$2 INS_LINE1= INS_LINE2= INS_LINE3= if [ -n "$NEW_VER" ] && [ ! "$NEW_VER" = "$LOG_VER" ]; then LOG_VER=$NEW_VER INS_LINE1='Automatic upstream version tracking.' LOG_FULL_VER="$LOG_VER-$DEB_VER0" fi if [ -n "$NEW_PKG" ] && [ ! "$NEW_PKG" = "$LOG_PKG" ]; then INS_LINE2='Making package alternative.' LOG_PKG=$NEW_PKG fi if [ -n "$INS_LINE1" ] || [ -n "$INS_LINE2" ] || [ -n "$INS_LINE3" ]; then TMP_FILE=/tmp/changelog.$$ cat $LOG_FILE > $TMP_FILE if [ -r /tmp/changelog.$$ ]; then echo "$LOG_PKG ($LOG_FULL_VER) "`echo $LOG_TOP | awk '{print $3" "$4;}'` > $LOG_FILE echo "" >> $LOG_FILE if [ ! -z "$INS_LINE1" ]; then echo " * $INS_LINE1" >> $LOG_FILE fi if [ ! -z "$INS_LINE2" ]; then echo " * $INS_LINE2" >> $LOG_FILE fi if [ ! -z "$INS_LINE3" ]; then echo " * $INS_LINE3" >> $LOG_FILE fi echo "" >> $LOG_FILE echo " -- $DEBFULLNAME <$DEBEMAIL> "`822-date` >> $LOG_FILE echo "" >> $LOG_FILE cat $TMP_FILE >> $LOG_FILE fi rm -f $TMP_FILE fi 1.1 postgis/debian/mktemplate_gis.1 CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/mktemplate_gis.1?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/mktemplate_gis.1?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: mktemplate_gis.1 =================================================================== .TH "mktemplate_gis" "1" "" "Roberto Boati" "Postgis utilities" .SH "NAME" .LP mktemplate_gis \- Create Postgis template in a PostgreSQL server. .SH "SYNTAX" .LP mktemplate_gis [\fIoptions\fP] .SH "DESCRIPTION" .LP This program create a template database for working with Postgis geometries. .br It requires to be run by root, or by PostgreSQL superuser (DBA), or by the cluster owner, but once created, any user with createdb permissions can create and manage a spatial enabled database with \fBcreatedb.postgis\fR. The privileges on the objects in the created databases will be set to the user defined here (see \fIGRUSER\fR below). .br PostgreSQL should be running. .SH "OPTIONS" .LP .TP For default values see below. .TP \fB\-\-user=\fR<\fIdbowner\fP> Creates a database template owned by <\fIdbowner\fP>. If normal user, \fIdbowner\fR will own the template database, else if it's a group or public, \fIdbowner\fR will have full rights to the objects in the template database. The rights granted here will also hols for new databases created from this template, even by non-dba and non-cluster owning users. .TP Environment variable: \fIGRUSER\fR. .TP \fB\-\-template=\fR<\fItemplatedb\fP> Set template name to be <\fItemplatedb\fP> .TP Envirunment variable: \fITEMPLATEDB\fR. .TP \fB\-\-dba=\fR<\fIdba_name\fP> DBA is required to perform template database building. .TP Envirunment variable: \fIDBAUSER\fR. .TP \fB\-\-script=\fR<\fIpgis_script\fP> pgis_script is the sql script containing the postgis functions for the template database. If no directory name will be given, the script will be taken from /usr/share/postgresql/\fI$CLUSTERVER\fP/contrib. .TP Envirunment variable: \fIPGISSCRIPT\fR. .TP \fB\-\-no\-srs\fP this argument will suppress loading of the huge spatial_ref_sys in the database template. the table will be created anyway. .TP Envirunment variable: \fINO_SRS=true\fR. .TP \fB\-\-help\fR Output help information and exit. .SH "ENVIRONMENT" .TP .B TEMPLATEDB If .RB $ TEMPLATEDB is set, its value is used as the default template name. .TP .B GRUSER If .RB $ GRUSER is set, its value is used as the default user to own the template. This user will naturally have default rights to databases created with this template. .TP .B DBAUSER If .RB $ DBAUSER is set, its value is used as the default DBA for building the template. Else, the cluster owner and postgres are the next candidates. .TP .B PGISSCRIPT If .RB $ PGISSCRIPT is set, its value is used as the default postgis sql script for the template. If a directory will not be specified, the file will be taken from the default scripts/contrib directory for this postgresql version. .SH "FILES" .LP The environment variables for template_gis creation, removal and usage may be stored in files, as follows: .TP .B /etc/default/postgis will designate default values for the whole system. .TP .B $HOME/.postgis/profile will designate the values used by the current user by default. Beware, this is the current SYSTEM user, not the dba or the database owner to become. As those values are more user specific, they supersede the ones in the system default file for the current user. .SH "NOTES" .LP The order of precedence of the variables definition: .TP .B 1. Command line options. .TP .B 2. Environment variables. .TP .B 3. The user specific profile file. .TP .B 4. The system wide default file. .TP .B The builtin (hardwired) values are not a good choice. .SH "EXAMPLES" .LP To run this program the standard way, you can simply type: .LP # \fBmktemplate\_gis\fR .LP Alternatively you can specify also a template name to create and the database superuser: .LP # \fBmktemplate\_gis \-\-user=postgres \-\-template=template\_postgis\fR .SH "AUTHORS" .LP Alex Bodnaru .br Roberto Boati .SH "SEE ALSO" .LP createdb.postgis(1), rmtemplate_gis(1) 1.1 postgis/debian/mkupstreampatch.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/mkupstreampatch.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/mkupstreampatch.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: mkupstreampatch.sh =================================================================== #!/bin/sh #run this script from the debian/rules clean section #make a diff from the clean upstream postgis to this patched for debian use if [ -z "$1" ]; then echo "ERROR: please supply mkupstreampatch.sh with the postgis version as parameter" exit 1 fi VERSION=$1 major=$2 CURRENTDIR="`pwd`" DEBIANDIR="$CURRENTDIR/debian" PATCHDIR="$DEBIANDIR/patches" mkdir -p $PATCHDIR PATCHFILE="$PATCHDIR/upstream-$VERSION.diff" PATCHLEVEL="$PATCHDIR/patch.level" ORIGDIR="$CURRENTDIR.orig" if [ ! -d $ORIGDIR ]; then ORIGFILE="$CURRENTDIR/../postgis_$VERSION.orig.tar.gz" if [ -f $ORIGFILE ]; then echo "patching from file $ORIGFILE" OURTMPDIR="/tmp/postgis_$$" rm -df "$OURTMPDIR" mkdir -p "$OURTMPDIR" cd "$OURTMPDIR" tar xzf "$ORIGFILE" DIRTIP=`ls | head -n 1` ORIGDIR="$OURTMPDIR/$DIRTIP" #tar file root ln -s "$CURRENTDIR" "$DIRTIP.debian" #link to our dir CURRENTDIR="$OURTMPDIR/$DIRTIP.debian" else echo "WARNING: there is no source of original postgis in known location" exit 0 fi else echo "patching from dir $ORIGDIR" fi echo "$ORIGDIR" | awk -F / '{print NF;}' > "$PATCHLEVEL" LC_ALL=C TZ=UTC0 diff -Nar -U 4 -x debian "$ORIGDIR" "$CURRENTDIR" > "$PATCHFILE" if [ -n "$OURTMPDIR" ]; then rm -rf "$OURTMPDIR" fi exit 0 1.1 postgis/debian/pg_majdotmin.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/pg_majdotmin.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/pg_majdotmin.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: pg_majdotmin.sh =================================================================== #!/bin/sh PG_CONFIG=$1 majdotmin=`$PG_CONFIG --version | awk '{print $2;}' | awk -F . '{print $1"."$2;}'` supported_versions="/usr/share/postgresql-common/supported-versions" if [ ! -f $2 ] && [ -x $supported_versions ]; then $supported_versions > $2 fi if [ -f $2 ]; then if [ -n "`grep $majdotmin $2`" ]; then echo $PG_CONFIG fi else echo $PG_CONFIG fi 1.1 postgis/debian/postgis_wrapper.in CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgis_wrapper.in?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgis_wrapper.in?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgis_wrapper.in =================================================================== #!/usr/bin/perl -w # Call a PostGis client program with the version, cluster and default # database specified in ~/.postgresqlrc or # /etc/postgresql-common/user_clusters. # # (C) 2005 Martin Pitt # Temporary copied 2005 by Alex Bodnaru , to add same # support with postgis utilities. This file should be removed when the original # /usr/share/postgresql-common/pg_wrapper would not be selective on the # supported @commands (see grep below). use lib '/usr/share/postgresql-common'; use PgCommon; @commands = qw/@POSTGIS_SCRIPTS@/; $cmd = (split '/', $0)[-1]; grep { $cmd eq $_ } @commands or die "postgis_wrapper: invalid command name $cmd"; # Check for PGCLUSTER in %ENV if (defined $ENV{PGCLUSTER}) { ($version, $cluster) = split ('/', $ENV{PGCLUSTER}, 2); error 'Invalid version specified with $PGCLUSTER' unless $version; error 'Invalid cluster specified with $PGCLUSTER' unless $cluster; error 'Cluster specified with $PGCLUSTER does not exist' unless cluster_exists $version, $cluster; } # Check for --cluster argument and filter it out for ($i = 0; $i <= $#ARGV; ++$i) { if ($ARGV[$i] eq '--cluster') { error '--cluster option needs an argument (/)' if ($i >= $#ARGV); ($version, $cluster) = split ('/', $ARGV[$i+1], 2); error 'No version specified with --cluster' unless $version; error 'No cluster specified with --cluster' unless $cluster; error 'Cluster does not exist' unless cluster_exists $version, $cluster; splice @ARGV, $i, 2; last; } } # Determine $version, $cluster, $db, $port from map files ($version, $cluster, $db) = user_cluster_map() unless $cluster; if ($cluster) { $port = get_cluster_port($version, $cluster); unless ($ENV{'PGHOST'}) { # default to cluster specific Unix socket directory $ENV{'PGHOST'} = get_cluster_socketdir $version, $cluster; } } $ENV{'PGPORT'} = "$port" if $port; $ENV{'PGDATABASE'} = $db if $db; error 'You must install at least one postgresql-client- package.' unless $version; @args = (get_program_path ($cmd, $version)); error 'Invalid PostgreSQL cluster version' unless $args[0]; push @args, @ARGV; exec @args; __END__ =head1 NAME pg_wrapper - wrapper for PostgreSQL client commands =head1 SYNOPSIS I [B<--cluster> I/I] [...] (I: B, B, B, and all other client programs installed in CIC). =head1 DESCRIPTION This program is run only as a link to names which correspond to PostgreSQL programs in CIC. It determines the configured cluster and database for the user and calls the appropriate version of the desired program to connect to that cluster and database, supplying any specifed options to that command. By default, the cluster is determined from the configuration files L and L. However, this can be overriden by specifying the C<$PGCLUSTER> environment variable or the B<--cluster> I/I option. =head1 ENVIRONMENT =over =item B If C<$PGCLUSTER> is set, its value (of the form I/I) specifies the desired cluster, similar to the B<--cluster> option. However, if B<--cluster> is specified, it overrides the value of C<$PGCLUSTER>. =back =head1 FILES =over =item C stores the default cluster and database for users and groups as set by the administrators. =item C<$HOME/.postgresqlrc> stores defaults set by the user himself. =back =head1 SEE ALSO L, L =head1 AUTHOR Martin Pitt Lmpitt@debian.orgE> 1.1 postgis/debian/postgresq-postgis-common.manpages CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresq-postgis-common.manpages?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresq-postgis-common.manpages?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresq-postgis-common.manpages =================================================================== doc/man/pgsql2shp.1 doc/man/shp2pgsql.1 debian/createdb.postgis.1 debian/mktemplate_gis.1 debian/rmtemplate_gis.1 1.1 postgis/debian/postgresql.vars.awk CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresql.vars.awk?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresql.vars.awk?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql.vars.awk =================================================================== #!/usr/bin/awk # this would parse pg_config --configure for the variable value, by the # variable name supplied in ${REQVAR} BEGIN { RS = " "; FS = "="; } { if (match($1, "--"REQVAR"$") || match($1, "--with-"REQVAR"$")) { gsub("'$", "", $2); print $2; } } 1.1 postgis/debian/postgresql.vars.mk CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresql.vars.mk?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresql.vars.mk?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql.vars.mk =================================================================== #!/usr/bin/make -f # -*- makefile -*- # this makefile includes the Makefile.global from correct postgresql, and echoes a variable value, bt the # variable name supplied in ${REQVAR} -include Makefile.config all: @echo $(${REQVAR}) .PHONY: all 1.1 postgis/debian/postgresql.vars.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresql.vars.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/postgresql.vars.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql.vars.sh =================================================================== #!/bin/sh # parse the possible sources for the value of the variable with the # name supplied in ${REQVAR} # use programs at ${MYLOC} REQVAL="" if [ -n "`${PG_CONFIG} --help | grep "[-][-]${REQVAR}[[:blank:]]"`" ]; then REQVAL=`${PG_CONFIG} --${REQVAR}` # please ignore eventual error on stderr fi if [ -z $REQVAL ]; then REQVAL=`${PG_CONFIG} --configure | awk -v REQVAR=$REQVAR -f ${MYLOC}/postgresql.vars.awk` fi if [ -z $REQVAL ]; then REQVAL=`make -s -f ${MYLOC}/postgresql.vars.mk` fi echo $REQVAL | sed -e s/^[/]// 1.1 postgis/debian/rmtemplate_gis.1 CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rmtemplate_gis.1?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rmtemplate_gis.1?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: rmtemplate_gis.1 =================================================================== .TH "rmtemplate_gis" "1" "" "Roberto Boati" "Postgis utilities" .SH "NAME" .LP rmtemplate_gis \- Delete Postgis template in a PostgreSQL server. .SH "SYNTAX" .LP rmtemplate_gis [\fIoption\fP] .SH "DESCRIPTION" .LP This program deletes a template database Postgis. .br It requires to be run by root, or by PostgreSQL superuser (postgres), or by a dba, or by the cluster owner, or by the database owner. .br PostgreSQL should be running. .SH "OPTIONS" .LP .TP For default values see below. .TP \fB\-\-template=\fR<\fItemplatedb\fP> Set template name to be <\fItemplatedb\fP> .TP Envirunment variable: \fITEMPLATEDB\fR. .TP \fB\-\-dba=\fR<\fIdba_name\fP> DBA is required to perform template database building. .TP Envirunment variable: \fIDBAUSER\fR. .TP \fB\-\-help\fR Output help information and exit. .SH "ENVIRONMENT" .TP .B TEMPLATEDB If .RB $ TEMPLATEDB is set, its value is used as the default template name. .TP .B DBAUSER If .RB $ DBAUSER is set, its value is used as the default DBA for removing the template. .SH "FILES" .LP The environment variables for template_gis creation, removal and usage may be stored in files, as follows: .TP .B /etc/default/postgis will designate default values for the whole system. .TP .B $HOME/.postgis/profile will designate the values used by the current user by default. Beware, this is the current SYSTEM user, not the dba or the database owner to become. As those values are more user specific, they supersede the ones in the system default file for the current user. .SH "NOTES" .LP The order of precedence of the variables definition: .TP .B 1. Command line options. .TP .B 2. Environment variables. .TP .B 3. The user specific profile file. .TP .B 4. The system wide default file. .TP .B The builtin (hardwired) values are not a good choice. .SH "EXAMPLES" .LP To run this program the standard way, you can simply type: .LP # \fBrmtemplate\_gis\fR .LP Alternatively you can specify also a template name to delete: .LP # \fBrmtemplate\_gis \-\-template=template\_postgis\fR .SH "AUTHORS" .LP Alex Bodnaru .br Roberto Boati .SH "SEE ALSO" .LP createdb.postgis(1), mktemplate_gis(1) 1.1 postgis/debian/rules-1.1 CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rules-1.1?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/rules-1.1?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: rules-1.1 =================================================================== #special commands for building postgis-1.0 on debian VERSION_FILE=Version.config INITIAL_MAJOR= POSTGIS_SQL=lwpostgis.sql LIB_LOC=lwgeom HAVE_DOC=true CLEAN_DOC=$(MAKE) -C doc clean HAVE_JAVA=true CLASSPATH=$(JAVA_PATH)/postgresql.jar DIR_JAVA=jdbc2 CLEAN_JAVA=$(MAKE) -C $(DIR_JAVA) clean BUILD_JAVA=DEBUGJAR=postgis_debug.fastjar JAVAC=javac JAR=fastjar \ $(MAKE) -C $(DIR_JAVA) jar INSTALL_JAVA=DEBUGJAR=postgis_debug.fastjar JAVAC=javac JAR=fastjar \ $(MAKE) -C $(DIR_JAVA) install DESTDIR=$(DESTDIR)$(JAVA_PATH) JAVA_DEBUG=true HAVE_COMMON=true HAVE_UTILS=true 1.1 postgis/debian/sofiles.mk CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.mk?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.mk?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: sofiles.mk =================================================================== #!/usr/bin/make -f # -*- makefile -*- #prepare control and data files for a library package, taking the library SONAME #into account: replace the string #SOVER# in the file names with the SONAME #automatically found in the library using objdump and the postgresql version. INDIR=$(CURDIR)/debian/sofiles.in OUTDIR=$(CURDIR)/debian pg_majdotmin=$(shell $(PG_CONFIG) --version | \ awk '{print $$2;}' | awk -F . '{print $$1"."$$2;}') pg_ver=$(shell echo $(pg_majdotmin) | awk -F . '{print $$1$$2;}') #PG_CONFIG should be predefined PG_VAR=MYLOC=$(OUTDIR) source $(OUTDIR)/postgresql.vars.sh bindir=$(shell REQVAR=bindir $(PG_VAR)) datadir=$(shell REQVAR=datadir $(PG_VAR)) docdir=$(shell REQVAR=docdir $(PG_VAR)) libdir=$(shell REQVAR=pkglibdir $(PG_VAR)) SONAME0=\#SONAME\# WILD_LIB=$(LIB_LOC)/lib*.so.* ifneq (,$(wildcard $(WILD_LIB))) LIB_NAME=$(shell ls $(WILD_LIB) | head -n1) SONAME=$(shell objdump -p $(LIB_NAME) | grep SONAME | \ awk '{if (match($$2,/\.so\.[0-9]+$$/)) print substr($$2,RSTART+4)}') else SONAME=$(major) endif SOVER0=\#SOVER\# SOVER=$(SONAME)-pg$(pg_majdotmin) SOVER3=$(SONAME)-pg$(pg_ver) SOSUBST=-e s/$(SOVER0)/$(SOVER)/g \ -e s/$(SONAME0)/$(SONAME)/g \ -e s/"@dir_java@"/$(DIR_JAVA)/g \ -e s/"@pg_datadir@"/"$(subst /,\/,$(datadir))"/g \ -e s/"@pg_bindir@"/"$(subst /,\/,$(bindir))"/g \ -e s/"@pg_docdir@"/"$(subst /,\/,$(docdir))"/g \ -e s/"@pg_libdir@"/"$(subst /,\/,$(libdir))"/g \ -e s/"@pg_version@"/"$(subst /,\/,$(pg_ver))"/g \ -e s/"@main_prefix@"/"$(subst /,\/,${main_prefix})"/g \ -e s/"@main_bin@"/"$(subst /,\/,${main_bin})"/g \ -e s/"@pg_main_bin@"/"$(subst /,\/,${pg_main_bin})"/g \ -e s/"@pg_majdotmin@"/"$(subst /,\/,$(pg_majdotmin))"/g \ -e s/"@major@"/"$(subst /,\/,$(INITIAL_MAJOR))"/g DUPFILES=-e s/\.install$$/\.files/ \ -e s/"-pg@pg_majdotmin@"/"-pg$(pg_ver)"/g \ -e s/$(SOVER0)/"$(SOVER3)"/g INFILES2:=$(notdir $(wildcard $(INDIR)/*)) MKINFILE2=sed $(SOSUBST) $(INDIR)/$(FILE) > $(OUTDIR)/`echo $(FILE) | sed $(SOSUBST)` RMINFILE2=rm -f $(OUTDIR)/`echo $(FILE) | sed $(SOSUBST)` #INFILES3:=$(notdir $(shell ls $(INDIR)/*.install $(INDIR)/*-pg@pg_majdotmin@* $(INDIR)/*$(SOVER0)* $(INDIR)/*@major@* | uniq)) INFILES3:=$(notdir $(shell ls $(INDIR)/*.install $(INDIR)/*-pg@pg_majdotmin@* $(INDIR)/*$(SOVER0)* | uniq)) MKINFILE3=sed $(SOSUBST) $(INDIR)/$(FILE) > $(OUTDIR)/`echo $(FILE) | sed $(SOSUBST) $(DUPFILES)` RMINFILE3=rm -f $(OUTDIR)/`echo $(FILE) | sed $(SOSUBST) $(DUPFILES)` control: $(foreach FILE,"control",$(MKINFILE2);) clean: $(foreach FILE,$(INFILES2),$(RMINFILE2);) $(foreach FILE,$(INFILES3),$(RMINFILE3);) rm -f $(OUTDIR)/*.substvars rm -f $(OUTDIR)/*.debhelper build: $(foreach FILE,$(INFILES2),$(MKINFILE2);) $(foreach FILE,$(INFILES3),$(MKINFILE3);) .PHONY: clean build control From pabs-guest at haydn.debian.org Wed Mar 22 15:41:17 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:41:26 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/control.source control-pgbuilddep.onepg control-pgdep.onepg control.0 control.common control.doc control.in control.java control.javadebug control.libpostgis control.utils mkcontrol.multipg.sh mkcontrol.onepg.sh Message-ID: User: pabs-guest Date: 06/03/22 15:41:17 Added: debian/control.source control-pgbuilddep.onepg control-pgdep.onepg control.0 control.common control.doc control.in control.java control.javadebug control.libpostgis control.utils mkcontrol.multipg.sh mkcontrol.onepg.sh Log: Add Alex's postgis 1.1 packaging. TODO: patches for stuff outside debian/ Revision Changes Path 1.1 postgis/debian/control.source/control-pgbuilddep.onepg CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control-pgbuilddep.onepg?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control-pgbuilddep.onepg?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control-pgbuilddep.onepg =================================================================== , postgresql-dev (>= 7.2.0) 1.1 postgis/debian/control.source/control-pgdep.onepg CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control-pgdep.onepg?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control-pgdep.onepg?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control-pgdep.onepg =================================================================== , postgresql (>= @pg_majdotmin@.0), postgresql-contrib (>= @pg_majdotmin@.0) 1.1 postgis/debian/control.source/control.0 CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.0?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.0?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.0 =================================================================== Source: postgis@major@ Section: libs Priority: optional Maintainer: Alex Bodnaru Build-Depends: debhelper (>= 4.0.0), devscripts, gawk | awk, binutils | binutils-multiarch, flex, bison, autoconf, libgeos-dev, proj, libpgjava, gcj | java-compiler, fastjar, postgresql-common | postgresql-dev (>= 7.2.0) Standards-Version: 3.6.2 Package: postgresql-postgis-unused Section: doc Priority: optional Architecture: all Description: geographic objects support for PostgreSQL. place holder This control file is an empty place holder for the real control file, which is being automatically generated during the package building process. Only the build dependencies and conflicts are to be kept update, but flexible enough to build on every debian system, supporting either one or multiple coexisting postgresql installations. 1.1 postgis/debian/control.source/control.common CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.common?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.common?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.common =================================================================== Package: postgresql-postgis-common Section: libs Priority: optional Architecture: all Depends: postgresql-common | postgresql Replaces: libpostgis0-common, libpostgis1-common, libpostgis-common Conflicts: libpostgis0-common, libpostgis1-common, libpostgis-common Description: geographic objects support for PostgreSQL. common files PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. This package contains files common to postgresql-postgis packages installed concurrently on the same system. 1.1 postgis/debian/control.source/control.doc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.doc?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.doc?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.doc =================================================================== Package: postgresql-postgis-doc Section: doc Priority: optional Architecture: all Conflicts: libpostgis-doc Replaces: libpostgis-doc Description: geographic objects support for PostgreSQL. Documentation PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. This package contains documentation for PostGIS. 1.1 postgis/debian/control.source/control.in CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.in?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.in?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.in =================================================================== Source: postgis@major@ Section: libs Priority: optional Maintainer: Alex Bodnaru Build-Depends: debhelper (>= 4.0.0), devscripts, gawk | awk, binutils | binutils-multiarch, flex, bison, autoconf, libgeos-dev, proj, libpgjava, gcj | java-compiler, fastjar #PGBUILDDEP# Standards-Version: 3.6.2 Package: postgresql-postgis@major@-examples Section: doc Priority: optional Conflicts: libpostgis@major@-examples Replaces: libpostgis@major@-examples Architecture: all Description: geographic objects support for PostgreSQL. Examples PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. This package contains examples for PostGIS @major@. 1.1 postgis/debian/control.source/control.java CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.java?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.java?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.java =================================================================== Package: postgresql-postgis-java Section: libs Priority: optional Conflicts: libpostgis-jdbc, libpostgisjava, libpostgis-java Architecture: all Depends: libpgjava Recommends: postgresql-postgis Replaces: libpostgis-jdbc, libpostgisjava, libpostgis-java Description: geographic objects support for PostgreSQL. JDBC PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. This package adds JDBC support. 1.1 postgis/debian/control.source/control.javadebug CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.javadebug?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.javadebug?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.javadebug =================================================================== Package: postgresql-postgis-java-debug Section: libdevel Priority: optional Architecture: all Depends: postgresql-postgis-java (= ${Source-Version}) Conflicts: libpostgis-jdbc, libpostgisjava, libpostgis-java-debug Replaces: libpostgis-jdbc, libpostgisjava, libpostgis-java-debug Description: geographic objects support for PostgreSQL. JDBC debugging PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. This package adds JDBC support, with debug facilities. 1.1 postgis/debian/control.source/control.libpostgis CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.libpostgis?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.libpostgis?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.libpostgis =================================================================== Package: postgresql-@pg_majdotmin@-postgis#SONAME# Section: libs Priority: optional Provides: postgresql-postgis, postgresql-postgis#SONAME# Conflicts: postgis, libpostgis#SOVER# #PGCONFLICT# Replaces: libpostgis, libpostgis#SOVER# #PKGREPLACE# Architecture: any Depends: ${shlibs:Depends}, postgresql-postgis-utils #PGDEP# Suggests: postgresql-postgis@major@-examples (>= ${Source-Version}) Description: geographic objects support for PostgreSQL PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. 1.1 postgis/debian/control.source/control.utils CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.utils?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/control.utils?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control.utils =================================================================== Package: postgresql-postgis-utils Section: libs Priority: optional Architecture: any Depends: postgresql-postgis-common (= ${Source-Version}) Replaces: ONEUTILS_CONFLICT Conflicts: ONEUTILS_CONFLICT Description: geographic objects support for PostgreSQL. client utilities PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS "Simple Features Specification for SQL" and will be submitted for conformance testing at version 1.0. This package contains files common to postgresql-postgis packages installed concurrently on the same system, but depending on postgresql server @pg_majdotmin@. 1.1 postgis/debian/control.source/mkcontrol.multipg.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/mkcontrol.multipg.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/mkcontrol.multipg.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: mkcontrol.multipg.sh =================================================================== #!/bin/sh # make the control file for the multipg situation PGBUILDDEP0="[#]PGBUILDDEP[#]" PGDEP0="[#]PGDEP[#]" SOVER0="[#]SOVER[#]" PKGREPLACE0="[#]PKGREPLACE[#]" PGCONFLICT0="[#]PGCONFLICT[#]" PGCONF0="[#]PGCONF[#]" PGBUILDDEP="" for pg_majdotmin in $PG_VERSIONS ; do PGBUILDDEP="${PGBUILDDEP}, postgresql-server-dev-${pg_majdotmin}" done PGCONFLICT=`cat $SRC/control-pgconflict.multipg | sed -e 's/[/><]/\\\&/g'` cat $SRC/control.in | sed -e s/$PGBUILDDEP0/"$PGBUILDDEP"/g > $DEST/control if [ "$HAVE_DOC" = "true" ]; then cat $SRC/control.doc >> $DEST/control fi if [ "$HAVE_JAVA" = "true" ]; then cat $SRC/control.java >> $DEST/control fi if [ "$JAVA_DEBUG" = "true" ]; then cat $SRC/control.javadebug >> $DEST/control fi if [ "$HAVE_COMMON" = "true" ]; then cat $SRC/control.common >> $DEST/control fi for pg_majdotmin in $PG_VERSIONS ; do PGDEP=", postgresql-${pg_majdotmin}, postgresql-contrib-${pg_majdotmin}" cat $SRC/control.libpostgis | \ sed -e s/$PGDEP0/"$PGDEP"/g \ -e s/$SOVER0/"#SONAME#-pg${pg_majdotmin}"/g \ -e s/@pg_majdotmin@/"${pg_majdotmin}"/g \ -e s/$PKGREPLACE0//g \ -e s/$PGCONFLICT0//g \ >> $DEST/control if [ ! -f $ONEUTILS ]; then if [ "$HAVE_UTILS" = "true" ]; then cat $SRC/control.utils | \ sed -e s/$PGDEP0/"$PGDEP"/g \ -e s/$SOVER0/"#SONAME#-pg${pg_majdotmin}"/g \ -e s/@pg_majdotmin@/"${pg_majdotmin}"/g \ -e s/$PKGREPLACE0//g \ -e s/$PGCONFLICT0//g \ >> $DEST/control fi fi done if [ -f $ONEUTILS ]; then if [ "$HAVE_UTILS" = "true" ]; then ONEUTILS_CONFLICT="" for pg_ver in 7.4 8.0 8.1; do pg_ver1=`echo ${pg_ver} | sed -e 's/\.//g'` verconflict="libpostgis#SONAME#-pg${pg_ver1}, libpostgis-utils-pg${pg_ver}, postgresql-${pg_ver}-postgis-utils" if [ -z ONEUTILS_CONFLICT ]; then ONEUTILS_CONFLICT=verconflict else ONEUTILS_CONFLICT="${ONEUTILS_CONFLICT}, ${verconflict}" fi done cat $SRC/control.utils | \ sed -e s/$PGDEP0/"$PGDEP"/g \ -e s/$SOVER0/"#SONAME#-pg${pg_majdotmin}"/g \ -e s/-@pg_majdotmin@//g \ -e s/@pg_majdotmin@//g \ -e s/$PKGREPLACE0//g \ -e s/$PGCONFLICT0//g \ -e s/ONEUTILS_CONFLICT/"$ONEUTILS_CONFLICT"/g \ >> $DEST/control fi fi 1.1 postgis/debian/control.source/mkcontrol.onepg.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/mkcontrol.onepg.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/control.source/mkcontrol.onepg.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: mkcontrol.onepg.sh =================================================================== #!/bin/sh # make the control file for the onepg situation PGBUILDDEP0="[#]PGBUILDDEP[#]" PGDEP0="[#]PGDEP[#]" SOVER0="[#]SOVER[#]" PGCONFLICT0="[#]PGCONFLICT[#]" PGBUILDDEP=`cat $SRC/control-pgbuilddep.onepg | sed -e 's/[/><]/\\\&/g'` PGDEP=`cat $SRC/control-pgdep.onepg | sed -e 's/[/><]/\\\&/g'` PGCONFLICT=`cat $SRC/control-pgconflict.onepg | sed -e 's/[/><]/\\\&/g'` pg_ver=`echo ${PG_VERSIONS} | sed -e 's/[.]//g'` cat $SRC/control.in | sed -e s/$PGBUILDDEP0/"$PGBUILDDEP"/g > $DEST/control if [ "$HAVE_DOC" = "true" ]; then cat $SRC/control.doc >> $DEST/control fi if [ "$HAVE_JAVA" = "true" ]; then cat $SRC/control.java >> $DEST/control fi if [ "$JAVA_DEBUG" = "true" ]; then cat $SRC/control.javadebug >> $DEST/control fi if [ "$HAVE_COMMON" = "true" ]; then cat $SRC/control.common >> $DEST/control fi cat $SRC/control.libpostgis | \ sed -e s/$PGDEP0/"$PGDEP"/g \ -e s/$SOVER0/"#SONAME#-pg${pg_ver}"/g \ -e s/$PGCONFLICT0/"$PGCONFLICT"/g \ >> $DEST/control if [ "$HAVE_UTILS" = "true" ]; then cat $SRC/control.utils | \ sed -e s/$PGDEP0/"$PGDEP"/g \ -e s/$SOVER0/"#SONAME#-pg${pg_ver}"/g \ -e s/-@pg_majdotmin@//g \ -e s/@pg_majdotmin@//g \ -e s/$PGCONFLICT0/"$PGCONFLICT"/g \ >> $DEST/control fi From pabs-guest at haydn.debian.org Wed Mar 22 15:41:18 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:41:29 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/patches patch.level upstream-1.1.0.diff Message-ID: User: pabs-guest Date: 06/03/22 15:41:18 Added: debian/patches patch.level upstream-1.1.0.diff Log: Add Alex's postgis 1.1 packaging. TODO: patches for stuff outside debian/ Revision Changes Path 1.1 postgis/debian/patches/patch.level CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/patches/patch.level?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/patches/patch.level?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: patch.level =================================================================== 4 1.1 postgis/debian/patches/upstream-1.1.0.diff CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/patches/upstream-1.1.0.diff?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/patches/upstream-1.1.0.diff?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: upstream-1.1.0.diff =================================================================== diff -Nar -U 4 -x debian /tmp/postgis_9853/postgis-1.1.0.orig/configure /tmp/postgis_9853/postgis-1.1.0.orig.debian/configure --- /tmp/postgis_9853/postgis-1.1.0.orig/configure 2005-12-21 22:25:14.000000000 +0000 +++ /tmp/postgis_9853/postgis-1.1.0.orig.debian/configure 2006-01-04 13:29:24.000000000 +0000 @@ -1,343 +1,56 @@ #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59. +# Generated automatically using autoconf version 2.13 +# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # -# Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -exec 6>&1 - -# -# Initializations. -# +# Defaults: +ac_help= ac_default_prefix=/usr/local -ac_config_libobj_dir=. -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Maximum number of lines to put in a shell here document. -# This variable seems obsolete. It should probably be removed, and -# only ac_max_sed_lines should be used. -: ${ac_max_here_lines=38} - -# Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= - -ac_unique_file="README.postgis" -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#if HAVE_SYS_TYPES_H -# include -#endif -#if HAVE_SYS_STAT_H -# include -#endif -#if STDC_HEADERS -# include -# include -#else -# if HAVE_STDLIB_H -# include -# endif -#endif -#if HAVE_STRING_H -# if !STDC_HEADERS && HAVE_MEMORY_H -# include -# endif -# include -#endif -#if HAVE_STRINGS_H -# include -#endif -#if HAVE_INTTYPES_H -# include -#else -# if HAVE_STDINT_H -# include -# endif -#endif -#if HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX LN_S USE_ICONV ICONV_LDFLAGS CPP EGREP build build_cpu build_vendor build_os host host_cpu host_vendor host_os PGCONFIG PGFEINCLUDES PGBEINCLUDES PGFELIBS PGBELIBS PGBIN PGTEMPLATE LPATH USE_GEOS GEOS_DIR USE_GEOS_CAPI GEOSCONFIG USE_PROJ PROJ_DIR PROJ USE_JTS JTS_INCLUDES JTS_LIBDIR JTSCONFIG FLEX DLLWRAP DLLTOOL YACC INSTALL PERL docdir XSLBASE XSLTPROC PDFXMLTEX JW DOC_RULE PORTNAME DLSUFFIX DLFLAGS EXE HOST_OS ELF_SYS LIBOBJS LTLIBOBJS' -ac_subst_files='' +# Any additions from configure.in: +ac_help="$ac_help + --without-iconv disable unicode support" +ac_help="$ac_help + --with-pgsql[[=ARG]] build for a specific pgsql version + [[ARG=path to pg_config]]" +ac_help="$ac_help + --with-geos[[=ARG]] enable spatial predicates and operators using GEOS + [[ARG=path to geos-config]]" +ac_help="$ac_help + --with-proj[[=DIR]] enable reprojection support" +ac_help="$ac_help + --with-jts[[=ARG]] use JTS for spatial predicates and operators + [[ARG=path to jts-config]]" +ac_help="$ac_help + --with-docdir=DIR install the documentation in DIR [[PREFIX/share/doc]]" +ac_help="$ac_help + --with-datadir=DIR install the scripts in DIR/contrib [[PREFIX/share/postgresql]]" # Initialize some variables set by options. -ac_init_help= -ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. -cache_file=/dev/null +build=NONE +cache_file=./config.cache exec_prefix=NONE +host=NONE no_create= +nonopt=NONE no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= +target=NONE verbose= x_includes=NONE x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datadir='${prefix}/share' @@ -349,141 +62,197 @@ oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' +# Initialize some other variables. +subdirs= +MFLAGS= MAKEFLAGS= +SHELL=${CONFIG_SHELL-/bin/sh} +# Maximum number of lines to put in a shell here document. +ac_max_here_lines=12 + ac_prev= for ac_option do + # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval "$ac_prev=\$ac_option" ac_prev= continue fi - ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` + case "$ac_option" in + -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) ac_optarg= ;; + esac # Accept the important Cygnus configure options, so we can diagnose typos. - case $ac_option in + case "$ac_option" in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; + bindir="$ac_optarg" ;; -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; + ac_prev=build ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; + build="$ac_optarg" ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; + cache_file="$ac_optarg" ;; -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | --da=*) - datadir=$ac_optarg ;; + datadir="$ac_optarg" ;; -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - eval "enable_$ac_feature=no" ;; + if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } + fi + ac_feature=`echo $ac_feature| sed 's/-/_/g'` + eval "enable_${ac_feature}=no" ;; -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; + if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } + fi + ac_feature=`echo $ac_feature| sed 's/-/_/g'` + case "$ac_option" in + *=*) ;; *) ac_optarg=yes ;; esac - eval "enable_$ac_feature='$ac_optarg'" ;; + eval "enable_${ac_feature}='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; + exec_prefix="$ac_optarg" ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; + -help | --help | --hel | --he) + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat << EOF +Usage: configure [options] [host] Reached max line limit 500! From pabs-guest at haydn.debian.org Wed Mar 22 15:41:21 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Wed Mar 22 15:41:30 2006 Subject: [DebianGIS-dev] CVS Update: postgis/debian/sofiles.in copyright mktemplate_gis mktemplate_gis.sh postgis_env.sh postgres_lib.sh postgresql-@pg_majdotmin@-postgis#SONAME#.dirs postgresql-@pg_majdotmin@-postgis#SONAME#.docs postgresql-@pg_majdotmin@-postgis#SONAME#.install postgresql-@pg_majdotmin@-postgis-utils.dirs postgresql-@pg_majdotmin@-postgis-utils.docs postgresql-@pg_majdotmin@-postgis-utils.install postgresql-postgis-common.conffiles postgresql-postgis-common.dirs postgresql-postgis-common.docs postgresql-postgis-common.install postgresql-postgis-doc.doc-base postgresql-postgis-doc.docs postgresql-postgis-java-debug.install postgresql-postgis-java.dirs postgresql-postgis-java.docs postgresql-postgis-java.examples postgresql-postgis-java.install postgresql-postgis-utils.dirs postgresql-postgis-utils.docs postgresql-postgis-utils.install postgresql-postgis-utils.manpages postgresql-postgis@major@-examples.dirs postgresql-postgis@major@-examples.install profile rmtemplate_gis rmtemplate_gis.sh scriptslink.sh Message-ID: User: pabs-guest Date: 06/03/22 15:41:21 Modified: debian/sofiles.in copyright Added: debian/sofiles.in mktemplate_gis mktemplate_gis.sh postgis_env.sh postgres_lib.sh postgresql-@pg_majdotmin@-postgis#SONAME#.dirs postgresql-@pg_majdotmin@-postgis#SONAME#.docs postgresql-@pg_majdotmin@-postgis#SONAME#.install postgresql-@pg_majdotmin@-postgis-utils.dirs postgresql-@pg_majdotmin@-postgis-utils.docs postgresql-@pg_majdotmin@-postgis-utils.install postgresql-postgis-common.conffiles postgresql-postgis-common.dirs postgresql-postgis-common.docs postgresql-postgis-common.install postgresql-postgis-doc.doc-base postgresql-postgis-doc.docs postgresql-postgis-java-debug.install postgresql-postgis-java.dirs postgresql-postgis-java.docs postgresql-postgis-java.examples postgresql-postgis-java.install postgresql-postgis-utils.dirs postgresql-postgis-utils.docs postgresql-postgis-utils.install postgresql-postgis-utils.manpages postgresql-postgis@major@-examples.dirs postgresql-postgis@major@-examples.install profile rmtemplate_gis rmtemplate_gis.sh scriptslink.sh Log: Add Alex's postgis 1.1 packaging. TODO: patches for stuff outside debian/ Revision Changes Path 1.2 +3 -18 postgis/debian/sofiles.in/copyright CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/copyright?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/copyright?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/copyright.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: copyright =================================================================== RCS file: /cvsroot/pkg-grass/postgis/debian/sofiles.in/copyright,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- copyright 26 Mar 2005 22:29:30 -0000 1.1 +++ copyright 22 Mar 2006 15:41:19 -0000 1.2 @@ -3,23 +3,8 @@ It was downloaded from http://postgis.refractions.net -Upstream Authors: See /usr/share/doc/libpostgis#SOVER#/CREDITS - -License: - - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. - - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this package; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. +Upstream Authors: See CREDITS +This code is released under the terms of the GNU GENERAL PUBLIC LICENSE. On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/@main_prefix@/share/common-licenses/GPL'. 1.1 postgis/debian/sofiles.in/mktemplate_gis CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/mktemplate_gis?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/mktemplate_gis?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: mktemplate_gis =================================================================== #!/bin/sh #create a template database, named template_gis by default, #and grant ownership or full privileges to the postgis tables to a user, postgres by default source /usr/share/postgresql-postgis-common/postgis_env.sh for ARGVN in $1 $2 $3 $4 $5 $6 ; do if [ `expr substr $ARGVN 1 7` = "--user=" ]; then GRUSER=`echo $ARGVN | sed -e s/^--user=//` elif [ `expr substr $ARGVN 1 11` = "--template=" ]; then TDB=`echo $ARGVN | sed -e s/^--template=//` elif [ `expr substr $ARGVN 1 6` = "--dba=" ]; then DBAUSER=`echo $ARGVN | sed -e s/^--dba=//` elif [ `expr substr $ARGVN 1 9` = "--script=" ]; then PGISSCRIPT=`echo $ARGVN | sed -e s/^--script=//` elif [ "$ARGVN" = "--no-srs" ]; then NO_SRS="true" elif [ -n $ARGVN ]; then echo "Usage of `basename $0`" echo "Supply arguments as follows" echo "--user=username to own or be grant privileges on databases" echo " created from template" echo "--template=templatename of the template to create" echo "--dba=dbaname of the dba to run administrational programs as" echo "--script=script to load postgis functions in the database" echo " if no directory given, default is @pg_datadir@/contrib/" echo "--no-srs: use this option to not load the huge spatial_ref_sys.sql" echo "You must usually be either root, or a postgresql dba or the" echo "cluster owner in order to use `basename $0`" exit 1 fi done if [ -z "`echo $PGISSCRIPT | grep /`" ]; then PGISSCRIPT="/@pg_datadir@/contrib/${PGISSCRIPT}" fi if [ ! "$NO_SRS" = "true" ]; then SPATIAL_REF_SYS="/@pg_datadir@/contrib/spatial_ref_sys.sql" fi SCRIPTS="$PGISSCRIPT $SPATIAL_REF_SYS" GRTABLES="spatial_ref_sys geometry_columns" source /@pg_bindir@/postgres_lib.sh sudo_dba DBAUSER export SCRIPTS GRTABLES GRUSER DBAUSER TDB $SUDO -c "/@pg_bindir@/mktemplate_gis.sh" 1.1 postgis/debian/sofiles.in/mktemplate_gis.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/mktemplate_gis.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/mktemplate_gis.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: mktemplate_gis.sh =================================================================== #!/bin/sh #this script should be run as $DBAUSER PWD1=`pwd` cd /tmp source /@pg_bindir@/postgres_lib.sh check_dba $DBAUSER template_rm $TDB template_mk $TDB $GRUSER cd $PWD1 1.1 postgis/debian/sofiles.in/postgis_env.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgis_env.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgis_env.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgis_env.sh =================================================================== #!/bin/sh # environment variables for postgis #read optional configuration files. last prevails for file in "/etc/default/postgis" "$HOME/.postgis/profile" ; do if [ -f "$file" ]; then tmpval=`grep "^TEMPLATEDB=" $file | cut -d= -f2` if [ -n "$tmpval" ]; then TEMPLATEDB1=$tmpval fi tmpval=`grep "^GRUSER=" $file | cut -d= -f2` if [ -n "$tmpval" ]; then GRUSER1=$tmpval fi tmpval=`grep "^DBAUSER=" $file | cut -d= -f2` if [ -n "$tmpval" ]; then DBAUSER1=$tmpval fi tmpval=`grep "^PGISSCRIPT=" $file | cut -d= -f2` if [ -n "$tmpval" ]; then PGISSCRIPT1=$tmpval fi fi done #cluster information should be set separately if [ -x /@main_bin@/pg_lsclusters ]; then PGCLUSTER=`pg_lsclusters | awk '{if ($3 == ENVIRON["PGPORT"]) {print $1"/"$2;}}'` export PGCLUSTER if [ -z $DBAUSER ]; then DBAUSER=`pg_lsclusters | awk '{if ($3 == ENVIRON["PGPORT"]) {print $5;}}'` fi fi if [ -z "$TEMPLATEDB" ]; then if [ -n "$TEMPLATEDB1" ]; then TEMPLATEDB="$TEMPLATEDB1" else TEMPLATEDB="template_gis" fi fi if [ -z "$GRUSER" ]; then if [ -n "$GRUSER1" ]; then GRUSER="$GRUSER1" else GRUSER="postgres" fi fi if [ -z "$DBAUSER" ]; then if [ -n "$DBAUSER1" ]; then DBAUSER="$DBAUSER1" else DBAUSER="postgres" fi fi if [ -z "$PGISSCRIPT" ]; then if [ -n "$PGISSCRIPT1" ]; then PGISSCRIPT="$PGISSCRIPT1" else PGISSCRIPT="postgis.sql" fi fi TDB=$TEMPLATEDB 1.1 postgis/debian/sofiles.in/postgres_lib.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgres_lib.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgres_lib.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgres_lib.sh =================================================================== #!/bin/sh SUDO_OTHERUSER="su $DBAUSER" SUDO_SAMEUSER="$SHELL" function sudo_dba() { if [ "$USER" != "$DBAUSER" ]; then ISDBASYSUSER=`cat /etc/passwd | awk -F : '{print $1}' | grep ^$DBAUSER$` if [ ! "$ISDBASYSUSER" = "$DBAUSER" ]; then echo "$DBAUSER is not a system user on `hostname`." echo "support for remote servers not implemented yet." exit 1 fi SUDO=$SUDO_OTHERUSER if [ ! "$USER" = "root" ]; then echo "you will be prompted for the system password for $DBAUSER," echo "even more than once." fi else SUDO=$SUDO_SAMEUSER fi } function wrong_cluster() { if [ -n "`dpkg-query -W postgresql-common`" ]; then echo "in case you meant another cluster, please specify it explicitly." echo "see pwrapper(1)." fi } #for the following functions, $USER is expected to be $DBAUSER, as set before function check_dba() { DBAUSER=$1 if [ ! "$DBAUSER" = "$USER" ]; then echo "you are not working as $DBAUSER". echo "you may be not allowed to do so (maybe wrong password)." exit 1 fi ISDBAPGUSER=`psql -At -d template1 -c "select usename from pg_user where usesuper = true and usename = '$DBAUSER';" 2>&1` if [ ! "$ISDBAPGUSER" = "$DBAUSER" ]; then MAYPOSTGRES=`psql -l` if [ -z "$MAYPOSTGRES" ]; then echo "either postgresql $PGCLUSTER is not running," echo "or $DBAUSER doesn't have privileges on cluster $PGCLUSTER." wrong_cluster exit 1 fi echo "dba or cluster $PGCLUSTER owner privileges are needed for this operation." echo "$DBAUSER doesn't have dba or cluster $PGCLUSTER owner privileges." echo "you may specify a dba that you are allowed to use his/her name (try --help)." wrong_cluster exit 1 fi } function template_rm() { TDB=$1 db_update=`psql -d template1 -c "UPDATE pg_database SET datistemplate = FALSE WHERE datname = '$TDB';" 2>&1` if [ "$db_update" = "UPDATE 1" ]; then dropdb $TDB 2>&1 | cat > /dev/null else echo "$TDB could not be accessed. it may not exist" fi } #environment variables used: #$SCRIPTS=spaces separated list of sql scripts to load into new template db #$GRTABLES=spaces separated list of tables to be granted access to $GRUSER function template_mk() { TDB=$1 GRUSER=$2 #of course it could be better to create as the $GRUSER where system user db_create=`createdb $TDB 2>&1` if [ "$db_create" = "CREATE DATABASE" ]; then GRID=`psql -d template1 -At -c "select usesysid from pg_user where usename='$GRUSER';"` if [ -n "$GRID" ]; then psql -d $TDB -c "UPDATE pg_database SET datdba = $GRID WHERE datname = '$TDB';" 2>&1 | cat > /dev/null fi if [ -x /@pg_bindir@/createlang ]; then /@pg_bindir@/createlang plpgsql $TDB 2>&1 | cat > /dev/null fi for script in $SCRIPTS ; do psql -d $TDB -f $script 2>&1 | cat > /dev/null done #pseudo tables for postgresql 7.2 and 7.4. feel free to add more, for other postgresql versions PSEUDO_TABLES="'pg_xactlock', 'sql_features', 'sql_implementation_info', 'sql_languages', 'sql_packages', 'sql_sizing', 'sql_sizing_profiles'" TABLES=`psql -d $TDB -At -c "select tablename from pg_tables where tablename not in ($PSEUDO_TABLES);"` if [ -n "$GRID" ]; then for table in $TABLES ; do psql -d $TDB -c "alter table $table owner to $GRUSER;" 2>&1 | cat > /dev/null done else #maybe public, or group for grtable in $GRTABLES ; do psql -d $TDB -c "grant all privileges on table $grtable to $GRUSER;" 2>&1 | cat > /dev/null done fi psql -d $TDB -c "VACUUM FULL;" 2>&1 | cat > /dev/null psql -d $TDB -c "VACUUM FREEZE;" 2>&1 | cat > /dev/null psql -d $TDB -c "UPDATE pg_database SET datistemplate = TRUE WHERE datname = '$TDB';" 2>&1 | cat > /dev/null psql -d $TDB -c "UPDATE pg_database SET datallowconn = FALSE WHERE datname = '$TDB';" 2>&1 | cat > /dev/null else echo "$db_create" fi } 1.1 postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-@pg_majdotmin@-postgis#SONAME#.dirs =================================================================== @pg_bindir@ @pg_libdir@ @pg_datadir@/contrib 1.1 postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-@pg_majdotmin@-postgis#SONAME#.docs =================================================================== README.postgis TODO CREDITS 1.1 postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis#SONAME#.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-@pg_majdotmin@-postgis#SONAME#.install =================================================================== @pg_bindir@/* @pg_libdir@/lib*.so.* @pg_datadir@/contrib/postgis#SONAME#.sql @pg_datadir@/contrib/lwpostgis_upgrade.sql @pg_datadir@/contrib/spatial_ref_sys.sql 1.1 postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-@pg_majdotmin@-postgis-utils.dirs =================================================================== @pg_bindir@ 1.1 postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-@pg_majdotmin@-postgis-utils.docs =================================================================== CREDITS loader/README.* 1.1 postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-@pg_majdotmin@-postgis-utils.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-@pg_majdotmin@-postgis-utils.install =================================================================== @pg_bindir@/* @pg_datadir@/man/man1/* 1.1 postgis/debian/sofiles.in/postgresql-postgis-common.conffiles CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.conffiles?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.conffiles?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-common.conffiles =================================================================== /etc/default/postgis 1.1 postgis/debian/sofiles.in/postgresql-postgis-common.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-common.dirs =================================================================== @main_prefix@/share/postgresql-postgis-common etc/default 1.1 postgis/debian/sofiles.in/postgresql-postgis-common.docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-common.docs =================================================================== CREDITS 1.1 postgis/debian/sofiles.in/postgresql-postgis-common.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-common.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-common.install =================================================================== @main_prefix@/share/postgresql-postgis-common/* etc/default/postgis 1.1 postgis/debian/sofiles.in/postgresql-postgis-doc.doc-base CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-doc.doc-base?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-doc.doc-base?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-doc.doc-base =================================================================== Document: postgis-manual Title: PostGIS Manual Author: See /@main_prefix@/share/doc/postgresql-postgis-doc/CREDITS Abstract: This manual teaches postgresql-postgis handling. Section: Apps/Database Format: HTML Index: /@main_prefix@/share/doc/postgresql-postgis-doc/postgis.html Files: /@main_prefix@/share/doc/postgresql-postgis-doc/*.html Format: XML Index: /@main_prefix@/share/doc/postgresql-postgis-doc/postgis.xml Files: /@main_prefix@/share/doc/postgresql-postgis-doc/*.xml 1.1 postgis/debian/sofiles.in/postgresql-postgis-doc.docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-doc.docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-doc.docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-doc.docs =================================================================== doc/html/*.html doc/html/*.css doc/postgis.xml README.postgis CREDITS 1.1 postgis/debian/sofiles.in/postgresql-postgis-java-debug.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java-debug.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java-debug.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-java-debug.install =================================================================== @main_prefix@/share/java/postgis_debug.jar 1.1 postgis/debian/sofiles.in/postgresql-postgis-java.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-java.dirs =================================================================== @main_prefix@/share/java 1.1 postgis/debian/sofiles.in/postgresql-postgis-java.docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-java.docs =================================================================== CREDITS @dir_java@/README 1.1 postgis/debian/sofiles.in/postgresql-postgis-java.examples CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.examples?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.examples?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-java.examples =================================================================== @dir_java@/src/examples/* 1.1 postgis/debian/sofiles.in/postgresql-postgis-java.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-java.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-java.install =================================================================== @main_prefix@/share/java/postgis.jar 1.1 postgis/debian/sofiles.in/postgresql-postgis-utils.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-utils.dirs =================================================================== @main_bin@ @pg_main_bin@ 1.1 postgis/debian/sofiles.in/postgresql-postgis-utils.docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-utils.docs =================================================================== CREDITS loader/README.* 1.1 postgis/debian/sofiles.in/postgresql-postgis-utils.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-utils.install =================================================================== @main_bin@/* @pg_main_bin@/* 1.1 postgis/debian/sofiles.in/postgresql-postgis-utils.manpages CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.manpages?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis-utils.manpages?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis-utils.manpages =================================================================== doc/man/pgsql2shp.1 doc/man/shp2pgsql.1 debian/createdb.postgis.1 debian/mktemplate_gis.1 debian/rmtemplate_gis.1 1.1 postgis/debian/sofiles.in/postgresql-postgis@major@-examples.dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis@major@-examples.dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis@major@-examples.dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis@major@-examples.dirs =================================================================== @main_prefix@/share/postgresql-postgis@major@-examples 1.1 postgis/debian/sofiles.in/postgresql-postgis@major@-examples.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis@major@-examples.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/postgresql-postgis@major@-examples.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: postgresql-postgis@major@-examples.install =================================================================== @main_prefix@/share/postgresql-postgis@major@-examples/* 1.1 postgis/debian/sofiles.in/profile CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/profile?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/profile?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: profile =================================================================== #those are the default variables for postgresql-postgis. #this file will be scanned from /etc/default/postgis, #and then from $HOME/postgis/profile #values should NOT be in quotes #the name of the template database to create TEMPLATEDB=template_gis #the user/group to be granted maximum rights to the template. #public/groups are ok, but cannot be owners, so cannot grant #privileges on databases created from this template. GRUSER=postgres #name of the user the template script will be created/removed as. #should be either dba, or the database cluster owner. #defaults to the cluster owner, and if none, to postgres. DBAUSER=postgres #this is the postgis functionality loader script. #as it contains the name of the postgresql-postgis library, this #file will designate which postgis version to use. PGISSCRIPT=postgis#SONAME#.sql #set this to true not to load huge spatial_ref_sys table in the template. #NO_SRS=true 1.1 postgis/debian/sofiles.in/rmtemplate_gis CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/rmtemplate_gis?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/rmtemplate_gis?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: rmtemplate_gis =================================================================== #!/bin/sh #drop template_gis #it may be used to drop any postgresql template, by supplying argument source /usr/share/postgresql-postgis-common/postgis_env.sh for ARGVN in $1 $2 $3 $4 ; do if [ `expr substr $ARGVN 1 11` = "--template=" ]; then TDB=`echo $ARGVN | sed -e s/^--template=//` elif [ `expr substr $ARGVN 1 6` = "--dba=" ]; then DBAUSER=`echo $ARGVN | sed -e s/^--dba=//` elif [ -n $ARGVN ]; then echo "Usage of `basename $0`" echo "Supply arguments as follows" echo "--template=templatename of the template to remove" echo "--dba=dbaname of the dba to run administrational programs as" echo "You must usually be either root, or a postgresql dba in order" echo "to use `basename $0`" exit 1 fi done source /@pg_bindir@/postgres_lib.sh sudo_dba $DBAUSER export DBAUSER TDB $SUDO -c "/@pg_bindir@/rmtemplate_gis.sh" 1.1 postgis/debian/sofiles.in/rmtemplate_gis.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/rmtemplate_gis.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/rmtemplate_gis.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: rmtemplate_gis.sh =================================================================== #!/bin/sh #this script should be run as $DBAUSER PWD1=`pwd` cd /tmp source /@pg_bindir@/postgres_lib.sh check_dba $DBAUSER template_rm $TDB cd $PWD1 1.1 postgis/debian/sofiles.in/scriptslink.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/scriptslink.sh?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/postgis/debian/sofiles.in/scriptslink.sh?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: scriptslink.sh =================================================================== #!/bin/sh # pass the file name of the (lw)?postgis.sql as $1 parameter here # it will be renamed to postgis#SONAME#.sql, to allow postgis versions # coexistance PWD1=`pwd` #postgresql version independent scripts SCRIPTS="$DEBDIR/createdb.postgis" SCRIPTS="${SCRIPTS} `ls $CURDIR/utils/*.pl`" BINARIES="shp2pgsql pgsql2shp" #postgresql version dependent scripts PGSCRIPTS="mktemplate_gis.sh rmtemplate_gis.sh postgres_lib.sh mktemplate_gis rmtemplate_gis" MULTIPG="`dpkg-query -W postgresql-common | awk '{print $2;}'`" BASE_SCRIPTS="" for file in $SCRIPTS ; do BASE_SCRIPTS="${BASE_SCRIPTS} `basename $file`" done ALL_PROGS="mktemplate_gis rmtemplate_gis ${BINARIES}${BASE_SCRIPTS}" for file in $PGSCRIPTS ; do install --mode=755 $DEBDIR/$file $DESTDIR/@pg_bindir@ done cp $DEBDIR/postgis_env.sh $DEBDIR/profile $DESTDIR/$sharedir for file in $SCRIPTS ; do install --mode=755 $file $DESTDIR/$sharedir; done cd $DESTDIR/@pg_bindir@ for file in $BASE_SCRIPTS ; do ln -sf /$sharedir/$file; done cd $DESTDIR/@main_bin@ for file in $ALL_PROGS ; do if [ -n $MULTIPG ]; then #ln -s /$sharedir/postgis_wrapper $file; ln -s /usr/share/postgresql-common/pg_wrapper $file; else ln -sf /@pg_bindir@/$file $file; #wrongly formatted if not functional fi done if [ -n $MULTIPG ] && [ -f $ONEUTILS ]; then cd $DESTDIR/@pg_bindir@ for binary in $BINARIES; do if [ "/@pg_bindir@" == "`pg_config --bindir`" ]; then mv $binary $DESTDIR/@pg_main_bin@ elif [ ! -f $DESTDIR/@pg_main_bin@/$binary ]; then mv $binary $DESTDIR/@pg_main_bin@ else rm $binary fi ln -s /@pg_main_bin@/$binary $binary done fi cd $DESTDIR/@pg_datadir@/contrib/ mv $1 postgis#SONAME#.sql mv spatial_ref_sys.sql $DESTDIR/$sharedir ln -sf /$sharedir/spatial_ref_sys.sql cd $PWD1 From frankie at haydn.debian.org Thu Mar 23 11:18:18 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Thu Mar 23 11:18:21 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/23 11:18:18 Modified: . dgis-packages.inc Log: Added gvsig Revision Changes Path 1.27 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.27&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.27&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.27&r2=1.26&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- dgis-packages.inc 21 Mar 2006 00:36:06 -0000 1.26 +++ dgis-packages.inc 23 Mar 2006 11:18:18 -0000 1.27 @@ -32,6 +32,7 @@ 'grace6' => {url=>'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/'}, 'grass' => {url=>'http://grass.itc.it/'}, 'gts' => {url=>'http://gts.sourceforge.net/'}, +'gvsig' => {url=>'http://www.gvsig.gva.es/framesing.htm'}, 'ircmarkers' => {url=>'http://www.df7cb.de/projects/ircmarkers/'}, 'jama' => {url=>'http://math.nist.gov/javanumerics/jama/'}, 'jgrass' => {url=>'http://www.hydrologis.com/html/jgrass/jgrass_en.html'}, From pabs-guest at haydn.debian.org Thu Mar 23 14:20:00 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Thu Mar 23 14:20:03 2006 Subject: [DebianGIS-dev] CVS Update: mapserver/debian changelog Message-ID: User: pabs-guest Date: 06/03/23 14:20:00 Modified: debian changelog Log: New upstream release Revision Changes Path 1.73 +7 -0 mapserver/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?annotate=1.73&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?rev=1.73&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog.diff?r1=1.73&r2=1.72&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/changelog,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- changelog 20 Feb 2006 10:28:40 -0000 1.72 +++ changelog 23 Mar 2006 14:20:00 -0000 1.73 @@ -1,3 +1,10 @@ +mapserver (4.8.2-1) UNRELEASED; urgency=low + + * New upstream bugfix release + - drop 10_python_build: useless, only for Windows + + -- Paul Wise Thu, 23 Mar 2006 22:19:27 +0800 + mapserver (4.8.1-2) unstable; urgency=low [ Paul Wise ] From pabs-guest at haydn.debian.org Thu Mar 23 14:20:01 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Thu Mar 23 14:20:04 2006 Subject: [DebianGIS-dev] CVS Update: mapserver/debian/patches 00list 10_python_build.dpatch Message-ID: User: pabs-guest Date: 06/03/23 14:20:01 Modified: debian/patches 00list Removed: debian/patches 10_python_build.dpatch Log: New upstream release Revision Changes Path 1.8 +0 -1 mapserver/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/patches/00list?annotate=1.8&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/patches/00list?rev=1.8&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/patches/00list.diff?r1=1.8&r2=1.7&cvsroot= ----------------------------------- Index: 00list =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/patches/00list,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- 00list 13 Sep 2005 09:19:53 -0000 1.7 +++ 00list 23 Mar 2006 14:20:01 -0000 1.8 @@ -1,4 +1,3 @@ -10_python_build 20_php_build 50_clean 70_ptrreturn From pabs-guest at haydn.debian.org Thu Mar 23 15:47:25 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Thu Mar 23 15:47:31 2006 Subject: [DebianGIS-dev] CVS Update: mapserver/debian changelog php4-mapscript.config php4-mapscript.postinst php5-mapscript.config php5-mapscript.postinst Message-ID: User: pabs-guest Date: 06/03/23 15:47:25 Modified: debian changelog php4-mapscript.config php4-mapscript.postinst php5-mapscript.config php5-mapscript.postinst Log: Workaround 346184 Revision Changes Path 1.74 +3 -1 mapserver/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?annotate=1.74&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?rev=1.74&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog.diff?r1=1.74&r2=1.73&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/changelog,v retrieving revision 1.73 retrieving revision 1.74 diff -u -r1.73 -r1.74 --- changelog 23 Mar 2006 14:20:00 -0000 1.73 +++ changelog 23 Mar 2006 15:47:25 -0000 1.74 @@ -2,8 +2,10 @@ * New upstream bugfix release - drop 10_python_build: useless, only for Windows + * Add php_mapscript.so to apache2 php.ini as well. This is a workaround + for #346184, upstream is looking into it. - -- Paul Wise Thu, 23 Mar 2006 22:19:27 +0800 + -- Paul Wise Thu, 23 Mar 2006 23:42:51 +0800 mapserver (4.8.1-2) unstable; urgency=low 1.3 +1 -1 mapserver/debian/php4-mapscript.config CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php4-mapscript.config?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php4-mapscript.config?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php4-mapscript.config.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: php4-mapscript.config =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/php4-mapscript.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- php4-mapscript.config 13 Nov 2005 17:13:24 -0000 1.2 +++ php4-mapscript.config 23 Mar 2006 15:47:25 -0000 1.3 @@ -7,7 +7,7 @@ phpver=php4 -for SAPI in apache +for SAPI in apache apache2 do # Skip this loop if the config file isn't there (yet). if [ -f "/etc/$phpver/$SAPI/php.ini" ]; then 1.3 +1 -1 mapserver/debian/php4-mapscript.postinst CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php4-mapscript.postinst?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php4-mapscript.postinst?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php4-mapscript.postinst.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: php4-mapscript.postinst =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/php4-mapscript.postinst,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- php4-mapscript.postinst 13 Nov 2005 17:13:24 -0000 1.2 +++ php4-mapscript.postinst 23 Mar 2006 15:47:25 -0000 1.3 @@ -13,7 +13,7 @@ phpver=php4 -for SAPI in apache +for SAPI in apache apache2 do if [ -f /etc/$phpver/$SAPI/php.ini ]; then db_get $phpver/extension_mapscript_$SAPI 1.2 +1 -1 mapserver/debian/php5-mapscript.config CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php5-mapscript.config?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php5-mapscript.config?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php5-mapscript.config.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: php5-mapscript.config =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/php5-mapscript.config,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- php5-mapscript.config 13 Nov 2005 17:13:24 -0000 1.1 +++ php5-mapscript.config 23 Mar 2006 15:47:25 -0000 1.2 @@ -7,7 +7,7 @@ phpver=php5 -for SAPI in apache +for SAPI in apache apache2 do # Skip this loop if the config file isn't there (yet). if [ -f "/etc/$phpver/$SAPI/php.ini" ]; then 1.2 +1 -1 mapserver/debian/php5-mapscript.postinst CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php5-mapscript.postinst?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php5-mapscript.postinst?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/php5-mapscript.postinst.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: php5-mapscript.postinst =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/php5-mapscript.postinst,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- php5-mapscript.postinst 13 Nov 2005 17:13:24 -0000 1.1 +++ php5-mapscript.postinst 23 Mar 2006 15:47:25 -0000 1.2 @@ -13,7 +13,7 @@ phpver=php5 -for SAPI in apache +for SAPI in apache apache2 do if [ -f /etc/$phpver/$SAPI/php.ini ]; then db_get $phpver/extension_mapscript_$SAPI From pwallacw at yahoo.co.uk Thu Mar 23 16:14:51 2006 From: pwallacw at yahoo.co.uk (=?iso-8859-1?q?Wallace=20Peter?=) Date: Thu Mar 23 16:25:01 2006 Subject: [DebianGIS-dev] Classified-Proposition! Message-ID: <20060323161451.80313.qmail@web26303.mail.ukl.yahoo.com> I have a new email address!You can now email me at: pwallacw@yahoo.co.uk HELLO FRIEND, PLEASE BEAR WITH ME FOR NOW AND DO NOT ASK MY NAME. WHAT I HAVE MAY BE OF INTEREST TO YOU. IT IS A BUSINESS PROPOSAL THAT WILL BE BENEFICIAL TO YOU AND I. I LIVE IN LONDON, UNITED KINGDOM. I AM 51 YEARS OLD AND I HAVE BEEN WORKING IN A BANK IN LONDON FOR THE PAST 17 YEARS WHERE I AM PRESENTLY AN ACCOUNTS MANAGER. I WILL GIVE YOU MY FULL DETAILS ON YOUR REPLY TO THIS LETTER. MY AIM OF CONTACTING YOU IS TO SOLICIT YOUR CO-OPERATION AND ASSISTANCE BASED ON ONE OF THE ACCOUNTS UNDER MY MANAGEMENT CONTAINING $18.5MILLION (EIGHTEEN MILLION & FIVE HUNDRED THOUSAND DOLLARS) WHICH HAS REMAINED DORMANT FOR THE LAST TWELVE YEARS. THIS ACCOUNT WAS OWNED BY THE LATE MRS. JOVITA JASMINE CARERRA AND FOLLOWING MY INVESTIGATION, I FOUND OUT THAT SHE DIED ON MAY 1992 VIA A CAR CRASH IN THE BAHAMAS AND SHE LEFT NO CHILDREN OR NEXT OF KIN. I WILL INFORM YOU MORE ON HOW WE CAN GET THE MONEY IN HER ACCOUNT TRANSFERED INTO YOUR ACCOUNT IF YOU AGREE TO CO-OPERATE WITH ME ON THIS ON YOUR REPLY TO THIS MAIL. I WILL ALSO GIVE YOU MORE PERSONAL DETAILS OF ME AND THE TRANSACTION ON YOUR REPLY. PLEASE TREAT THIS AS CONFIDENTIAL, URGENT AND OF UTMOST IMPORTANCE. PLEASE RESPOND ONLY VIA: plz_w@freemail.net.ru - Wallace Peter -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060323/ddec3d75/attachment.htm From frankie at haydn.debian.org Fri Mar 24 11:15:27 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Fri Mar 24 11:15:30 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/24 11:15:27 Modified: . dgis-packages.inc Log: Added geotools Revision Changes Path 1.28 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.28&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.28&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.28&r2=1.27&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- dgis-packages.inc 23 Mar 2006 11:18:18 -0000 1.27 +++ dgis-packages.inc 24 Mar 2006 11:15:27 -0000 1.28 @@ -20,6 +20,7 @@ 'gdal' => {url=>'http://www.gdal.org/'}, 'geoip' => {url=>'http://www.maxmind.com/app/c'}, 'geos' => {url=>'http://geos.refractions.net/'}, +'geotools' => {url=>'http://www.geotools.org/display/GEOTOOLS/Downloads'}, 'gmt' => {url=>'http://gmt.soest.hawaii.edu/'}, 'gmap' => {url=>'http://gmap.sourceforge.net/'}, 'gpsbabel' => {url=>'http://gpsbabel.sourceforge.net/'}, From pere at hungry.com Wed Mar 22 20:32:41 2006 From: pere at hungry.com (Petter Reinholdtsen) Date: Fri Mar 24 13:50:01 2006 Subject: [DebianGIS-dev] Re: Bug#358243: libterralib: 358243: fixed in cvs References: <1143014628.5931.50.camel@localhost.localdomain> <20060322094020.GB15037@ba.issia.cnr.it> Message-ID: <2flbqvyb4pi.fsf@saruman.uio.no> [Francesco P. Lovergine] > Upstream forwarding for those issues would be a Good Thing(TM). > Is that already done by anyone? I did with a copy to this list, in my email with subject "libterralib fail to build with gcc 4.1". From frankie at haydn.debian.org Fri Mar 24 14:15:42 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Fri Mar 24 14:15:49 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian changelog control rules Message-ID: User: frankie Date: 06/03/24 14:15:42 Modified: debian changelog control rules Log: Adding a couple of interesting patches. Revision Changes Path 1.44 +12 -1 pkg-grass/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?annotate=1.44&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?rev=1.44&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog.diff?r1=1.44&r2=1.43&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/changelog,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- changelog 16 Mar 2006 05:15:51 -0000 1.43 +++ changelog 24 Mar 2006 14:15:41 -0000 1.44 @@ -10,11 +10,22 @@ Resulting files belongs to grass-doc. * Rules file revised to clean doxygen doc properly. * Targets revised in rules to adopt a more clean schema of dependencies. + * Added a group of suggested packages (Thanks Hamish). + * New patches added: + fftw3.dpatch: supports FFTW3 + (cfr. http://grass.itc.it/pipermail/grass-commit/2006-March/021104.html) + nviz.dpatch: solves old NVIZ issue with multi-threaded Tcl 8.4. + (cfr. http://grass.itc.it/pipermail/grass-commit/2006-March/021104.html) + * Moved to tcl8.4-dev and tk8.4 build-deps. Changed tcl path in debian/rules. + (closes: #206844) + * Moved to fftw3-dev build-dep [ Paul Wise ] * Suggest some packages useful for v.in.e00, v.in.garmin and i.spectral - -- Paul Wise Thu, 16 Mar 2006 13:12:24 +0800 + [ Francesco Paolo Lovergine ] + + -- Francesco Paolo Lovergine Fri, 24 Mar 2006 14:12:32 +0100 grass (6.0.1-4) unstable; urgency=low 1.33 +1 -1 pkg-grass/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?annotate=1.33&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control?rev=1.33&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/control.diff?r1=1.33&r2=1.32&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/control,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- control 16 Mar 2006 05:15:51 -0000 1.32 +++ control 24 Mar 2006 14:15:42 -0000 1.33 @@ -3,7 +3,7 @@ Priority: extra Maintainer: Debian GIS Project Uploaders: Francesco Paolo Lovergine , Steve Halasz -Build-depends: flex, bison, libreadline5-dev | libreadline-dev, libncurses5-dev, lesstif2-dev, debhelper (>= 4.0.2), dpatch, libtiff4-dev, tcl8.3-dev, tk8.3-dev, fftw-dev, libxmu-dev, xlibmesa-gl-dev, libglu1-xorg-dev | xlibmesa-glu-dev, libfreetype6-dev, autoconf2.13, autotools-dev, libgdal1-1.3.1-dev, proj (>= 4.4.7), libjpeg62-dev, libpng12-dev, libpq-dev | postgresql-dev, unixodbc-dev, doxygen, fakeroot, libmysqlclient15-dev | libmysqlclient14-dev, graphviz +Build-depends: flex, bison, libreadline5-dev | libreadline-dev, libncurses5-dev, lesstif2-dev, debhelper (>= 4.0.2), dpatch, libtiff4-dev, tcl8.4-dev, tk8.4-dev, fftw3-dev, libxmu-dev, xlibmesa-gl-dev, libglu1-xorg-dev | xlibmesa-glu-dev, libfreetype6-dev, autoconf2.13, autotools-dev, libgdal1-1.3.1-dev, proj (>= 4.4.7), libjpeg62-dev, libpng12-dev, libpq-dev | postgresql-dev, unixodbc-dev, doxygen, fakeroot, libmysqlclient15-dev | libmysqlclient14-dev, graphviz Standards-Version: 3.6.2 Package: grass 1.29 +1 -1 pkg-grass/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/rules?annotate=1.29&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/rules?rev=1.29&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/rules.diff?r1=1.29&r2=1.28&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/rules,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- rules 14 Mar 2006 15:02:44 -0000 1.28 +++ rules 24 Mar 2006 14:15:42 -0000 1.29 @@ -43,7 +43,7 @@ --with-glw \ --with-odbc \ --with-freetype-includes=/usr/include/freetype2 \ - --with-tcltk-includes=/usr/include/tcl8.3 \ + --with-tcltk-includes=/usr/include/tcl8.4 \ --with-postgres-includes=$(shell pg_config --includedir) \ --with-mysql-includes=/usr/include/mysql From frankie at haydn.debian.org Fri Mar 24 14:15:44 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Fri Mar 24 14:15:50 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian/patches 00list configure.in.dpatch fftw3.dpatch nviz.dpatch Message-ID: User: frankie Date: 06/03/24 14:15:44 Modified: debian/patches 00list Added: debian/patches fftw3.dpatch nviz.dpatch Removed: debian/patches configure.in.dpatch Log: Adding a couple of interesting patches. Revision Changes Path 1.13 +2 -1 pkg-grass/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/00list?annotate=1.13&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/00list?rev=1.13&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/00list.diff?r1=1.13&r2=1.12&cvsroot= ----------------------------------- Index: 00list =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/patches/00list,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- 00list 14 Mar 2006 15:02:46 -0000 1.12 +++ 00list 24 Mar 2006 14:15:43 -0000 1.13 @@ -1,4 +1,5 @@ epsg-codes-loc htmlgen-fakeroot xterm-fix -#configure.in +fftw3 +nviz 1.1 pkg-grass/debian/patches/fftw3.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: fftw3.dpatch =================================================================== #! /bin/sh /usr/share/dpatch/dpatch-run ## fftw3.dpatch by Francesco Paolo Lovergine ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: No description. @DPATCH@ diff -urNad grass-6.0.2~/configure grass-6.0.2/configure --- grass-6.0.2~/configure 2006-03-11 12:06:41.000000000 +0100 +++ grass-6.0.2/configure 2006-03-24 13:41:14.000000000 +0100 @@ -10239,7 +10239,7 @@ ac_save_cppflags="$CPPFLAGS" CPPFLAGS="$FFTWINC $CPPFLAGS" -for ac_hdr in fftw.h +for ac_hdr in fftw3.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 @@ -10274,8 +10274,8 @@ else echo "$ac_t""no" 1>&6 ac_save_cppflags="$CPPFLAGS" -CPPFLAGS=" $CPPFLAGS" -for ac_hdr in dfftw.h +CPPFLAGS="$FFTWINC $CPPFLAGS" +for ac_hdr in fftw.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 @@ -10309,6 +10309,42 @@ else echo "$ac_t""no" 1>&6 +ac_save_cppflags="$CPPFLAGS" +CPPFLAGS=" $CPPFLAGS" +for ac_hdr in dfftw.h +do +ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` +echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +echo "configure:10319: checking for $ac_hdr" >&5 + +cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:10327: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + eval "ac_cv_header_$ac_safe=yes" +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_header_$ac_safe=no" +fi +rm -f conftest* +if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then + echo "$ac_t""yes" 1>&6 + ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` + cat >> confdefs.h <&6 { echo "configure: error: *** Unable to locate FFTW includes." 1>&2; exit 1; } fi @@ -10323,11 +10359,17 @@ CPPFLAGS=$ac_save_cppflags +fi +done + +CPPFLAGS=$ac_save_cppflags + + # With FFTW library directory echo $ac_n "checking for location of FFTW library""... $ac_c" 1>&6 -echo "configure:10331: checking for location of FFTW library" >&5 +echo "configure:10373: checking for location of FFTW library" >&5 case "$with_fftw_libs" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-fftw-libs." 1>&2; exit 1; } @@ -10351,14 +10393,56 @@ LDFLAGS="$FFTWLIB $LDFLAGS" +echo $ac_n "checking for fftw_execute in -lfftw3""... $ac_c" 1>&6 +echo "configure:10398: checking for fftw_execute in -lfftw3" >&5 +ac_lib_var=`echo fftw3'_'fftw_execute | sed 'y%./+-%__p_%'` + +ac_save_LIBS="$LIBS" +LIBS="-lfftw3 $MATHLIB $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + FFTWLIB="$FFTWLIB -lfftw3 $MATHLIB" +else + echo "$ac_t""no" 1>&6 + +LDFLAGS=${ac_save_ldflags} + +ac_save_ldflags="$LDFLAGS" +LDFLAGS="$FFTWLIB $LDFLAGS" + + echo $ac_n "checking for fftwnd_one in -lfftw""... $ac_c" 1>&6 -echo "configure:10356: checking for fftwnd_one in -lfftw" >&5 +echo "configure:10440: checking for fftwnd_one in -lfftw" >&5 ac_lib_var=`echo fftw'_'fftwnd_one | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-lfftw $MATHLIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10394,13 +10478,13 @@ echo $ac_n "checking for fftwnd_one in -ldfftw""... $ac_c" 1>&6 -echo "configure:10398: checking for fftwnd_one in -ldfftw" >&5 +echo "configure:10482: checking for fftwnd_one in -ldfftw" >&5 ac_lib_var=`echo dfftw'_'fftwnd_one | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-ldfftw $MATHLIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10499: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10449,6 +10533,14 @@ LDFLAGS=${ac_save_ldflags} + +fi + + + +LDFLAGS=${ac_save_ldflags} + + fi # $USE_FFTW @@ -10460,7 +10552,7 @@ echo $ac_n "checking whether to use BLAS""... $ac_c" 1>&6 -echo "configure:10464: checking whether to use BLAS" >&5 +echo "configure:10556: checking whether to use BLAS" >&5 echo "$ac_t"""$with_blas"" 1>&6 case "$with_blas" in "no") USE_BLAS= ;; @@ -10482,7 +10574,7 @@ echo $ac_n "checking for location of BLAS library""... $ac_c" 1>&6 -echo "configure:10486: checking for location of BLAS library" >&5 +echo "configure:10578: checking for location of BLAS library" >&5 case "$with_blas_libs" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-blas-libs." 1>&2; exit 1; } @@ -10509,13 +10601,13 @@ echo $ac_n "checking for dnrm2_ in -lblas""... $ac_c" 1>&6 -echo "configure:10513: checking for dnrm2_ in -lblas" >&5 +echo "configure:10605: checking for dnrm2_ in -lblas" >&5 ac_lib_var=`echo blas'_'dnrm2_ | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-lblas $MATHLIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10622: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10545,13 +10637,13 @@ echo "$ac_t""no" 1>&6 echo $ac_n "checking for dnrm2_ in -lblas""... $ac_c" 1>&6 -echo "configure:10549: checking for dnrm2_ in -lblas" >&5 +echo "configure:10641: checking for dnrm2_ in -lblas" >&5 ac_lib_var=`echo blas'_'dnrm2_ | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-lblas $MATHLIB -lg2c $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10615,7 +10707,7 @@ echo $ac_n "checking whether to use LAPACK""... $ac_c" 1>&6 -echo "configure:10619: checking whether to use LAPACK" >&5 +echo "configure:10711: checking whether to use LAPACK" >&5 echo "$ac_t"""$with_lapack"" 1>&6 case "$with_lapack" in "no") USE_LAPACK= ;; @@ -10637,7 +10729,7 @@ echo $ac_n "checking for location of LAPACK library""... $ac_c" 1>&6 -echo "configure:10641: checking for location of LAPACK library" >&5 +echo "configure:10733: checking for location of LAPACK library" >&5 case "$with_lapack_libs" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-lapack-libs." 1>&2; exit 1; } @@ -10664,13 +10756,13 @@ echo $ac_n "checking for dgesv_ in -llapack""... $ac_c" 1>&6 -echo "configure:10668: checking for dgesv_ in -llapack" >&5 +echo "configure:10760: checking for dgesv_ in -llapack" >&5 ac_lib_var=`echo lapack'_'dgesv_ | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-llapack $BLASLIB $MATHLIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10777: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10700,13 +10792,13 @@ echo "$ac_t""no" 1>&6 echo $ac_n "checking for dgesv_ in -llapack""... $ac_c" 1>&6 -echo "configure:10704: checking for dgesv_ in -llapack" >&5 +echo "configure:10796: checking for dgesv_ in -llapack" >&5 ac_lib_var=`echo lapack'_'dgesv_ | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-llapack $BLASLIB $MATHLIB -lg2c $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10813: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10770,7 +10862,7 @@ echo $ac_n "checking whether to use Motif""... $ac_c" 1>&6 -echo "configure:10774: checking whether to use Motif" >&5 +echo "configure:10866: checking whether to use Motif" >&5 echo "$ac_t"""$with_motif"" 1>&6 case "$with_motif" in "no") USE_MOTIF= ;; @@ -10789,7 +10881,7 @@ echo $ac_n "checking for location of Motif includes""... $ac_c" 1>&6 -echo "configure:10793: checking for location of Motif includes" >&5 +echo "configure:10885: checking for location of Motif includes" >&5 case "$with_motif_includes" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-motif-includes." 1>&2; exit 1; } @@ -10815,15 +10907,15 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10819: checking for $ac_hdr" >&5 +echo "configure:10911: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10827: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10919: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10857,7 +10949,7 @@ echo $ac_n "checking for location of Motif library""... $ac_c" 1>&6 -echo "configure:10861: checking for location of Motif library" >&5 +echo "configure:10953: checking for location of Motif library" >&5 case "$with_motif_libs" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-motif-libs." 1>&2; exit 1; } @@ -10882,13 +10974,13 @@ echo $ac_n "checking for XmStringCreate in -lXm""... $ac_c" 1>&6 -echo "configure:10886: checking for XmStringCreate in -lXm" >&5 +echo "configure:10978: checking for XmStringCreate in -lXm" >&5 ac_lib_var=`echo Xm'_'XmStringCreate | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-lXm $X_LIBS -lXm -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10995: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10940,7 +11032,7 @@ echo $ac_n "checking whether to use GLw""... $ac_c" 1>&6 -echo "configure:10944: checking whether to use GLw" >&5 +echo "configure:11036: checking whether to use GLw" >&5 echo "$ac_t"""$with_glw"" 1>&6 case "$with_glw" in "no") USE_GLW= ;; @@ -10959,7 +11051,7 @@ echo $ac_n "checking for location of GLw includes""... $ac_c" 1>&6 -echo "configure:10963: checking for location of GLw includes" >&5 +echo "configure:11055: checking for location of GLw includes" >&5 case "$with_glw_includes" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-glw-includes." 1>&2; exit 1; } @@ -10985,15 +11077,15 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10989: checking for $ac_hdr" >&5 +echo "configure:11081: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10997: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11089: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11021,15 +11113,15 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:11025: checking for $ac_hdr" >&5 +echo "configure:11117: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11033: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11125: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11069,7 +11161,7 @@ echo $ac_n "checking for location of GLw library""... $ac_c" 1>&6 -echo "configure:11073: checking for location of GLw library" >&5 +echo "configure:11165: checking for location of GLw library" >&5 case "$with_glw_libs" in y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-glw-libs." 1>&2; exit 1; } @@ -11094,13 +11186,13 @@ echo $ac_n "checking for GLwCreateMDrawingArea in -lGLw""... $ac_c" 1>&6 -echo "configure:11098: checking for GLwCreateMDrawingArea in -lGLw" >&5 +echo "configure:11190: checking for GLwCreateMDrawingArea in -lGLw" >&5 ac_lib_var=`echo GLw'_'GLwCreateMDrawingArea | sed 'y%./+-%__p_%'` ac_save_LIBS="$LIBS" LIBS="-lGLw $X_LIBS $OPENGLLIB -lXm -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11207: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -11136,13 +11228,13 @@ echo $ac_n "checking for GLwCreateM1DrawingArea in -lGLw""... $ac_c" 1>&6 Reached max line limit 500! 1.3 +202 -28 pkg-grass/debian/patches/nviz.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/nviz.dpatch?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/nviz.dpatch?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/nviz.dpatch.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- From owner at bugs.debian.org Fri Mar 24 16:18:56 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri Mar 24 19:21:31 2006 Subject: [DebianGIS-dev] Bug#305422: marked as done ([rv].surf.idw.html: refers to non existent [rv].surf.idw2.) References: <20060324161719.GB20778@ba.issia.cnr.it> Message-ID: Your message dated Fri, 24 Mar 2006 17:17:19 +0100 with message-id <20060324161719.GB20778@ba.issia.cnr.it> and subject line Fixed upstream since 6.0.1 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: Dan Jacobson Subject: [rv].surf.idw.html: refers to non existent [rv].surf.idw2. Date: Wed, 20 Apr 2005 05:09:57 +0800 Size: 1584 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/d242550d/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: "Francesco P. Lovergine" Subject: Fixed upstream since 6.0.1 Date: Fri, 24 Mar 2006 17:17:19 +0100 Size: 1773 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/d242550d/attachment-0003.mht From owner at bugs.debian.org Fri Mar 24 16:19:00 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri Mar 24 19:21:33 2006 Subject: [DebianGIS-dev] Bug#328519: marked as done ([Fwd: Log for successful build of grass_6.0.1-1 (dist=unstable)]) References: <20060324161719.GB20778@ba.issia.cnr.it> <1126820390.3105.56.camel@krebs.dannf> Message-ID: Your message dated Fri, 24 Mar 2006 17:17:19 +0100 with message-id <20060324161719.GB20778@ba.issia.cnr.it> and subject line Fixed upstream since 6.0.1 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: dann frazier Subject: [Fwd: Log for successful build of grass_6.0.1-1 (dist=unstable)] Date: Thu, 15 Sep 2005 15:39:49 -0600 Size: 6507 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/274cb21f/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: "Francesco P. Lovergine" Subject: Fixed upstream since 6.0.1 Date: Fri, 24 Mar 2006 17:17:19 +0100 Size: 1798 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/274cb21f/attachment-0003.mht From owner at bugs.debian.org Fri Mar 24 16:18:57 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri Mar 24 19:21:34 2006 Subject: [DebianGIS-dev] Bug#313307: marked as done (v.in.ascii.1: IP/br/RS table gone) References: <20060324161719.GB20778@ba.issia.cnr.it> Message-ID: Your message dated Fri, 24 Mar 2006 17:17:19 +0100 with message-id <20060324161719.GB20778@ba.issia.cnr.it> and subject line Fixed upstream since 6.0.1 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: Dan Jacobson Subject: v.in.ascii.1: IP/br/RS table gone Date: Mon, 13 Jun 2005 04:43:14 +0800 Size: 2341 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/a4c76477/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: "Francesco P. Lovergine" Subject: Fixed upstream since 6.0.1 Date: Fri, 24 Mar 2006 17:17:19 +0100 Size: 1798 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/a4c76477/attachment-0003.mht From owner at bugs.debian.org Fri Mar 24 16:18:33 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri Mar 24 19:21:34 2006 Subject: [DebianGIS-dev] Bug#355877: marked as done (grass: Can't use the PNG monitor) References: <20060324161118.GA20778@ba.issia.cnr.it> <55419.198.24.6.135.1141824875.squirrel@www.campingfools.com> Message-ID: Your message dated Fri, 24 Mar 2006 17:11:19 +0100 with message-id <20060324161118.GA20778@ba.issia.cnr.it> and subject line closing on reporter's request has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: dan@campingfools.com Subject: grass: Can't use the PNG monitor Date: Wed, 8 Mar 2006 08:34:35 -0500 (EST) Size: 5034 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/dfca3f6e/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: "Francesco P. Lovergine" Subject: closing on reporter's request Date: Fri, 24 Mar 2006 17:11:19 +0100 Size: 1820 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060324/dfca3f6e/attachment-0003.mht From noreply at henning.makholm.net Fri Mar 24 22:08:14 2006 From: noreply at henning.makholm.net (Debian testing watch) Date: Sat Mar 25 11:43:13 2006 Subject: [DebianGIS-dev] thuban 1.0.1-1 MIGRATED to testing Message-ID: FYI: The status of the thuban source package in Debian's testing distribution has changed. Previous version: (not in testing) Current version: 1.0.1-1 -- This email is automatically generated; henning@makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From support at mentors.debian.net Sun Mar 26 00:50:01 2006 From: support at mentors.debian.net (mentors.debian.net importer) Date: Sun Mar 26 00:50:15 2006 Subject: [DebianGIS-dev] Upload to mentors.debian.net succeeded Message-ID: <20060326005001.C0ADC4610E@mentors.debian.net> Your upload was successful. These packages are now available: - geos If you think you found a bug or just want to contact us please send an email to support@mentors.debian.net. Thanks for using our service. From installer at ftp-master.debian.org Sun Mar 26 18:08:16 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Mon Mar 27 00:28:13 2006 Subject: [DebianGIS-dev] openjump_1.0-1_i386.changes ACCEPTED Message-ID: Accepted: openjump_1.0-1.diff.gz to pool/contrib/o/openjump/openjump_1.0-1.diff.gz openjump_1.0-1.dsc to pool/contrib/o/openjump/openjump_1.0-1.dsc openjump_1.0-1_all.deb to pool/contrib/o/openjump/openjump_1.0-1_all.deb openjump_1.0.orig.tar.gz to pool/contrib/o/openjump/openjump_1.0.orig.tar.gz Announcing to debian-devel-changes@lists.debian.org Closing bugs: 356494 Thank you for your contribution to Debian. From support at mentors.debian.net Mon Mar 27 02:50:01 2006 From: support at mentors.debian.net (mentors.debian.net importer) Date: Mon Mar 27 02:50:18 2006 Subject: [DebianGIS-dev] Upload to mentors.debian.net succeeded Message-ID: <20060327025001.870BF4610E@mentors.debian.net> Your upload was successful. These packages are now available: - geos If you think you found a bug or just want to contact us please send an email to support@mentors.debian.net. Thanks for using our service. From katie at ftp-master.debian.org Mon Mar 27 08:41:50 2006 From: katie at ftp-master.debian.org (Archive Administrator) Date: Mon Mar 27 08:42:13 2006 Subject: [DebianGIS-dev] Processing of geos_2.2.1-1_i386.changes Message-ID: geos_2.2.1-1_i386.changes uploaded successfully to localhost along with the files: geos_2.2.1-1.dsc geos_2.2.1.orig.tar.gz geos_2.2.1-1.diff.gz libgeos-doc_2.2.1-1_all.deb libgeos-dev_2.2.1-1_i386.deb libgeos-c1_2.2.1-1_i386.deb libgeos2c2a_2.2.1-1_i386.deb Greetings, Your Debian queue daemon From installer at ftp-master.debian.org Mon Mar 27 08:47:07 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Mon Mar 27 08:50:21 2006 Subject: [DebianGIS-dev] geos_2.2.1-1_i386.changes is NEW Message-ID: geos_2.2.1-1.diff.gz to pool/main/g/geos/geos_2.2.1-1.diff.gz geos_2.2.1-1.dsc to pool/main/g/geos/geos_2.2.1-1.dsc geos_2.2.1.orig.tar.gz to pool/main/g/geos/geos_2.2.1.orig.tar.gz (new) libgeos-c1_2.2.1-1_i386.deb optional libs Geometry engine for Geographic Information Systems - C Library GEOS provides a spatial object model and fundamental geometric functions. It implements the geometry model defined in the OpenGIS Consortium Simple Features Specification for SQL. Functions provided include: . * spatial predicates (based on the DE-9IM model), * overlay functions (intersection, difference, union, symmetric difference), * buffer, * convex hull, * area and distance functions, and * topological validity checking . This package contains the C library. A C++ library is provided by the libgeos* package. . Homepage: http://geos.refractions.net/ libgeos-dev_2.2.1-1_i386.deb to pool/main/g/geos/libgeos-dev_2.2.1-1_i386.deb libgeos-doc_2.2.1-1_all.deb to pool/main/g/geos/libgeos-doc_2.2.1-1_all.deb libgeos2c2a_2.2.1-1_i386.deb to pool/main/g/geos/libgeos2c2a_2.2.1-1_i386.deb Changes: geos (2.2.1-1) unstable; urgency=low . [ Steve Halasz ] * New upstream release * Convert to team maintenance by DebianGIS group * 2.2.1 introduces a new C API in the libgeos-c1 package * Apply patch from Martin Michlmayr for FTBFS with g++ (Closes: #356111) * Don't put empty ChangeLog file in packages . [ Paul Wise ] * Add homepages to the package descriptions. * Add a watchfile . * Upload sponsored by Peter Reinholdtsen Announcing to debian-devel-changes@lists.debian.org Closing bugs: 356111 Your package contains new components which requires manual editing of the override file. It is ok otherwise, so please be patient. New packages are usually added to the override file about once a week. You may have gotten the distribution wrong. You'll get warnings above if files already exist in other distributions. From support at mentors.debian.net Mon Mar 27 08:51:01 2006 From: support at mentors.debian.net (mentors.debian.net importer) Date: Mon Mar 27 08:51:44 2006 Subject: [DebianGIS-dev] Upload to mentors.debian.net succeeded Message-ID: <20060327085101.662974610E@mentors.debian.net> Your upload was successful. These packages are now available: - thuban If you think you found a bug or just want to contact us please send an email to support@mentors.debian.net. Thanks for using our service. From frankie at haydn.debian.org Mon Mar 27 11:13:36 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Mon Mar 27 11:13:40 2006 Subject: [DebianGIS-dev] CVS Update: scripts dgis-packages.inc Message-ID: User: frankie Date: 06/03/27 11:13:36 Modified: . dgis-packages.inc Log: Added BEAM Revision Changes Path 1.29 +1 -0 scripts/dgis-packages.inc CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?annotate=1.29&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc?rev=1.29&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/scripts/dgis-packages.inc.diff?r1=1.29&r2=1.28&cvsroot= ----------------------------------- Index: dgis-packages.inc =================================================================== RCS file: /cvsroot/pkg-grass/scripts/dgis-packages.inc,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- dgis-packages.inc 24 Mar 2006 11:15:27 -0000 1.28 +++ dgis-packages.inc 27 Mar 2006 11:13:36 -0000 1.29 @@ -7,6 +7,7 @@ our %dgislist = ( 'avce00' => {url=>'http://avce00.maptools.org/avce00/'}, 'batik' => {url=>'http://xmlgraphics.apache.org/batik/'}, +'beam' => {url=>'http://brockmann-consult.de/beam/tutorials.html'}, 'buoy' => {url=>'http://buoy.sourceforge.net/',wnpp=>'356355'}, 'cartoweb' => {url=>'http://cartoweb.org/'}, 'chameleon' => {url => 'http://www.dmsolutions.ca/technology/chameleon.html'}, From katie at ftp-master.debian.org Mon Mar 27 12:43:28 2006 From: katie at ftp-master.debian.org (Archive Administrator) Date: Mon Mar 27 12:43:52 2006 Subject: [DebianGIS-dev] Processing of grass_6.0.2-1_i386.changes Message-ID: grass_6.0.2-1_i386.changes uploaded successfully to localhost along with the files: grass_6.0.2-1.dsc grass_6.0.2.orig.tar.gz grass_6.0.2-1.diff.gz grass-doc_6.0.2-1_all.deb grass_6.0.2-1_i386.deb libgrass_6.0.2-1_i386.deb libgrass-dev_6.0.2-1_i386.deb Greetings, Your Debian queue daemon From installer at ftp-master.debian.org Mon Mar 27 12:47:09 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Mon Mar 27 12:49:58 2006 Subject: [DebianGIS-dev] grass_6.0.2-1_i386.changes ACCEPTED Message-ID: Accepted: grass-doc_6.0.2-1_all.deb to pool/main/g/grass/grass-doc_6.0.2-1_all.deb grass_6.0.2-1.diff.gz to pool/main/g/grass/grass_6.0.2-1.diff.gz grass_6.0.2-1.dsc to pool/main/g/grass/grass_6.0.2-1.dsc grass_6.0.2-1_i386.deb to pool/main/g/grass/grass_6.0.2-1_i386.deb grass_6.0.2.orig.tar.gz to pool/main/g/grass/grass_6.0.2.orig.tar.gz libgrass-dev_6.0.2-1_i386.deb to pool/main/g/grass/libgrass-dev_6.0.2-1_i386.deb libgrass_6.0.2-1_i386.deb to pool/main/g/grass/libgrass_6.0.2-1_i386.deb Announcing to debian-devel-changes@lists.debian.org Closing bugs: 206844 328519 Thank you for your contribution to Debian. From installer at ftp-master.debian.org Mon Mar 27 12:47:09 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Mon Mar 27 12:50:34 2006 Subject: [DebianGIS-dev] grass override disparity Message-ID: There are disparities between your recently accepted upload and the override file for the following file(s): grass-doc_6.0.2-1_all.deb: package says priority is extra, override says optional. libgrass-dev_6.0.2-1_i386.deb: package says priority is extra, override says optional. libgrass_6.0.2-1_i386.deb: package says priority is extra, override says optional. 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 ftpmaster@debian.org) From owner at bugs.debian.org Mon Mar 27 13:03:18 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Mon Mar 27 13:34:17 2006 Subject: [DebianGIS-dev] Bug#206844: marked as done (grass: tcl8.3 dependency) References: Message-ID: Your message dated Mon, 27 Mar 2006 04:47:09 -0800 with message-id and subject line Bug#206844: fixed in grass 6.0.2-1 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: grass Subject: grass: tcl8.3 dependency Date: Sat, 23 Aug 2003 14:00:17 +0200 Size: 2691 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060327/7944a987/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: Francesco Paolo Lovergine Subject: Bug#206844: fixed in grass 6.0.2-1 Date: Mon, 27 Mar 2006 04:47:09 -0800 Size: 4564 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060327/7944a987/attachment-0003.mht From owner at bugs.debian.org Mon Mar 27 13:03:21 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Mon Mar 27 13:34:20 2006 Subject: [DebianGIS-dev] Bug#328519: marked as done ([Fwd: Log for successful build of grass_6.0.1-1 (dist=unstable)]) References: <1126820390.3105.56.camel@krebs.dannf> Message-ID: Your message dated Mon, 27 Mar 2006 04:47:09 -0800 with message-id and subject line Bug#328519: fixed in grass 6.0.2-1 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------- next part -------------- An embedded message was scrubbed... From: dann frazier Subject: [Fwd: Log for successful build of grass_6.0.1-1 (dist=unstable)] Date: Thu, 15 Sep 2005 15:39:49 -0600 Size: 6507 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060327/54fe33f0/attachment-0002.mht -------------- next part -------------- An embedded message was scrubbed... From: Francesco Paolo Lovergine Subject: Bug#328519: fixed in grass 6.0.2-1 Date: Mon, 27 Mar 2006 04:47:09 -0800 Size: 4589 Url: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060327/54fe33f0/attachment-0003.mht From mfujise at itic.co.jp Mon Mar 27 20:53:32 2006 From: mfujise at itic.co.jp (=?ISO-2022-JP?B?GyRCRiNAJTQ0SVcbKEIg?=) Date: Mon Mar 27 20:54:05 2006 Subject: [DebianGIS-dev] =?iso-2022-jp?b?GyRCTCQ+NUJ6OS05cCIoISE1Oz1RGyhC?= =?iso-2022-jp?b?GyRCS11MdRsoQihUZWNobmljYWwgVHJhbnNsYXRpb24p?= Message-ID: <20060327.2053320437@mfujise-itic.co.jp> ?????????????? ????? ???? TEL: 03-5914-1360 FAX: 03-5914-1361 E-mail: mfujise@itic.co.jp URL: http://www.itic.co.jp/ ????????????????????????mfujise@itic.co.jp ?????????? English text follows Japanese. pkg-grass-devel@lists.alioth.debian.org ? ??/Dear Sir ??????????????????????? ???????????????????????????????????????????????URL: http://www.itic.co.jp/ ?????????????????????????????????????????????????????????????? ??????????????????????????????????? We are highly skilled in technical translation. Whenever your circumstances require translating, please visit our Internet website, http://www.itic.co.jp/, and contact us. Thank you for taking the time to read this message. ??/Best regards, Mikio Fujise, President International Technical Information Center Co., Ltd. #312, 2-6-11, Sakashita Itabashi-ku, Tokyo, Japan 174-0043 TEL: 03-5914-1360 FAX: 03-5914-1361 E-mail: mfujise@itic.co.jp URL: http://www.itic.co.jp/ From frankie at haydn.debian.org Mon Mar 27 21:43:54 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Mon Mar 27 21:44:01 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian changelog Message-ID: User: frankie Date: 06/03/27 21:43:54 Modified: debian changelog Log: FFTW3 patch revised. Revision Changes Path 1.45 +0 -2 pkg-grass/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?annotate=1.45&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?rev=1.45&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog.diff?r1=1.45&r2=1.44&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/changelog,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- changelog 24 Mar 2006 14:15:41 -0000 1.44 +++ changelog 27 Mar 2006 21:43:54 -0000 1.45 @@ -23,8 +23,6 @@ [ Paul Wise ] * Suggest some packages useful for v.in.e00, v.in.garmin and i.spectral - [ Francesco Paolo Lovergine ] - -- Francesco Paolo Lovergine Fri, 24 Mar 2006 14:12:32 +0100 grass (6.0.1-4) unstable; urgency=low From frankie at haydn.debian.org Mon Mar 27 21:43:57 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Mon Mar 27 21:44:02 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian/patches fftw3.dpatch Message-ID: User: frankie Date: 06/03/27 21:43:57 Modified: debian/patches fftw3.dpatch Log: FFTW3 patch revised. Revision Changes Path 1.2 +91 -4 pkg-grass/debian/patches/fftw3.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: fftw3.dpatch =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- fftw3.dpatch 24 Mar 2006 14:15:44 -0000 1.1 +++ fftw3.dpatch 27 Mar 2006 21:43:57 -0000 1.2 @@ -6,8 +6,8 @@ @DPATCH@ diff -urNad grass-6.0.2~/configure grass-6.0.2/configure ---- grass-6.0.2~/configure 2006-03-11 12:06:41.000000000 +0100 -+++ grass-6.0.2/configure 2006-03-24 13:41:14.000000000 +0100 +--- grass-6.0.2~/configure 2006-03-24 15:13:42.000000000 +0100 ++++ grass-6.0.2/configure 2006-03-27 23:41:59.000000000 +0200 @@ -10239,7 +10239,7 @@ ac_save_cppflags="$CPPFLAGS" @@ -968,8 +968,8 @@ y | ye | yes | n | no) { echo "configure: error: *** You must supply a directory to --with-opendwg-libs." 1>&2; exit 1; } diff -urNad grass-6.0.2~/configure.in grass-6.0.2/configure.in ---- grass-6.0.2~/configure.in 2006-03-11 12:06:41.000000000 +0100 -+++ grass-6.0.2/configure.in 2006-03-24 13:40:05.000000000 +0100 +--- grass-6.0.2~/configure.in 2006-03-24 15:13:42.000000000 +0100 ++++ grass-6.0.2/configure.in 2006-03-27 23:40:32.000000000 +0200 @@ -933,17 +933,21 @@ LOC_CHECK_INC_PATH(fftw,FFTW,FFTWINC) @@ -992,3 +992,90 @@ fi # $USE_FFTW +diff -urNad grass-6.0.2~/lib/gmath/del2g.c grass-6.0.2/lib/gmath/del2g.c +--- grass-6.0.2~/lib/gmath/del2g.c 2003-10-06 12:13:29.000000000 +0200 ++++ grass-6.0.2/lib/gmath/del2g.c 2006-03-27 23:40:32.000000000 +0200 +@@ -16,7 +16,7 @@ + */ + #include "config.h" + +-#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) ++#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) || defined(HAVE_FFTW3_H) + + #include + #include "gmath.h" +diff -urNad grass-6.0.2~/lib/gmath/fft.c grass-6.0.2/lib/gmath/fft.c +--- grass-6.0.2~/lib/gmath/fft.c 2004-11-09 13:24:13.000000000 +0100 ++++ grass-6.0.2/lib/gmath/fft.c 2006-03-27 23:40:32.000000000 +0200 +@@ -2,15 +2,22 @@ + + #include "config.h" + +-#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) ++#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) || defined(HAVE_FFTW3_H) + + #ifdef HAVE_FFTW_H + #include + #endif ++ + #ifdef HAVE_DFFTW_H + #include + #endif + ++#ifdef HAVE_FFTW3_H ++#include ++#define c_re(c) ((c)[0]) ++#define c_im(c) ((c)[1]) ++#endif ++ + #include + #include + #include +@@ -37,7 +44,11 @@ + + int fft(int i_sign, double *DATA[2], int NN, int dimc, int dimr) + { ++#ifdef HAVE_FFTW3_H ++ fftw_plan plan; ++#else + fftwnd_plan plan; ++#endif + fftw_complex *data; + double norm; + int i; +@@ -48,9 +59,17 @@ + + for (i = 0; i < NN; i++) + { +- data[i].re = DATA[0][i]; +- data[i].im = DATA[1][i]; +- } ++ c_re(data[i]) = DATA[0][i]; ++ c_im(data[i]) = DATA[1][i]; ++ } ++ ++#ifdef HAVE_FFTW3_H ++ plan = fftw_plan_dft_2d(dimc, dimr, data, data,(i_sign < 0) ? FFTW_FORWARD : FFTW_BACKWARD, FFTW_ESTIMATE); ++ ++ fftw_execute(plan); ++ ++ fftw_destroy_plan(plan); ++ #else + + plan = fftw2d_create_plan( + dimc, dimr, +@@ -61,10 +80,12 @@ + + fftwnd_destroy_plan(plan); + ++#endif ++ + for (i = 0; i < NN; i++) + { +- DATA[0][i] = data[i].re * norm; +- DATA[1][i] = data[i].im * norm; ++ DATA[0][i] = c_re(data[i]) * norm; ++ DATA[1][i] = c_im(data[i]) * norm; + } + + G_free(data); From frankie at haydn.debian.org Mon Mar 27 21:51:56 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Mon Mar 27 21:51:58 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian changelog Message-ID: User: frankie Date: 06/03/27 21:51:56 Modified: debian changelog Log: Final revision to fftw3 patch and changelog. Revision Changes Path 1.46 +8 -0 pkg-grass/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?annotate=1.46&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?rev=1.46&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog.diff?r1=1.46&r2=1.45&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/changelog,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- changelog 27 Mar 2006 21:43:54 -0000 1.45 +++ changelog 27 Mar 2006 21:51:56 -0000 1.46 @@ -1,3 +1,11 @@ +grass (6.0.2-2) unstable; urgency=low + + [ Francesco Paolo Lovergine ] + + * Sigh, FFTW3 patch revised to integrate two more changes. + + -- Francesco Paolo Lovergine Mon, 27 Mar 2006 23:45:58 +0200 + grass (6.0.2-1) unstable; urgency=low [ Francesco Paolo Lovergine ] From frankie at haydn.debian.org Mon Mar 27 21:51:56 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Mon Mar 27 21:51:58 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian/patches fftw3.dpatch Message-ID: User: frankie Date: 06/03/27 21:51:56 Modified: debian/patches fftw3.dpatch Log: Final revision to fftw3 patch and changelog. Revision Changes Path 1.3 +17 -4 pkg-grass/debian/patches/fftw3.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: fftw3.dpatch =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/patches/fftw3.dpatch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- fftw3.dpatch 27 Mar 2006 21:43:57 -0000 1.2 +++ fftw3.dpatch 27 Mar 2006 21:51:56 -0000 1.3 @@ -7,7 +7,7 @@ @DPATCH@ diff -urNad grass-6.0.2~/configure grass-6.0.2/configure --- grass-6.0.2~/configure 2006-03-24 15:13:42.000000000 +0100 -+++ grass-6.0.2/configure 2006-03-27 23:41:59.000000000 +0200 ++++ grass-6.0.2/configure 2006-03-27 23:50:48.000000000 +0200 @@ -10239,7 +10239,7 @@ ac_save_cppflags="$CPPFLAGS" @@ -969,7 +969,7 @@ { echo "configure: error: *** You must supply a directory to --with-opendwg-libs." 1>&2; exit 1; } diff -urNad grass-6.0.2~/configure.in grass-6.0.2/configure.in --- grass-6.0.2~/configure.in 2006-03-24 15:13:42.000000000 +0100 -+++ grass-6.0.2/configure.in 2006-03-27 23:40:32.000000000 +0200 ++++ grass-6.0.2/configure.in 2006-03-27 23:48:18.000000000 +0200 @@ -933,17 +933,21 @@ LOC_CHECK_INC_PATH(fftw,FFTW,FFTWINC) @@ -992,9 +992,22 @@ fi # $USE_FFTW +diff -urNad grass-6.0.2~/include/config.h.in grass-6.0.2/include/config.h.in +--- grass-6.0.2~/include/config.h.in 2005-08-01 12:16:26.000000000 +0200 ++++ grass-6.0.2/include/config.h.in 2006-03-27 23:49:12.000000000 +0200 +@@ -137,6 +137,9 @@ + /* define if jpeglib.h exists */ + #undef HAVE_JPEGLIB_H + ++/* define if fftw3.h exists */ ++#undef HAVE_FFTW3_H ++ + /* define if fftw.h exists */ + #undef HAVE_FFTW_H + diff -urNad grass-6.0.2~/lib/gmath/del2g.c grass-6.0.2/lib/gmath/del2g.c --- grass-6.0.2~/lib/gmath/del2g.c 2003-10-06 12:13:29.000000000 +0200 -+++ grass-6.0.2/lib/gmath/del2g.c 2006-03-27 23:40:32.000000000 +0200 ++++ grass-6.0.2/lib/gmath/del2g.c 2006-03-27 23:48:18.000000000 +0200 @@ -16,7 +16,7 @@ */ #include "config.h" @@ -1006,7 +1019,7 @@ #include "gmath.h" diff -urNad grass-6.0.2~/lib/gmath/fft.c grass-6.0.2/lib/gmath/fft.c --- grass-6.0.2~/lib/gmath/fft.c 2004-11-09 13:24:13.000000000 +0100 -+++ grass-6.0.2/lib/gmath/fft.c 2006-03-27 23:40:32.000000000 +0200 ++++ grass-6.0.2/lib/gmath/fft.c 2006-03-27 23:48:18.000000000 +0200 @@ -2,15 +2,22 @@ #include "config.h" From frankie at haydn.debian.org Mon Mar 27 21:54:45 2006 From: frankie at haydn.debian.org (frankie@haydn.debian.org) Date: Mon Mar 27 21:54:47 2006 Subject: [DebianGIS-dev] CVS Update: pkg-grass/debian changelog Message-ID: User: frankie Date: 06/03/27 21:54:45 Modified: debian changelog Log: Final revision for 6.0.2-2 Revision Changes Path 1.47 +2 -2 pkg-grass/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?annotate=1.47&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog?rev=1.47&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/pkg-grass/debian/changelog.diff?r1=1.47&r2=1.46&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/pkg-grass/debian/changelog,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- changelog 27 Mar 2006 21:51:56 -0000 1.46 +++ changelog 27 Mar 2006 21:54:45 -0000 1.47 @@ -2,7 +2,7 @@ [ Francesco Paolo Lovergine ] - * Sigh, FFTW3 patch revised to integrate two more changes. + * Sigh, FFTW3 patch revised to integrate three more changes. -- Francesco Paolo Lovergine Mon, 27 Mar 2006 23:45:58 +0200 @@ -21,7 +21,7 @@ * Added a group of suggested packages (Thanks Hamish). * New patches added: fftw3.dpatch: supports FFTW3 - (cfr. http://grass.itc.it/pipermail/grass-commit/2006-March/021104.html) + (cfr. http://grass.itc.it/pipermail/grass-commit/2006-March/021112.html-021114.html) nviz.dpatch: solves old NVIZ issue with multi-threaded Tcl 8.4. (cfr. http://grass.itc.it/pipermail/grass-commit/2006-March/021104.html) * Moved to tcl8.4-dev and tk8.4 build-deps. Changed tcl path in debian/rules. From moored at secac.com Tue Mar 28 02:04:57 2006 From: moored at secac.com (Dustin Moore) Date: Tue Mar 28 02:29:00 2006 Subject: [DebianGIS-dev] Bug#359615: tile4ms binary missing Message-ID: <442899C9.6000403@secac.com> Package: mapserver-bin Version: 4.8.1-2 The regular utility binary tile4ms appears to be missing from mapserver-bin. It should be with shptree and all the other shapefile indexing/sorting utilities specific to mapserver. From pabs-guest at haydn.debian.org Tue Mar 28 03:25:00 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Tue Mar 28 03:25:04 2006 Subject: [DebianGIS-dev] CVS Update: mapserver/debian changelog rules Message-ID: User: pabs-guest Date: 06/03/28 03:25:00 Modified: debian changelog rules Log: Install shp2pdf and tile4ms too. Closes: #359615 Revision Changes Path 1.75 +2 -1 mapserver/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?annotate=1.75&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?rev=1.75&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog.diff?r1=1.75&r2=1.74&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/changelog,v retrieving revision 1.74 retrieving revision 1.75 diff -u -r1.74 -r1.75 --- changelog 23 Mar 2006 15:47:25 -0000 1.74 +++ changelog 28 Mar 2006 03:24:59 -0000 1.75 @@ -4,8 +4,9 @@ - drop 10_python_build: useless, only for Windows * Add php_mapscript.so to apache2 php.ini as well. This is a workaround for #346184, upstream is looking into it. + * Install shp2pdf and tile4ms too. Closes: #359615 - -- Paul Wise Thu, 23 Mar 2006 23:42:51 +0800 + -- Paul Wise Tue, 28 Mar 2006 11:21:21 +0800 mapserver (4.8.1-2) unstable; urgency=low 1.24 +1 -1 mapserver/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/rules?annotate=1.24&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/rules?rev=1.24&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/rules.diff?r1=1.24&r2=1.23&cvsroot= ----------------------------------- Index: rules =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/rules,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- rules 20 Feb 2006 08:58:53 -0000 1.23 +++ rules 28 Mar 2006 03:24:59 -0000 1.24 @@ -205,7 +205,7 @@ # Mapserver Binary install -m755 shp2mysql.pl legend scalebar shp2img shptree \ - shptreetst shptreevis sortshp \ + shptreetst shptreevis sortshp shp2pdf tile4ms \ debian/tmp/usr/bin touch install-arch-stamp From pabs-guest at haydn.debian.org Tue Mar 28 04:41:50 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Tue Mar 28 04:41:55 2006 Subject: [DebianGIS-dev] CVS Update: ogdi - New directory Message-ID: User: pabs-guest Date: 06/03/28 04:41:50 ogdi - New directory From pabs-guest at haydn.debian.org Tue Mar 28 04:42:22 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Tue Mar 28 04:42:23 2006 Subject: [DebianGIS-dev] CVS Update: ogdi/debian - New directory Message-ID: User: pabs-guest Date: 06/03/28 04:42:22 ogdi/debian - New directory From pabs3 at bonedaddy.net Tue Mar 28 05:00:56 2006 From: pabs3 at bonedaddy.net (Paul Wise) Date: Tue Mar 28 05:10:14 2006 Subject: [DebianGIS-dev] Bug#359615: mapserver: 359615: fix committed Message-ID: <1143522056.6609.46.camel@localhost.localdomain> tags 359615 + pending thanks I added a fix to the debian-gis CVS repo (also installing shp2pdf). -- bye, pabs http://wiki.debian.org/PaulWise -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 191 bytes Desc: This is a digitally signed message part Url : http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060328/466dd161/attachment.pgp From owner at bugs.debian.org Tue Mar 28 05:03:13 2006 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue Mar 28 05:11:33 2006 Subject: [DebianGIS-dev] Processed: mapserver: 359615: fix committed In-Reply-To: <1143522056.6609.46.camel@localhost.localdomain> References: <1143522056.6609.46.camel@localhost.localdomain> Message-ID: Processing commands for control@bugs.debian.org: > tags 359615 + pending Bug#359615: tile4ms binary missing 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) From pabs-guest at haydn.debian.org Tue Mar 28 07:36:31 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Tue Mar 28 07:36:37 2006 Subject: [DebianGIS-dev] CVS Update: mapserver/debian changelog control Message-ID: User: pabs-guest Date: 06/03/28 07:36:31 Modified: debian changelog control Log: Change priority to extra in line with ftpmaster override Revision Changes Path 1.76 +2 -1 mapserver/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?annotate=1.76&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog?rev=1.76&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/changelog.diff?r1=1.76&r2=1.75&cvsroot= ----------------------------------- Index: changelog =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/changelog,v retrieving revision 1.75 retrieving revision 1.76 diff -u -r1.75 -r1.76 --- changelog 28 Mar 2006 03:24:59 -0000 1.75 +++ changelog 28 Mar 2006 07:36:31 -0000 1.76 @@ -5,8 +5,9 @@ * Add php_mapscript.so to apache2 php.ini as well. This is a workaround for #346184, upstream is looking into it. * Install shp2pdf and tile4ms too. Closes: #359615 + * Change priority to extra in line with ftpmaster override - -- Paul Wise Tue, 28 Mar 2006 11:21:21 +0800 + -- Paul Wise Tue, 28 Mar 2006 15:34:58 +0800 mapserver (4.8.1-2) unstable; urgency=low 1.40 +1 -1 mapserver/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/control?annotate=1.40&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/control?rev=1.40&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/mapserver/debian/control.diff?r1=1.40&r2=1.39&cvsroot= ----------------------------------- Index: control =================================================================== RCS file: /cvsroot/pkg-grass/mapserver/debian/control,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- control 8 Feb 2006 13:18:19 -0000 1.39 +++ control 28 Mar 2006 07:36:31 -0000 1.40 @@ -1,6 +1,6 @@ Source: mapserver Section: devel -Priority: optional +Priority: extra Maintainer: Debian GIS Project Uploaders: Thomas Sondag , Schuyler Erle , Petter Reinholdtsen , Paul Wise Standards-Version: 3.6.2 From support at mentors.debian.net Tue Mar 28 08:06:01 2006 From: support at mentors.debian.net (mentors.debian.net importer) Date: Tue Mar 28 08:06:19 2006 Subject: [DebianGIS-dev] Upload to mentors.debian.net succeeded Message-ID: <20060328080601.6DF814610E@mentors.debian.net> Your upload was successful. These packages are now available: - thuban If you think you found a bug or just want to contact us please send an email to support@mentors.debian.net. Thanks for using our service. From mparent-guest at haydn.debian.org Tue Mar 28 10:48:10 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 10:48:12 2006 Subject: [DebianGIS-dev] CVS Update: musmap create_package.sh Message-ID: User: mparent-guest Date: 06/03/28 10:48:10 Modified: . create_package.sh Log: Delete package skeleton after compression Revision Changes Path 1.3 +1 -1 musmap/create_package.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh?annotate=1.3&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh.diff?r1=1.3&r2=1.2&cvsroot= ----------------------------------- Index: create_package.sh =================================================================== RCS file: /cvsroot/pkg-grass/musmap/create_package.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- create_package.sh 16 Jan 2006 22:47:41 -0000 1.2 +++ create_package.sh 28 Mar 2006 10:48:10 -0000 1.3 @@ -31,4 +31,4 @@ yada rebuild su root "dpkg-buildpackage -sa -tc" #rm -R -f "$MUSMAP_ORIG_TARGET" -#rm -R -f "$MUSMAP_TARGET" +rm -R -f "$MUSMAP_TARGET" From katie at ftp-master.debian.org Tue Mar 28 10:48:47 2006 From: katie at ftp-master.debian.org (Archive Administrator) Date: Tue Mar 28 10:48:53 2006 Subject: [DebianGIS-dev] Processing of grass_6.0.2-2_i386.changes Message-ID: grass_6.0.2-2_i386.changes uploaded successfully to localhost along with the files: grass_6.0.2-2.dsc grass_6.0.2-2.diff.gz grass-doc_6.0.2-2_all.deb grass_6.0.2-2_i386.deb libgrass_6.0.2-2_i386.deb libgrass-dev_6.0.2-2_i386.deb Greetings, Your Debian queue daemon From mparent-guest at haydn.debian.org Tue Mar 28 10:53:16 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 10:53:18 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian/po - New directory Message-ID: User: mparent-guest Date: 06/03/28 10:53:16 musmap/debian/po - New directory From mparent-guest at haydn.debian.org Tue Mar 28 10:54:51 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 10:54:54 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian packages.templates Message-ID: User: mparent-guest Date: 06/03/28 10:54:50 Modified: debian packages.templates Log: Translation i18n / L10n Revision Changes Path 1.4 +25 -25 musmap/debian/packages.templates CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: packages.templates =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.templates,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- packages.templates 15 Jan 2006 22:55:04 -0000 1.3 +++ packages.templates 28 Mar 2006 10:54:50 -0000 1.4 @@ -1,70 +1,70 @@ Template: musmap/gofirst Type: boolean -Description: Return to first step +_description: Return to first step Default: false Template: musmap/dbengine Type: select -Description: Choose the database engine for musmap -Choices: mysql, postgresql, sqlite, firebird(experimental) +__choices: mysql, postgresql, sqlite, firebird(experimental) +_description: Choose the database engine for musmap Default: mysql Template: musmap/dbhost Type: string -Description: Database host (leave blank for local db) -Default: +_default: +_description: Database host (leave blank for local db) Template: musmap/dbport Type: string -Description: Database host port -Default: 5432 +default: 5432 +_description: Database host port Template: musmap/dbuser Type: string -Description: Database user -Default: musmap +default: musmap +_description: Database user Template: musmap/dbpassword Type: password -Description: Database user password -Default: +default: +_description: Database user password Template: musmap/dbname Type: string -Description: Database name -Default: musmap +default: musmap +_description: Database name Template: musmap/dbfilename Type: string -Description: Database file name -Default: /var/lib/musmap/db.sqlite +default: /var/lib/musmap/db.sqlite +_description: Database file name Template: musmap/dbpath Type: string -Description: Database path -Default: localhost:/path/to/musmap +default: localhost:/path/to/musmap +_description: Database path Template: musmap/dbadminuser Type: string -Description: Database SUPER-user: this is needed to create database. -Default: +default: +_description: Database SUPER-user: this is needed to create database. Template: musmap/dbadminpassword Type: password -Description: Database SUPER-user password -Default: +default: +_description: Database SUPER-user password Template: musmap/dbcreate Type: boolean -Description: Create database +description: Create database Default: true Template: musmap/dberror Type: note -Description: A database error occured. Check your params. +_description: A database error occured. Check your params. Template: musmap/postinstall Type: note -Description: - Musmap is now partially installed, to finish installation +_description: + Musmap is now partially installed, to finish installation you should go to http://127.0.0.1/musmap/ and follow instructions. From mparent-guest at haydn.debian.org Tue Mar 28 10:54:51 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 10:54:55 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian/po POTFILES.in fr.po templates.pot Message-ID: User: mparent-guest Date: 06/03/28 10:54:51 Added: debian/po POTFILES.in fr.po templates.pot Log: Translation i18n / L10n Revision Changes Path 1.1 musmap/debian/po/POTFILES.in CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/POTFILES.in?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/POTFILES.in?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: POTFILES.in =================================================================== [type: gettext/rfc822deb] packages.templates 1.1 musmap/debian/po/fr.po CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/fr.po?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/fr.po?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: fr.po =================================================================== # translation of fr.po to # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Mathieu Parent , 2006. # msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-03-28 00:11+0200\n" "PO-Revision-Date: 2006-03-28 00:20+0200\n" "Last-Translator: Mathieu Parent \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10.2\n" #. Type: boolean #. description #: ../packages.templates:3 msgid "Return to first step" msgstr "Retour ?? la premi??re ??tape" #. Type: select #. choices #: ../packages.templates:8 msgid "mysql" msgstr "mysql" #. Type: select #. choices #: ../packages.templates:8 msgid "postgresql" msgstr "postgresql" #. Type: select #. choices #: ../packages.templates:8 msgid "sqlite" msgstr "sqlite" #. Type: select #. choices #: ../packages.templates:8 msgid "firebird(experimental)" msgstr "firebird(experimental)" #. Type: select #. description #: ../packages.templates:9 msgid "Choose the database engine for musmap" msgstr "Choisissez le moteur de base de donn??es pour musmap" #. Type: string #. description #: ../packages.templates:15 msgid "Database host (leave blank for local db)" msgstr "Serveur de la base de donn??es (laisser vide pour une connexion locale)" #. Type: string #. description #: ../packages.templates:20 msgid "Database host port" msgstr "Port de la base de donn??es" #. Type: string #. description #: ../packages.templates:25 msgid "Database user" msgstr "Utilisateur de la base de donn??es" #. Type: password #. description #: ../packages.templates:30 msgid "Database user password" msgstr "Mot de passe de la base de donn??es" #. Type: string #. description #: ../packages.templates:35 msgid "Database name" msgstr "Nom de la base de donn??es" #. Type: string #. description #: ../packages.templates:40 msgid "Database file name" msgstr "Fichier de la base de donn??es" #. Type: string #. description #: ../packages.templates:45 msgid "Database path" msgstr "Chemin de la base de donn??es" #. Type: string #. description #: ../packages.templates:50 msgid "Database SUPER-user: this is needed to create database." msgstr "Administrateur de la base de donn??es" #. Type: password #. description #: ../packages.templates:55 msgid "Database SUPER-user password" msgstr "Mot de passe administrateur de la base de donn??es" #. Type: note #. description #: ../packages.templates:64 msgid "A database error occured. Check your params." msgstr "Une erreur d'acc??s ?? la base de donn??es est survenue. V??rifiez vos param??tres." #. Type: note #. description #: ../packages.templates:68 msgid "" " Musmap is now partially installed, to finish installation\n" " you should go to http://127.0.0.1/musmap/ and follow instructions." msgstr "" "Musmap est maintenant partiellement install??, pour terminer l'installation \n" "allez sur http://127.0.0.1/musmap/ et suivez les instructions." 1.1 musmap/debian/po/templates.pot CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/templates.pot?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/templates.pot?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: templates.pot =================================================================== # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-03-28 00:11+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. description #: ../packages.templates:3 msgid "Return to first step" msgstr "" #. Type: select #. choices #: ../packages.templates:8 msgid "mysql" msgstr "" #. Type: select #. choices #: ../packages.templates:8 msgid "postgresql" msgstr "" #. Type: select #. choices #: ../packages.templates:8 msgid "sqlite" msgstr "" #. Type: select #. choices #: ../packages.templates:8 msgid "firebird(experimental)" msgstr "" #. Type: select #. description #: ../packages.templates:9 msgid "Choose the database engine for musmap" msgstr "" #. Type: string #. description #: ../packages.templates:15 msgid "Database host (leave blank for local db)" msgstr "" #. Type: string #. description #: ../packages.templates:20 msgid "Database host port" msgstr "" #. Type: string #. description #: ../packages.templates:25 msgid "Database user" msgstr "" #. Type: password #. description #: ../packages.templates:30 msgid "Database user password" msgstr "" #. Type: string #. description #: ../packages.templates:35 msgid "Database name" msgstr "" #. Type: string #. description #: ../packages.templates:40 msgid "Database file name" msgstr "" #. Type: string #. description #: ../packages.templates:45 msgid "Database path" msgstr "" #. Type: string #. description #: ../packages.templates:50 msgid "Database SUPER-user: this is needed to create database." msgstr "" #. Type: password #. description #: ../packages.templates:55 msgid "Database SUPER-user password" msgstr "" #. Type: note #. description #: ../packages.templates:64 msgid "A database error occured. Check your params." msgstr "" #. Type: note #. description #: ../packages.templates:68 msgid "" " Musmap is now partially installed, to finish installation\n" " you should go to http://127.0.0.1/musmap/ and follow instructions." msgstr "" From mparent-guest at haydn.debian.org Tue Mar 28 10:59:16 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 10:59:18 2006 Subject: [DebianGIS-dev] CVS Update: musmap .cvsignore Message-ID: User: mparent-guest Date: 06/03/28 10:59:16 Added: . .cvsignore Log: Prevent commiting of output files Revision Changes Path 1.1 musmap/.cvsignore CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/.cvsignore?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: .cvsignore =================================================================== musmap_*.diff.gz musmap_*.dsc musmap_*_all.deb musmap_*_i386.changes musmap_*.orig.tar.gz From installer at ftp-master.debian.org Tue Mar 28 11:02:11 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Tue Mar 28 11:11:14 2006 Subject: [DebianGIS-dev] grass_6.0.2-2_i386.changes ACCEPTED Message-ID: Accepted: grass-doc_6.0.2-2_all.deb to pool/main/g/grass/grass-doc_6.0.2-2_all.deb grass_6.0.2-2.diff.gz to pool/main/g/grass/grass_6.0.2-2.diff.gz grass_6.0.2-2.dsc to pool/main/g/grass/grass_6.0.2-2.dsc grass_6.0.2-2_i386.deb to pool/main/g/grass/grass_6.0.2-2_i386.deb libgrass-dev_6.0.2-2_i386.deb to pool/main/g/grass/libgrass-dev_6.0.2-2_i386.deb libgrass_6.0.2-2_i386.deb to pool/main/g/grass/libgrass_6.0.2-2_i386.deb Announcing to debian-devel-changes@lists.debian.org Thank you for your contribution to Debian. From installer at ftp-master.debian.org Tue Mar 28 11:02:11 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Tue Mar 28 11:11:57 2006 Subject: [DebianGIS-dev] grass override disparity Message-ID: There are disparities between your recently accepted upload and the override file for the following file(s): grass-doc_6.0.2-2_all.deb: package says priority is extra, override says optional. libgrass-dev_6.0.2-2_i386.deb: package says priority is extra, override says optional. libgrass_6.0.2-2_i386.deb: package says priority is extra, override says optional. 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 ftpmaster@debian.org) From mparent-guest at haydn.debian.org Tue Mar 28 11:31:10 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 11:31:13 2006 Subject: [DebianGIS-dev] CVS Update: musmap create_package.sh Message-ID: User: mparent-guest Date: 06/03/28 11:31:10 Modified: . create_package.sh Log: command line options Revision Changes Path 1.4 +36 -22 musmap/create_package.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: create_package.sh =================================================================== RCS file: /cvsroot/pkg-grass/musmap/create_package.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- create_package.sh 28 Mar 2006 10:48:10 -0000 1.3 +++ create_package.sh 28 Mar 2006 11:31:10 -0000 1.4 @@ -6,29 +6,43 @@ MUSMAP_PKG_SOURCE=`pwd` #Musmap source MUSMAP_SOURCE=$MUSMAP_PKG_SOURCE/../../musmap/musmap - #Original source MUSMAP_ORIG_TARGET="$MUSMAP_PKG_SOURCE/musmap-$MUSMAP_VERSION.orig" -mkdir -v $MUSMAP_ORIG_TARGET -cp -R $MUSMAP_SOURCE/* $MUSMAP_ORIG_TARGET -#== cleaning -find "$MUSMAP_ORIG_TARGET" -name CVS | xargs --no-run-if-empty rm -fr -find "$MUSMAP_ORIG_TARGET" -name .cvsignore | xargs --no-run-if-empty rm -f -find "$MUSMAP_ORIG_TARGET" -name "*~" | xargs --no-run-if-empty rm -f - -#Patched target +#target MUSMAP_TARGET="$MUSMAP_PKG_SOURCE/musmap-$MUSMAP_VERSION" -mkdir -v $MUSMAP_TARGET -cp -R $MUSMAP_ORIG_TARGET/* $MUSMAP_TARGET - -#Debian-specific -cp -R $MUSMAP_PKG_SOURCE/debian $MUSMAP_TARGET -find "$MUSMAP_TARGET/debian" -name CVS | xargs --no-run-if-empty rm -fr -find "$MUSMAP_TARGET/debian" -name .cvsignore | xargs --no-run-if-empty rm -f -find "$MUSMAP_TARGET/debian" -name "*~" | xargs --no-run-if-empty rm -f -cd "$MUSMAP_TARGET" -yada rebuild -su root "dpkg-buildpackage -sa -tc" -#rm -R -f "$MUSMAP_ORIG_TARGET" -rm -R -f "$MUSMAP_TARGET" +case $1 in + "") + mkdir -v $MUSMAP_ORIG_TARGET + cp -R $MUSMAP_SOURCE/* $MUSMAP_ORIG_TARGET + #== cleaning + find "$MUSMAP_ORIG_TARGET" -name CVS | xargs --no-run-if-empty rm -fr + find "$MUSMAP_ORIG_TARGET" -name .cvsignore | xargs --no-run-if-empty rm -f + find "$MUSMAP_ORIG_TARGET" -name "*~" | xargs --no-run-if-empty rm -f + + #Patched target + mkdir -v $MUSMAP_TARGET + cp -R $MUSMAP_ORIG_TARGET/* $MUSMAP_TARGET + + #Debian-specific + cp -R $MUSMAP_PKG_SOURCE/debian $MUSMAP_TARGET + find "$MUSMAP_TARGET/debian" -name CVS | xargs --no-run-if-empty rm -fr + find "$MUSMAP_TARGET/debian" -name .cvsignore | xargs --no-run-if-empty rm -f + find "$MUSMAP_TARGET/debian" -name "*~" | xargs --no-run-if-empty rm -f + + cd "$MUSMAP_TARGET" + yada rebuild + su root "dpkg-buildpackage -sa -tc" + #rm -R -f "$MUSMAP_ORIG_TARGET" + rm -R -f "$MUSMAP_TARGET" + ;; + --version) + echo "Musmap debian packager, version $Revision$" + echo "Current Musmap version in changelog: $MUSMAP_VERSION" + ;; + --help|*) + echo "usage: $0" + echo "Musmap upstream source should be in '$MUSMAP_SOURCE'" + echo "yada package is required" + ;; +esac From mparent-guest at haydn.debian.org Tue Mar 28 11:46:14 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 11:46:17 2006 Subject: [DebianGIS-dev] CVS Update: musmap create_package.sh Message-ID: User: mparent-guest Date: 06/03/28 11:46:14 Modified: . create_package.sh Log: yada dependency check Revision Changes Path 1.5 +13 -1 musmap/create_package.sh CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/create_package.sh.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: create_package.sh =================================================================== RCS file: /cvsroot/pkg-grass/musmap/create_package.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- create_package.sh 28 Mar 2006 11:31:10 -0000 1.4 +++ create_package.sh 28 Mar 2006 11:46:14 -0000 1.5 @@ -11,8 +11,20 @@ #target MUSMAP_TARGET="$MUSMAP_PKG_SOURCE/musmap-$MUSMAP_VERSION" +Q=`dpkg -s yada 2>/dev/null | egrep '^Status: ' ` +if [ "x$Q" != "x" ]; then + echo $Q | grep 'not-installed' > /dev/null 2>&1 + if [ $? != 0 ]; then + YADA_VERSION=`dpkg -s yada | egrep '^Version: ' | sed -e 's/Version: //' 2> /dev/null` + fi +fi + case $1 in "") + if [ "x$YADA_VERSION" = "x" ]; then + echo "yada is required, run 'apt-get install yada' as root to install it" + exit 1 + fi mkdir -v $MUSMAP_ORIG_TARGET cp -R $MUSMAP_SOURCE/* $MUSMAP_ORIG_TARGET #== cleaning From mparent-guest at haydn.debian.org Tue Mar 28 12:02:13 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 12:02:23 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian packages.templates Message-ID: User: mparent-guest Date: 06/03/28 12:02:13 Modified: debian packages.templates Log: One more string to i18n/L10n Revision Changes Path 1.5 +1 -1 musmap/debian/packages.templates CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: packages.templates =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.templates,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- packages.templates 28 Mar 2006 10:54:50 -0000 1.4 +++ packages.templates 28 Mar 2006 12:02:12 -0000 1.5 @@ -56,7 +56,7 @@ Template: musmap/dbcreate Type: boolean -description: Create database +_description: Create database Default: true Template: musmap/dberror From mparent-guest at haydn.debian.org Tue Mar 28 12:02:14 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 12:02:25 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian/po fr.po templates.pot Message-ID: User: mparent-guest Date: 06/03/28 12:02:13 Modified: debian/po fr.po templates.pot Log: One more string to i18n/L10n Revision Changes Path 1.2 +11 -3 musmap/debian/po/fr.po CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/fr.po?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/fr.po?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/fr.po.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: fr.po =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/po/fr.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- fr.po 28 Mar 2006 10:54:51 -0000 1.1 +++ fr.po 28 Mar 2006 12:02:13 -0000 1.2 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-03-28 00:11+0200\n" -"PO-Revision-Date: 2006-03-28 00:20+0200\n" +"POT-Creation-Date: 2006-03-28 14:00+0200\n" +"PO-Revision-Date: 2006-03-28 14:01+0200\n" "Last-Translator: Mathieu Parent \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -106,11 +106,19 @@ msgid "Database SUPER-user password" msgstr "Mot de passe administrateur de la base de donn??es" +#. Type: boolean +#. description +#: ../packages.templates:59 +msgid "Create database" +msgstr "Cr??er la base de donn??es" + #. Type: note #. description #: ../packages.templates:64 msgid "A database error occured. Check your params." -msgstr "Une erreur d'acc??s ?? la base de donn??es est survenue. V??rifiez vos param??tres." +msgstr "" +"Une erreur d'acc??s ?? la base de donn??es est survenue. V??rifiez vos " +"param??tres." #. Type: note #. description 1.2 +7 -1 musmap/debian/po/templates.pot CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/templates.pot?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/templates.pot?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/po/templates.pot.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: templates.pot =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/po/templates.pot,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- templates.pot 28 Mar 2006 10:54:51 -0000 1.1 +++ templates.pot 28 Mar 2006 12:02:13 -0000 1.2 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-03-28 00:11+0200\n" +"POT-Creation-Date: 2006-03-28 14:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -106,6 +106,12 @@ msgid "Database SUPER-user password" msgstr "" +#. Type: boolean +#. description +#: ../packages.templates:59 +msgid "Create database" +msgstr "" + #. Type: note #. description #: ../packages.templates:64 From mparent-guest at haydn.debian.org Tue Mar 28 12:47:00 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 12:47:03 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian packages.config Message-ID: User: mparent-guest Date: 06/03/28 12:47:00 Modified: debian packages.config Log: Fixed strange mysql crash Revision Changes Path 1.4 +1 -1 musmap/debian/packages.config CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: packages.config =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.config,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- packages.config 16 Jan 2006 21:56:58 -0000 1.3 +++ packages.config 28 Mar 2006 12:47:00 -0000 1.4 @@ -70,7 +70,7 @@ dbcreate="$RET" if test $dbcreate = true ; then # [[Warning]] insecure method to send password - DBS=`mysql --host="$dbhost" --user="$dbadminuser" --password="$dbadminpassword" --skip-column-names --no-pager --exec="SHOW DATABASES LIKE '$dbname'"` + DBS=`mysql --host="$dbhost" --user="$dbadminuser" --password="$dbadminpassword" --skip-column-names --skip-pager --exec="SHOW DATABASES LIKE '$dbname'"` if test "$?" != "0"; then db_beginblock db_input medium musmap/dberror || true From mparent-guest at haydn.debian.org Tue Mar 28 14:47:31 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 14:47:34 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian packages packages.config packages.install Message-ID: User: mparent-guest Date: 06/03/28 14:47:31 Modified: debian packages packages.config packages.install Log: Better apache handling (reload) Revision Changes Path 1.4 +1 -1 musmap/debian/packages CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: packages =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- packages 16 Jan 2006 21:59:12 -0000 1.3 +++ packages 28 Mar 2006 14:47:31 -0000 1.4 @@ -40,7 +40,7 @@ Install: sh %`sed -e 's/^$/./' -e 's/^/ /' debian/packages.install` Finalise: sh - chown www-data:www-data debian/tmp-musmap/usr/share/musmap/webtmp + chown www-data:www-data debian/tmp-musmap/var/cache/musmap/webtmp Templates: %`sed -e 's/^$/./' -e 's/^/ /' debian/packages.templates` Config: sh 1.5 +1 -0 musmap/debian/packages.config CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: packages.config =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.config,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- packages.config 28 Mar 2006 12:47:00 -0000 1.4 +++ packages.config 28 Mar 2006 14:47:31 -0000 1.5 @@ -199,5 +199,6 @@ echo "" echo "// -------- EXTRA CONF ------------------- //" echo " Conf::Set('log_dir', '/var/log/musmap/');" + echo " Conf::Set('image_path', '/var/cache/musmap/webtmp/');" echo " Conf::Set('tmp_dir', '/tmp/');" echo "?>") > /etc/musmap/db_config.php \ No newline at end of file 1.4 +9 -4 musmap/debian/packages.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.install?annotate=1.4&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.install?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.install.diff?r1=1.4&r2=1.3&cvsroot= ----------------------------------- Index: packages.install =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.install,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- packages.install 16 Jan 2006 21:58:44 -0000 1.3 +++ packages.install 28 Mar 2006 14:47:31 -0000 1.4 @@ -6,8 +6,7 @@ #== Temporary server files #/tmp #== Temporary files, available thru web server -yada install -dir /var/lib/musmap/webtmp -yada install -dir /usr/share/musmap/webtmp +yada install -dir /var/cache/musmap/webtmp #== Doc #ignore: COPYRIGHT, LICENSE.LGPL, LICENSE, INSTALL yada install -doc TODO CHANGELOG @@ -21,5 +20,11 @@ #== Apache config for webserver in apache apache-perl apache-ssl apache2; do yada install -conf -ucf -into /etc/$webserver/conf.d -as musmap.conf debian/conf/apache.conf -done -yada symlink -into /var/www /usr/share/musmap \ No newline at end of file + if [ -f /var/run/$webserver.pid ]; then + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver reload > /dev/null; + else + /etc/init.d/$webserver reload > /dev/null; + fi; + fi; +done \ No newline at end of file From mparent-guest at haydn.debian.org Tue Mar 28 14:47:31 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 14:47:36 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian/conf apache.conf Message-ID: User: mparent-guest Date: 06/03/28 14:47:31 Modified: debian/conf apache.conf Log: Better apache handling (reload) Revision Changes Path 1.2 +35 -4 musmap/debian/conf/apache.conf CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/conf/apache.conf?annotate=1.2&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/conf/apache.conf?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/conf/apache.conf.diff?r1=1.2&r2=1.1&cvsroot= ----------------------------------- Index: apache.conf =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/conf/apache.conf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- apache.conf 12 Jan 2006 20:12:35 -0000 1.1 +++ apache.conf 28 Mar 2006 14:47:31 -0000 1.2 @@ -1,7 +1,38 @@ - - AllowOverride All + + Alias /musmap/webtmp /var/cache/musmap/webtmp + + + Order Allow,Deny + Allow from All + AllowOverride None - + + Alias /musmap /usr/share/musmap + + + DirectoryIndex index.php AllowOverride All - + + + + AddType application/x-httpd-php .php + + php_flag magic_quotes_gpc Off + php_flag track_vars On + php_flag register_globals Off + php_value include_path . + + + + + + AddType application/x-httpd-php .php + + Action application/x-httpd-php /cgi-bin/php4 + + + + + + \ No newline at end of file From mparent-guest at haydn.debian.org Tue Mar 28 16:07:45 2006 From: mparent-guest at haydn.debian.org (mparent-guest@haydn.debian.org) Date: Tue Mar 28 16:07:48 2006 Subject: [DebianGIS-dev] CVS Update: musmap/debian packages packages.config packages.templates Message-ID: User: mparent-guest Date: 06/03/28 16:07:45 Modified: debian packages packages.config packages.templates Log: avoid infinite recursion during conf, remove cache before un-installing, ... Revision Changes Path 1.5 +2 -0 musmap/debian/packages CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages?annotate=1.5&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.diff?r1=1.5&r2=1.4&cvsroot= ----------------------------------- Index: packages =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- packages 28 Mar 2006 14:47:31 -0000 1.4 +++ packages 28 Mar 2006 16:07:45 -0000 1.5 @@ -45,3 +45,5 @@ %`sed -e 's/^$/./' -e 's/^/ /' debian/packages.templates` Config: sh %`sed -e 's/^$/./' -e 's/^/ /' debian/packages.config` +Prerm: sh + rm -f /var/cache/musmap/webtmp/* 1.6 +1 -0 musmap/debian/packages.config CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.config.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: packages.config =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.config,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- packages.config 28 Mar 2006 14:47:31 -0000 1.5 +++ packages.config 28 Mar 2006 16:07:45 -0000 1.6 @@ -2,6 +2,7 @@ # This conf script is capable of backing up db_capb backup +db_reset musmap/dbcreate STEP=1 NUMSTEPS=5 while [ "$STEP" != 0 -a "$STEP" != $NUMSTEPS ]; do 1.6 +1 -1 musmap/debian/packages.templates CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates?annotate=1.6&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot= CVSWeb: Diff to previous version: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/musmap/debian/packages.templates.diff?r1=1.6&r2=1.5&cvsroot= ----------------------------------- Index: packages.templates =================================================================== RCS file: /cvsroot/pkg-grass/musmap/debian/packages.templates,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- packages.templates 28 Mar 2006 12:02:12 -0000 1.5 +++ packages.templates 28 Mar 2006 16:07:45 -0000 1.6 @@ -57,7 +57,7 @@ Template: musmap/dbcreate Type: boolean _description: Create database -Default: true +Default: false Template: musmap/dberror Type: note From katie at ftp-master.debian.org Wed Mar 29 10:19:59 2006 From: katie at ftp-master.debian.org (Archive Administrator) Date: Wed Mar 29 10:20:15 2006 Subject: [DebianGIS-dev] Processing of thuban_1.1.0-1_i386.changes Message-ID: thuban_1.1.0-1_i386.changes uploaded successfully to localhost along with the files: thuban_1.1.0-1.dsc thuban_1.1.0.orig.tar.gz thuban_1.1.0-1.diff.gz thuban_1.1.0-1_i386.deb Greetings, Your Debian queue daemon From installer at ftp-master.debian.org Wed Mar 29 10:32:19 2006 From: installer at ftp-master.debian.org (Debian Installer) Date: Wed Mar 29 10:37:47 2006 Subject: [DebianGIS-dev] thuban_1.1.0-1_i386.changes ACCEPTED Message-ID: Accepted: thuban_1.1.0-1.diff.gz to pool/main/t/thuban/thuban_1.1.0-1.diff.gz thuban_1.1.0-1.dsc to pool/main/t/thuban/thuban_1.1.0-1.dsc thuban_1.1.0-1_i386.deb to pool/main/t/thuban/thuban_1.1.0-1_i386.deb thuban_1.1.0.orig.tar.gz to pool/main/t/thuban/thuban_1.1.0.orig.tar.gz Announcing to debian-devel-changes@lists.debian.org Thank you for your contribution to Debian. From pabs3 at bonedaddy.net Thu Mar 30 12:26:35 2006 From: pabs3 at bonedaddy.net (Paul Wise) Date: Thu Mar 30 12:39:42 2006 Subject: [DebianGIS-dev] Bug#359615: mapserver: 359615: waiting on new upstream Message-ID: <1143721595.6397.10.camel@localhost.localdomain> We're waiting for 4.8.3 to be released before we make a new upload. -- bye, pabs http://wiki.debian.org/PaulWise -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 191 bytes Desc: This is a digitally signed message part Url : http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060330/e8f6e3b6/attachment.pgp From pabs-guest at haydn.debian.org Fri Mar 31 12:20:34 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Fri Mar 31 12:20:36 2006 Subject: [DebianGIS-dev] CVS Update: avce00 - New directory Message-ID: User: pabs-guest Date: 06/03/31 12:20:33 avce00 - New directory From pabs-guest at haydn.debian.org Fri Mar 31 12:20:49 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Fri Mar 31 12:20:51 2006 Subject: [DebianGIS-dev] CVS Update: avce00/debian - New directory Message-ID: User: pabs-guest Date: 06/03/31 12:20:49 avce00/debian - New directory From pabs-guest at haydn.debian.org Fri Mar 31 12:23:24 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Fri Mar 31 12:23:28 2006 Subject: [DebianGIS-dev] CVS Update: avce00/debian/patches - New directory Message-ID: User: pabs-guest Date: 06/03/31 12:23:24 avce00/debian/patches - New directory From pabs-guest at haydn.debian.org Fri Mar 31 12:26:58 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Fri Mar 31 12:27:01 2006 Subject: [DebianGIS-dev] CVS Update: avce00/debian README.Debian avce00.install changelog compat control copyright dirs docs rules watch Message-ID: User: pabs-guest Date: 06/03/31 12:26:58 Added: debian README.Debian avce00.install changelog compat control copyright dirs docs rules watch Log: Add avce00 to the repository Revision Changes Path 1.1 avce00/debian/README.Debian CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/README.Debian?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/README.Debian?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: README.Debian =================================================================== avce00 for Debian ----------------- avce00 contains a library that may use for development of GIS translation tools. This library is not include on a debian package. This could be change on demand. -- Jean-Denis Giguere , Wed, 23 Feb 2005 09:43:16 -0500 1.1 avce00/debian/avce00.install CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/avce00.install?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/avce00.install?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: avce00.install =================================================================== avcdelete /usr/bin avcexport /usr/bin avcimport /usr/bin avctest /usr/bin 1.1 avce00/debian/changelog CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/changelog?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/changelog?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: changelog =================================================================== avce00 (1.3.0-3) UNRELEASED; urgency=low * Switch to dpatch, clean up debian/rules, add to DebianGis CVS * Pass the correct options to make through OPTFLAGS * Add homepage and watch file, tidy copyright file * Suggest e00compr (Closes: #339284) and enhance grass -- Paul Wise Fri, 31 Mar 2006 20:16:43 +0800 avce00 (1.3.0-2) unstable; urgency=low * Patched to manage endianess automagically. (closes: #338552) * Reverting to non-native package. -- Francesco Paolo Lovergine Mon, 14 Nov 2005 16:08:44 +0100 avce00 (1.3.0-1) unstable; urgency=low * First upload into sid. * Little changes done: - This is MIT-like licensend not BSD - docs included README.TXT twice and missed TODO.TXT - Policy bumped to 3.6.2 - Maintainer and uploaders set - Removed commented out deprecated dh_ commands - Using dh_install to move files in the package dir - Description revised in control file -- Francesco Paolo Lovergine Thu, 29 Sep 2005 12:51:26 +0200 avce00 (1.3.0-0.dgis.unstable.1) unstable; urgency=low * Initial Release. -- Jean-Denis Giguere Mon, 06 Jun 2005 09:43:16 -0400 1.1 avce00/debian/compat CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/compat?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/compat?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: compat =================================================================== 4 1.1 avce00/debian/control CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/control?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/control?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: control =================================================================== Source: avce00 Section: science Priority: extra Maintainer: Debian GIS Project Uploaders: Jean-Denis Giguere , Francesco Paolo Lovergine Build-Depends: debhelper (>= 4.0.0) Standards-Version: 3.6.2 Package: avce00 Architecture: any Depends: ${shlibs:Depends} Suggests: e00compr Enhances: grass Description: Tools for conversion of ESRI Arcinfo (binary) Vector Coverage in E00 format. AVCE00 is a C library and group of tools that makes Arcinfo (binary) Vector Coverages appear as E00. It allows you to read and write binary coverages just as if they were E00 files. . Homepage: http://avce00.maptools.org/avce00/ 1.1 avce00/debian/copyright CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/copyright?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/copyright?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: copyright =================================================================== This package was debianized by Jean-Denis Giguere on Wed, 06 Jun 2005 09:43:16 -0400. It was downloaded from http://avce00.maptools.org/avce00/avce00-1.3.0.tar.gz Upstream Author: Daniel Morissette, morissette@dmsolutions.ca Copyright: Copyright (c) 1999, 2000, Daniel Morissette License: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 1.1 avce00/debian/dirs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/dirs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/dirs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: dirs =================================================================== usr/bin 1.1 avce00/debian/docs CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/docs?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/docs?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: docs =================================================================== avce00.txt HISTORY.TXT README.TXT TODO.TXT 1.1 avce00/debian/rules CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/rules?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/rules?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: rules =================================================================== #!/usr/bin/make -f include /usr/share/dpatch/dpatch.make # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 OPTFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) OPTFLAGS += -O0 else OPTFLAGS += -O2 endif build: build-stamp build-stamp: patch dh_testdir $(MAKE) OPTFLAGS="$(OPTFLAGS)" touch build-stamp clean: unpatch dh_testdir dh_testroot rm -f build-stamp configure-stamp -$(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_install --sourcedir=$(CURDIR) dh_installchangelogs dh_installdocs dh_installexamples dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install 1.1 avce00/debian/watch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/watch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/watch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: watch =================================================================== version=3 http://avce00.maptools.org/avce00/ .*avce00-([\d.]*)\.tar\.gz debian uupdate From pabs-guest at haydn.debian.org Fri Mar 31 12:26:58 2006 From: pabs-guest at haydn.debian.org (pabs-guest@haydn.debian.org) Date: Fri Mar 31 12:27:02 2006 Subject: [DebianGIS-dev] CVS Update: avce00/debian/patches 00list detect_endianness.dpatch Message-ID: User: pabs-guest Date: 06/03/31 12:26:58 Added: debian/patches 00list detect_endianness.dpatch Log: Add avce00 to the repository Revision Changes Path 1.1 avce00/debian/patches/00list CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/patches/00list?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/patches/00list?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: 00list =================================================================== detect_endianness 1.1 avce00/debian/patches/detect_endianness.dpatch CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/patches/detect_endianness.dpatch?annotate=1.1&cvsroot= CVSWeb: View this file: http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pkg-grass/avce00/debian/patches/detect_endianness.dpatch?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot= ----------------------------------- Index: detect_endianness.dpatch =================================================================== #! /bin/sh /usr/share/dpatch/dpatch-run ## detect_endianness.dpatch by Francesco P. Lovergine ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Manage endianess automagically @DPATCH@ diff -urNad avce00-1.3.0~/GNUmakefile avce00-1.3.0/GNUmakefile --- avce00-1.3.0~/GNUmakefile 2006-03-31 19:59:07.000000000 +0800 +++ avce00-1.3.0/GNUmakefile 2006-03-31 20:01:54.000000000 +0800 @@ -42,7 +42,7 @@ # Select CPL_MSB for SUNs or other platforms with MSB first ordering. # # BYTE_ORDER_FL = -DCPL_MSB -BYTE_ORDER_FL = -DCPL_LSB +#BYTE_ORDER_FL = -DCPL_LSB # # In some cases, AVCE00DeleteCoverage() fails because the coverage directory diff -urNad avce00-1.3.0~/cpl_port.h avce00-1.3.0/cpl_port.h --- avce00-1.3.0~/cpl_port.h 2006-03-31 19:59:07.000000000 +0800 +++ avce00-1.3.0/cpl_port.h 2006-03-31 20:01:54.000000000 +0800 @@ -196,6 +196,7 @@ * This should be defined in the Makefile, but if it is not then * the default is CPL_LSB (Intel ordering, LSB first). *--------------------------------------------------------------------*/ +/* #if defined(WORDS_BIGENDIAN) && !defined(CPL_MSB) && !defined(CPL_LSB) # define CPL_MSB #endif @@ -203,6 +204,17 @@ #if ! ( defined(CPL_LSB) || defined(CPL_MSB) ) #define CPL_LSB #endif +*/ + +/* + * Manage endianess automagically - Francesco P. Lovergine + */ +#include +#if __BYTE_ORDER == __LITTLE_ENDIAN +# define CPL_LSB +#elif __BYTE_ORDER == __BIG_ENDIAN +# define CPL_MSB +#endif /*--------------------------------------------------------------------- * Little endian <==> big endian byte swap macros. From stefan.malmesjo at curalia.se Fri Mar 31 13:48:32 2006 From: stefan.malmesjo at curalia.se (=?ISO-8859-1?Q?Stefan_Malmesj=F6?=) Date: Fri Mar 31 14:08:06 2006 Subject: [DebianGIS-dev] mapserver 4.8.2 Message-ID: <442D3330.3070403@curalia.se> Hi, We are wondering if there are any plans on (sometime soon) releasing a debian package for mapserver 4.8.2. The reason we ask is because we are affected by the bug described here: http://mapserver.gis.umn.edu/bugs/show_bug.cgi?id=1629 and which is supposed to be fixed in 4.8.2. Thanks in advance, /Stefan Malmesj? -- Stefan Malmesj? | Applications Developer Phone +46 (0)8-410 064 49 -- Curalia AB | www.curalia.se V?stmannagatan 15, 111 24 Stockholm, Sweden -- From frankie at debian.org Fri Mar 31 19:50:36 2006 From: frankie at debian.org (Francesco Paolo Lovergine) Date: Fri Mar 31 19:51:31 2006 Subject: [DebianGIS-dev] mapserver 4.8.2 In-Reply-To: <442D3330.3070403@curalia.se> References: <442D3330.3070403@curalia.se> Message-ID: <20060331195036.GE4570@ba.issia.cnr.it> On Fri, Mar 31, 2006 at 03:48:32PM +0200, Stefan Malmesj? wrote: > We are wondering if there are any plans on (sometime soon) releasing a > debian package for mapserver 4.8.2. The reason we ask is because we are > affected by the bug described here: > http://mapserver.gis.umn.edu/bugs/show_bug.cgi?id=1629 > and which is supposed to be fixed in 4.8.2. > See #359615, we are waiting for 4.8.3 release. -- Francesco P. Lovergine From contato at globo.com Sat Mar 25 03:42:58 2006 From: contato at globo.com (Globo Media Center) Date: Mon Apr 3 18:30:45 2006 Subject: [DebianGIS-dev] Passe 7 dias gratis no Globo Media Center Message-ID: An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20060325/783a79a7/attachment.html