[DebianGIS-dev] Bug#599330: python-mapnik: broken on mips*: ImportError: invalid mode parameter

2010-10-06 Thread Jakub Wilk

Package: python-mapnik
Version: 0.7.1-1
Severity: grave
Tags: patch
User: debian-m...@lists.debian.org
Usertags: mips
Justification: renders package unusable (on mips & mipsel)

mapnik is not importable on mips{,el}:

$ python -c 'import mapnik'
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/pymodules/python2.6/mapnik/__init__.py", line 53, in 
from _mapnik import *
ImportError: invalid mode parameter


I believe that the attached (untested) patch fixes this bug.

BTW, such a breakage could be detected earlier if test suite were run at 
build time.


--
Jakub Wilk
diff --git a/bindings/python/mapnik/__init__.py b/bindings/python/mapnik/__init__.py
--- a/bindings/python/mapnik/__init__.py
+++ b/bindings/python/mapnik/__init__.py
@@ -42,7 +42,7 @@
 
 from sys import getdlopenflags, setdlopenflags
 try:
-from ctypes import RTLD_NOW, RTLD_GLOBAL
+from DLFCN import RTLD_NOW, RTLD_GLOBAL
 except ImportError:
 RTLD_NOW = 2
 RTLD_GLOBAL = 256


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

[DebianGIS-dev] Bug#598920: marked as done (josm: JOSM ask for update, bad version compare)

2010-10-06 Thread Debian Bug Tracking System
Your message dated Wed, 06 Oct 2010 09:02:11 +
with message-id 
and subject line Bug#598920: fixed in josm 0.0.svn3514-2
has caused the Debian Bug report #598920,
regarding josm: JOSM ask for update, bad version compare
to be marked as done.

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

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


-- 
598920: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598920
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: josm
Version: 0.0.svn3514-1
Severity: normal
Tags: patch


JOSM ask for update when start:

You should update!
2010-09-14 (3529)
For the tags in the properties dialogue, you can directly open the 
corresponding wiki-page in a browser.
2010-09-03 (o22964)
The WMS plugin supports GetCapabilities requests.
2010-08-13 (3431)
The new Purge command can clean up data layers.
2010-07-27 (3388)
New tagging preset search dialog.
2010-07-20 (3378)
JOSM can now recover an intermediate state of your editing in case of a crash.
JOSM now requires JAVA version 6. Users of JAVA version 5 need to use older 
JOSM versions.

Active version '3514 SVN' should be updated! The current stable snapshot is 
3514 and 3580 is the unstable development version


I think that version should be '3514' (without SVN string).

I suggest to apply the attached patch (quilt)


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=es_ES.utf8, LC_CTYPE=es_ES.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages josm depends on:
ii  libgettext-commons-java 0.9.6-2  Java classes for internationalizat
ii  libmetadata-extractor-j 2.3.1+dfsg-2 JPEG metadata extraction framework
ii  liboauth-signpost-java  1.2.1.1-1simple OAuth message signing for J
ii  openjdk-6-jre   6b18-1.8.1-2 OpenJDK Java runtime, using Hotspo
ii  openstreetmap-map-icons 1:0.0.svn20783-1 Collection of map icons (classic s
ii  sun-java6-jre   6.21-1   Sun Java(TM) Runtime Environment (

Versions of packages josm recommends:
pn  josm-plugins   (no description available)

josm suggests no packages.

-- no debconf information
Index: josm-0.0.svn3514/build.xml
===
--- josm-0.0.svn3514.orig/build.xml	2010-10-03 01:47:57.0 +0200
+++ josm-0.0.svn3514/build.xml	2010-10-03 01:48:10.0 +0200
@@ -81,7 +81,7 @@
 			
 			
 
-
+
 
 
 
Index: josm-0.0.svn3514/src/org/openstreetmap/josm/data/Version.java
===
--- josm-0.0.svn3514.orig/src/org/openstreetmap/josm/data/Version.java	2010-10-03 01:50:13.0 +0200
+++ josm-0.0.svn3514/src/org/openstreetmap/josm/data/Version.java	2010-10-03 01:50:28.0 +0200
@@ -206,9 +206,9 @@
 public String getAgentString() {
 int v = getVersion();
 String s = (v == JOSM_UNKNOWN_VERSION) ? "UNKNOWN" : Integer.toString(v);
-if (isLocalBuild() && v != JOSM_UNKNOWN_VERSION) {
+/*if (isLocalBuild() && v != JOSM_UNKNOWN_VERSION) {
 s += " SVN";
-}
+}*/
 return "JOSM/1.5 ("+ s+" "+LanguageInfo.getJOSMLocaleCode()+")";
 }
 }
--- End Message ---
--- Begin Message ---
Source: josm
Source-Version: 0.0.svn3514-2

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

josm_0.0.svn3514-2.debian.tar.gz
  to main/j/josm/josm_0.0.svn3514-2.debian.tar.gz
josm_0.0.svn3514-2.dsc
  to main/j/josm/josm_0.0.svn3514-2.dsc
josm_0.0.svn3514-2_all.deb
  to main/j/josm/josm_0.0.svn3514-2_all.deb



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

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

Debian distribution maintenance software
pp.
David Paleino  (supplier of updated josm package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 06 Oct 2010 10:34:40 +0200
Source: josm
Binary: josm
Architecture: source all
Version: 0.0.svn3514-2
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project 
Changed-By: David Paleino 
De

[DebianGIS-dev] josm_0.0.svn3514-2_amd64.changes ACCEPTED into unstable

2010-10-06 Thread Debian FTP Masters



Accepted:
josm_0.0.svn3514-2.debian.tar.gz
  to main/j/josm/josm_0.0.svn3514-2.debian.tar.gz
josm_0.0.svn3514-2.dsc
  to main/j/josm/josm_0.0.svn3514-2.dsc
josm_0.0.svn3514-2_all.deb
  to main/j/josm/josm_0.0.svn3514-2_all.deb


Override entries for your package:
josm_0.0.svn3514-2.dsc - source utils
josm_0.0.svn3514-2_all.deb - extra utils

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


Thank you for your contribution to Debian.

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


[DebianGIS-dev] Processing of josm_0.0.svn3514-2_amd64.changes

2010-10-06 Thread Archive Administrator
josm_0.0.svn3514-2_amd64.changes uploaded successfully to localhost
along with the files:
  josm_0.0.svn3514-2.dsc
  josm_0.0.svn3514-2.debian.tar.gz
  josm_0.0.svn3514-2_all.deb

Greetings,

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

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


[DebianGIS-dev] [SCM] josm branch, master, updated. debian/0.0.svn3514-2

2010-10-06 Thread David Paleino
The following commit has been merged in the master branch:
commit cee87176361d2546f39a0ac3d4cf125618d06e0c
Author: David Paleino 
Date:   Wed Oct 6 10:40:51 2010 +0200

Releasing to sid

diff --git a/debian/changelog b/debian/changelog
index 7fe7ac1..e0ec7b7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-josm (0.0.svn3514-2) UNRELEASED; urgency=low
+josm (0.0.svn3514-2) unstable; urgency=low
 
   * debian/patches/90-fix_version.patch added, fix inconsistency
 between code and upstream website. Thanks to Mario Izquierdo
@@ -6,7 +6,7 @@ josm (0.0.svn3514-2) UNRELEASED; urgency=low
   * debian/control: use openjdk-6-jdk instead of default-jdk, to ease
 sync to Ubuntu.
 
- -- David Paleino   Wed, 06 Oct 2010 10:25:35 +0200
+ -- David Paleino   Wed, 06 Oct 2010 10:34:40 +0200
 
 josm (0.0.svn3514-1) unstable; urgency=low
 

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm branch, master, updated. debian/0.0.svn3514-2

2010-10-06 Thread David Paleino
The following commit has been merged in the master branch:
commit 91ec66ba2d874f7264c296144cf4a9226115dfc7
Author: David Paleino 
Date:   Wed Oct 6 10:25:57 2010 +0200

debian/control: use openjdk-6-jdk instead of default-jdk, to ease sync to 
Ubuntu.

diff --git a/debian/changelog b/debian/changelog
index 41bce61..7fe7ac1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,10 @@ josm (0.0.svn3514-2) UNRELEASED; urgency=low
   * debian/patches/90-fix_version.patch added, fix inconsistency
 between code and upstream website. Thanks to Mario Izquierdo
 (Closes: #598920)
+  * debian/control: use openjdk-6-jdk instead of default-jdk, to ease
+sync to Ubuntu.
 
- -- David Paleino   Sun, 03 Oct 2010 11:37:39 +0200
+ -- David Paleino   Wed, 06 Oct 2010 10:25:35 +0200
 
 josm (0.0.svn3514-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index c22e196..a90fff5 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  ant,
  debhelper (>= 7.0.50~),
  gettext,
- default-jdk (>= 1:1.6),
+ openjdk-6-jdk,
  libgettext-commons-java (>= 0.9.6),
  libmetadata-extractor-java,
  libgettext-ant-tasks-java,

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm branch, master, updated. debian/0.0.svn3514-2

2010-10-06 Thread David Paleino
The following commit has been merged in the master branch:
commit 3606e771ee8f198d2872eeac2ee47d67c42bd482
Author: David Paleino 
Date:   Wed Oct 6 10:24:47 2010 +0200

Revert "debian/rules, debian/control.in: handle distro-specific 
Build-Depends, so that this same source package can build on Maverick."

This reverts commit e8c9402c7500a1169a1695122ac71d9e949e1704.

diff --git a/debian/changelog b/debian/changelog
index 6fcfb60..41bce61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,10 +3,8 @@ josm (0.0.svn3514-2) UNRELEASED; urgency=low
   * debian/patches/90-fix_version.patch added, fix inconsistency
 between code and upstream website. Thanks to Mario Izquierdo
 (Closes: #598920)
-  * debian/rules, debian/control.in: handle distro-specific Build-Depends,
-so that this same source package can build on Maverick.
 
- -- David Paleino   Wed, 06 Oct 2010 09:43:43 +0200
+ -- David Paleino   Sun, 03 Oct 2010 11:37:39 +0200
 
 josm (0.0.svn3514-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index dd955f1..c22e196 100644
--- a/debian/control
+++ b/debian/control
@@ -13,12 +13,12 @@ Build-Depends:
  ant,
  debhelper (>= 7.0.50~),
  gettext,
+ default-jdk (>= 1:1.6),
  libgettext-commons-java (>= 0.9.6),
  libmetadata-extractor-java,
  libgettext-ant-tasks-java,
  libterm-readkey-perl
  , liboauth-signpost-java (>= 1.2)
- , default-jdk (>= 1:1.6)
 Standards-Version: 3.9.1
 Homepage: http://josm.openstreetmap.de
 Vcs-Git: git://git.debian.org/pkg-grass/josm.git
diff --git a/debian/control.in b/debian/control.in
deleted file mode 100644
index 86b61a7..000
--- a/debian/control.in
+++ /dev/null
@@ -1,47 +0,0 @@
-Source: josm
-Section: utils
-Priority: extra
-Maintainer: Debian GIS Project 
-Uploaders:
- Andreas Putzo ,
- Giovanni Mascellani ,
- Petter Reinholdtsen ,
- David Paleino ,
- Debian OpenStreetMap Team 
-DM-Upload-Allowed: yes
-Build-Depends:
- ant,
- debhelper (>= 7.0.50~),
- gettext,
- libgettext-commons-java (>= 0.9.6),
- libmetadata-extractor-java,
- libgettext-ant-tasks-java,
- libterm-readkey-perl
- , liboauth-signpost-java (>= 1.2)
- , %distro_build_depends%
-Standards-Version: 3.9.1
-Homepage: http://josm.openstreetmap.de
-Vcs-Git: git://git.debian.org/pkg-grass/josm.git
-Vcs-Browser: http://git.debian.org/?p=pkg-grass/josm.git
-
-Package: josm
-Architecture: all
-Depends:
- openjdk-6-jre | sun-java6-jre,
- libgettext-commons-java (>= 0.9.6),
- libmetadata-extractor-java,
- liboauth-signpost-java (>= 1.2),
- openstreetmap-map-icons-classic,
- ${misc:Depends}
-Recommends: josm-plugins
-Description: Editor for OpenStreetMap
- JOSM is an editor for OpenStreetMap (OSM) written in Java.
- The current version supports stand alone GPX tracks, GPX track data
- from OSM database and existing nodes, line segments and metadata tags
- from the OSM database.
- .
- OpenStreetMap is a project aimed squarely at creating and providing
- free geographic data such as street maps to anyone who wants them. 
- The project was started because most maps you think of as free actually
- have legal or technical restrictions on their use, holding back people
- from using them in creative, productive or unexpected ways.
diff --git a/debian/rules b/debian/rules
index e315c71..8f7a7ed 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,12 +21,6 @@ DEB_UPSTREAM_VERSION := $(shell echo $(DEB_VERSION) | cut 
-d- -f1)
 # Docs are already included in the jar file and can be accessed from within 
josm.
 #DEB_INSTALL_DOCS_ALL :=
 
-ifeq ($(shell dpkg-vendor --derives-from Ubuntu && echo yes),yes)
-   BUILDDEPENDS=default-jdk (>= 1.6)
-else
-   BUILDDEPENDS=default-jdk (>= 1:1.6)
-endif
-
 %:
dh $@
 
@@ -42,13 +36,6 @@ override_dh_auto_install:
install -m 644 $(CURDIR)/debian/icons/josm-32.xpm 
$(CURDIR)/debian/josm/usr/share/pixmaps/josm-32.xpm
install -m 644 $(CURDIR)/debian/josm.desktop 
$(CURDIR)/debian/josm/usr/share/applications/josm.desktop
 
-override_dh_clean:
-   dh_clean
-
-   # handle distro-specific Build-Depends
-   sed -e "s/%distro_build_depends%/$(BUILDDEPENDS)/" \
-   debian/control.in > debian/control
-
 
 get-orig-source:
dh_testdir

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm branch, master, updated. debian/0.0.svn3514-2

2010-10-06 Thread David Paleino
The following commit has been merged in the master branch:
commit 224696cbd040e509183e91b45a6c9596ba8ca1ab
Author: David Paleino 
Date:   Wed Oct 6 09:48:34 2010 +0200

Refresh patch

diff --git a/debian/patches/90-fix_version.patch 
b/debian/patches/90-fix_version.patch
index 0042d4c..ddf55a8 100644
--- a/debian/patches/90-fix_version.patch
+++ b/debian/patches/90-fix_version.patch
@@ -11,14 +11,14 @@ Forwarded: no
 --- josm.orig/build.xml
 +++ josm/build.xml
 @@ -81,7 +81,7 @@ Debian-Release: ${debian.version}
-   
-   
-   
--  
-+  
-   
-   
-   
+   
+   
+   
+-  
++  
+   
+   
+   
 --- josm.orig/src/org/openstreetmap/josm/data/Version.java
 +++ josm/src/org/openstreetmap/josm/data/Version.java
 @@ -206,9 +206,6 @@ public class Version {

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm branch, master, updated. debian/0.0.svn3514-2

2010-10-06 Thread David Paleino
The following commit has been merged in the master branch:
commit e8c9402c7500a1169a1695122ac71d9e949e1704
Author: David Paleino 
Date:   Wed Oct 6 09:44:15 2010 +0200

debian/rules, debian/control.in: handle distro-specific Build-Depends, so 
that this same source package can build on Maverick.

diff --git a/debian/changelog b/debian/changelog
index 41bce61..6fcfb60 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,10 @@ josm (0.0.svn3514-2) UNRELEASED; urgency=low
   * debian/patches/90-fix_version.patch added, fix inconsistency
 between code and upstream website. Thanks to Mario Izquierdo
 (Closes: #598920)
+  * debian/rules, debian/control.in: handle distro-specific Build-Depends,
+so that this same source package can build on Maverick.
 
- -- David Paleino   Sun, 03 Oct 2010 11:37:39 +0200
+ -- David Paleino   Wed, 06 Oct 2010 09:43:43 +0200
 
 josm (0.0.svn3514-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index c22e196..dd955f1 100644
--- a/debian/control
+++ b/debian/control
@@ -13,12 +13,12 @@ Build-Depends:
  ant,
  debhelper (>= 7.0.50~),
  gettext,
- default-jdk (>= 1:1.6),
  libgettext-commons-java (>= 0.9.6),
  libmetadata-extractor-java,
  libgettext-ant-tasks-java,
  libterm-readkey-perl
  , liboauth-signpost-java (>= 1.2)
+ , default-jdk (>= 1:1.6)
 Standards-Version: 3.9.1
 Homepage: http://josm.openstreetmap.de
 Vcs-Git: git://git.debian.org/pkg-grass/josm.git
diff --git a/debian/control b/debian/control.in
similarity index 98%
copy from debian/control
copy to debian/control.in
index c22e196..86b61a7 100644
--- a/debian/control
+++ b/debian/control.in
@@ -13,12 +13,12 @@ Build-Depends:
  ant,
  debhelper (>= 7.0.50~),
  gettext,
- default-jdk (>= 1:1.6),
  libgettext-commons-java (>= 0.9.6),
  libmetadata-extractor-java,
  libgettext-ant-tasks-java,
  libterm-readkey-perl
  , liboauth-signpost-java (>= 1.2)
+ , %distro_build_depends%
 Standards-Version: 3.9.1
 Homepage: http://josm.openstreetmap.de
 Vcs-Git: git://git.debian.org/pkg-grass/josm.git
diff --git a/debian/rules b/debian/rules
index 8f7a7ed..e315c71 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,6 +21,12 @@ DEB_UPSTREAM_VERSION := $(shell echo $(DEB_VERSION) | cut 
-d- -f1)
 # Docs are already included in the jar file and can be accessed from within 
josm.
 #DEB_INSTALL_DOCS_ALL :=
 
+ifeq ($(shell dpkg-vendor --derives-from Ubuntu && echo yes),yes)
+   BUILDDEPENDS=default-jdk (>= 1.6)
+else
+   BUILDDEPENDS=default-jdk (>= 1:1.6)
+endif
+
 %:
dh $@
 
@@ -36,6 +42,13 @@ override_dh_auto_install:
install -m 644 $(CURDIR)/debian/icons/josm-32.xpm 
$(CURDIR)/debian/josm/usr/share/pixmaps/josm-32.xpm
install -m 644 $(CURDIR)/debian/josm.desktop 
$(CURDIR)/debian/josm/usr/share/applications/josm.desktop
 
+override_dh_clean:
+   dh_clean
+
+   # handle distro-specific Build-Depends
+   sed -e "s/%distro_build_depends%/$(BUILDDEPENDS)/" \
+   debian/control.in > debian/control
+
 
 get-orig-source:
dh_testdir

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm annotated tag, upstream/0.0.svn3514, created. upstream/0.0.svn3514

2010-10-06 Thread David Paleino
The annotated tag, upstream/0.0.svn3514 has been created
at  95bdc6d7305ac0090a8af1d4505345a75d8cb491 (tag)
   tagging  5a150c240169275fbc9981a13dab7fd54989c6e0 (commit)
  replaces  upstream/0.0.svn3376
 tagged by  David Paleino
on  Tue Sep 7 09:23:34 2010 +0200

- Shortlog 
Upstream version 0.0.svn3514
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAkyF6HYACgkQ5qqQFxOSsXSgrwCbBbLLIsY/A02wrdwemDvst1ZG
oB8AnRcIhlgCbB6ccHFOlQ/0EfBwxINI
=FOms
-END PGP SIGNATURE-

David Paleino (1):
  Imported Upstream version 0.0.svn3514

---

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm annotated tag, debian/0.0.svn3514-2, created. debian/0.0.svn3514-2

2010-10-06 Thread David Paleino
The annotated tag, debian/0.0.svn3514-2 has been created
at  d6426aa43f9a00cb1a88e45fd35c64ba7a41760d (tag)
   tagging  cee87176361d2546f39a0ac3d4cf125618d06e0c (commit)
  replaces  debian/0.0.svn3514-1
 tagged by  David Paleino
on  Wed Oct 6 10:41:07 2010 +0200

- Shortlog 
Debian release
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAkysNiMACgkQ5qqQFxOSsXRQ+QCgkhW0FGDiYZYmaFPmfoaiQYDr
2vsAn27aL8HA7yfHlBZvnYcbkzVshvxA
=GpSW
-END PGP SIGNATURE-

David Paleino (6):
  debian/patches/90-fix_version.patch added, fix inconsistency between code 
and upstream website. Thanks to Mario Izquierdo (Closes: #598920)
  debian/rules, debian/control.in: handle distro-specific Build-Depends, so 
that this same source package can build on Maverick.
  Refresh patch
  Revert "debian/rules, debian/control.in: handle distro-specific 
Build-Depends, so that this same source package can build on Maverick."
  debian/control: use openjdk-6-jdk instead of default-jdk, to ease sync to 
Ubuntu.
  Releasing to sid

---

-- 
Java OpenStreetMap editor

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


[DebianGIS-dev] [SCM] josm annotated tag, debian/0.0.svn3514-1, created. debian/0.0.svn3514-1

2010-10-06 Thread David Paleino
The annotated tag, debian/0.0.svn3514-1 has been created
at  3e456c28434bf53c18c5d6c1d17a385c2798d539 (tag)
   tagging  eb7fce821e91091f2cbc3103baf283268301 (commit)
  replaces  debian/0.0.svn3376-1
 tagged by  David Paleino
on  Tue Sep 7 11:38:16 2010 +0200

- Shortlog 
Debian release
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAkyGCAgACgkQ5qqQFxOSsXT32wCgv0b872OMZGFW7D8AE6Gc27gw
lIgAoIWa4hlkrdGFmxvnIXMF/F3UmXZ3
=OT1r
-END PGP SIGNATURE-

David Paleino (11):
  Imported Upstream version 0.0.svn3514
  Merge commit 'upstream/0.0.svn3514'
  New upstream snapshot
  debian/patches/* refreshed to cleanly apply to the new code
  debian/patches/60-port_oauth_1.2.patch removed, merged upstream
  debian/patches/60-disable_oauth.patch removed, not being applied since a 
couple of releases
  debian/control: Build-Depends on default-jdk bumped to >= 1.6
  debian/control: Standards-Version bumped to 3.9.1, no changes needed
  debian/control: drop alternative dependency on sun-java5-jre: Java 5 is 
no more supported by upstream
  Fix patch
  Releasing to sid

---

-- 
Java OpenStreetMap editor

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