Re: Osmgpsmap Package

2014-05-13 Thread Andreas Tille
Hi Ross,

thanks for working on osmgpsmap.

On Mon, May 12, 2014 at 10:57:35PM +0200, Ross Gammon wrote:
 Hi All,
 
 I have prepared an update to the latest Osmgpsmap version which
 fixes an annoying bug. I am 90% ready to ask for sponsorship, but
 when I tried to push what I had done so far, I realised I do not
 have access rights to pkg-osm on Alioth.
 
 Is there a general policy to move things from pkg-osm to pkg-grass
 (I read a similar case on the list in the past)? I am happy to work
 in either place. But if osmgpsmap should stay where it is, I would
 appreciate it if someone could arrange appropriate rights for me at
 pkg-osm.

The repositories in pkg-osm should be moved to pkg-grass.  Please use
pkg-grass for your work.  I just checked that you are a member of this
team and should have commit permissions.

 Otherwise, I would be happy to use the pkg-grass script to create a
 new repository, and push my local copy (and the changes I made)
 there instead. Someone would have to delete the old repository on
 pkg-osm for me though.

I'll do the removal once you confirm that the repository arrived in
pkg-grass.
 
Kind regards

 Andreas.

-- 
http://fam-tille.de

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


[postgis] 01/01: Correct json-c usage (still for 2.1.2+dfsg-3)

2014-05-13 Thread Markus Wanner
This is an automated email from the git hooks/post-receive script.

markus_wanner-guest pushed a commit to branch master
in repository postgis.

commit fc81ff1a0ee2f9046b62cd6d5e3c7e8293dff4e0
Author: Markus Wanner mar...@bluegap.ch
Date:   Tue May 13 10:05:34 2014 +0200

Correct json-c usage (still for 2.1.2+dfsg-3)

Add a patch to tweak configure to not only detect, but set flags
depending on which json c library variant is available. Adjust all
users to be able to use either of the two.

Move invocation of dh-autoreconf and dh_autotools-dev above the
copying step for other Pg major versions.
---
 debian/changelog  |   7 ++-
 debian/patches/series |   1 +
 debian/patches/use-json-c | 138 ++
 debian/rules  |   6 +-
 4 files changed, 148 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 047da5f..dfd3476 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,10 @@
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 
-  * Also use dh-autoreconf to update libtool.m4. Closes: #744648.
-  * Update B-D on libjson-c-dev. Closes: #745010.
+  * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
+that and dh_autotools-dev above the copying step.
+  * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
+but actually use the new directory for its include files.
+Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
diff --git a/debian/patches/series b/debian/patches/series
index 6209d3d..1a918b6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -7,3 +7,4 @@ honor-build-flags
 fix-armel
 fix-manpage
 de-translation
+use-json-c
diff --git a/debian/patches/use-json-c b/debian/patches/use-json-c
new file mode 100644
index 000..9b0d213
--- /dev/null
+++ b/debian/patches/use-json-c
@@ -0,0 +1,138 @@
+Description: Adjust to the rename of json to json-c
+ Tweak configure to not only detect json-c, but set different
+ variables in case the new variant is found. Adjust other files to
+ conditionally use the new variant.
+Forwarded: yes
+Bug-Upstream: http://trac.osgeo.org/postgis/ticket/2723
+Author: Markus Wanner mar...@bluegap.ch
+Last-Update: 2013-05-12
+
+--- a/configure.ac
 b/configure.ac
+@@ -113,9 +113,9 @@
+ dnl Check for platform-specific functions
+ dnl
+ AC_CHECK_FUNC(vasprintf, [HAVE_VASPRINTF=1], [HAVE_VASPRINTF=0])
+-AC_DEFINE([HAVE_VASPRINTF])
++AC_DEFINE_UNQUOTED([HAVE_VASPRINTF], [$HAVE_VASPRINTF], [vasprintf function])
+ AC_CHECK_FUNC(asprintf, [HAVE_ASPRINTF=1], [HAVE_ASPRINTF=0])
+-AC_DEFINE([HAVE_ASPRINTF])
++AC_DEFINE_UNQUOTED([HAVE_ASPRINTF], [$HAVE_ASPRINTF], [asprintf function])
+ AC_FUNC_FSEEKO()
+ 
+ dnl 
+@@ -751,6 +751,7 @@
+ 
+ CHECK_JSON=yes
+ HAVE_JSON=no
++HAVE_JSON_C=no
+ 
+ AC_ARG_WITH([json],
+   [AS_HELP_STRING([--without-json], [build without json-c support])],
+@@ -788,14 +789,14 @@
+ dnl Check that we can find the json/json.h header file
+ CPPFLAGS_SAVE=$CPPFLAGS
+ CPPFLAGS=$JSON_CPPFLAGS
+-AC_CHECK_HEADER([json-c/json.h], [HAVE_JSON=yes], [
++AC_CHECK_HEADER([json-c/json.h], [HAVE_JSON_C=yes], [
+   AC_CHECK_HEADER([json/json.h], [HAVE_JSON=yes], [])])   
+ CPPFLAGS=$CPPFLAGS_SAVE
+ 
+ dnl Ensure we can link against libjson
+ LIBS_SAVE=$LIBS
+ LIBS=$JSON_LDFLAGS
+-AC_CHECK_LIB([json-c], [json_object_get], [HAVE_JSON=yes; 
JSON_LDFLAGS=${JSON_LDFLAGS} -ljson-c], [
++AC_CHECK_LIB([json-c], [json_object_get], [HAVE_JSON_C=yes; 
JSON_LDFLAGS=${JSON_LDFLAGS} -ljson-c], [
+   AC_CHECK_LIB([json], [json_object_get], [HAVE_JSON=yes; 
JSON_LDFLAGS=${JSON_LDFLAGS} -ljson], [], [])
+ ], [])
+ LIBS=$LIBS_SAVE
+@@ -804,9 +805,14 @@
+   AC_DEFINE([HAVE_LIBJSON], 1, [Define to 1 if libjson is present])
+ fi
+ 
++if test $HAVE_JSON_C = yes; then
++  AC_DEFINE([HAVE_LIBJSON_C], 1, [Define to 1 if libjson-c is present])
++fi
++
+ AC_SUBST([JSON_CPPFLAGS])
+ AC_SUBST([JSON_LDFLAGS])
+ AC_SUBST([HAVE_JSON])
++AC_SUBST([HAVE_JSON_C])
+ 
+ fi dnl }
+ 
+--- a/liblwgeom/lwin_geojson.c
 b/liblwgeom/lwin_geojson.c
+@@ -15,10 +15,15 @@
+ #include lwgeom_log.h
+ #include ../postgis_config.h
+ 
+-#ifdef HAVE_LIBJSON
++#if defined(HAVE_LIBJSON_C) || defined(HAVE_LIBJSON)
+ 
++#if defined(HAVE_LIBJSON_C)
++#include json-c/json.h
++#include json-c/json_object_private.h
++#else
+ #include json/json.h
+ #include json/json_object_private.h
++#endif
+ #include string.h
+ 
+ static void geojson_lwerror(char *msg, int error_code)
+@@ -491,11 +496,11 @@
+ LWGEOM*
+ lwgeom_from_geojson(const char *geojson, char **srs)
+ {
+-#ifndef HAVE_LIBJSON
++#if !defined(HAVE_LIBJSON_C)  !defined(HAVE_LIBJSON)
+   *srs = NULL;
+   lwerror(You need JSON-C for lwgeom_from_geojson);
+   return NULL;
+-#else /* HAVE_LIBJSON  */
++#else /* HAVE_LIBJSON_C || HAVE_LIBJSON  */
+ 
+ 

[postgis] branch master updated (d3a85ca - fc81ff1)

2014-05-13 Thread Markus Wanner
This is an automated email from the git hooks/post-receive script.

markus_wanner-guest pushed a change to branch master
in repository postgis.

  from  d3a85ca   Finalize 2.1.2+dfsg-3 for upload to unstable.
   new  fc81ff1   Correct json-c usage (still for 2.1.2+dfsg-3)

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog  |   7 ++-
 debian/patches/series |   1 +
 debian/patches/use-json-c | 138 ++
 debian/rules  |   6 +-
 4 files changed, 148 insertions(+), 4 deletions(-)
 create mode 100644 debian/patches/use-json-c

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.git

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


[postgis] 01/01: Fix another spelling mistake in debian/copyright.

2014-05-13 Thread Markus Wanner
This is an automated email from the git hooks/post-receive script.

markus_wanner-guest pushed a commit to branch master
in repository postgis.

commit 9ebda07a6165a2506603a831a9ae1e8b24f93d93
Author: Markus Wanner mar...@bluegap.ch
Date:   Tue May 13 10:26:48 2014 +0200

Fix another spelling mistake in debian/copyright.
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 5b3d043..0f3edb0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -3,7 +3,7 @@ Upstream-Name: PostGIS
 Upstream-Contact: PostGIS Developers postgis-de...@lists.osgeo.org
 Source: http://download.osgeo.org/postgis/source/
 Comment: The OGC test cases are removed because they have unclear licensing,
- the work is probably licesed under the OGC Document Notice which doesn't
+ the work is probably licensed under the OGC Document Notice which doesn't
  permit modification.
 Files-Excluded: extras/ogc_test_suite/*
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.git

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


[postgis] branch master updated (fc81ff1 - 9ebda07)

2014-05-13 Thread Markus Wanner
This is an automated email from the git hooks/post-receive script.

markus_wanner-guest pushed a change to branch master
in repository postgis.

  from  fc81ff1   Correct json-c usage (still for 2.1.2+dfsg-3)
   new  9ebda07   Fix another spelling mistake in debian/copyright.

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.git

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


[postgis] tag debian/postgis-2.1.2+dfsg-3-for-real-now created (now 9ebda07)

2014-05-13 Thread Markus Wanner
This is an automated email from the git hooks/post-receive script.

markus_wanner-guest pushed a change to tag 
debian/postgis-2.1.2+dfsg-3-for-real-now
in repository postgis.

at  9ebda07   (commit)
No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.git

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


Processing of postgis_2.1.2+dfsg-3_amd64.changes

2014-05-13 Thread Debian FTP Masters
postgis_2.1.2+dfsg-3_amd64.changes uploaded successfully to localhost
along with the files:
  postgis_2.1.2+dfsg-3_amd64.deb
  liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
  liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
  postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
  postgis-doc_2.1.2+dfsg-3_all.deb
  libpostgis-java_2.1.2+dfsg-3_all.deb
  postgresql-9.3-postgis-scripts_2.1.2+dfsg-3_all.deb
  postgresql-9.3-postgis-2.1-scripts_2.1.2+dfsg-3_all.deb
  postgis_2.1.2+dfsg-3.dsc
  postgis_2.1.2+dfsg-3.debian.tar.xz

Greetings,

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

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


postgis_2.1.2+dfsg-3_amd64.changes ACCEPTED into unstable

2014-05-13 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 18:53:55 +0200
Source: postgis
Binary: postgis postgis-doc libpostgis-java liblwgeom-2.1.2 liblwgeom-dev 
postgresql-9.3-postgis-2.1 postgresql-9.3-postgis-scripts 
postgresql-9.3-postgis-2.1-scripts
Architecture: source amd64 all
Version: 2.1.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description: 
 liblwgeom-2.1.2 - PostGIS Lightweight Geometry library
 liblwgeom-dev - PostGIS Lightweight Geometry library - Development files
 libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support
 postgis- Geographic objects support for PostgreSQL
 postgis-doc - Geographic objects support for PostgreSQL -- documentation
 postgresql-9.3-postgis-2.1 - Geographic objects support for PostgreSQL 9.3
 postgresql-9.3-postgis-2.1-scripts - PostGIS for PostgreSQL 9.3 -- scripts -- 
dummy package
 postgresql-9.3-postgis-scripts - Geographic objects support for PostgreSQL 9.3 
-- scripts
Closes: 744268 744648 744749 745010 745068 745148 745785 747587
Changes: 
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 .
   * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
 that and dh_autotools-dev above the copying step.
   * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
 but actually use the new directory for its include files.
 Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
   * Add a French translation by Julien Patriarca. Closes: #744749.
   * Add a Polish translation by Michał Kułach. Closes: #745068.
   * Add a Portuguese translation by Américo Monteiro. Closes: #745148.
   * Add a Spanish translation by Matias A. Bellone. Closes: #745785.
   * Add a Italian translation by Beatrice Torracca. Closes: #747587.
Checksums-Sha1: 
 e458ba5bf3ad3656db67a0ad97407dbcac931b34 3946 postgis_2.1.2+dfsg-3.dsc
 f4512e8a061bd44364a964e2f2887115fec54759 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 c0e5e6bbb0f32c01b66ac683caecc75c5123fc5b 496104 postgis_2.1.2+dfsg-3_amd64.deb
 689f9fb1f0137909183ef6d2a88a26611c2a149d 492638 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 5c9445ca03e63127b22b400200f4cdbc265ad148 513392 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 8388c4471708e95f27eff72a37d98f06ee7ab62e 579554 
postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
 31fc835148f93ccab9ab6c376f83f21141019bd8 2978858 
postgis-doc_2.1.2+dfsg-3_all.deb
 2bb2453326513d01e5a3237092319e2b58283a03 418746 
libpostgis-java_2.1.2+dfsg-3_all.deb
 682b093f660601f43d5e8a7f0269a315a3b5d407 715376 
postgresql-9.3-postgis-scripts_2.1.2+dfsg-3_all.deb
 b89e1e22dc3d42d1b5172f4eaa724570957585cf 346570 
postgresql-9.3-postgis-2.1-scripts_2.1.2+dfsg-3_all.deb
Checksums-Sha256: 
 4f143a3b5eed24991c8e6b063102a08b26afe6fbb5540f47e3174fd808cd909f 3946 
postgis_2.1.2+dfsg-3.dsc
 6b2859ce805a5457605d16a7acc56bca10356a3db75a3ba33ad4a712e60de372 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 be7bb3c8de172631c8cb52ceafe0e64df3dac85aab1a08c704be32dc5dc78548 496104 
postgis_2.1.2+dfsg-3_amd64.deb
 3ca06899f89fc278018f1de79ac067922e7f20560b2d337daa1e4a409c5b9bc2 492638 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 46649a49f5c2b1b2d66840796d08ad132628aa1b0c729e6c500a2441879bc411 513392 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 1c5da6c6de07b4197ddb190313aac10fe821959fdce4c82550b128ae2f7e89e6 579554 
postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
 66d512aff82d02862a97f116555f2d81b70d32f34f968ebe574a0888e6ae715c 2978858 
postgis-doc_2.1.2+dfsg-3_all.deb
 819f5939a71fef75fbc64988f1604ff2ab3191a50378e04e58e7255d7e373bc6 418746 
libpostgis-java_2.1.2+dfsg-3_all.deb
 954952ba5661530e2588e58508810bdb54435c6b2b7c2885f36f0d4e3aeb2117 715376 
postgresql-9.3-postgis-scripts_2.1.2+dfsg-3_all.deb
 7407a99f526e106d8b1c76dd117656550265974ac21137b88555a438f0eccb69 346570 
postgresql-9.3-postgis-2.1-scripts_2.1.2+dfsg-3_all.deb
Files: 
 7e3a73f31d885d88f69ec45c6eff7546 496104 misc optional 
postgis_2.1.2+dfsg-3_amd64.deb
 47cb93c86be1e934b38e377bd6cb09fb 492638 libs optional 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 df8221e0092bc79eac6c4842c52dd446 513392 libdevel optional 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 38b1037a2eb11e2d707349f327f7b5bb 579554 misc optional 
postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
 7cd76bb07305154806e02e7ff98100a3 2978858 doc optional 
postgis-doc_2.1.2+dfsg-3_all.deb
 4fc46bfbe102c9476812f9b19423006f 418746 java optional 
libpostgis-java_2.1.2+dfsg-3_all.deb
 a6e680ce871cdd046deed42a4d84c7ac 715376 misc optional 
postgresql-9.3-postgis-scripts_2.1.2+dfsg-3_all.deb
 bb339d313eac4340fa94ab147cda3d25 346570 misc optional 
postgresql-9.3-postgis-2.1-scripts_2.1.2+dfsg-3_all.deb
 e4c8c00216ad2614ffe0b61a88ff914b 3946 misc optional postgis_2.1.2+dfsg-3.dsc
 

Bug#745010: marked as done (src:postgis: please update build-depends from libjson0-dev to libjson-c-dev)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hd...@franck.debian.org
and subject line Bug#745010: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #745010,
regarding src:postgis: please update build-depends from libjson0-dev to 
libjson-c-dev
to be marked as done.

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

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


-- 
745010: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745010
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:postgis
Version: 2.1.2+dfsg-2
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

the json-c upstream has dropped an compatibility layer from libjson0(-dev)
to libjson-c2(-dev) in current upstream release.

Please update your build-depends from libjson0-dev to libjson-c-dev.

This bug severity will be bumped to serious when 0.12 is uploaded to
unstable.

Thank you,
Ondrej

- -- System Information:
Debian Release: 7.4
  APT prefers stable
  APT policy: (900, 'stable'), (800, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJTT6KSAAoJEAyZtw70/LsHxUMQAK1kwY7J5Q0ZGwSbjIW3iMCA
HcBOJd0GeU4XuKG+pBjYV4M+g5vzClNj3tTfBYnpmDKjuRldBwr4oRGATuvzdLvO
vHCEhmXQptEuua76wcn/jFpF3EVj4VxXpoGJz1yZgtHwFSDnOdO55/wHrXzd6mFJ
80mShuc9GhtDFkJUgTKuGgQoOg/qmMVIFBa8eZ6bbyBi1xej7i2mGkgDaq08x14K
D6aj1JCM8O6ixFFA/Njdkcbq5Y77gU//DrawqpdwU91q6WZT8Ur9Etx6rPbHMPvl
6MfN1r2F54cqp/PWkH6EFAZCTwzQu+GNs1jymVyNjIb5GcsfD7CGuVqqo3WdGaep
H+1KL5H89hyOEptYgdveMwkH7GA6t3A8KC+VFSmbxcn5ncx2I5tv/OABmihdL4Yp
bv9zGdFC+eyRZqOriVhcT7wJcK9ZjUqIeT2hliYLRaOg9jC1bmeG1LT/bh/OBAuP
W2ooQWLJsIP2D+rjO4eg/ckp6PKBtzexAkEZ7pjuZO4w21ChAnZ2Yl3XTNgO5Hol
82DO9uVqsenl0Vu+Vt2hDvAEQXXnz57mXpuERrMk+QFsFSKER3DOxdpRCmYgZijA
qQnM10rIYD8oDIVghukTKZDkFJW0sN8nazbIxy2ueuION45lIg8kSLz0D5VDhTKc
HSCbRjGM/rObIWhpwxo0
=q3pX
-END PGP SIGNATURE-
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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 745...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated postgis 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 18:53:55 +0200
Source: postgis
Binary: postgis postgis-doc libpostgis-java liblwgeom-2.1.2 liblwgeom-dev 
postgresql-9.3-postgis-2.1 postgresql-9.3-postgis-scripts 
postgresql-9.3-postgis-2.1-scripts
Architecture: source amd64 all
Version: 2.1.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description: 
 liblwgeom-2.1.2 - PostGIS Lightweight Geometry library
 liblwgeom-dev - PostGIS Lightweight Geometry library - Development files
 libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support
 postgis- Geographic objects support for PostgreSQL
 postgis-doc - Geographic objects support for PostgreSQL -- documentation
 postgresql-9.3-postgis-2.1 - Geographic objects support for PostgreSQL 9.3
 postgresql-9.3-postgis-2.1-scripts - PostGIS for PostgreSQL 9.3 -- scripts -- 
dummy package
 postgresql-9.3-postgis-scripts - Geographic objects support for PostgreSQL 9.3 
-- scripts
Closes: 744268 744648 744749 745010 745068 745148 745785 747587
Changes: 
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 .
   * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
 that and dh_autotools-dev above the copying step.
   * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
 but actually use the new directory for its include files.
 Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
   * Add a French translation by Julien Patriarca. Closes: #744749.
   * Add a Polish 

Bug#745785: marked as done (postgis: [INTL:es] postgis Spanish translation of debconf messages)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hy...@franck.debian.org
and subject line Bug#745785: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #745785,
regarding postgis: [INTL:es] postgis Spanish translation of debconf messages
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.)


-- 
745785: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745785
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: postgis
Severity: wishlist
Tags: l10n patch

Dear Maintainer,

Find attached a compressed file containing postgis debconf messages translated
to Spanish.

Regards,
Toote



-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (x86_64)

Kernel: Linux 3.13-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


postgis-es.tar.gz
Description: application/gzip
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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 745...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated postgis 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 18:53:55 +0200
Source: postgis
Binary: postgis postgis-doc libpostgis-java liblwgeom-2.1.2 liblwgeom-dev 
postgresql-9.3-postgis-2.1 postgresql-9.3-postgis-scripts 
postgresql-9.3-postgis-2.1-scripts
Architecture: source amd64 all
Version: 2.1.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description: 
 liblwgeom-2.1.2 - PostGIS Lightweight Geometry library
 liblwgeom-dev - PostGIS Lightweight Geometry library - Development files
 libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support
 postgis- Geographic objects support for PostgreSQL
 postgis-doc - Geographic objects support for PostgreSQL -- documentation
 postgresql-9.3-postgis-2.1 - Geographic objects support for PostgreSQL 9.3
 postgresql-9.3-postgis-2.1-scripts - PostGIS for PostgreSQL 9.3 -- scripts -- 
dummy package
 postgresql-9.3-postgis-scripts - Geographic objects support for PostgreSQL 9.3 
-- scripts
Closes: 744268 744648 744749 745010 745068 745148 745785 747587
Changes: 
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 .
   * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
 that and dh_autotools-dev above the copying step.
   * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
 but actually use the new directory for its include files.
 Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
   * Add a French translation by Julien Patriarca. Closes: #744749.
   * Add a Polish translation by Michał Kułach. Closes: #745068.
   * Add a Portuguese translation by Américo Monteiro. Closes: #745148.
   * Add a Spanish translation by Matias A. Bellone. Closes: #745785.
   * Add a Italian translation by Beatrice Torracca. Closes: #747587.
Checksums-Sha1: 
 e458ba5bf3ad3656db67a0ad97407dbcac931b34 3946 postgis_2.1.2+dfsg-3.dsc
 f4512e8a061bd44364a964e2f2887115fec54759 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 c0e5e6bbb0f32c01b66ac683caecc75c5123fc5b 496104 postgis_2.1.2+dfsg-3_amd64.deb
 689f9fb1f0137909183ef6d2a88a26611c2a149d 492638 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 5c9445ca03e63127b22b400200f4cdbc265ad148 513392 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 8388c4471708e95f27eff72a37d98f06ee7ab62e 579554 
postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
 31fc835148f93ccab9ab6c376f83f21141019bd8 2978858 
postgis-doc_2.1.2+dfsg-3_all.deb
 2bb2453326513d01e5a3237092319e2b58283a03 418746 
libpostgis-java_2.1.2+dfsg-3_all.deb
 682b093f660601f43d5e8a7f0269a315a3b5d407 715376 

Bug#745148: marked as done (postgis: [INTL:pt] Portuguese translation for debconf messages)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hq...@franck.debian.org
and subject line Bug#745148: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #745148,
regarding postgis: [INTL:pt] Portuguese translation for debconf messages
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.)


-- 
745148: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745148
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: postgis
version: 2.1.2+dfsg-3
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for postgis's debconf messages.
Translator: Américo Monteiro a_monte...@gmx.com
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team traduz at debianpt.org.

-- 
Melhores cumprimentos/Best regards,

Américo Monteiro


postgis_2.1.2+dfsg-3_pt.po.gz
Description: GNU Zip compressed data
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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 745...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated postgis 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 18:53:55 +0200
Source: postgis
Binary: postgis postgis-doc libpostgis-java liblwgeom-2.1.2 liblwgeom-dev 
postgresql-9.3-postgis-2.1 postgresql-9.3-postgis-scripts 
postgresql-9.3-postgis-2.1-scripts
Architecture: source amd64 all
Version: 2.1.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description: 
 liblwgeom-2.1.2 - PostGIS Lightweight Geometry library
 liblwgeom-dev - PostGIS Lightweight Geometry library - Development files
 libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support
 postgis- Geographic objects support for PostgreSQL
 postgis-doc - Geographic objects support for PostgreSQL -- documentation
 postgresql-9.3-postgis-2.1 - Geographic objects support for PostgreSQL 9.3
 postgresql-9.3-postgis-2.1-scripts - PostGIS for PostgreSQL 9.3 -- scripts -- 
dummy package
 postgresql-9.3-postgis-scripts - Geographic objects support for PostgreSQL 9.3 
-- scripts
Closes: 744268 744648 744749 745010 745068 745148 745785 747587
Changes: 
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 .
   * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
 that and dh_autotools-dev above the copying step.
   * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
 but actually use the new directory for its include files.
 Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
   * Add a French translation by Julien Patriarca. Closes: #744749.
   * Add a Polish translation by Michał Kułach. Closes: #745068.
   * Add a Portuguese translation by Américo Monteiro. Closes: #745148.
   * Add a Spanish translation by Matias A. Bellone. Closes: #745785.
   * Add a Italian translation by Beatrice Torracca. Closes: #747587.
Checksums-Sha1: 
 e458ba5bf3ad3656db67a0ad97407dbcac931b34 3946 postgis_2.1.2+dfsg-3.dsc
 f4512e8a061bd44364a964e2f2887115fec54759 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 c0e5e6bbb0f32c01b66ac683caecc75c5123fc5b 496104 postgis_2.1.2+dfsg-3_amd64.deb
 689f9fb1f0137909183ef6d2a88a26611c2a149d 492638 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 5c9445ca03e63127b22b400200f4cdbc265ad148 513392 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 8388c4471708e95f27eff72a37d98f06ee7ab62e 579554 
postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
 31fc835148f93ccab9ab6c376f83f21141019bd8 2978858 
postgis-doc_2.1.2+dfsg-3_all.deb
 2bb2453326513d01e5a3237092319e2b58283a03 418746 
libpostgis-java_2.1.2+dfsg-3_all.deb
 682b093f660601f43d5e8a7f0269a315a3b5d407 715376 
postgresql-9.3-postgis-scripts_2.1.2+dfsg-3_all.deb
 b89e1e22dc3d42d1b5172f4eaa724570957585cf 

Bug#744268: marked as done (postgis: [INTL:ru] Russian debconf templates translation)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hl...@franck.debian.org
and subject line Bug#744268: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #744268,
regarding postgis: [INTL:ru] Russian debconf templates translation
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.)


-- 
744268: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744268
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: postgis
Version: 2.1.2+dfsg-3
Severity: wishlist
Tags: l10n patch

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***

Russian debconf templates translation is attached.

-- System Information:
Debian Release: 7.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
armhf
armel

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


ru.po.gz
Description: GNU Zip compressed data
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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 744...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated postgis 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 18:53:55 +0200
Source: postgis
Binary: postgis postgis-doc libpostgis-java liblwgeom-2.1.2 liblwgeom-dev 
postgresql-9.3-postgis-2.1 postgresql-9.3-postgis-scripts 
postgresql-9.3-postgis-2.1-scripts
Architecture: source amd64 all
Version: 2.1.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description: 
 liblwgeom-2.1.2 - PostGIS Lightweight Geometry library
 liblwgeom-dev - PostGIS Lightweight Geometry library - Development files
 libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support
 postgis- Geographic objects support for PostgreSQL
 postgis-doc - Geographic objects support for PostgreSQL -- documentation
 postgresql-9.3-postgis-2.1 - Geographic objects support for PostgreSQL 9.3
 postgresql-9.3-postgis-2.1-scripts - PostGIS for PostgreSQL 9.3 -- scripts -- 
dummy package
 postgresql-9.3-postgis-scripts - Geographic objects support for PostgreSQL 9.3 
-- scripts
Closes: 744268 744648 744749 745010 745068 745148 745785 747587
Changes: 
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 .
   * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
 that and dh_autotools-dev above the copying step.
   * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
 but actually use the new directory for its include files.
 Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
   * Add a French translation by Julien Patriarca. Closes: #744749.
   * Add a Polish translation by Michał Kułach. Closes: #745068.
   * Add a Portuguese translation by Américo Monteiro. Closes: #745148.
   * Add a Spanish translation by Matias A. Bellone. Closes: #745785.
   * Add a Italian translation by Beatrice Torracca. Closes: #747587.
Checksums-Sha1: 
 e458ba5bf3ad3656db67a0ad97407dbcac931b34 3946 postgis_2.1.2+dfsg-3.dsc
 f4512e8a061bd44364a964e2f2887115fec54759 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 c0e5e6bbb0f32c01b66ac683caecc75c5123fc5b 496104 postgis_2.1.2+dfsg-3_amd64.deb
 689f9fb1f0137909183ef6d2a88a26611c2a149d 492638 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 5c9445ca03e63127b22b400200f4cdbc265ad148 513392 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 8388c4471708e95f27eff72a37d98f06ee7ab62e 579554 

Bug#747587: marked as done (postgis: [INTL:it] Italian translation of debconf messages)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003i4...@franck.debian.org
and subject line Bug#747587: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #747587,
regarding postgis: [INTL:it] Italian translation of debconf messages
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.)


-- 
747587: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=747587
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: postgis
Severity: wishlist
Tags: l10n patch

Hi.

Please find attached the Italian translation of postgis debconf messages
proofread by the Italian localization team.

Please include it in your next upload.

Thanks,
Beatrice
# Italian translation of postgis debconf templates
# Copyright (C) 2014 Markus Wanner mar...@bluegap.ch
# This file is distributed under the same license as the postgis package.
# Beatrice Torracca beatri...@libero.it, 2014.
msgid 
msgstr 
Project-Id-Version: postgis\n
Report-Msgid-Bugs-To: post...@packages.debian.org\n
POT-Creation-Date: 2014-04-07 13:24+0200\n
PO-Revision-Date: 2014-04-09 18:26+0200\n
Last-Translator: Beatrice Torracca beatri...@libero.it\n
Language-Team: Italian debian-l10n-ital...@lists.debian.org\n
Language: it\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
Plural-Forms: nplurals=2; plural=(n != 1);\n
X-Generator: Virtaal 0.7.1\n

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid PostGIS 2.0 has been deprecated - please migrate your databases
msgstr PostGIS 2.0 è ora deprecato; migrare i propri database.

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid 
The package postgresql-@PGVERSION@-postgis-2.0-scripts is installed on this 
system, which means you likely use the PostGIS extension in some databases.
msgstr 
In questo sistema è installato postgresql-@PGVERSION@-postgis-2.0-scripts, 
il che significa che probabilmente si usa l'estensione PostGIS in alcuni 
database.

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid 
Debian is now shipping PostGIS version 2.1 and dropped support for 2.0, 
meaning bug or security fixes will no longer be provided for the older one. 
Thus it is strongly recommended to migrate all databases to PostGIS 2.1 as 
soon as possible.
msgstr 
Debian distribuisce ora la versione 2.1 di PostGIS e ha abbandonato il 
supporto per la 2.0; ciò significa che non verranno più fornite risoluzioni di 
bug o di problemi di sicurezza per la versione vecchia. È perciò caldamente 
raccomandato migrare tutti i database a  PostGIS 2.1 il più presto 
possibile.

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid 
Of course, databases that are already using PostGIS 2.0 will continue to 
work. Note, however, that with this upgrade it's no longer possible to 
create version 2.0 of the extension PostGIS. Instead, 'CREATE EXTENSION 
postgis;' will now give you version 2.1. Note that this also affects backups.
msgstr 
I database che stanno già usando PostGIS 2.0, naturalmente, continueranno a 
funzionare. Si noti, tuttavia, che con questo aggiornamento non è più 
possibile creare la versione 2.0 dell'estensione PostGIS. «CREATE EXTENSION 
postgis;» ora darà invece la versione 2.1. Notare che ciò vale anche per i 
backup.
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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 747...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated postgis 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 

Bug#745068: marked as done ([INTL:pl] Polish debconf translation)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hj...@franck.debian.org
and subject line Bug#745068: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #745068,
regarding [INTL:pl] Polish debconf translation
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.)


-- 
745068: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745068
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: postgis
Severity: wishlist
Tags: l10n patch

Hi!

Please add the attached Polish debconf translation.

Thanks in advance,
--
Michał Kułach

pl.po
Description: Binary data
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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 745...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated postgis 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 18:53:55 +0200
Source: postgis
Binary: postgis postgis-doc libpostgis-java liblwgeom-2.1.2 liblwgeom-dev 
postgresql-9.3-postgis-2.1 postgresql-9.3-postgis-scripts 
postgresql-9.3-postgis-2.1-scripts
Architecture: source amd64 all
Version: 2.1.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-devel@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description: 
 liblwgeom-2.1.2 - PostGIS Lightweight Geometry library
 liblwgeom-dev - PostGIS Lightweight Geometry library - Development files
 libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support
 postgis- Geographic objects support for PostgreSQL
 postgis-doc - Geographic objects support for PostgreSQL -- documentation
 postgresql-9.3-postgis-2.1 - Geographic objects support for PostgreSQL 9.3
 postgresql-9.3-postgis-2.1-scripts - PostGIS for PostgreSQL 9.3 -- scripts -- 
dummy package
 postgresql-9.3-postgis-scripts - Geographic objects support for PostgreSQL 9.3 
-- scripts
Closes: 744268 744648 744749 745010 745068 745148 745785 747587
Changes: 
 postgis (2.1.2+dfsg-3) unstable; urgency=low
 .
   * Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
 that and dh_autotools-dev above the copying step.
   * Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
 but actually use the new directory for its include files.
 Closes: #745010.
   * Allow translations of the debconf notice for postgis-2.0 deprecation.
   * Add a German translation.
   * Add a Russian translation by Yuri Kozlov. Closes: #744268.
   * Add a French translation by Julien Patriarca. Closes: #744749.
   * Add a Polish translation by Michał Kułach. Closes: #745068.
   * Add a Portuguese translation by Américo Monteiro. Closes: #745148.
   * Add a Spanish translation by Matias A. Bellone. Closes: #745785.
   * Add a Italian translation by Beatrice Torracca. Closes: #747587.
Checksums-Sha1: 
 e458ba5bf3ad3656db67a0ad97407dbcac931b34 3946 postgis_2.1.2+dfsg-3.dsc
 f4512e8a061bd44364a964e2f2887115fec54759 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 c0e5e6bbb0f32c01b66ac683caecc75c5123fc5b 496104 postgis_2.1.2+dfsg-3_amd64.deb
 689f9fb1f0137909183ef6d2a88a26611c2a149d 492638 
liblwgeom-2.1.2_2.1.2+dfsg-3_amd64.deb
 5c9445ca03e63127b22b400200f4cdbc265ad148 513392 
liblwgeom-dev_2.1.2+dfsg-3_amd64.deb
 8388c4471708e95f27eff72a37d98f06ee7ab62e 579554 
postgresql-9.3-postgis-2.1_2.1.2+dfsg-3_amd64.deb
 31fc835148f93ccab9ab6c376f83f21141019bd8 2978858 
postgis-doc_2.1.2+dfsg-3_all.deb
 2bb2453326513d01e5a3237092319e2b58283a03 418746 
libpostgis-java_2.1.2+dfsg-3_all.deb
 682b093f660601f43d5e8a7f0269a315a3b5d407 715376 
postgresql-9.3-postgis-scripts_2.1.2+dfsg-3_all.deb
 b89e1e22dc3d42d1b5172f4eaa724570957585cf 346570 
postgresql-9.3-postgis-2.1-scripts_2.1.2+dfsg-3_all.deb
Checksums-Sha256: 
 4f143a3b5eed24991c8e6b063102a08b26afe6fbb5540f47e3174fd808cd909f 3946 
postgis_2.1.2+dfsg-3.dsc
 6b2859ce805a5457605d16a7acc56bca10356a3db75a3ba33ad4a712e60de372 53076 
postgis_2.1.2+dfsg-3.debian.tar.xz
 

Bug#744648: marked as done (postgis: run dh-autoreconf to update config.{sub,guess})

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hr...@franck.debian.org
and subject line Bug#744648: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #744648,
regarding postgis: run dh-autoreconf to update config.{sub,guess}
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.)


-- 
744648: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744648
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:postgis
Version: 2.1.1-5
User: debian-de...@lists.debian.org
Usertags: autoreconf

The package fails to build on ppc64el (powerpc64le-linux-gnu), because
the config.{guess,sub} files are out of date, and are not updated during
the build.  If possible, please do not update these files directly,
but build-depend on autotools-dev instead, and use the tools provided
by autotools-dev to update these files.

  - For dh, call dh --with autoreconf.

  - For cdbs based build systems, include
/usr/share/cdbs/1/rules/autoreconf.mk

  - For other rules files, call dh_autoreconf before calling
configure (in the build or configure target), and call
dh_autoreconf_clean before dh_clean in the clean target.

For combining autoreconf and autotools_dev, see bug #698765.

After the build on any architecture, and before a clean, a grep for
powerpc64le in the configure, aclocal.m4 and/or libtool.m4 file(s)
should print some lines. It is not enough to just update the
config.guess and config.sub files.

The full build log can be found at:
http://people.debian.org/~doko/logs/ppc64el-20140414/buildlog_ubuntu-trusty-ppc64el.postgis_2.1.1-5_FAILEDTOBUILD.txt
The last lines of the build log are at the end of this report.

Please note that these builds were done in an Ubuntu development,
environment there may be a few false positives in these bug reports.

See https://wiki.debian.org/qa.debian.org/FTBFS for a guide how to
address these.

[...]
for OLD_VERSION in 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.0rc1 2.1.0rc2 2.1.0rc3 
2.1.0; do \
  cat ../postgis_extension_helper.sql 
sql_bits/remove_from_extension.sql.in sql/topology_upgrade_minor.sql 
sql_bits/mark_editable_objects.sql.in sql_bits/topology_comments.sql 
../postgis_extension_helper_uninstall.sql  
sql/postgis_topology--$OLD_VERSION--2.1.1.sql; \
done
/bin/mkdir -p 
'/build/buildd/postgis-2.1.1/debian/tmp/usr/share/postgresql/9.3/extension'
/bin/mkdir -p 
'/build/buildd/postgis-2.1.1/debian/tmp/usr/share/postgresql/9.3/extension'
/usr/bin/install -c -m 644 postgis_topology.control 
'/build/buildd/postgis-2.1.1/debian/tmp/usr/share/postgresql/9.3/extension/'
/usr/bin/install -c -m 644 sql/postgis_topology--2.0.0--2.1.1.sql 
sql/postgis_topology--2.0.1--2.1.1.sql sql/postgis_topology--2.0.2--2.1.1.sql 
sql/postgis_topology--2.0.3--2.1.1.sql sql/postgis_topology--2.0.4--2.1.1.sql 
sql/postgis_topology--2.1.0--2.1.1.sql 
sql/postgis_topology--2.1.0rc1--2.1.1.sql 
sql/postgis_topology--2.1.0rc2--2.1.1.sql 
sql/postgis_topology--2.1.0rc3--2.1.1.sql 
sql/postgis_topology--2.1.1--2.1.1next.sql sql/postgis_topology--2.1.1.sql 
sql/postgis_topology--2.1.1next--2.1.1.sql 
sql/postgis_topology--unpackaged--2.1.1.sql 
'/build/buildd/postgis-2.1.1/debian/tmp/usr/share/postgresql/9.3/extension/'
make[3]: Leaving directory 
`/build/buildd/postgis-2.1.1/extensions/postgis_topology'
make[2]: Leaving directory `/build/buildd/postgis-2.1.1/extensions'
make[1]: Leaving directory `/build/buildd/postgis-2.1.1'
(set -e; \
for PGVER in ; do \
/usr/bin/make -C 
/build/buildd/postgis-2.1.1/debian/build-$PGVER \
install DESTDIR=/build/buildd/postgis-2.1.1/debian/tmp; 
\
done)
/usr/bin/make -C doc man-install \
DESTDIR=/build/buildd/postgis-2.1.1/debian/tmp \
PGSQL_DOCDIR=/usr/share/doc \
PGSQL_MANDIR=/usr/share/man
make[1]: Entering directory `/build/buildd/postgis-2.1.1/doc'
mkdir -p /build/buildd/postgis-2.1.1/debian/tmp/usr/share/man/man1
/usr/bin/install -c -m 644 man/pgsql2shp.1 
/build/buildd/postgis-2.1.1/debian/tmp/usr/share/man/man1/pgsql2shp.1
/usr/bin/install -c -m 644 man/shp2pgsql.1 
/build/buildd/postgis-2.1.1/debian/tmp/usr/share/man/man1/shp2pgsql.1
make[1]: Leaving directory `/build/buildd/postgis-2.1.1/doc'
(set -e; \
for PGVER in  9.3; do \
cat 
/build/buildd/postgis-2.1.1/debian/postgresql-generic-postgis-2.1.install.in \
| sed -e s/@PGVERSION@/$PGVER/ \
 

Bug#744749: marked as done (postgis: French debconf templates translation)

2014-05-13 Thread Debian Bug Tracking System
Your message dated Tue, 13 May 2014 10:39:06 +
with message-id e1wka70-0003hx...@franck.debian.org
and subject line Bug#744749: fixed in postgis 2.1.2+dfsg-3
has caused the Debian Bug report #744749,
regarding postgis: French debconf templates translation
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.)


-- 
744749: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744749
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: postgis
Version: N/A
Severity: wishlist
Tags: patch l10n

*** /home/julien/traductions/po-debconf/patch-translate.txt


Please find attached the french debconf templates translation, proofread by the
debian-l10n-french mailing list contributors.

This file should be put as debian/po/fr.po in your package build tree.



-- System Information:
Debian Release: 7.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.10-0.bpo.3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# Translation to french of postgis debconf templates
# Copyright (C) 2014 Debian French l10n team debian-l10n-fre...@lists.debian.org
# This file is distributed under the same license as the postgis package.
# Julien Patriarca leatherf...@debian.org, 2014.
#
msgid 
msgstr 
Project-Id-Version: postgis\n
Report-Msgid-Bugs-To: post...@packages.debian.org\n
POT-Creation-Date: 2014-04-07 13:24+0200\n
PO-Revision-Date: 2014-04-09 12:25+0100\n
Last-Translator: Julien Patriarca leatherf...@debian.org\n
Language-Team: FRENCH debian-l10n-fre...@lists.debian.org\n
Language: fr\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid PostGIS 2.0 has been deprecated - please migrate your databases
msgstr PostGIS 2.0 obsolète - migration nécessaire des bases de données

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid 
The package postgresql-@PGVERSION@-postgis-2.0-scripts is installed on this 
system, which means you likely use the PostGIS extension in some databases.
msgstr 
Le paquet postgresql-@PGVERSION@-postgis-2.0-scripts est installé sur ce 
système, ce qui signifie qu'il est probable que vous utilisiez l'extension 
PostGIS dans certaines bases de données.

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid 
Debian is now shipping PostGIS version 2.1 and dropped support for 2.0, 
meaning bug or security fixes will no longer be provided for the older one. 
Thus it is strongly recommended to migrate all databases to PostGIS 2.1 as 
soon as possible.
msgstr 
Debian fournit désormais PostGIS version 2.1 et la version 2.0 n'est plus gérée. 
En conséquence, les bogues ne seront plus corrigés et les mises à jour de sécurité ne seront 
plus fournies pour cette version 2.0. Il est donc fortement recommandé de migrer 
toutes les bases de données vers PostGIS 2.1 dès que possible.

#. Type: note
#. Description
#. Translators, note that @PGVERSION@ will automatically get replaced.
#: ../postgresql-generic-postgis-2.0-scripts.templates:1001
msgid 
Of course, databases that are already using PostGIS 2.0 will continue to 
work. Note, however, that with this upgrade it's no longer possible to 
create version 2.0 of the extension PostGIS. Instead, 'CREATE EXTENSION 
postgis;' will now give you version 2.1. Note that this also affects backups.
msgstr 
Bien entendu, les bases de données utilisant déjà PostGIS 2.0 continueront 
de fonctionner. Cependant, veuillez noter qu'avec cette mise à jour il n'est 
désormais plus possible de créer une extension PostGIS version 2.0. À la 
place « CREATE EXTENSION postgis; » produira une version 2.1. Veuillez noter 
que cela impacte également les sauvegardes.
---End Message---
---BeginMessage---
Source: postgis
Source-Version: 2.1.2+dfsg-3

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

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

Thank you 

[osm-gps-map] 04/153: Added symbols file

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 04e35bf22c21f11da3c2a2a137345a0ec4186371
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 14:06:31 2009 +0100

Added symbols file
---
 debian/libosmgpsmap0.symbols | 25 +
 1 file changed, 25 insertions(+)

diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap0.symbols
new file mode 100644
index 000..6f19d66
--- /dev/null
+++ b/debian/libosmgpsmap0.symbols
@@ -0,0 +1,25 @@
+libosmgpsmap.so.0 libosmgpsmap0 0.3-1
+ deg2rad@Base 0.3
+ lat2pixel@Base 0.3
+ lon2pixel@Base 0.3
+ osm_gps_map_add_image@Base 0.3
+ osm_gps_map_add_track@Base 0.3
+ osm_gps_map_clear_gps@Base 0.3
+ osm_gps_map_clear_images@Base 0.3
+ osm_gps_map_clear_tracks@Base 0.3
+ osm_gps_map_download_maps@Base 0.3
+ osm_gps_map_draw_gps@Base 0.3
+ osm_gps_map_geographic_to_screen@Base 0.3
+ osm_gps_map_get_bbox@Base 0.3
+ osm_gps_map_get_co_ordinates@Base 0.3
+ osm_gps_map_get_type@Base 0.3
+ osm_gps_map_new@Base 0.3
+ osm_gps_map_osd_speed@Base 0.3
+ osm_gps_map_screen_to_geographic@Base 0.3
+ osm_gps_map_scroll@Base 0.3
+ osm_gps_map_set_center@Base 0.3
+ osm_gps_map_set_mapcenter@Base 0.3
+ osm_gps_map_set_zoom@Base 0.3
+ pixel2lat@Base 0.3
+ pixel2lon@Base 0.3
+ rad2deg@Base 0.3

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 06/153: Put docs in appropriate packages

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit ec57155e63feebaf5ed2430ddf1b48154a1aa15c
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 14:11:37 2009 +0100

Put docs in appropriate packages
---
 debian/docs  | 3 ---
 debian/libosmgpsmap0.docs| 2 ++
 debian/python-osmgpsmap.docs | 1 +
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/debian/docs b/debian/docs
deleted file mode 100644
index a6f961a..000
--- a/debian/docs
+++ /dev/null
@@ -1,3 +0,0 @@
-NEWS
-README
-TODO.tasks
diff --git a/debian/libosmgpsmap0.docs b/debian/libosmgpsmap0.docs
new file mode 100644
index 000..6f12db5
--- /dev/null
+++ b/debian/libosmgpsmap0.docs
@@ -0,0 +1,2 @@
+AUTHORS
+README
diff --git a/debian/python-osmgpsmap.docs b/debian/python-osmgpsmap.docs
new file mode 100644
index 000..e252c7f
--- /dev/null
+++ b/debian/python-osmgpsmap.docs
@@ -0,0 +1 @@
+python/AUTHORS

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] branch master created (now 1d29e12)

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to branch master
in repository osm-gps-map.

at  1d29e12   Add library dependency for gir package

This branch includes the following new commits:

   new  53f4134   Imported Upstream version 0.3
   new  58b7c3d   First debianization
   new  d128499   Fixed debian/copyright
   new  04e35bf   Added symbols file
   new  5ea11c3   Added DEP-3 headers
   new  ec57155   Put docs in appropriate packages
   new  5203f49   Using 3.0 quilt format
   new  1bab5f0   Fix symbols file
   new  68a54bd   Correctly link the python binding to our library
   new  120e6be   Remove useless commented line in patch :)
   new  210b1e5   Added examples
   new  1866082   Don't restrict installation of 2.5-only files
   new  65006f1   Releasing to sid
   new  4794b49   Remove usage of quilt
   new  ab30c14   debian/control: added Vcs-* fields
   new  996704e   Imported Upstream version 0.4
   new  4cb40ae   Merge commit 'upstream/0.4'
   new  1cb6f3c   New upstream release
   new  d81c1d9   Fix debian/rules to build with multiple python versions
   new  68c47a8   debian/patches/01-fix_configure.ac_version.patch removed, 
fixed upstream.
   new  11b2b4d   debian/python-osmgpsmap.examples updated
   new  c644d79   debian/libosmgpsmap0.symbols updated with new symbols 
from 0.4
   new  ca24085   debian/control: added Build-Depends on python-all-dev
   new  da695af   Releasing to sid
   new  7315258   debian/patches/01-fix_shared_library_linking.patch added, 
adds libraries to the linker
   new  3cc03f8   debian/patches/: 03-add_missing_include.patch, 
glib/gstdio.h was missing (Closes: #564907)
   new  a86f1f3   04-tidy_code.patch added, fixing some minor issues 
causing compiler warnings
   new  0477bfc   debian/changelog reformatted a bit
   new  2de6a6e   Imported Upstream version 0.5
   new  7e315c5   Merge commit 'upstream/0.5'
   new  b98864f   New upstream release
   new  5a3d653   01-fix_shared_library_linking.patch removed, fixed 
upstream
   new  8509b66   02-fix_python_library_linking.patch removed, fixed 
upstream
   new  77f89d9   03-add_missing_include.patch removed, merged upstream
   new  049ec4e   04-tidy_code.patch removed, fixed upstream
   new  6475c71   debian/python-osmgpsmap.examples updated
   new  94126c2   debian/rules: don't remove COPYING on clean
   new  4b70b36   debian/libosmgpsmap0.symbols updated
   new  5f6e4f9   Releasing to sid
   new  a8858ed   Imported Upstream version 0.6.0
   new  56ae13b   Merge commit 'upstream/0.6.0'
   new  8132963   New upstream version
   new  fcbce16   debian/copyright: upstream changed licensing to GPL-2 
(only, not any later) -- file updated
   new  781f050   debian/libosmgpsmap0.examples moved to 
libosmgpsmap-dev.examples: install examples in the -dev package, not with the 
shared library.
   new  53ae6cd   debian/control: bump Standards-Version to 3.8.4, no 
changes needed
   new  7431737   debian/libosmgpsmap0.symbols: new symbols added
   new  e723153   libosmgpsmap0-dbg and python-osmgpsmap-dbg packages added
   new  ef2a87a   Releasing to sid
   new  a9010f5   Imported Upstream version 0.7.0
   new  17f9589   Merge commit 'upstream/0.7.0'
   new  2213ddc   New upstream version
   new  0208e59   debian/patches/00-fix_python-COPYING added, makes COPYING 
a real file instead of a symlink.
   new  4430fed   debian/control: added gnome-common build-dependency
   new  e9a9a00   debian/rules: don't delete version.xml.in on clean
   new  482de76   added gtk-doc-tools build-dependency
   new  8d4213f   remove docs/reference/version.xml and gkt-doc.make on 
clean
   new  49aa0e9   Refresh patch
   new  6d13ca5   bump python-gobject-dev build-dependency to = 2.16.0
   new  30bfeba   debian/patches/01-fix_python_linking.patch added, fixes 
FTBFS because of wrong linking of local library
   new  33b37c5   debian/libosmgpsmap-dev.examples refreshed, added new 
example files
   new  23bdbc3   debian/python-osmgpsmap.examples refreshed, added new 
example files
   new  7ec0535   debian/libosmgpsmap2.symbols refreshed with new symbols
   new  bcc00b5   SONAME bump: libosmgpsmap0 → libosmgpsmap2
   new  ab8a857   Complete SONAME transition
   new  bfa6764   Releasing to sid
   new  9e41807   Imported Upstream version 0.7.1
   new  ca32b10   Merge commit 'upstream/0.7.1'
   new  f31cdc2   New upstream version
   new  bf237c2   debian/patches/00-fix_python-COPYING.patch removed, 
COPYING file is now installed upstream
   new  1c30553   debian/patches/01-fix_python_linking.patch refreshed
   new  7498168   Releasing to sid
   new  a692c3e   Imported Upstream version 0.7.2
   new  17185f9   Merge 

[osm-gps-map] 08/153: Fix symbols file

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 1bab5f0c535a5199f559f7843d17a1e433b3f7a2
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 17:36:38 2009 +0100

Fix symbols file
---
 debian/libosmgpsmap0.symbols | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap0.symbols
index 6f19d66..0a3d904 100644
--- a/debian/libosmgpsmap0.symbols
+++ b/debian/libosmgpsmap0.symbols
@@ -1,4 +1,5 @@
-libosmgpsmap.so.0 libosmgpsmap0 0.3-1
+libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
+* Build-Depends-Package: libosmgpsmap-dev
  deg2rad@Base 0.3
  lat2pixel@Base 0.3
  lon2pixel@Base 0.3

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 02/153: First debianization

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 58b7c3d0e9084d818b8b9e96b54403d26b67127a
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 12:34:17 2009 +0100

First debianization
---
 debian/README.source   | 14 +
 debian/changelog   |  5 ++
 debian/compat  |  1 +
 debian/control | 60 ++
 debian/copyright   | 50 ++
 debian/docs|  3 ++
 debian/libosmgpsmap-dev.install|  5 ++
 debian/libosmgpsmap0.install   |  1 +
 debian/patches/01-fix_configure.ac_version.patch   | 12 +
 debian/patches/02-fix_python_library_linking.patch | 16 ++
 debian/patches/series  |  2 +
 debian/python-osmgpsmap.install|  2 +
 debian/rules   | 38 ++
 debian/watch   |  2 +
 14 files changed, 211 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 000..2f19500
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,14 @@
+osm-gps-map for Debian
+--
+
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.  Please see:
+
+/usr/share/doc/quilt/README.source
+
+for more information on how to apply the patches, modify patches, or
+remove a patch.
+
+
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 000..503bec1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+osm-gps-map (0.3-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #516620)
+
+ -- David Paleino da...@debian.org  Sun, 13 Dec 2009 08:44:20 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 000..f703400
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,60 @@
+Source: osm-gps-map
+Section: libs
+Priority: optional
+Maintainer: David Paleino da...@debian.org
+Build-Depends: quilt (= 0.46-7~),
+ debhelper (= 7.0.50~),
+ libtool,
+ automake,
+ autoconf,
+ libgtk2.0-dev,
+ libglib2.0-dev (= 2.18),
+ libsoup2.4-dev,
+ python-gobject-dev,
+ python-gtk2-dev (= 2.10.0),
+ libcairo2-dev (= 1.8),
+ python-support (= 0.90.0)
+XS-Python-Version: = 2.5
+Standards-Version: 3.8.3
+Homepage: http://nzjrs.github.com/osm-gps-map/
+
+Package: libosmgpsmap-dev
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ libosmgpsmap0 (= ${binary:Version})
+Description: GTK+ library to embed OpenStreetMap maps - development files
+ libosmgpsmap is a library to embed maps in applications that when given GPS 
+ co-ordinates, draws a GPS track, and points of interest on a moving map 
+ display. Downloads map data from a number of websites, including 
+ openstreetmap.org, openaerialmap.org and others.
+ .
+ These are the development files for libosmgpsmap0, needed only if you're 
+ writing or compiling an application which will use it.
+
+Package: libosmgpsmap0
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends}
+Description: GTK+ library to embed OpenStreetMap maps
+ libosmgpsmap is a library to embed maps in applications that when given GPS 
+ co-ordinates, draws a GPS track, and points of interest on a moving map 
+ display. Downloads map data from a number of websites, including 
+ openstreetmap.org, openaerialmap.org and others.
+
+Package: python-osmgpsmap
+Section: python
+Architecture: any
+Depends: ${misc:Depends},
+ ${shlibs:Depends},
+ ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Provides: ${python:Provides}
+Description: GTK+ library to embed OpenStreetMap maps - Python bindings
+ libosmgpsmap is a library to embed maps in applications that when given GPS 
+ co-ordinates, draws a GPS track, and points of interest on a moving map 
+ display. Downloads map data from a number of websites, including 
+ openstreetmap.org, openaerialmap.org and others.
+ .
+ This package provides the Python bindings for the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 000..244dced
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,50 @@
+This work was packaged for Debian by:
+
+David Paleino da...@debian.org on Sun, 13 Dec 2009 08:44:20 +0100
+
+It was downloaded from:
+
+url://example.com
+
+Upstream Author(s):
+
+put author's name and email here
+likewise for another author
+
+Copyright:
+
+Copyright (C)  Firstname Lastname
+likewise for another author
+
+License:
+
+   

[osm-gps-map] 05/153: Added DEP-3 headers

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 5ea11c3d560dd5bd457a660f26c293601d0c1067
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 14:07:38 2009 +0100

Added DEP-3 headers
---
 debian/patches/01-fix_configure.ac_version.patch   | 4 
 debian/patches/02-fix_python_library_linking.patch | 4 
 2 files changed, 8 insertions(+)

diff --git a/debian/patches/01-fix_configure.ac_version.patch 
b/debian/patches/01-fix_configure.ac_version.patch
index f4cb479..83624fc 100644
--- a/debian/patches/01-fix_configure.ac_version.patch
+++ b/debian/patches/01-fix_configure.ac_version.patch
@@ -1,3 +1,7 @@
+From: David Paleino da...@debian.org
+Subject: fix wrong package version in configure.ac
+Forwarded: no
+
 ---
  configure.ac |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/patches/02-fix_python_library_linking.patch 
b/debian/patches/02-fix_python_library_linking.patch
index 31e22f9..e3069e4 100644
--- a/debian/patches/02-fix_python_library_linking.patch
+++ b/debian/patches/02-fix_python_library_linking.patch
@@ -1,3 +1,7 @@
+From: David Paleino da...@debian.org
+Subject: use the local dynamic library instead of the static one
+Forwarded: no
+
 ---
  python/configure.ac |3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 03/153: Fixed debian/copyright

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit d1284993f574e670fb7516f09926c6dde4a9be21
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 12:45:01 2009 +0100

Fixed debian/copyright
---
 debian/copyright | 96 +++-
 1 file changed, 46 insertions(+), 50 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 244dced..09b9480 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,50 +1,46 @@
-This work was packaged for Debian by:
-
-David Paleino da...@debian.org on Sun, 13 Dec 2009 08:44:20 +0100
-
-It was downloaded from:
-
-url://example.com
-
-Upstream Author(s):
-
-put author's name and email here
-likewise for another author
-
-Copyright:
-
-Copyright (C)  Firstname Lastname
-likewise for another author
-
-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 3 of the License, or
-(at your option) any later version.
-
-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 program.  If not, see http://www.gnu.org/licenses/.
-
-On Debian systems, the complete text of the GNU General
-Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.
-
-The Debian packaging is:
-
-Copyright (C) 2009 David Paleino da...@debian.org
-
-# Please chose a license for your packaging work. If the program you package
-# uses a mainstream license, using the same license is the safest choice.
-# Please avoid to pick license terms that are more restrictive than the
-# packaged work, as it may make Debian's contributions unacceptable upstream.
-# If you just want it to be GPL version 3, leave the following line in.
-
-and is licensed under the GPL version 3, see above.
-
-# Please also look if there are files or directories which have a
-# different copyright/license attached and list them here.
+Format-Specification: http://dep.debian.net/deps/dep5
+
+Files: debian/*
+Copyright: © 2009, David Paleino da...@debian.org
+License: GPL-3+
+
+Files: src/converter.c
+Copyright: © 2008, Marcus Bauer marcus.ba...@gmail.com
+ © 2008, John Stowers john.stow...@gmail.com
+License: GPL-3+
+
+Files: src/converter.h
+ src/osm-gps-map.{c,h}
+ src/osm-gps-map-types.h
+Copyright: © 2008, Marcus Bauer marcus.ba...@gmail.com
+ © 2009, John Stowers john.stow...@gmail.com
+ © 2009, Everaldo Canuto everaldo.can...@gmail.com
+License: GPL-3+
+
+Files: src/main.c
+ python/*
+Copyright: © 2008, John Stowers john.stow...@gmail.com
+License: GPL-3+
+
+Files: *
+Copyright: © 2008, Marcus Bauer marcus.ba...@gmail.com
+ © 2009, John Stowers john.stow...@gmail.com
+ © 2009, Everaldo Canuto everaldo.can...@gmail.com
+License: GPL-3+
+
+License: GPL-3+
+ 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 3 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, see http://www.gnu.org/licenses/.
+X-Comment: on Debian GNU systems, the complete text of the GNU General
+ Public License v3 can be found in `/usr/share/common-licenses/GPL-3',
+ while the latest one can be found in `/usr/share/common-licenses/GPL'.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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

[osm-gps-map] 09/153: Correctly link the python binding to our library

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 68a54bd20a8c73df5a6816e302da8727eea0659b
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 17:36:47 2009 +0100

Correctly link the python binding to our library
---
 debian/patches/02-fix_python_library_linking.patch | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/debian/patches/02-fix_python_library_linking.patch 
b/debian/patches/02-fix_python_library_linking.patch
index e3069e4..006dcde 100644
--- a/debian/patches/02-fix_python_library_linking.patch
+++ b/debian/patches/02-fix_python_library_linking.patch
@@ -3,18 +3,20 @@ Subject: use the local dynamic library instead of the static 
one
 Forwarded: no
 
 ---
- python/configure.ac |3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
+ python/configure.ac |5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
 
 --- osm-gps-map.orig/python/configure.ac
 +++ osm-gps-map/python/configure.ac
-@@ -50,7 +50,8 @@ if test -f ../src/libosmgpsmap.la; then
+@@ -49,8 +49,9 @@ if test -f ../src/libosmgpsmap.la; then
+   PKG_CHECK_MODULES(OSMGPSMAP, [gtk+-2.0 libsoup-2.4])
  
#and we must link to the static lib
-   OSMGPSMAP_CFLAGS=$OSMGPSMAP_CFLAGS -I../src
+-  OSMGPSMAP_CFLAGS=$OSMGPSMAP_CFLAGS -I../src
 -  OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS ../src/libosmgpsmap.la
++  OSMGPSMAP_CFLAGS=$OSMGPSMAP_CFLAGS -I../src/
 +# OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS ../src/libosmgpsmap.la
-+  OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS ../src/.libs/libosmgpsmap.so
++  OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS -L../src/.libs/ -losmgpsmap
  else
PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap)
  fi

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 14/153: Remove usage of quilt

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 4794b49f37074198b8800d8435a142aa464f3c47
Author: David Paleino da...@debian.org
Date:   Fri Dec 18 23:32:38 2009 +0100

Remove usage of quilt
---
 debian/control | 3 +--
 debian/rules   | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index f703400..354c30c 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,7 @@ Source: osm-gps-map
 Section: libs
 Priority: optional
 Maintainer: David Paleino da...@debian.org
-Build-Depends: quilt (= 0.46-7~),
- debhelper (= 7.0.50~),
+Build-Depends: debhelper (= 7.0.50~),
  libtool,
  automake,
  autoconf,
diff --git a/debian/rules b/debian/rules
index 654e86b..af9517d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,4 +35,4 @@ override_dh_auto_clean:
src/openstreetmap-gps-map stamp-h1
 
 %:
-   dh --with quilt $@
+   dh $@

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 15/153: debian/control: added Vcs-* fields

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit ab30c142678b5230f85e35a7322c6a137d335957
Author: David Paleino da...@debian.org
Date:   Fri Dec 18 23:55:23 2009 +0100

debian/control: added Vcs-* fields
---
 debian/changelog | 6 ++
 debian/control   | 2 ++
 2 files changed, 8 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index bb307a0..c117d96 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.3-2) unstable; urgency=low
+
+  * debian/control: added Vcs-* fields
+
+ -- David Paleino da...@debian.org  Fri, 18 Dec 2009 23:54:34 +0100
+
 osm-gps-map (0.3-1) unstable; urgency=low
 
   * Initial release (Closes: #516620)
diff --git a/debian/control b/debian/control
index 354c30c..34f6068 100644
--- a/debian/control
+++ b/debian/control
@@ -16,6 +16,8 @@ Build-Depends: debhelper (= 7.0.50~),
 XS-Python-Version: = 2.5
 Standards-Version: 3.8.3
 Homepage: http://nzjrs.github.com/osm-gps-map/
+Vcs-Git: git://git.debian.org/collab-maint/osm-gps-map.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/osm-gps-map.git
 
 Package: libosmgpsmap-dev
 Section: libdevel

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 11/153: Added examples

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 210b1e5bee6758ffd1abf9f78966f12e7d618365
Author: David Paleino da...@debian.org
Date:   Fri Dec 18 22:20:30 2009 +0100

Added examples
---
 debian/libosmgpsmap0.examples| 1 +
 debian/python-osmgpsmap.examples | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/libosmgpsmap0.examples b/debian/libosmgpsmap0.examples
new file mode 100644
index 000..e723152
--- /dev/null
+++ b/debian/libosmgpsmap0.examples
@@ -0,0 +1 @@
+src/main.c
diff --git a/debian/python-osmgpsmap.examples b/debian/python-osmgpsmap.examples
new file mode 100644
index 000..d78bbf2
--- /dev/null
+++ b/debian/python-osmgpsmap.examples
@@ -0,0 +1 @@
+python/test.sh

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 12/153: Don't restrict installation of 2.5-only files

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 1866082975b1b13a37c435f88eced27a1a62a4ee
Author: David Paleino da...@debian.org
Date:   Fri Dec 18 23:17:16 2009 +0100

Don't restrict installation of 2.5-only files
---
 debian/python-osmgpsmap.install | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/python-osmgpsmap.install b/debian/python-osmgpsmap.install
index 1c3627a..c3ab27c 100644
--- a/debian/python-osmgpsmap.install
+++ b/debian/python-osmgpsmap.install
@@ -1,2 +1,2 @@
 usr/share/pygtk
-usr/lib/python2.5
+usr/lib/python*

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 10/153: Remove useless commented line in patch :)

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 120e6bee639b351399ebebde08a7e73eb01d293a
Author: David Paleino da...@debian.org
Date:   Sun Dec 13 17:45:41 2009 +0100

Remove useless commented line in patch :)
---
 debian/patches/02-fix_python_library_linking.patch | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/debian/patches/02-fix_python_library_linking.patch 
b/debian/patches/02-fix_python_library_linking.patch
index 006dcde..af90ce0 100644
--- a/debian/patches/02-fix_python_library_linking.patch
+++ b/debian/patches/02-fix_python_library_linking.patch
@@ -3,19 +3,18 @@ Subject: use the local dynamic library instead of the static 
one
 Forwarded: no
 
 ---
- python/configure.ac |5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
+ python/configure.ac |4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- osm-gps-map.orig/python/configure.ac
 +++ osm-gps-map/python/configure.ac
-@@ -49,8 +49,9 @@ if test -f ../src/libosmgpsmap.la; then
+@@ -49,8 +49,8 @@ if test -f ../src/libosmgpsmap.la; then
PKG_CHECK_MODULES(OSMGPSMAP, [gtk+-2.0 libsoup-2.4])
  
#and we must link to the static lib
 -  OSMGPSMAP_CFLAGS=$OSMGPSMAP_CFLAGS -I../src
 -  OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS ../src/libosmgpsmap.la
 +  OSMGPSMAP_CFLAGS=$OSMGPSMAP_CFLAGS -I../src/
-+# OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS ../src/libosmgpsmap.la
 +  OSMGPSMAP_LIBS=$OSMGPSMAP_LIBS -L../src/.libs/ -losmgpsmap
  else
PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 13/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 65006f181815cfc29c12981192c0a4ea1378e6fb
Author: David Paleino da...@debian.org
Date:   Fri Dec 18 23:24:50 2009 +0100

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 503bec1..bb307a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-osm-gps-map (0.3-1) UNRELEASED; urgency=low
+osm-gps-map (0.3-1) unstable; urgency=low
 
   * Initial release (Closes: #516620)
 
- -- David Paleino da...@debian.org  Sun, 13 Dec 2009 08:44:20 +0100
+ -- David Paleino da...@debian.org  Fri, 18 Dec 2009 23:24:45 +0100

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 17/153: Merge commit 'upstream/0.4'

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 4cb40ae7ab1ab34bb30d195d6f8f39df7fd3ae42
Merge: ab30c14 996704e
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 22:06:47 2010 +0100

Merge commit 'upstream/0.4'

 .gitignore  |   2 +
 ChangeLog   |  18 --
 Makefile.am |  24 ++-
 NEWS|  27 +++
 TODO.tasks  |   6 -
 configure.ac|   4 +-
 openstreetmap-gps-map.anjuta|  44 -
 python/configure.ac |   2 +-
 python/openstreetmap-gps-map.py | 174 +
 python/osmgpsmap.defs   |  83 +++-
 python/osmgpsmapmodule.c|  24 +--
 python/test.sh  |  23 ---
 src/main.c  | 147 --
 src/osm-gps-map-types.h |   5 +
 src/osm-gps-map.c   | 424 
 src/osm-gps-map.h   |  42 ++--
 16 files changed, 768 insertions(+), 281 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 16/153: Imported Upstream version 0.4

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 996704e4a82e22fd3452ad524ea1eb17d4c3dfbb
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 22:06:45 2010 +0100

Imported Upstream version 0.4
---
 .gitignore  |   2 +
 ChangeLog   |  18 --
 Makefile.am |  24 ++-
 NEWS|  27 +++
 TODO.tasks  |   6 -
 configure.ac|   4 +-
 openstreetmap-gps-map.anjuta|  44 -
 python/configure.ac |   2 +-
 python/openstreetmap-gps-map.py | 174 +
 python/osmgpsmap.defs   |  83 +++-
 python/osmgpsmapmodule.c|  24 +--
 python/test.sh  |  23 ---
 src/main.c  | 147 --
 src/osm-gps-map-types.h |   5 +
 src/osm-gps-map.c   | 424 
 src/osm-gps-map.h   |  42 ++--
 16 files changed, 768 insertions(+), 281 deletions(-)

diff --git a/.gitignore b/.gitignore
index fb87dc4..6527261 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,5 @@ python/osmgpsmap.c
 src/Makefile
 src/openstreetmap-gps-map
 stamp-h1
+ChangeLog
+COPYING
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index c9b8f0e..000
--- a/ChangeLog
+++ /dev/null
@@ -1,18 +0,0 @@
-2007-12-28  Johannes Schmid,,,  jhs@idefix
-
-   reviewed by: delete if not using a buddy
-
-   * project.anjuta:
-
-2007-12-23  Johannes Schmid,,,  jhs@idefix
-
-   reviewed by: delete if not using a buddy
-
-   * src/Makefile.am.tpl:
-
-2007-12-23  Johannes Schmid,,,  jhs@idefix
-
-   reviewed by: delete if not using a buddy
-
-   * src/Makefile.am.tpl:
-
diff --git a/Makefile.am b/Makefile.am
index ebe57ee..f5b08f0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,13 +26,35 @@ EXTRA_DIST = $(openstreetmap_gps_mapdoc_DATA)   \
python/aclocal.m4   \
python/configure\
python/osmgpsmapmodule.c\
-   python/test.sh  \
+   python/openstreetmap-gps-map.py \
python/AUTHORS  \
python/configure.ac \
python/osmgpsmap.override   \
python/NEWS \
python/README
 
+# ChangeLog generation from nautils
+distclean-local:
+   if test $(srcdir) = .; then :; else \
+   rm -f ChangeLog; \
+   fi
+
+ChangeLog:
+   @echo Creating $@
+   @if test -d $(srcdir)/.git; then \
+ (GIT_DIR=$(top_srcdir)/.git ./missing --run git log 0.3.. --stat -M 
-C --name-status  --date=short --no-color) | fmt --split-only  $@.tmp \
+  mv -f $@.tmp $@ \
+ || ($(RM) $@.tmp; \
+ echo Failed to generate ChangeLog, your ChangeLog may be outdated 
2; \
+ (test -f $@ || echo git-log is required to generate this file  
$@)); \
+   else \
+ test -f $@ || \
+ (echo A git checkout and git-log is required to generate ChangeLog 
2  \
+ echo A git checkout and git-log is required to generate this file  
$@); \
+   fi
+
 release:
scp @PACKAGE@-@vers...@.tar.gz 
j...@open.grcnz.com:/srv/default/downloads/osm-gps-map/
 
+.PHONY: ChangeLog
+
diff --git a/NEWS b/NEWS
index e69de29..aac5f58 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,27 @@
+Changes in 0.4.0
+  * Map can now be constructed by passing a MAP_SOURCE ID instead of
+the map repo uri
+  * Fix iter safety when purging the tile cache
+  * Fix for segfault when adding images to the map
+  * Remove map repo uris from public API. They should now be retrieved using
+osm_gps_map_source_get_repo_uri(OsmGpsMapSource_t source)
+  * Add osm_gps_map_get_scale
+  * Implement a blank map source that just draws grey tiles
+  * Demo application now stores maps in XDG_CACHE_DIR
+  * Fix build and crashes on windows
+  * Add getters for name and zoom
+  * Add a more complete python example
+  * Add ability to purge the cache
+
+Changes in 0.3.0
+==
+  * A new major contributor, Alberto Mardegan, 
+worked on many of the new features of this release. Thanks a lot Alberto!
+  * Draw map tracks with Cairo by default.
+  * Interpolate between zoom levels while waiting for a tile to download.
+  * Stop using GET_PRIVATE, and cache priv* for performance.
+  * Keep an extra border of images offscreen for smoother scrolling at 
+the edges of the map.
+  * Keep the last N tiles in memory to improve render performance
+(previously they were loaded from disk)
+  * Add some new api; osm_gps_set_center, osm_gps_map_scroll.
diff --git a/TODO.tasks b/TODO.tasks
deleted file mode 100644
index d1fa282..000
--- a/TODO.tasks
+++ /dev/null
@@ -1,6 +0,0 @@
-?xml 

[osm-gps-map] 24/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit da695afbe610c2cf65008a5e3d60062b155d1802
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 23:53:01 2010 +0100

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4afd9be..cb8b570 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.4-1) UNRELEASED; urgency=low
+osm-gps-map (0.4-1) unstable; urgency=low
 
   * New upstream release
   * Fix debian/rules to build with multiple python versions
@@ -8,7 +8,7 @@ osm-gps-map (0.4-1) UNRELEASED; urgency=low
   * debian/libosmgpsmap0.symbols updated with new symbols from 0.4
   * debian/control: added Build-Depends on python-all-dev
 
- -- David Paleino da...@debian.org  Fri, 08 Jan 2010 23:21:02 +0100
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 23:52:57 +0100
 
 osm-gps-map (0.3-2) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 21/153: debian/python-osmgpsmap.examples updated

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 11b2b4de5dc0adaf543a9af661351cb890be69fa
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 22:29:23 2010 +0100

debian/python-osmgpsmap.examples updated
---
 debian/changelog | 3 ++-
 debian/python-osmgpsmap.examples | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ec7bee9..a357319 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,9 @@ osm-gps-map (0.4-1) UNRELEASED; urgency=low
   * Fix debian/rules to build with multiple python versions
   * debian/patches/01-fix_configure.ac_version.patch removed,
 fixed upstream.
+  * debian/python-osmgpsmap.examples updated
 
- -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:16:03 +0100
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:29:13 +0100
 
 osm-gps-map (0.3-2) unstable; urgency=low
 
diff --git a/debian/python-osmgpsmap.examples b/debian/python-osmgpsmap.examples
index d78bbf2..043f4a1 100644
--- a/debian/python-osmgpsmap.examples
+++ b/debian/python-osmgpsmap.examples
@@ -1 +1 @@
-python/test.sh
+python/openstreetmap-gps-map.py

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 23/153: debian/control: added Build-Depends on python-all-dev

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit ca240855eac743d2cb5513b6b64e28eaa942bf31
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 23:21:18 2010 +0100

debian/control: added Build-Depends on python-all-dev
---
 debian/changelog | 3 ++-
 debian/control   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 05df970..4afd9be 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,8 +6,9 @@ osm-gps-map (0.4-1) UNRELEASED; urgency=low
 fixed upstream.
   * debian/python-osmgpsmap.examples updated
   * debian/libosmgpsmap0.symbols updated with new symbols from 0.4
+  * debian/control: added Build-Depends on python-all-dev
 
- -- David Paleino da...@debian.org  Fri, 08 Jan 2010 23:16:35 +0100
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 23:21:02 +0100
 
 osm-gps-map (0.3-2) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 34f6068..8cf0ca7 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,8 @@ Build-Depends: debhelper (= 7.0.50~),
  python-gobject-dev,
  python-gtk2-dev (= 2.10.0),
  libcairo2-dev (= 1.8),
- python-support (= 0.90.0)
+ python-support (= 0.90.0),
+ python-all-dev
 XS-Python-Version: = 2.5
 Standards-Version: 3.8.3
 Homepage: http://nzjrs.github.com/osm-gps-map/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 18/153: New upstream release

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 1cb6f3cdd8d84fdee248b0f61f2ad60fb931106b
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 22:07:18 2010 +0100

New upstream release
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index c117d96..44c222b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.4-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:06:59 +0100
+
 osm-gps-map (0.3-2) unstable; urgency=low
 
   * debian/control: added Vcs-* fields

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 20/153: debian/patches/01-fix_configure.ac_version.patch removed, fixed upstream.

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 68c47a87209ee9dfb35c6eb44c7acc447a960cc0
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 22:16:23 2010 +0100

debian/patches/01-fix_configure.ac_version.patch removed, fixed upstream.
---
 debian/changelog |  4 +++-
 debian/patches/01-fix_configure.ac_version.patch | 16 
 debian/patches/series|  1 -
 3 files changed, 3 insertions(+), 18 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 785033e..ec7bee9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,10 @@ osm-gps-map (0.4-1) UNRELEASED; urgency=low
 
   * New upstream release
   * Fix debian/rules to build with multiple python versions
+  * debian/patches/01-fix_configure.ac_version.patch removed,
+fixed upstream.
 
- -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:07:55 +0100
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:16:03 +0100
 
 osm-gps-map (0.3-2) unstable; urgency=low
 
diff --git a/debian/patches/01-fix_configure.ac_version.patch 
b/debian/patches/01-fix_configure.ac_version.patch
deleted file mode 100644
index 83624fc..000
--- a/debian/patches/01-fix_configure.ac_version.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-From: David Paleino da...@debian.org
-Subject: fix wrong package version in configure.ac
-Forwarded: no
-

- configure.ac |2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
 osm-gps-map.orig/configure.ac
-+++ osm-gps-map/configure.ac
-@@ -1,4 +1,4 @@
--AC_INIT(osm-gps-map, 0.2)
-+AC_INIT(osm-gps-map, 0.3)
- AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
- 
- AC_CONFIG_SRCDIR(osmgpsmap.pc.in)
diff --git a/debian/patches/series b/debian/patches/series
index b7bf1ee..4b0a709 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
-01-fix_configure.ac_version.patch
 02-fix_python_library_linking.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 22/153: debian/libosmgpsmap0.symbols updated with new symbols from 0.4

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit c644d7944028f3f23def5814d461015ec82847a1
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 23:17:00 2010 +0100

debian/libosmgpsmap0.symbols updated with new symbols from 0.4
---
 debian/changelog | 3 ++-
 debian/libosmgpsmap0.symbols | 8 
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index a357319..05df970 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,9 @@ osm-gps-map (0.4-1) UNRELEASED; urgency=low
   * debian/patches/01-fix_configure.ac_version.patch removed,
 fixed upstream.
   * debian/python-osmgpsmap.examples updated
+  * debian/libosmgpsmap0.symbols updated with new symbols from 0.4
 
- -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:29:13 +0100
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 23:16:35 +0100
 
 osm-gps-map (0.3-2) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap0.symbols
index 0a3d904..9d6c28c 100644
--- a/debian/libosmgpsmap0.symbols
+++ b/debian/libosmgpsmap0.symbols
@@ -13,14 +13,22 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  osm_gps_map_geographic_to_screen@Base 0.3
  osm_gps_map_get_bbox@Base 0.3
  osm_gps_map_get_co_ordinates@Base 0.3
+ osm_gps_map_get_default_cache_directory@Base 0.4
+ osm_gps_map_get_scale@Base 0.4
  osm_gps_map_get_type@Base 0.3
  osm_gps_map_new@Base 0.3
  osm_gps_map_osd_speed@Base 0.3
+ osm_gps_map_remove_image@Base 0.4
  osm_gps_map_screen_to_geographic@Base 0.3
  osm_gps_map_scroll@Base 0.3
  osm_gps_map_set_center@Base 0.3
  osm_gps_map_set_mapcenter@Base 0.3
  osm_gps_map_set_zoom@Base 0.3
+ osm_gps_map_source_get_friendly_name@Base 0.4
+ osm_gps_map_source_get_image_format@Base 0.4
+ osm_gps_map_source_get_max_zoom@Base 0.4
+ osm_gps_map_source_get_min_zoom@Base 0.4
+ osm_gps_map_source_get_repo_uri@Base 0.4
  pixel2lat@Base 0.3
  pixel2lon@Base 0.3
  rad2deg@Base 0.3

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 19/153: Fix debian/rules to build with multiple python versions

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit d81c1d92e8ada9683cf437d191574d5e0a095712
Author: David Paleino da...@debian.org
Date:   Fri Jan 8 22:08:58 2010 +0100

Fix debian/rules to build with multiple python versions
---
 debian/changelog |  3 ++-
 debian/rules | 12 ++--
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 44c222b..785033e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 osm-gps-map (0.4-1) UNRELEASED; urgency=low
 
   * New upstream release
+  * Fix debian/rules to build with multiple python versions
 
- -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:06:59 +0100
+ -- David Paleino da...@debian.org  Fri, 08 Jan 2010 22:07:55 +0100
 
 osm-gps-map (0.3-2) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index af9517d..3868f24 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,15 +8,15 @@
 override_dh_auto_configure:
NOCONFIGURE=y ./autogen.sh
dh_auto_configure -- --enable-maintainer-mode
-   dh_auto_build
-
-override_dh_auto_build:
-   dh_auto_configure -Dpython/
-   dh_auto_build -Dpython/
 
 override_dh_auto_install:
+   for py in $(shell pyversions -r); do \
+   PYTHON=$$py dh_auto_configure -Dpython/; \
+   dh_auto_build -Dpython/; \
+   dh_auto_install -Dpython/; \
+   dh_auto_clean -Dpython/; \
+   done
dh_auto_install
-   dh_auto_install -Dpython
 
 override_dh_auto_clean:
dh_auto_clean

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 26/153: debian/patches/: 03-add_missing_include.patch, glib/gstdio.h was missing (Closes: #564907)

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 3cc03f85c04c7146e6f0c20de777ce9ba3a13cc5
Author: David Paleino da...@debian.org
Date:   Sun Jan 17 22:11:49 2010 +0100

debian/patches/: 03-add_missing_include.patch, glib/gstdio.h was missing 
(Closes: #564907)
---
 debian/changelog|  8 +---
 debian/patches/03-add_missing_include.patch | 18 ++
 debian/patches/series   |  1 +
 3 files changed, 24 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index bb172f8..201af3d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,11 @@
 osm-gps-map (0.4-2) UNRELEASED; urgency=low
 
-  * debian/patches/01-fix_shared_library_linking.patch added,
-adds libraries to the linker
+  * debian/patches/:
+- 01-fix_shared_library_linking.patch added, adds libraries to the linker
+- 03-add_missing_include.patch, glib/gstdio.h was missing
+  (Closes: #564907)
 
- -- David Paleino da...@debian.org  Thu, 14 Jan 2010 22:37:11 +0100
+ -- David Paleino da...@debian.org  Sun, 17 Jan 2010 22:10:38 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 
diff --git a/debian/patches/03-add_missing_include.patch 
b/debian/patches/03-add_missing_include.patch
new file mode 100644
index 000..52bbe33
--- /dev/null
+++ b/debian/patches/03-add_missing_include.patch
@@ -0,0 +1,18 @@
+From: David Paleino da...@debian.org
+Subject: add missing #include, which caused a missing prototype
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=564907
+
+---
+ src/osm-gps-map.c |1 +
+ 1 file changed, 1 insertion(+)
+
+--- osm-gps-map.orig/src/osm-gps-map.c
 osm-gps-map/src/osm-gps-map.c
+@@ -34,6 +34,7 @@
+ #include gdk/gdk.h
+ #include glib.h
+ #include glib/gprintf.h
++#include glib/gstdio.h
+ #include libsoup/soup.h
+ 
+ #include converter.h
diff --git a/debian/patches/series b/debian/patches/series
index eaaea61..e72a04a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 01-fix_shared_library_linking.patch
 02-fix_python_library_linking.patch
+03-add_missing_include.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 25/153: debian/patches/01-fix_shared_library_linking.patch added, adds libraries to the linker

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 731525802b2fbe9ae3072ad695a849cb9d529ffd
Author: David Paleino da...@debian.org
Date:   Thu Jan 14 22:38:28 2010 +0100

debian/patches/01-fix_shared_library_linking.patch added, adds libraries to 
the linker
---
 debian/changelog   |  7 +++
 debian/patches/01-fix_shared_library_linking.patch | 20 
 debian/patches/series  |  1 +
 3 files changed, 28 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index cb8b570..bb172f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+osm-gps-map (0.4-2) UNRELEASED; urgency=low
+
+  * debian/patches/01-fix_shared_library_linking.patch added,
+adds libraries to the linker
+
+ -- David Paleino da...@debian.org  Thu, 14 Jan 2010 22:37:11 +0100
+
 osm-gps-map (0.4-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/patches/01-fix_shared_library_linking.patch 
b/debian/patches/01-fix_shared_library_linking.patch
new file mode 100644
index 000..938900c
--- /dev/null
+++ b/debian/patches/01-fix_shared_library_linking.patch
@@ -0,0 +1,20 @@
+From: David Paleino da...@debian.org
+Subject: adds needed libraries to the linking
+Forwarded: no
+
+---
+ src/Makefile.am |3 +++
+ 1 file changed, 3 insertions(+)
+
+--- osm-gps-map.orig/src/Makefile.am
 osm-gps-map/src/Makefile.am
+@@ -34,6 +34,9 @@ libosmgpsmap_la_SOURCES = \
+ libosmgpsmap_la_CFLAGS = \
+   -DG_LOG_DOMAIN=\OsmGpsMap\
+ 
++libosmgpsmap_la_LDFLAGS = \
++  -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -lsoup-2.4 -lglib-2.0
++
+ libosmgpsmapincdir = $(includedir)/osmgpsmap
+ libosmgpsmapinc_HEADERS = \
+   osm-gps-map.h
diff --git a/debian/patches/series b/debian/patches/series
index 4b0a709..eaaea61 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
+01-fix_shared_library_linking.patch
 02-fix_python_library_linking.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 28/153: debian/changelog reformatted a bit

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 0477bfc6dfdf0f56ed18548898402fe7a5366a95
Author: David Paleino da...@debian.org
Date:   Sun Jan 17 22:13:28 2010 +0100

debian/changelog reformatted a bit
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9b6e2bd..5f719b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 osm-gps-map (0.4-2) UNRELEASED; urgency=low
 
   * debian/patches/:
-- 01-fix_shared_library_linking.patch added, adds libraries to the linker
-- 03-add_missing_include.patch, glib/gstdio.h was missing
+- 01-fix_shared_library_linking.patch added, adds libraries to
+  the linker.
+- 03-add_missing_include.patch added, glib/gstdio.h was missing
   (Closes: #564907)
 - 04-tidy_code.patch added, fixing some minor issues causing
   compiler warnings

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 27/153: 04-tidy_code.patch added, fixing some minor issues causing compiler warnings

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit a86f1f32f9d16e5f050dbfec306d79e2271e23d3
Author: David Paleino da...@debian.org
Date:   Sun Jan 17 22:13:09 2010 +0100

04-tidy_code.patch added, fixing some minor issues causing compiler warnings
---
 debian/changelog  |  4 ++-
 debian/patches/04-tidy_code.patch | 57 +++
 debian/patches/series |  1 +
 3 files changed, 61 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 201af3d..9b6e2bd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,10 @@ osm-gps-map (0.4-2) UNRELEASED; urgency=low
 - 01-fix_shared_library_linking.patch added, adds libraries to the linker
 - 03-add_missing_include.patch, glib/gstdio.h was missing
   (Closes: #564907)
+- 04-tidy_code.patch added, fixing some minor issues causing
+  compiler warnings
 
- -- David Paleino da...@debian.org  Sun, 17 Jan 2010 22:10:38 +0100
+ -- David Paleino da...@debian.org  Sun, 17 Jan 2010 22:12:46 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 
diff --git a/debian/patches/04-tidy_code.patch 
b/debian/patches/04-tidy_code.patch
new file mode 100644
index 000..d78ece6
--- /dev/null
+++ b/debian/patches/04-tidy_code.patch
@@ -0,0 +1,57 @@
+From: David Paleino da...@debian.org
+Subject: fix minor issues in the code, causing some compiler warnings
+Forwarded: no
+
+---
+ src/osm-gps-map.c |   11 +--
+ 1 file changed, 5 insertions(+), 6 deletions(-)
+
+--- osm-gps-map.orig/src/osm-gps-map.c
 osm-gps-map/src/osm-gps-map.c
+@@ -350,7 +350,7 @@ replace_map_uri(OsmGpsMap *map, const gc
+ url = g_strdup(uri);
+ while (i  URI_FLAG_END)
+ {
+-char *s;
++char *s = NULL;
+ char *old;
+ 
+ old = url;
+@@ -402,9 +402,6 @@ replace_map_uri(OsmGpsMap *map, const gc
+ url = replace_string(url, URI_MARKER_R, s);
+ //g_debug(FOUND  URI_MARKER_R);
+ break;
+-default:
+-s = NULL;
+-break;
+ }
+ 
+ if (s) {
+@@ -588,7 +585,9 @@ osm_gps_map_draw_gps_point (OsmGpsMap *m
+ int x, y;
+ int r = priv-ui_gps_point_inner_radius;
+ int r2 = priv-ui_gps_point_outer_radius;
++#ifndef USE_CAIRO
+ int lw = priv-ui_gps_track_width;
++#endif
+ int mr = MAX(r,r2);
+ 
+ map_x0 = priv-map_x - EXTRA_BORDER;
+@@ -1267,7 +1266,7 @@ osm_gps_map_constructor (GType gtype, gu
+ GObject *object;
+ OsmGpsMapPrivate *priv;
+ OsmGpsMap *map;
+-const char *uri, *name;
++const char *uri;
+ 
+ //Always chain up to the parent constructor
+ object = G_OBJECT_CLASS(osm_gps_map_parent_class)-constructor(gtype, 
n_properties, properties);
+@@ -2194,7 +2193,7 @@ int 
+ osm_gps_map_set_zoom (OsmGpsMap *map, int zoom)
+ {
+ int zoom_old;
+-double factor;
++double factor = 1.0;
+ int width_center, height_center;
+ OsmGpsMapPrivate *priv;
+ 
diff --git a/debian/patches/series b/debian/patches/series
index e72a04a..aeb781a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
 01-fix_shared_library_linking.patch
 02-fix_python_library_linking.patch
 03-add_missing_include.patch
+04-tidy_code.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 30/153: Merge commit 'upstream/0.5'

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 7e315c56f3f16a46ad94e5b3095daadaf0c2e319
Merge: 0477bfc 2de6a6e
Author: David Paleino da...@debian.org
Date:   Fri Jan 22 17:28:12 2010 +0100

Merge commit 'upstream/0.5'

 .gitignore|   5 +-
 COPYING   | 674 +++
 Makefile.am   |  12 +-
 NEWS  |  19 +
 README|   8 +-
 configure.ac  |  42 +-
 python/Makefile.am|   9 +-
 python/configure.ac   |  10 +-
 python/{openstreetmap-gps-map.py = mapviewer.py} |  41 +-
 python/osmgpsmap.defs | 118 ++-
 python/osmgpsmapmodule.c  |   7 +
 python/setup.py   |   4 +-
 src/Makefile.am   |  22 +-
 src/main.c|  48 +-
 src/osm-gps-map-types.h   |   5 +
 src/osm-gps-map.c | 970 +-
 src/osm-gps-map.h |  90 +-
 17 files changed, 1560 insertions(+), 524 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 32/153: 01-fix_shared_library_linking.patch removed, fixed upstream

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 5a3d6533f1731f499d789835cabe5e400abfb29e
Author: David Paleino da...@debian.org
Date:   Fri Jan 22 17:48:05 2010 +0100

01-fix_shared_library_linking.patch removed, fixed upstream
---
 debian/changelog   |  2 --
 debian/patches/01-fix_shared_library_linking.patch | 20 
 debian/patches/series  |  1 -
 3 files changed, 23 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a772cb3..6f64f97 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,6 @@ osm-gps-map (0.5-1) UNRELEASED; urgency=low
 
   * New upstream release
   * debian/patches/:
-- 01-fix_shared_library_linking.patch added, adds libraries to
-  the linker.
 - 03-add_missing_include.patch added, glib/gstdio.h was missing
   (Closes: #564907)
 - 04-tidy_code.patch added, fixing some minor issues causing
diff --git a/debian/patches/01-fix_shared_library_linking.patch 
b/debian/patches/01-fix_shared_library_linking.patch
deleted file mode 100644
index 938900c..000
--- a/debian/patches/01-fix_shared_library_linking.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From: David Paleino da...@debian.org
-Subject: adds needed libraries to the linking
-Forwarded: no
-

- src/Makefile.am |3 +++
- 1 file changed, 3 insertions(+)
-
 osm-gps-map.orig/src/Makefile.am
-+++ osm-gps-map/src/Makefile.am
-@@ -34,6 +34,9 @@ libosmgpsmap_la_SOURCES = \
- libosmgpsmap_la_CFLAGS = \
-   -DG_LOG_DOMAIN=\OsmGpsMap\
- 
-+libosmgpsmap_la_LDFLAGS = \
-+  -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -lsoup-2.4 -lglib-2.0
-+
- libosmgpsmapincdir = $(includedir)/osmgpsmap
- libosmgpsmapinc_HEADERS = \
-   osm-gps-map.h
diff --git a/debian/patches/series b/debian/patches/series
index aeb781a..5d3190c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
-01-fix_shared_library_linking.patch
 02-fix_python_library_linking.patch
 03-add_missing_include.patch
 04-tidy_code.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 31/153: New upstream release

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit b98864f18a7f87c893c670c7c5184191b5f15104
Author: David Paleino da...@debian.org
Date:   Fri Jan 22 17:29:37 2010 +0100

New upstream release
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5f719b5..a772cb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-osm-gps-map (0.4-2) UNRELEASED; urgency=low
+osm-gps-map (0.5-1) UNRELEASED; urgency=low
 
+  * New upstream release
   * debian/patches/:
 - 01-fix_shared_library_linking.patch added, adds libraries to
   the linker.
@@ -8,7 +9,7 @@ osm-gps-map (0.4-2) UNRELEASED; urgency=low
 - 04-tidy_code.patch added, fixing some minor issues causing
   compiler warnings
 
- -- David Paleino da...@debian.org  Sun, 17 Jan 2010 22:12:46 +0100
+ -- David Paleino da...@debian.org  Fri, 22 Jan 2010 17:28:25 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 35/153: 04-tidy_code.patch removed, fixed upstream

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 049ec4eb022cefc3a82a3b3b4857e7bb20dd47d7
Author: David Paleino da...@debian.org
Date:   Fri Jan 22 17:52:34 2010 +0100

04-tidy_code.patch removed, fixed upstream
---
 debian/changelog  |  2 --
 debian/patches/04-tidy_code.patch | 57 ---
 debian/patches/series |  1 -
 3 files changed, 60 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 08426b0..481859b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,6 @@ osm-gps-map (0.5-1) UNRELEASED; urgency=low
 - fixed missing #include in src/osm-gps-map.c (Closes: #564907)
   * debian/patches/:
 - 02-fix_python_library_linking.patch removed, fixed upstream
-- 04-tidy_code.patch added, fixing some minor issues causing
-  compiler warnings
 
  -- David Paleino da...@debian.org  Fri, 22 Jan 2010 17:49:43 +0100
 
diff --git a/debian/patches/04-tidy_code.patch 
b/debian/patches/04-tidy_code.patch
deleted file mode 100644
index d78ece6..000
--- a/debian/patches/04-tidy_code.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From: David Paleino da...@debian.org
-Subject: fix minor issues in the code, causing some compiler warnings
-Forwarded: no
-

- src/osm-gps-map.c |   11 +--
- 1 file changed, 5 insertions(+), 6 deletions(-)
-
 osm-gps-map.orig/src/osm-gps-map.c
-+++ osm-gps-map/src/osm-gps-map.c
-@@ -350,7 +350,7 @@ replace_map_uri(OsmGpsMap *map, const gc
- url = g_strdup(uri);
- while (i  URI_FLAG_END)
- {
--char *s;
-+char *s = NULL;
- char *old;
- 
- old = url;
-@@ -402,9 +402,6 @@ replace_map_uri(OsmGpsMap *map, const gc
- url = replace_string(url, URI_MARKER_R, s);
- //g_debug(FOUND  URI_MARKER_R);
- break;
--default:
--s = NULL;
--break;
- }
- 
- if (s) {
-@@ -588,7 +585,9 @@ osm_gps_map_draw_gps_point (OsmGpsMap *m
- int x, y;
- int r = priv-ui_gps_point_inner_radius;
- int r2 = priv-ui_gps_point_outer_radius;
-+#ifndef USE_CAIRO
- int lw = priv-ui_gps_track_width;
-+#endif
- int mr = MAX(r,r2);
- 
- map_x0 = priv-map_x - EXTRA_BORDER;
-@@ -1267,7 +1266,7 @@ osm_gps_map_constructor (GType gtype, gu
- GObject *object;
- OsmGpsMapPrivate *priv;
- OsmGpsMap *map;
--const char *uri, *name;
-+const char *uri;
- 
- //Always chain up to the parent constructor
- object = G_OBJECT_CLASS(osm_gps_map_parent_class)-constructor(gtype, 
n_properties, properties);
-@@ -2194,7 +2193,7 @@ int 
- osm_gps_map_set_zoom (OsmGpsMap *map, int zoom)
- {
- int zoom_old;
--double factor;
-+double factor = 1.0;
- int width_center, height_center;
- OsmGpsMapPrivate *priv;
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 67b0538..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-04-tidy_code.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 34/153: 03-add_missing_include.patch removed, merged upstream

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 77f89d92a550aa0cafc9f55af9673bd59be4b196
Author: David Paleino da...@debian.org
Date:   Fri Jan 22 17:50:33 2010 +0100

03-add_missing_include.patch removed, merged upstream
---
 debian/changelog|  5 ++---
 debian/patches/03-add_missing_include.patch | 18 --
 debian/patches/series   |  1 -
 3 files changed, 2 insertions(+), 22 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 401d534..08426b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,14 +1,13 @@
 osm-gps-map (0.5-1) UNRELEASED; urgency=low
 
   * New upstream release
+- fixed missing #include in src/osm-gps-map.c (Closes: #564907)
   * debian/patches/:
 - 02-fix_python_library_linking.patch removed, fixed upstream
-- 03-add_missing_include.patch added, glib/gstdio.h was missing
-  (Closes: #564907)
 - 04-tidy_code.patch added, fixing some minor issues causing
   compiler warnings
 
- -- David Paleino da...@debian.org  Fri, 22 Jan 2010 17:28:25 +0100
+ -- David Paleino da...@debian.org  Fri, 22 Jan 2010 17:49:43 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 
diff --git a/debian/patches/03-add_missing_include.patch 
b/debian/patches/03-add_missing_include.patch
deleted file mode 100644
index 52bbe33..000
--- a/debian/patches/03-add_missing_include.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-From: David Paleino da...@debian.org
-Subject: add missing #include, which caused a missing prototype
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=564907
-

- src/osm-gps-map.c |1 +
- 1 file changed, 1 insertion(+)
-
 osm-gps-map.orig/src/osm-gps-map.c
-+++ osm-gps-map/src/osm-gps-map.c
-@@ -34,6 +34,7 @@
- #include gdk/gdk.h
- #include glib.h
- #include glib/gprintf.h
-+#include glib/gstdio.h
- #include libsoup/soup.h
- 
- #include converter.h
diff --git a/debian/patches/series b/debian/patches/series
index fe262d6..67b0538 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
-03-add_missing_include.patch
 04-tidy_code.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 38/153: debian/libosmgpsmap0.symbols updated

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 4b70b36d4e50ef0d0e2ab461a2f0ea090fa8bcbb
Author: David Paleino da...@debian.org
Date:   Sat Jan 23 17:44:36 2010 +0100

debian/libosmgpsmap0.symbols updated
---
 debian/changelog | 3 ++-
 debian/libosmgpsmap0.symbols | 5 -
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9238e64..d5d640a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,8 +6,9 @@ osm-gps-map (0.5-1) UNRELEASED; urgency=low
 - 02-fix_python_library_linking.patch removed, fixed upstream
   * debian/python-osmgpsmap.examples updated
   * debian/rules: don't remove COPYING on clean
+  * debian/libosmgpsmap0.symbols updated
 
- -- David Paleino da...@debian.org  Sat, 23 Jan 2010 17:44:09 +0100
+ -- David Paleino da...@debian.org  Sat, 23 Jan 2010 18:01:06 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap0.symbols
index 9d6c28c..bfdd14c 100644
--- a/debian/libosmgpsmap0.symbols
+++ b/debian/libosmgpsmap0.symbols
@@ -4,6 +4,7 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  lat2pixel@Base 0.3
  lon2pixel@Base 0.3
  osm_gps_map_add_image@Base 0.3
+ osm_gps_map_add_image_with_alignment@Base 0.5
  osm_gps_map_add_track@Base 0.3
  osm_gps_map_clear_gps@Base 0.3
  osm_gps_map_clear_images@Base 0.3
@@ -17,11 +18,12 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  osm_gps_map_get_scale@Base 0.4
  osm_gps_map_get_type@Base 0.3
  osm_gps_map_new@Base 0.3
- osm_gps_map_osd_speed@Base 0.3
  osm_gps_map_remove_image@Base 0.4
+ osm_gps_map_replace_track@Base 0.5
  osm_gps_map_screen_to_geographic@Base 0.3
  osm_gps_map_scroll@Base 0.3
  osm_gps_map_set_center@Base 0.3
+ osm_gps_map_set_keyboard_shortcut@Base 0.5
  osm_gps_map_set_mapcenter@Base 0.3
  osm_gps_map_set_zoom@Base 0.3
  osm_gps_map_source_get_friendly_name@Base 0.4
@@ -29,6 +31,7 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  osm_gps_map_source_get_max_zoom@Base 0.4
  osm_gps_map_source_get_min_zoom@Base 0.4
  osm_gps_map_source_get_repo_uri@Base 0.4
+ osm_gps_map_source_is_valid@Base 0.5
  pixel2lat@Base 0.3
  pixel2lon@Base 0.3
  rad2deg@Base 0.3

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 36/153: debian/python-osmgpsmap.examples updated

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 6475c710f61e5bb63dd06d041baa98753cee2fad
Author: David Paleino da...@debian.org
Date:   Sat Jan 23 17:40:40 2010 +0100

debian/python-osmgpsmap.examples updated
---
 debian/changelog | 3 ++-
 debian/python-osmgpsmap.examples | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 481859b..246228a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,9 @@ osm-gps-map (0.5-1) UNRELEASED; urgency=low
 - fixed missing #include in src/osm-gps-map.c (Closes: #564907)
   * debian/patches/:
 - 02-fix_python_library_linking.patch removed, fixed upstream
+  * debian/python-osmgpsmap.examples updated
 
- -- David Paleino da...@debian.org  Fri, 22 Jan 2010 17:49:43 +0100
+ -- David Paleino da...@debian.org  Sat, 23 Jan 2010 17:40:32 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 
diff --git a/debian/python-osmgpsmap.examples b/debian/python-osmgpsmap.examples
index 043f4a1..b60a0ec 100644
--- a/debian/python-osmgpsmap.examples
+++ b/debian/python-osmgpsmap.examples
@@ -1 +1 @@
-python/openstreetmap-gps-map.py
+python/mapviewer.py

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 42/153: New upstream version

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 81329635a8b18df569087b308803d47f35c3975a
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 15:31:37 2010 +0100

New upstream version
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index f4b5467..253591a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
+
+  * New upstream version
+
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:31:22 +0100
+
 osm-gps-map (0.5-1) unstable; urgency=low
 
   * New upstream release

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 51/153: New upstream version

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 2213ddc3ab0cffe6a9099a3176e9a5ea42f41d09
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:10:25 2010 +0200

New upstream version
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 58673af..83e519b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
+
+  * New upstream version
+
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:10:01 +0200
+
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
   * New upstream version

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 44/153: debian/libosmgpsmap0.examples moved to libosmgpsmap-dev.examples: install examples in the -dev package, not with the shared library.

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 781f050517e73318e0e2055c7604bed67a81b7c7
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 15:45:42 2010 +0100

debian/libosmgpsmap0.examples moved to libosmgpsmap-dev.examples: install 
examples in the -dev package, not with the shared library.
---
 debian/changelog | 4 +++-
 debian/{libosmgpsmap0.examples = libosmgpsmap-dev.examples} | 0
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e4f0c1c..1443003 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,10 @@ osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
   * New upstream version
   * debian/copyright: upstream changed licensing to GPL-2 (only, not
 any later) -- file updated
+  * debian/libosmgpsmap0.examples moved to libosmgpsmap-dev.examples:
+install examples in the -dev package, not with the shared library.
 
- -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:37:55 +0100
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:45:13 +0100
 
 osm-gps-map (0.5-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap0.examples b/debian/libosmgpsmap-dev.examples
similarity index 100%
rename from debian/libosmgpsmap0.examples
rename to debian/libosmgpsmap-dev.examples

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 46/153: debian/libosmgpsmap0.symbols: new symbols added

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 7431737f6a4ac2833c7d186a5ff54e6d99f0f81c
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 16:01:23 2010 +0100

debian/libosmgpsmap0.symbols: new symbols added
---
 debian/changelog |  3 ++-
 debian/libosmgpsmap0.symbols | 23 +++
 2 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 19302d3..6e04d6a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,8 +7,9 @@ osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
 install examples in the -dev package, not with the shared library.
   * debian/control:
 - bump Standards-Version to 3.8.4, no changes needed
+  * debian/libosmgpsmap0.symbols: new symbols added
 
- -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:46:00 +0100
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 16:01:07 +0100
 
 osm-gps-map (0.5-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap0.symbols
index bfdd14c..8603c70 100644
--- a/debian/libosmgpsmap0.symbols
+++ b/debian/libosmgpsmap0.symbols
@@ -3,8 +3,21 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  deg2rad@Base 0.3
  lat2pixel@Base 0.3
  lon2pixel@Base 0.3
+ osd_check_dpad@Base 0.6.0
+ osd_check_zoom@Base 0.6.0
+ osd_draw_bbox@Base 0.6.0
+ osd_latitude_str@Base 0.6.0
+ osd_longitude_str@Base 0.6.0
+ osd_render_centered_text@Base 0.6.0
+ osd_render_crosshair_shape@Base 0.6.0
+ osd_render_dpad@Base 0.6.0
+ osd_render_gps@Base 0.6.0
+ osd_render_zoom@Base 0.6.0
+ osd_shape@Base 0.6.0
+ osd_shape_shadow@Base 0.6.0
  osm_gps_map_add_image@Base 0.3
  osm_gps_map_add_image_with_alignment@Base 0.5
+ osm_gps_map_add_layer@Base 0.6.0
  osm_gps_map_add_track@Base 0.3
  osm_gps_map_clear_gps@Base 0.3
  osm_gps_map_clear_images@Base 0.3
@@ -17,7 +30,15 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  osm_gps_map_get_default_cache_directory@Base 0.4
  osm_gps_map_get_scale@Base 0.4
  osm_gps_map_get_type@Base 0.3
+ osm_gps_map_in_circle@Base 0.6.0
+ osm_gps_map_layer_busy@Base 0.6.0
+ osm_gps_map_layer_button_press@Base 0.6.0
+ osm_gps_map_layer_draw@Base 0.6.0
+ osm_gps_map_layer_get_type@Base 0.6.0
+ osm_gps_map_layer_render@Base 0.6.0
  osm_gps_map_new@Base 0.3
+ osm_gps_map_osd_get_type@Base 0.6.0
+ osm_gps_map_osd_new@Base 0.6.0
  osm_gps_map_remove_image@Base 0.4
  osm_gps_map_replace_track@Base 0.5
  osm_gps_map_screen_to_geographic@Base 0.3
@@ -32,6 +53,8 @@ libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
  osm_gps_map_source_get_min_zoom@Base 0.4
  osm_gps_map_source_get_repo_uri@Base 0.4
  osm_gps_map_source_is_valid@Base 0.5
+ osm_gps_map_zoom_in@Base 0.6.0
+ osm_gps_map_zoom_out@Base 0.6.0
  pixel2lat@Base 0.3
  pixel2lon@Base 0.3
  rad2deg@Base 0.3

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 37/153: debian/rules: don't remove COPYING on clean

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 94126c2b26dd9d6bbca536062464a0aac70eccef
Author: David Paleino da...@debian.org
Date:   Sat Jan 23 17:44:22 2010 +0100

debian/rules: don't remove COPYING on clean
---
 debian/changelog | 3 ++-
 debian/rules | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 246228a..9238e64 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,9 @@ osm-gps-map (0.5-1) UNRELEASED; urgency=low
   * debian/patches/:
 - 02-fix_python_library_linking.patch removed, fixed upstream
   * debian/python-osmgpsmap.examples updated
+  * debian/rules: don't remove COPYING on clean
 
- -- David Paleino da...@debian.org  Sat, 23 Jan 2010 17:40:32 +0100
+ -- David Paleino da...@debian.org  Sat, 23 Jan 2010 17:44:09 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index 3868f24..5c60ca4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,7 @@ override_dh_auto_clean:
find . \( -name config.guess -o -name config.h -o -name 
config.log \
-o -name config.sub -o -name config.status -o -name 
configure \) -delete
find . \( -name install-sh -o -name libtool -o -name ltmain.sh \
-   -o -name missing -o -name COPYING -o -name INSTALL \
+   -o -name missing -o -name INSTALL \
-o -name aclocal.m4 -o -name depcomp \) -delete
 
dh_clean compile osmgpsmap.pc python/osmgpsmap.c \

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 43/153: debian/copyright: upstream changed licensing to GPL-2 (only, not any later) -- file updated

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit fcbce16fe5281a694766b209195c5376b63ad462
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 15:38:24 2010 +0100

debian/copyright: upstream changed licensing to GPL-2 (only, not any 
later) -- file updated
---
 debian/changelog |  4 +++-
 debian/copyright | 35 ++-
 2 files changed, 25 insertions(+), 14 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 253591a..e4f0c1c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
 osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
 
   * New upstream version
+  * debian/copyright: upstream changed licensing to GPL-2 (only, not
+any later) -- file updated
 
- -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:31:22 +0100
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:37:55 +0100
 
 osm-gps-map (0.5-1) unstable; urgency=low
 
diff --git a/debian/copyright b/debian/copyright
index 09b9480..63f199d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,13 +1,21 @@
 Format-Specification: http://dep.debian.net/deps/dep5
 
 Files: debian/*
-Copyright: © 2009, David Paleino da...@debian.org
-License: GPL-3+
+Copyright: © 2009-2010, David Paleino da...@debian.org
+License: GPL-2
+
+Files: python/mapviewer.py
+Copyright: © 2008, Hadley Rich h...@nice.net.nz
+License: GPL-2
+
+Files: python/osmgpsmapmodule.c
+Copyright: © 2008, John Stowers john.stow...@gmail.com
+License: GPL-2
 
 Files: src/converter.c
 Copyright: © 2008, Marcus Bauer marcus.ba...@gmail.com
  © 2008, John Stowers john.stow...@gmail.com
-License: GPL-3+
+License: GPL-2
 
 Files: src/converter.h
  src/osm-gps-map.{c,h}
@@ -15,24 +23,26 @@ Files: src/converter.h
 Copyright: © 2008, Marcus Bauer marcus.ba...@gmail.com
  © 2009, John Stowers john.stow...@gmail.com
  © 2009, Everaldo Canuto everaldo.can...@gmail.com
-License: GPL-3+
+License: GPL-2
 
 Files: src/main.c
+ src/osd-utils.{c,h}
+ src/osm-gps-map-layer.c
+ src/osm-gps-map-osd.{c,h}
  python/*
-Copyright: © 2008, John Stowers john.stow...@gmail.com
-License: GPL-3+
+Copyright: © 2008-2010, John Stowers john.stow...@gmail.com
+License: GPL-2
 
 Files: *
 Copyright: © 2008, Marcus Bauer marcus.ba...@gmail.com
  © 2009, John Stowers john.stow...@gmail.com
  © 2009, Everaldo Canuto everaldo.can...@gmail.com
-License: GPL-3+
+License: GPL-2
 
-License: GPL-3+
+License: GPL-2
  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 3 of the License, or
- (at your option) any later version.
+ it under the terms of the GNU General Public License version 2 as
+ published by the Free Software Foundation.
  .
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -42,5 +52,4 @@ License: GPL-3+
  You should have received a copy of the GNU General Public License
  along with this program.  If not, see http://www.gnu.org/licenses/.
 X-Comment: on Debian GNU systems, the complete text of the GNU General
- Public License v3 can be found in `/usr/share/common-licenses/GPL-3',
- while the latest one can be found in `/usr/share/common-licenses/GPL'.
+ Public License v2 can be found in `/usr/share/common-licenses/GPL-2'.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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

[osm-gps-map] 45/153: debian/control: bump Standards-Version to 3.8.4, no changes needed

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 53ae6cda5c283a82cac816ed77227f89e575ebeb
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 15:46:53 2010 +0100

debian/control: bump Standards-Version to 3.8.4, no changes needed
---
 debian/changelog | 4 +++-
 debian/control   | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1443003..19302d3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,10 @@ osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
 any later) -- file updated
   * debian/libosmgpsmap0.examples moved to libosmgpsmap-dev.examples:
 install examples in the -dev package, not with the shared library.
+  * debian/control:
+- bump Standards-Version to 3.8.4, no changes needed
 
- -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:45:13 +0100
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 15:46:00 +0100
 
 osm-gps-map (0.5-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 8cf0ca7..b33f1b8 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends: debhelper (= 7.0.50~),
  python-support (= 0.90.0),
  python-all-dev
 XS-Python-Version: = 2.5
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Homepage: http://nzjrs.github.com/osm-gps-map/
 Vcs-Git: git://git.debian.org/collab-maint/osm-gps-map.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/osm-gps-map.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 52/153: debian/patches/00-fix_python-COPYING added, makes COPYING a real file instead of a symlink.

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 0208e591d2cd9c5082ebf7e494ae8b198db649d6
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:14:22 2010 +0200

debian/patches/00-fix_python-COPYING added, makes COPYING a real file 
instead of a symlink.
---
 debian/changelog   |   4 +-
 debian/patches/00-fix_python-COPYING.patch | 681 +
 debian/patches/series  |   1 +
 python/COPYING |   1 -
 4 files changed, 685 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 83e519b..fc6b128 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
 osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 
   * New upstream version
+  * debian/patches/00-fix_python-COPYING added, makes COPYING a real
+file instead of a symlink.
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:10:01 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:24:45 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/patches/00-fix_python-COPYING.patch 
b/debian/patches/00-fix_python-COPYING.patch
new file mode 100644
index 000..c048621
--- /dev/null
+++ b/debian/patches/00-fix_python-COPYING.patch
@@ -0,0 +1,681 @@
+Author: David Paleino da...@debian.org
+Description: fix python/COPYING file
+Forwarded: no
+
+--- /dev/null
 osm-gps-map-0.7.0/python/COPYING
+@@ -0,0 +1,674 @@
++GNU GENERAL PUBLIC LICENSE
++   Version 3, 29 June 2007
++
++ Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/
++ Everyone is permitted to copy and distribute verbatim copies
++ of this license document, but changing it is not allowed.
++
++Preamble
++
++  The GNU General Public License is a free, copyleft license for
++software and other kinds of works.
++
++  The licenses for most software and other practical works are designed
++to take away your freedom to share and change the works.  By contrast,
++the GNU General Public License is intended to guarantee your freedom to
++share and change all versions of a program--to make sure it remains free
++software for all its users.  We, the Free Software Foundation, use the
++GNU General Public License for most of our software; it applies also to
++any other work released this way by its authors.  You can apply it to
++your programs, too.
++
++  When we speak of free software, we are referring to freedom, not
++price.  Our General Public Licenses are designed to make sure that you
++have the freedom to distribute copies of free software (and charge for
++them if you wish), that you receive source code or can get it if you
++want it, that you can change the software or use pieces of it in new
++free programs, and that you know you can do these things.
++
++  To protect your rights, we need to prevent others from denying you
++these rights or asking you to surrender the rights.  Therefore, you have
++certain responsibilities if you distribute copies of the software, or if
++you modify it: responsibilities to respect the freedom of others.
++
++  For example, if you distribute copies of such a program, whether
++gratis or for a fee, you must pass on to the recipients the same
++freedoms that you received.  You must make sure that they, too, receive
++or can get the source code.  And you must show them these terms so they
++know their rights.
++
++  Developers that use the GNU GPL protect your rights with two steps:
++(1) assert copyright on the software, and (2) offer you this License
++giving you legal permission to copy, distribute and/or modify it.
++
++  For the developers' and authors' protection, the GPL clearly explains
++that there is no warranty for this free software.  For both users' and
++authors' sake, the GPL requires that modified versions be marked as
++changed, so that their problems will not be attributed erroneously to
++authors of previous versions.
++
++  Some devices are designed to deny users access to install or run
++modified versions of the software inside them, although the manufacturer
++can do so.  This is fundamentally incompatible with the aim of
++protecting users' freedom to change the software.  The systematic
++pattern of such abuse occurs in the area of products for individuals to
++use, which is precisely where it is most unacceptable.  Therefore, we
++have designed this version of the GPL to prohibit the practice for those
++products.  If such problems arise substantially in other domains, we
++stand ready to extend this provision to those domains in future versions
++of the GPL, as needed to protect the freedom of users.
++
++  Finally, every program is threatened constantly by software patents.
++States should not allow patents to restrict development and use of
++software on general-purpose computers, but in 

[osm-gps-map] 55/153: added gtk-doc-tools build-dependency

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 482de76215a4cf20426abb986109836841332a4b
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:32:42 2010 +0200

added gtk-doc-tools build-dependency
---
 debian/changelog | 3 ++-
 debian/control   | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 54c797d..e33633b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,10 +5,11 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 file instead of a symlink.
   * debian/control:
 - added gnome-common build-dependency
+- added gtk-doc-tools build-dependency
   * debian/rules:
 - don't delete version.xml.in on clean
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:30:50 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:32:21 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 36a6838..790bb62 100644
--- a/debian/control
+++ b/debian/control
@@ -15,6 +15,7 @@ Build-Depends: debhelper (= 7.0.50~),
  python-support (= 0.90.0),
  python-all-dev
  , gnome-common
+ , gtk-doc-tools (= 1.12)
 XS-Python-Version: = 2.5
 Standards-Version: 3.8.4
 Homepage: http://nzjrs.github.com/osm-gps-map/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 41/153: Merge commit 'upstream/0.6.0'

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 56ae13b841adfdeeceba57f1216943e36e2d72c0
Merge: 5f6e4f9 a8858ed
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 15:29:40 2010 +0100

Merge commit 'upstream/0.6.0'

 COPYING   | 911 +++--
 Makefile.am   |   2 +-
 NEWS  |   9 +
 configure.ac  |  16 +-
 python/Makefile.am|   2 +-
 python/configure.ac   |   2 +-
 python/mapviewer.py   |  50 ++-
 python/osmgpsmap.defs | 105 ++
 python/osmgpsmap.override |   3 +
 python/osmgpsmapmodule.c  |  23 +-
 python/setup.py   |   2 +-
 src/Makefile.am   |  10 +-
 src/converter.c   |  21 +-
 src/converter.h   |  21 +-
 src/main.c|  36 +-
 src/osd-utils.c   | 393 
 src/osd-utils.h   |  51 +++
 src/osm-gps-map-layer.c   |  59 +++
 src/osm-gps-map-layer.h   |  62 
 src/osm-gps-map-osd.c | 916 ++
 src/osm-gps-map-osd.h |  57 +++
 src/osm-gps-map-types.h   |  29 +-
 src/osm-gps-map.c | 222 ---
 src/osm-gps-map.h |  26 +-
 24 files changed, 2268 insertions(+), 760 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 53/153: debian/control: added gnome-common build-dependency

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 4430fed1dfa27c243e3d0522d9edd82c0742e8b0
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:26:07 2010 +0200

debian/control: added gnome-common build-dependency
---
 debian/changelog | 4 +++-
 debian/control   | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index fc6b128..add12de 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,10 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
   * New upstream version
   * debian/patches/00-fix_python-COPYING added, makes COPYING a real
 file instead of a symlink.
+  * debian/control:
+- added gnome-common build-dependency
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:24:45 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:25:49 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index db7ed71..36a6838 100644
--- a/debian/control
+++ b/debian/control
@@ -14,6 +14,7 @@ Build-Depends: debhelper (= 7.0.50~),
  libcairo2-dev (= 1.8),
  python-support (= 0.90.0),
  python-all-dev
+ , gnome-common
 XS-Python-Version: = 2.5
 Standards-Version: 3.8.4
 Homepage: http://nzjrs.github.com/osm-gps-map/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 57/153: Refresh patch

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 49aa0e9fb1d8f2dff1c9622158cb61254d38afc8
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:45:19 2010 +0200

Refresh patch
---
 debian/patches/00-fix_python-COPYING.patch | 17 -
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/debian/patches/00-fix_python-COPYING.patch 
b/debian/patches/00-fix_python-COPYING.patch
index c048621..b6f8dcc 100644
--- a/debian/patches/00-fix_python-COPYING.patch
+++ b/debian/patches/00-fix_python-COPYING.patch
@@ -2,8 +2,13 @@ Author: David Paleino da...@debian.org
 Description: fix python/COPYING file
 Forwarded: no
 
+---
+ .gitignore |1 
+ python/COPYING |  674 
+
+ 2 files changed, 674 insertions(+), 1 deletion(-)
+
 --- /dev/null
-+++ osm-gps-map-0.7.0/python/COPYING
 osm-gps-map/python/COPYING
 @@ -0,0 +1,674 @@
 +GNU GENERAL PUBLIC LICENSE
 +   Version 3, 29 June 2007
@@ -679,3 +684,13 @@ Forwarded: no
 +the library.  If this is what you want to do, use the GNU Lesser General
 +Public License instead of this License.  But first, please read
 +http://www.gnu.org/philosophy/why-not-lgpl.html.
+--- osm-gps-map.orig/.gitignore
 osm-gps-map/.gitignore
+@@ -25,7 +25,6 @@ libtool
+ ltmain.sh
+ missing
+ osmgpsmap.pc
+-python/COPYING
+ python/INSTALL
+ python/autom4te.cache/
+ python/build/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 58/153: bump python-gobject-dev build-dependency to = 2.16.0

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 6d13ca5ce21911fe6b1d83f5ae6404784288f248
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:50:55 2010 +0200

bump python-gobject-dev build-dependency to = 2.16.0
---
 debian/changelog | 3 ++-
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index da5fb2f..bfd4451 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,11 +6,12 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
   * debian/control:
 - added gnome-common build-dependency
 - added gtk-doc-tools build-dependency
+- bump python-gobject-dev build-dependency to = 2.16.0
   * debian/rules:
 - don't delete version.xml.in on clean
 - remove docs/reference/version.xml and gkt-doc.make on clean
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:43:15 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:50:21 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 790bb62..2926228 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends: debhelper (= 7.0.50~),
  libgtk2.0-dev,
  libglib2.0-dev (= 2.18),
  libsoup2.4-dev,
- python-gobject-dev,
+ python-gobject-dev (= 2.16.0),
  python-gtk2-dev (= 2.10.0),
  libcairo2-dev (= 1.8),
  python-support (= 0.90.0),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 50/153: Merge commit 'upstream/0.7.0'

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 17f9589bf4d2635cbe64366b7c9a530eb326e0de
Merge: ef2a87a a9010f5
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 07:54:20 2010 +0200

Merge commit 'upstream/0.7.0'

 .gitignore |4 +-
 ChangeLog  |0
 Makefile.am|   31 +-
 NEWS   |   41 +
 autogen.sh |  151 +-
 configure.ac   |   39 +-
 docs/Makefile.am   |1 +
 docs/reference/Makefile.am |   95 +
 docs/reference/libosmgpsmap-docs.xml   |   38 +
 docs/reference/libosmgpsmap-overrides.txt  |0
 docs/reference/libosmgpsmap-sections.txt   |  112 ++
 docs/reference/libosmgpsmap.types  |6 +
 docs/reference/version.xml.in  |1 +
 examples/.gitignore|1 +
 examples/Makefile.am   |   35 +
 examples/env.sh|3 +
 examples/mapviewer.c   |  391 
 examples/mapviewer.js  |   28 +
 {python = examples}/mapviewer.py  |   56 +-
 examples/mapviewer.ui  |  378 
 {src = examples}/poi.png  |  Bin
 m4/.gitignore  |1 +
 m4/gtk-doc.m4  |   61 +
 m4/introspection.m4|   94 +
 python/.gitignore  |2 +
 python/COPYING |1 +
 python/Makefile.am |   20 +-
 python/configure.ac|   42 +-
 python/m4/.gitignore   |1 +
 .../am_check_python_headers.m4}|   38 -
 python/osmgpsmap-compat.defs   |  113 ++
 python/osmgpsmap.defs  |  508 --
 python/osmgpsmap.override  |  199 ++-
 python/setup.py|9 +-
 src/.gitignore |2 +
 src/Makefile.am|  134 +-
 src/main.c |  318 
 src/osm-gps-map-compat.c   |  163 ++
 src/osm-gps-map-compat.h   |   27 +
 src/osm-gps-map-image.c|  194 ++
 src/osm-gps-map-image.h|   44 +
 src/osm-gps-map-layer.h|2 +-
 src/osm-gps-map-osd.c  |   35 +-
 src/osm-gps-map-point.c|   71 +
 src/osm-gps-map-point.h|   33 +
 src/osm-gps-map-source.c   |  182 ++
 src/osm-gps-map-source.h   |   39 +
 src/osm-gps-map-track.c|  241 +++
 src/osm-gps-map-track.h|   46 +
 src/osm-gps-map-types.h|   66 +-
 src/{osm-gps-map.c = osm-gps-map-widget.c}| 1858 
 src/osm-gps-map-widget.h   |  117 ++
 src/osm-gps-map.h  |  145 +-
 53 files changed, 4400 insertions(+), 1817 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 47/153: libosmgpsmap0-dbg and python-osmgpsmap-dbg packages added

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit e7231534cd1e98cea54a8ab3735fbead4871c3af
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 16:03:56 2010 +0100

libosmgpsmap0-dbg and python-osmgpsmap-dbg packages added
---
 debian/changelog |  3 ++-
 debian/control   | 34 ++
 debian/rules |  6 ++
 3 files changed, 42 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 6e04d6a..6588aad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,9 +7,10 @@ osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
 install examples in the -dev package, not with the shared library.
   * debian/control:
 - bump Standards-Version to 3.8.4, no changes needed
+- libosmgpsmap0-dbg and python-osmgpsmap-dbg packages added
   * debian/libosmgpsmap0.symbols: new symbols added
 
- -- David Paleino da...@debian.org  Wed, 10 Feb 2010 16:01:07 +0100
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 16:03:36 +0100
 
 osm-gps-map (0.5-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index b33f1b8..db7ed71 100644
--- a/debian/control
+++ b/debian/control
@@ -44,6 +44,21 @@ Description: GTK+ library to embed OpenStreetMap maps
  co-ordinates, draws a GPS track, and points of interest on a moving map 
  display. Downloads map data from a number of websites, including 
  openstreetmap.org, openaerialmap.org and others.
+
+Package: libosmgpsmap0-dbg
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ libosmgpsmap0 (= ${binary:Version})
+Priority: extra
+Section: debug
+Description: GTK+ library to embed OpenStreetMap maps - debugging symbols
+ libosmgpsmap is a library to embed maps in applications that when given GPS
+ co-ordinates, draws a GPS track, and points of interest on a moving map
+ display. Downloads map data from a number of websites, including
+ openstreetmap.org, openaerialmap.org and others.
+ .
+ This package contains the debugging symbols for the shared library.
 
 Package: python-osmgpsmap
 Section: python
@@ -60,3 +75,22 @@ Description: GTK+ library to embed OpenStreetMap maps - 
Python bindings
  openstreetmap.org, openaerialmap.org and others.
  .
  This package provides the Python bindings for the library.
+
+Package: python-osmgpsmap-dbg
+Section: debug
+Priority: extra
+Architecture: any
+Depends: ${misc:Depends},
+ ${shlibs:Depends},
+ ${python:Depends},
+ python-osmgpsmap (= ${binary:Version})
+XB-Python-Version: ${python:Versions}
+Provides: ${python:Provides}
+Description: GTK+ library to embed OpenStreetMap maps - debugging symbols
+ libosmgpsmap is a library to embed maps in applications that when given GPS
+ co-ordinates, draws a GPS track, and points of interest on a moving map
+ display. Downloads map data from a number of websites, including
+ openstreetmap.org, openaerialmap.org and others.
+ .
+ This package provides the debugging symbols for the Python bindings of the
+ library.
diff --git a/debian/rules b/debian/rules
index 5c60ca4..cffb067 100755
--- a/debian/rules
+++ b/debian/rules
@@ -34,5 +34,11 @@ override_dh_auto_clean:
dh_clean compile osmgpsmap.pc python/osmgpsmap.c \
src/openstreetmap-gps-map stamp-h1
 
+override_dh_strip:
+   dh_strip --keep-debug --dbg-package=libosmgpsmap0-dbg
+   -mkdir -p $(CURDIR)/debian/python-osmgpsmap-dbg/usr/lib/debug/usr/lib/
+   -mv $(CURDIR)/debian/libosmgpsmap0-dbg/usr/lib/debug/usr/lib/pyshared \
+   $(CURDIR)/debian/python-osmgpsmap-dbg/usr/lib/debug/usr/lib/
+
 %:
dh $@

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 59/153: debian/patches/01-fix_python_linking.patch added, fixes FTBFS because of wrong linking of local library

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 30bfeba32b747f40c369d83300b40d6a7c499209
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 09:10:41 2010 +0200

debian/patches/01-fix_python_linking.patch added, fixes FTBFS because of 
wrong linking of local library
---
 debian/changelog   |  9 ++---
 debian/patches/01-fix_python_linking.patch | 18 ++
 debian/patches/series  |  1 +
 3 files changed, 25 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index bfd4451..40e14bb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
 osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 
   * New upstream version
-  * debian/patches/00-fix_python-COPYING added, makes COPYING a real
-file instead of a symlink.
+  * debian/patches/:
+- 00-fix_python-COPYING added, makes COPYING a real file
+  instead of a symlink.
+- 01-fix_python_linking.patch added, fixes FTBFS because of
+  wrong linking of local library
   * debian/control:
 - added gnome-common build-dependency
 - added gtk-doc-tools build-dependency
@@ -11,7 +14,7 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 - don't delete version.xml.in on clean
 - remove docs/reference/version.xml and gkt-doc.make on clean
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:50:21 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 09:09:52 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/patches/01-fix_python_linking.patch 
b/debian/patches/01-fix_python_linking.patch
new file mode 100644
index 000..a53798f
--- /dev/null
+++ b/debian/patches/01-fix_python_linking.patch
@@ -0,0 +1,18 @@
+From: David Paleino da...@debian.org
+Subject: fix linking to locally compiled library
+
+---
+ python/configure.ac |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- osm-gps-map.orig/python/configure.ac
 osm-gps-map/python/configure.ac
+@@ -52,7 +52,7 @@ if test -f ../src/libosmgpsmap.la; then
+ 
+   #and we must link to the local lib
+   OSMGPSMAP_CFLAGS=-I\$(top_srcdir)/../src/
+-  OSMGPSMAP_LIBS=\$(top_builddir)/../src/libosmgpsmap.la
++  OSMGPSMAP_LIBS=-L\$(top_builddir)/../src/.libs/ -losmgpsmap
+ else
+   PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap = 0.7.0)
+ fi
diff --git a/debian/patches/series b/debian/patches/series
index e699c2f..486743b 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 00-fix_python-COPYING.patch
+01-fix_python_linking.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 39/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 5f6e4f90db4da1c4221114e46f5312accf3024be
Author: David Paleino da...@debian.org
Date:   Sat Jan 23 18:01:59 2010 +0100

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d5d640a..f4b5467 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.5-1) UNRELEASED; urgency=low
+osm-gps-map (0.5-1) unstable; urgency=low
 
   * New upstream release
 - fixed missing #include in src/osm-gps-map.c (Closes: #564907)
@@ -8,7 +8,7 @@ osm-gps-map (0.5-1) UNRELEASED; urgency=low
   * debian/rules: don't remove COPYING on clean
   * debian/libosmgpsmap0.symbols updated
 
- -- David Paleino da...@debian.org  Sat, 23 Jan 2010 18:01:06 +0100
+ -- David Paleino da...@debian.org  Sat, 23 Jan 2010 18:01:56 +0100
 
 osm-gps-map (0.4-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 54/153: debian/rules: don't delete version.xml.in on clean

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit e9a9a00418130a08654b7ad6db2ef609a5782b30
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 08:31:08 2010 +0200

debian/rules: don't delete version.xml.in on clean
---
 debian/changelog | 4 +++-
 debian/rules | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index add12de..54c797d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,10 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 file instead of a symlink.
   * debian/control:
 - added gnome-common build-dependency
+  * debian/rules:
+- don't delete version.xml.in on clean
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:25:49 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 08:30:50 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index cffb067..26147aa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,7 +21,7 @@ override_dh_auto_install:
 override_dh_auto_clean:
dh_auto_clean
find . \( -name *.o -o -name *.lo -o -name *.la \) -delete
-   find . \( -name *.in -a -not -name osmgpsmap.pc.in \) -delete
+   find . \( -name *.in -a -not -name osmgpsmap.pc.in -a -not -name 
version.xml.in \) -delete
find . \( -name .deps -o -name .libs -o -name autom4te.cache \) 
-type d | xargs rm -rf
 
find . -name Makefile -delete

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 48/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit ef2a87a465d04711ce5f2613b0d5c7ce53ab8ea9
Author: David Paleino da...@debian.org
Date:   Wed Feb 10 16:29:08 2010 +0100

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6588aad..58673af 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
+osm-gps-map (0.6.0-1) unstable; urgency=low
 
   * New upstream version
   * debian/copyright: upstream changed licensing to GPL-2 (only, not
@@ -10,7 +10,7 @@ osm-gps-map (0.6.0-1) UNRELEASED; urgency=low
 - libosmgpsmap0-dbg and python-osmgpsmap-dbg packages added
   * debian/libosmgpsmap0.symbols: new symbols added
 
- -- David Paleino da...@debian.org  Wed, 10 Feb 2010 16:03:36 +0100
+ -- David Paleino da...@debian.org  Wed, 10 Feb 2010 16:29:05 +0100
 
 osm-gps-map (0.5-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 61/153: debian/python-osmgpsmap.examples refreshed, added new example files

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 23bdbc3e8cb31309163523e05743c7d780e3863f
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 09:25:58 2010 +0200

debian/python-osmgpsmap.examples refreshed, added new example files
---
 debian/changelog | 6 +++---
 debian/libosmgpsmap-dev.examples | 4 +++-
 debian/python-osmgpsmap.examples | 2 +-
 3 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7359610..837697c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,10 +13,10 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
   * debian/rules:
 - don't delete version.xml.in on clean
 - remove docs/reference/version.xml and gkt-doc.make on clean
-  * debian/libosmgpsmap-dev.examples refreshed, added new example
-files
+  * debian/libosmgpsmap-dev.examples, debian/python-osmgpsmap.examples
+refreshed, added new example files
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 09:15:57 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 09:25:29 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap-dev.examples b/debian/libosmgpsmap-dev.examples
index 9f04bdc..1a35f36 100644
--- a/debian/libosmgpsmap-dev.examples
+++ b/debian/libosmgpsmap-dev.examples
@@ -1,2 +1,4 @@
-examples/mapviewer.*
+examples/mapviewer.js
+examples/mapviewer.c
+examples/mapviewer.ui
 examples/poi.png
diff --git a/debian/python-osmgpsmap.examples b/debian/python-osmgpsmap.examples
index b60a0ec..f8351f5 100644
--- a/debian/python-osmgpsmap.examples
+++ b/debian/python-osmgpsmap.examples
@@ -1 +1 @@
-python/mapviewer.py
+examples/mapviewer.py

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 62/153: debian/libosmgpsmap2.symbols refreshed with new symbols

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 7ec0535f585cb3f58fa4a75d794517530c16b0f2
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 16:43:19 2010 +0200

debian/libosmgpsmap2.symbols refreshed with new symbols
---
 debian/changelog |   3 +-
 debian/libosmgpsmap0.symbols | 152 ++-
 2 files changed, 95 insertions(+), 60 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 837697c..4673d8b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,8 +15,9 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 - remove docs/reference/version.xml and gkt-doc.make on clean
   * debian/libosmgpsmap-dev.examples, debian/python-osmgpsmap.examples
 refreshed, added new example files
+  * debian/libosmgpsmap2.symbols refreshed with new symbols
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 09:25:29 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 16:43:04 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap0.symbols
index 8603c70..44f1f2b 100644
--- a/debian/libosmgpsmap0.symbols
+++ b/debian/libosmgpsmap0.symbols
@@ -1,60 +1,94 @@
-libosmgpsmap.so.0 libosmgpsmap0 #MINVER#
+libosmgpsmap.so.2 libosmgpsmap2 #MINVER#
 * Build-Depends-Package: libosmgpsmap-dev
- deg2rad@Base 0.3
- lat2pixel@Base 0.3
- lon2pixel@Base 0.3
- osd_check_dpad@Base 0.6.0
- osd_check_zoom@Base 0.6.0
- osd_draw_bbox@Base 0.6.0
- osd_latitude_str@Base 0.6.0
- osd_longitude_str@Base 0.6.0
- osd_render_centered_text@Base 0.6.0
- osd_render_crosshair_shape@Base 0.6.0
- osd_render_dpad@Base 0.6.0
- osd_render_gps@Base 0.6.0
- osd_render_zoom@Base 0.6.0
- osd_shape@Base 0.6.0
- osd_shape_shadow@Base 0.6.0
- osm_gps_map_add_image@Base 0.3
- osm_gps_map_add_image_with_alignment@Base 0.5
- osm_gps_map_add_layer@Base 0.6.0
- osm_gps_map_add_track@Base 0.3
- osm_gps_map_clear_gps@Base 0.3
- osm_gps_map_clear_images@Base 0.3
- osm_gps_map_clear_tracks@Base 0.3
- osm_gps_map_download_maps@Base 0.3
- osm_gps_map_draw_gps@Base 0.3
- osm_gps_map_geographic_to_screen@Base 0.3
- osm_gps_map_get_bbox@Base 0.3
- osm_gps_map_get_co_ordinates@Base 0.3
- osm_gps_map_get_default_cache_directory@Base 0.4
- osm_gps_map_get_scale@Base 0.4
- osm_gps_map_get_type@Base 0.3
- osm_gps_map_in_circle@Base 0.6.0
- osm_gps_map_layer_busy@Base 0.6.0
- osm_gps_map_layer_button_press@Base 0.6.0
- osm_gps_map_layer_draw@Base 0.6.0
- osm_gps_map_layer_get_type@Base 0.6.0
- osm_gps_map_layer_render@Base 0.6.0
- osm_gps_map_new@Base 0.3
- osm_gps_map_osd_get_type@Base 0.6.0
- osm_gps_map_osd_new@Base 0.6.0
- osm_gps_map_remove_image@Base 0.4
- osm_gps_map_replace_track@Base 0.5
- osm_gps_map_screen_to_geographic@Base 0.3
- osm_gps_map_scroll@Base 0.3
- osm_gps_map_set_center@Base 0.3
- osm_gps_map_set_keyboard_shortcut@Base 0.5
- osm_gps_map_set_mapcenter@Base 0.3
- osm_gps_map_set_zoom@Base 0.3
- osm_gps_map_source_get_friendly_name@Base 0.4
- osm_gps_map_source_get_image_format@Base 0.4
- osm_gps_map_source_get_max_zoom@Base 0.4
- osm_gps_map_source_get_min_zoom@Base 0.4
- osm_gps_map_source_get_repo_uri@Base 0.4
- osm_gps_map_source_is_valid@Base 0.5
- osm_gps_map_zoom_in@Base 0.6.0
- osm_gps_map_zoom_out@Base 0.6.0
- pixel2lat@Base 0.3
- pixel2lon@Base 0.3
- rad2deg@Base 0.3
+ deg2rad@Base 0.7.0
+ lat2pixel@Base 0.7.0
+ lon2pixel@Base 0.7.0
+ osd_check_dpad@Base 0.7.0
+ osd_check_zoom@Base 0.7.0
+ osd_draw_bbox@Base 0.7.0
+ osd_latitude_str@Base 0.7.0
+ osd_longitude_str@Base 0.7.0
+ osd_render_centered_text@Base 0.7.0
+ osd_render_crosshair_shape@Base 0.7.0
+ osd_render_dpad@Base 0.7.0
+ osd_render_gps@Base 0.7.0
+ osd_render_zoom@Base 0.7.0
+ osd_shape@Base 0.7.0
+ osd_shape_shadow@Base 0.7.0
+ osm_gps_map_add_image@Base 0.7.0
+ osm_gps_map_add_image_with_alignment@Base 0.7.0
+ osm_gps_map_add_layer@Base 0.7.0
+ osm_gps_map_add_track@Base 0.7.0
+ osm_gps_map_clear_gps@Base 0.7.0
+ osm_gps_map_clear_images@Base 0.7.0
+ osm_gps_map_clear_tracks@Base 0.7.0
+ osm_gps_map_convert_geographic_to_screen@Base 0.7.0
+ osm_gps_map_convert_screen_to_geographic@Base 0.7.0
+ osm_gps_map_download_cancel_all@Base 0.7.0
+ osm_gps_map_download_maps@Base 0.7.0
+ osm_gps_map_draw_gps@Base 0.7.0
+ osm_gps_map_geographic_to_screen@Base 0.7.0
+ osm_gps_map_get_bbox@Base 0.7.0
+ osm_gps_map_get_co_ordinates@Base 0.7.0
+ osm_gps_map_get_default_cache_directory@Base 0.7.0
+ osm_gps_map_get_event_location@Base 0.7.0
+ osm_gps_map_get_scale@Base 0.7.0
+ osm_gps_map_get_type@Base 0.7.0
+ osm_gps_map_gps_add@Base 0.7.0
+ osm_gps_map_gps_clear@Base 0.7.0
+ osm_gps_map_gps_get_track@Base 0.7.0
+ osm_gps_map_image_add@Base 0.7.0
+ osm_gps_map_image_add_with_alignment@Base 0.7.0
+ osm_gps_map_image_draw@Base 0.7.0
+ osm_gps_map_image_get_point@Base 0.7.0
+ osm_gps_map_image_get_type@Base 0.7.0
+ osm_gps_map_image_new@Base 0.7.0
+ 

[osm-gps-map] 60/153: debian/libosmgpsmap-dev.examples refreshed, added new example files

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 33b37c5a1c928c1085191b226150d75bd7b92952
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 09:16:09 2010 +0200

debian/libosmgpsmap-dev.examples refreshed, added new example files
---
 debian/changelog | 4 +++-
 debian/libosmgpsmap-dev.examples | 3 ++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 40e14bb..7359610 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,8 +13,10 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
   * debian/rules:
 - don't delete version.xml.in on clean
 - remove docs/reference/version.xml and gkt-doc.make on clean
+  * debian/libosmgpsmap-dev.examples refreshed, added new example
+files
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 09:09:52 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 09:15:57 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap-dev.examples b/debian/libosmgpsmap-dev.examples
index e723152..9f04bdc 100644
--- a/debian/libosmgpsmap-dev.examples
+++ b/debian/libosmgpsmap-dev.examples
@@ -1 +1,2 @@
-src/main.c
+examples/mapviewer.*
+examples/poi.png

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 63/153: SONAME bump: libosmgpsmap0 → libosmgpsmap2

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit bcc00b55d733bbb7e3100d10f2a990fdb4f48062
Author: David Paleino da...@debian.org
Date:   Thu Jun 3 21:16:27 2010 +0200

SONAME bump: libosmgpsmap0 → libosmgpsmap2
---
 debian/changelog| 3 ++-
 debian/control  | 4 ++--
 debian/{libosmgpsmap0.docs = libosmgpsmap2.docs}   | 0
 debian/{libosmgpsmap0.install = libosmgpsmap2.install} | 0
 debian/{libosmgpsmap0.symbols = libosmgpsmap2.symbols} | 0
 5 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4673d8b..e2ba692 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 
   * New upstream version
+- SONAME bump: libosmgpsmap0 → libosmgpsmap2
   * debian/patches/:
 - 00-fix_python-COPYING added, makes COPYING a real file
   instead of a symlink.
@@ -17,7 +18,7 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 refreshed, added new example files
   * debian/libosmgpsmap2.symbols refreshed with new symbols
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 16:43:04 +0200
+ -- David Paleino da...@debian.org  Thu, 03 Jun 2010 21:16:03 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 2926228..13126b9 100644
--- a/debian/control
+++ b/debian/control
@@ -27,7 +27,7 @@ Section: libdevel
 Architecture: any
 Depends: ${shlibs:Depends},
  ${misc:Depends},
- libosmgpsmap0 (= ${binary:Version})
+ libosmgpsmap2 (= ${binary:Version})
 Description: GTK+ library to embed OpenStreetMap maps - development files
  libosmgpsmap is a library to embed maps in applications that when given GPS 
  co-ordinates, draws a GPS track, and points of interest on a moving map 
@@ -37,7 +37,7 @@ Description: GTK+ library to embed OpenStreetMap maps - 
development files
  These are the development files for libosmgpsmap0, needed only if you're 
  writing or compiling an application which will use it.
 
-Package: libosmgpsmap0
+Package: libosmgpsmap2
 Architecture: any
 Depends: ${shlibs:Depends},
  ${misc:Depends}
diff --git a/debian/libosmgpsmap0.docs b/debian/libosmgpsmap2.docs
similarity index 100%
rename from debian/libosmgpsmap0.docs
rename to debian/libosmgpsmap2.docs
diff --git a/debian/libosmgpsmap0.install b/debian/libosmgpsmap2.install
similarity index 100%
rename from debian/libosmgpsmap0.install
rename to debian/libosmgpsmap2.install
diff --git a/debian/libosmgpsmap0.symbols b/debian/libosmgpsmap2.symbols
similarity index 100%
rename from debian/libosmgpsmap0.symbols
rename to debian/libosmgpsmap2.symbols

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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

[osm-gps-map] 64/153: Complete SONAME transition

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit ab8a8571a08d0efb0622b989dd0553f0982ee94f
Author: David Paleino da...@debian.org
Date:   Thu Jun 10 21:51:18 2010 +0200

Complete SONAME transition
---
 debian/control | 4 ++--
 debian/rules   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index 13126b9..cde371f 100644
--- a/debian/control
+++ b/debian/control
@@ -47,11 +47,11 @@ Description: GTK+ library to embed OpenStreetMap maps
  display. Downloads map data from a number of websites, including 
  openstreetmap.org, openaerialmap.org and others.
 
-Package: libosmgpsmap0-dbg
+Package: libosmgpsmap2-dbg
 Architecture: any
 Depends: ${shlibs:Depends},
  ${misc:Depends},
- libosmgpsmap0 (= ${binary:Version})
+ libosmgpsmap2 (= ${binary:Version})
 Priority: extra
 Section: debug
 Description: GTK+ library to embed OpenStreetMap maps - debugging symbols
diff --git a/debian/rules b/debian/rules
index 0458065..3a48477 100755
--- a/debian/rules
+++ b/debian/rules
@@ -36,9 +36,9 @@ override_dh_auto_clean:
docs/reference/version.xml gkt-doc.make
 
 override_dh_strip:
-   dh_strip --keep-debug --dbg-package=libosmgpsmap0-dbg
+   dh_strip --keep-debug --dbg-package=libosmgpsmap2-dbg
-mkdir -p $(CURDIR)/debian/python-osmgpsmap-dbg/usr/lib/debug/usr/lib/
-   -mv $(CURDIR)/debian/libosmgpsmap0-dbg/usr/lib/debug/usr/lib/pyshared \
+   -mv $(CURDIR)/debian/libosmgpsmap2-dbg/usr/lib/debug/usr/lib/pyshared \
$(CURDIR)/debian/python-osmgpsmap-dbg/usr/lib/debug/usr/lib/
 
 %:

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 65/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit bfa67644a248a8a0c7af77ffc221a45f363e40f5
Author: David Paleino da...@debian.org
Date:   Thu Jun 10 22:17:42 2010 +0200

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e2ba692..bb1ca08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
+osm-gps-map (0.7.0-1) unstable; urgency=low
 
   * New upstream version
 - SONAME bump: libosmgpsmap0 → libosmgpsmap2
@@ -18,7 +18,7 @@ osm-gps-map (0.7.0-1) UNRELEASED; urgency=low
 refreshed, added new example files
   * debian/libosmgpsmap2.symbols refreshed with new symbols
 
- -- David Paleino da...@debian.org  Thu, 03 Jun 2010 21:16:03 +0200
+ -- David Paleino da...@debian.org  Thu, 10 Jun 2010 22:17:37 +0200
 
 osm-gps-map (0.6.0-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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

[osm-gps-map] 72/153: Imported Upstream version 0.7.2

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit a692c3e4ee5d0339c4f8507632b16cb32d3f44ed
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 08:43:10 2010 +0200

Imported Upstream version 0.7.2
---
 Makefile.am  |  2 +-
 NEWS |  7 +++
 configure.ac |  4 +++-
 docs/reference/libosmgpsmap-sections.txt |  4 
 python/configure.ac  | 13 
 python/osmgpsmap.override|  2 +-
 python/osmgpsmapmodule.c |  2 ++
 python/setup.py  |  2 +-
 src/osm-gps-map-image.c  |  4 ++--
 src/osm-gps-map-osd.c|  2 ++
 src/osm-gps-map-point.c  | 36 +++-
 src/osm-gps-map-point.h  |  2 ++
 src/osm-gps-map-source.c |  2 +-
 src/osm-gps-map-widget.c | 11 ++
 src/private.h|  6 +++---
 15 files changed, 75 insertions(+), 24 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index fe5e987..02e15c8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,7 +37,7 @@ distclean-local:
 ChangeLog:
@echo Creating $@
@if test -d $(srcdir)/.git; then \
- (GIT_DIR=$(top_srcdir)/.git ./missing --run git log 0.6.0.. --stat -M 
-C --name-status  --date=short --no-color) | fmt --split-only  $@.tmp \
+ (GIT_DIR=$(top_srcdir)/.git ./missing --run git log 0.7.1.. --stat -M 
-C --name-status  --date=short --no-color) | fmt --split-only  $@.tmp \
   mv -f $@.tmp $@ \
  || ($(RM) $@.tmp; \
  echo Failed to generate ChangeLog, your ChangeLog may be outdated 
2; \
diff --git a/NEWS b/NEWS
index 1ebbf02..492fc30 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+Changes in 0.7.2
+==
+  * Make osm_gps_map_point_{copy,free} public
+  * Fix build against older gtk and pygtk/pygobject versions (Maemo)
+  * Doc updates
+  * Bug fixes
+
 Changes in 0.7.1
 ==
   * Don't install mapviewer binary
diff --git a/configure.ac b/configure.ac
index 8eda90e..7a93c89 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_PREREQ([2.62])
 AC_INIT([osm-gps-map],
-[0.7.1],
+[0.7.2],
 [http://github.com/nzjrs/osm-gps-map/issues],
 [osm-gps-map])
 AM_INIT_AUTOMAKE([1.10])
@@ -71,4 +71,6 @@ echo $PACKAGE v$VERSION
 echo
 echo Prefix... : $prefix
 echo libsoup.. : $soup_ver
+echo Introspection support : ${found_introspection}
+echo gtk-doc documentation : ${enable_gtk_doc}
 echo
diff --git a/docs/reference/libosmgpsmap-sections.txt 
b/docs/reference/libosmgpsmap-sections.txt
index ba04d98..d012769 100644
--- a/docs/reference/libosmgpsmap-sections.txt
+++ b/docs/reference/libosmgpsmap-sections.txt
@@ -15,7 +15,9 @@ osm_gps_map_source_get_image_format
 osm_gps_map_source_get_min_zoom
 osm_gps_map_source_get_max_zoom
 osm_gps_map_source_is_valid
+osm_gps_map_new
 osm_gps_map_download_maps
+osm_gps_map_download_cancel_all
 osm_gps_map_get_bbox
 osm_gps_map_set_center
 osm_gps_map_set_center_and_zoom
@@ -98,6 +100,8 @@ osm_gps_map_point_new_degrees
 osm_gps_map_point_new_radians
 osm_gps_map_point_set_degrees
 osm_gps_map_point_set_radians
+osm_gps_map_point_copy
+osm_gps_map_point_free
 /SECTION
 
 SECTION
diff --git a/python/configure.ac b/python/configure.ac
index fc4d345..0ece516 100644
--- a/python/configure.ac
+++ b/python/configure.ac
@@ -1,6 +1,6 @@
 AC_PREREQ([2.62])
 AC_INIT([python-osmgpsmap],
-[0.7.1],
+[0.7.2],
 [http://github.com/nzjrs/osm-gps-map/issues],
 [python-osmgpsmap])
 AM_INIT_AUTOMAKE([1.10])
@@ -32,15 +32,20 @@ fi
 AM_PATH_PYTHON()
 AM_CHECK_PYTHON_HEADERS(,AC_MSG_ERROR([install python-devel]))
 
-PKG_CHECK_MODULES(PYGTK, [pygtk-2.0 = 2.10.0 pygobject-2.0 = 2.16.0])
+PKG_CHECK_MODULES(PYGTK, [pygtk-2.0 = 2.10.0 pygobject-2.0 = 2.14.0])
 
 AC_MSG_CHECKING([for pygtk defs])
 PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
 AC_SUBST(PYGTK_DEFSDIR)
 AC_MSG_RESULT($PYGTK_DEFSDIR)
 
+#codegen was moved from pygtk to pygobject starting with 2.14
+#but we accept both so that we can build against older pygobject/pygtk
+#on maemo
 AC_MSG_CHECKING([for codegen])
-CODEGENDIR=`$PKG_CONFIG --variable codegendir pygobject-2.0`
+PKG_CHECK_MODULES(DUMMY, [pygobject-2.0 = 2.16.0],
+   CODEGENDIR=`$PKG_CONFIG --variable codegendir pygobject-2.0`,
+   CODEGENDIR=`$PKG_CONFIG --variable codegendir pygtk-2.0`)
 AC_SUBST([CODEGENDIR])
 AC_MSG_RESULT($CODEGENDIR)
 
@@ -54,7 +59,7 @@ if test -f ../src/libosmgpsmap.la; then
OSMGPSMAP_CFLAGS=-I\$(top_srcdir)/../src/
OSMGPSMAP_LIBS=\$(top_builddir)/../src/libosmgpsmap.la
 else
-   PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap = 0.7.1)
+   PKG_CHECK_MODULES(OSMGPSMAP, 

[osm-gps-map] 71/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 7498168d8befe46ba2ed0d8739d619abee375dcf
Author: David Paleino da...@debian.org
Date:   Fri Jun 25 07:40:21 2010 +0200

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8d53791..dcf7be9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.7.1-1) UNRELEASED; urgency=low
+osm-gps-map (0.7.1-1) unstable; urgency=low
 
   * New upstream version
   * debian/patches/:
@@ -6,7 +6,7 @@ osm-gps-map (0.7.1-1) UNRELEASED; urgency=low
   installed upstream
 - 01-fix_python_linking.patch refreshed
 
- -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:27:25 +0200
+ -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:27:41 +0200
 
 osm-gps-map (0.7.0-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 75/153: Multiline fields rewrapped

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit a03024fbdb7ac0d7c794ca6f8afd5b21e0419f3a
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 08:46:06 2010 +0200

Multiline fields rewrapped
---
 debian/control | 54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

diff --git a/debian/control b/debian/control
index cde371f..b634104 100644
--- a/debian/control
+++ b/debian/control
@@ -2,18 +2,18 @@ Source: osm-gps-map
 Section: libs
 Priority: optional
 Maintainer: David Paleino da...@debian.org
-Build-Depends: debhelper (= 7.0.50~),
- libtool,
- automake,
- autoconf,
- libgtk2.0-dev,
- libglib2.0-dev (= 2.18),
- libsoup2.4-dev,
- python-gobject-dev (= 2.16.0),
- python-gtk2-dev (= 2.10.0),
- libcairo2-dev (= 1.8),
- python-support (= 0.90.0),
- python-all-dev
+Build-Depends: debhelper (= 7.0.50~)
+ , libtool
+ , automake
+ , autoconf
+ , libgtk2.0-dev
+ , libglib2.0-dev (= 2.18)
+ , libsoup2.4-dev
+ , python-gobject-dev (= 2.16.0)
+ , python-gtk2-dev (= 2.10.0)
+ , libcairo2-dev (= 1.8)
+ , python-support (= 0.90.0)
+ , python-all-dev
  , gnome-common
  , gtk-doc-tools (= 1.12)
 XS-Python-Version: = 2.5
@@ -25,9 +25,9 @@ Vcs-Browser: 
http://git.debian.org/?p=collab-maint/osm-gps-map.git
 Package: libosmgpsmap-dev
 Section: libdevel
 Architecture: any
-Depends: ${shlibs:Depends},
- ${misc:Depends},
- libosmgpsmap2 (= ${binary:Version})
+Depends: ${shlibs:Depends}
+ , ${misc:Depends}
+ , libosmgpsmap2 (= ${binary:Version})
 Description: GTK+ library to embed OpenStreetMap maps - development files
  libosmgpsmap is a library to embed maps in applications that when given GPS 
  co-ordinates, draws a GPS track, and points of interest on a moving map 
@@ -39,8 +39,8 @@ Description: GTK+ library to embed OpenStreetMap maps - 
development files
 
 Package: libosmgpsmap2
 Architecture: any
-Depends: ${shlibs:Depends},
- ${misc:Depends}
+Depends: ${shlibs:Depends}
+ , ${misc:Depends}
 Description: GTK+ library to embed OpenStreetMap maps
  libosmgpsmap is a library to embed maps in applications that when given GPS 
  co-ordinates, draws a GPS track, and points of interest on a moving map 
@@ -49,9 +49,9 @@ Description: GTK+ library to embed OpenStreetMap maps
 
 Package: libosmgpsmap2-dbg
 Architecture: any
-Depends: ${shlibs:Depends},
- ${misc:Depends},
- libosmgpsmap2 (= ${binary:Version})
+Depends: ${shlibs:Depends}
+ , ${misc:Depends}
+ , libosmgpsmap2 (= ${binary:Version})
 Priority: extra
 Section: debug
 Description: GTK+ library to embed OpenStreetMap maps - debugging symbols
@@ -65,9 +65,9 @@ Description: GTK+ library to embed OpenStreetMap maps - 
debugging symbols
 Package: python-osmgpsmap
 Section: python
 Architecture: any
-Depends: ${misc:Depends},
- ${shlibs:Depends},
- ${python:Depends}
+Depends: ${misc:Depends}
+ , ${shlibs:Depends}
+ , ${python:Depends}
 XB-Python-Version: ${python:Versions}
 Provides: ${python:Provides}
 Description: GTK+ library to embed OpenStreetMap maps - Python bindings
@@ -82,10 +82,10 @@ Package: python-osmgpsmap-dbg
 Section: debug
 Priority: extra
 Architecture: any
-Depends: ${misc:Depends},
- ${shlibs:Depends},
- ${python:Depends},
- python-osmgpsmap (= ${binary:Version})
+Depends: ${misc:Depends}
+ , ${shlibs:Depends}
+ , ${python:Depends}
+ , python-osmgpsmap (= ${binary:Version})
 XB-Python-Version: ${python:Versions}
 Provides: ${python:Provides}
 Description: GTK+ library to embed OpenStreetMap maps - debugging symbols

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 67/153: Merge commit 'upstream/0.7.1'

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit ca32b10fccb862199676d22eec7c94eedf96ed73
Merge: bfa6764 9e41807
Author: David Paleino da...@debian.org
Date:   Fri Jun 25 07:21:39 2010 +0200

Merge commit 'upstream/0.7.1'

Conflicts:
python/COPYING

 .gitignore |   2 -
 ChangeLog  |   0
 NEWS   |   6 +
 configure.ac   |   4 +-
 examples/Makefile.am   |   2 +-
 examples/mapviewer.c   |  17 +-
 examples/mapviewer.js  |  16 +-
 examples/mapviewer.py  |   7 +-
 python/COPYING | 674 +
 python/README  |  24 +-
 python/configure.ac|   4 +-
 python/osmgpsmap.defs  |   6 +-
 python/osmgpsmap.override  |   4 +-
 python/setup.py|   2 +-
 src/Makefile.am|   6 +-
 src/converter.c|   2 +-
 src/osd-utils.c|   2 -
 src/osm-gps-map-source.c   |   4 +-
 src/osm-gps-map-track.c|   7 +-
 src/osm-gps-map-track.h|   2 +-
 src/osm-gps-map-widget.c   | 130 ++-
 src/{osm-gps-map-types.h = private.h} |  10 +-
 22 files changed, 847 insertions(+), 84 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 70/153: debian/patches/01-fix_python_linking.patch refreshed

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 1c305536bb509864a52478db9a9e3c2cc789d1a8
Author: David Paleino da...@debian.org
Date:   Fri Jun 25 07:27:38 2010 +0200

debian/patches/01-fix_python_linking.patch refreshed
---
 debian/changelog   | 3 ++-
 debian/patches/01-fix_python_linking.patch | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a8d4055..8d53791 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,9 @@ osm-gps-map (0.7.1-1) UNRELEASED; urgency=low
   * debian/patches/:
 - 00-fix_python-COPYING.patch removed, COPYING file is now
   installed upstream
+- 01-fix_python_linking.patch refreshed
 
- -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:26:25 +0200
+ -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:27:25 +0200
 
 osm-gps-map (0.7.0-1) unstable; urgency=low
 
diff --git a/debian/patches/01-fix_python_linking.patch 
b/debian/patches/01-fix_python_linking.patch
index a53798f..71861aa 100644
--- a/debian/patches/01-fix_python_linking.patch
+++ b/debian/patches/01-fix_python_linking.patch
@@ -14,5 +14,5 @@ Subject: fix linking to locally compiled library
 -  OSMGPSMAP_LIBS=\$(top_builddir)/../src/libosmgpsmap.la
 +  OSMGPSMAP_LIBS=-L\$(top_builddir)/../src/.libs/ -losmgpsmap
  else
-   PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap = 0.7.0)
+   PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap = 0.7.1)
  fi

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 68/153: New upstream version

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit f31cdc2c76e5678ea0252ed134267c9612945b71
Author: David Paleino da...@debian.org
Date:   Fri Jun 25 07:23:17 2010 +0200

New upstream version
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index bb1ca08..f5be7a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.7.1-1) UNRELEASED; urgency=low
+
+  * New upstream version
+
+ -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:23:03 +0200
+
 osm-gps-map (0.7.0-1) unstable; urgency=low
 
   * New upstream version

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 69/153: debian/patches/00-fix_python-COPYING.patch removed, COPYING file is now installed upstream

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit bf237c26316b993f40ee614a7833f5bb96a5706f
Author: David Paleino da...@debian.org
Date:   Fri Jun 25 07:26:54 2010 +0200

debian/patches/00-fix_python-COPYING.patch removed, COPYING file is now 
installed upstream
---
 debian/changelog   |   5 +-
 debian/patches/00-fix_python-COPYING.patch | 696 -
 debian/patches/series  |   1 -
 3 files changed, 4 insertions(+), 698 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f5be7a9..a8d4055 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
 osm-gps-map (0.7.1-1) UNRELEASED; urgency=low
 
   * New upstream version
+  * debian/patches/:
+- 00-fix_python-COPYING.patch removed, COPYING file is now
+  installed upstream
 
- -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:23:03 +0200
+ -- David Paleino da...@debian.org  Fri, 25 Jun 2010 07:26:25 +0200
 
 osm-gps-map (0.7.0-1) unstable; urgency=low
 
diff --git a/debian/patches/00-fix_python-COPYING.patch 
b/debian/patches/00-fix_python-COPYING.patch
deleted file mode 100644
index b6f8dcc..000
--- a/debian/patches/00-fix_python-COPYING.patch
+++ /dev/null
@@ -1,696 +0,0 @@
-Author: David Paleino da...@debian.org
-Description: fix python/COPYING file
-Forwarded: no
-

- .gitignore |1 
- python/COPYING |  674 
+
- 2 files changed, 674 insertions(+), 1 deletion(-)
-
 /dev/null
-+++ osm-gps-map/python/COPYING
-@@ -0,0 +1,674 @@
-+GNU GENERAL PUBLIC LICENSE
-+   Version 3, 29 June 2007
-+
-+ Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/
-+ Everyone is permitted to copy and distribute verbatim copies
-+ of this license document, but changing it is not allowed.
-+
-+Preamble
-+
-+  The GNU General Public License is a free, copyleft license for
-+software and other kinds of works.
-+
-+  The licenses for most software and other practical works are designed
-+to take away your freedom to share and change the works.  By contrast,
-+the GNU General Public License is intended to guarantee your freedom to
-+share and change all versions of a program--to make sure it remains free
-+software for all its users.  We, the Free Software Foundation, use the
-+GNU General Public License for most of our software; it applies also to
-+any other work released this way by its authors.  You can apply it to
-+your programs, too.
-+
-+  When we speak of free software, we are referring to freedom, not
-+price.  Our General Public Licenses are designed to make sure that you
-+have the freedom to distribute copies of free software (and charge for
-+them if you wish), that you receive source code or can get it if you
-+want it, that you can change the software or use pieces of it in new
-+free programs, and that you know you can do these things.
-+
-+  To protect your rights, we need to prevent others from denying you
-+these rights or asking you to surrender the rights.  Therefore, you have
-+certain responsibilities if you distribute copies of the software, or if
-+you modify it: responsibilities to respect the freedom of others.
-+
-+  For example, if you distribute copies of such a program, whether
-+gratis or for a fee, you must pass on to the recipients the same
-+freedoms that you received.  You must make sure that they, too, receive
-+or can get the source code.  And you must show them these terms so they
-+know their rights.
-+
-+  Developers that use the GNU GPL protect your rights with two steps:
-+(1) assert copyright on the software, and (2) offer you this License
-+giving you legal permission to copy, distribute and/or modify it.
-+
-+  For the developers' and authors' protection, the GPL clearly explains
-+that there is no warranty for this free software.  For both users' and
-+authors' sake, the GPL requires that modified versions be marked as
-+changed, so that their problems will not be attributed erroneously to
-+authors of previous versions.
-+
-+  Some devices are designed to deny users access to install or run
-+modified versions of the software inside them, although the manufacturer
-+can do so.  This is fundamentally incompatible with the aim of
-+protecting users' freedom to change the software.  The systematic
-+pattern of such abuse occurs in the area of products for individuals to
-+use, which is precisely where it is most unacceptable.  Therefore, we
-+have designed this version of the GPL to prohibit the practice for those
-+products.  If such problems arise substantially in other domains, we
-+stand ready to extend this provision to those domains in future versions
-+of the GPL, as needed to protect the freedom of users.
-+
-+  Finally, every program is threatened constantly by software 

[osm-gps-map] 77/153: debian/libosmgpsmap2.symbols updated, two new symbols added (osm_gps_map_point_copy and osm_gps_map_point_free)

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit b854c3b776d9de3ace4d8101cc074976d8ac9f26
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 09:11:33 2010 +0200

debian/libosmgpsmap2.symbols updated, two new symbols added 
(osm_gps_map_point_copy and osm_gps_map_point_free)
---
 debian/changelog | 4 +++-
 debian/libosmgpsmap2.symbols | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index f3fc00c..44bf1b8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
 osm-gps-map (0.7.2-1) UNRELEASED; urgency=low
 
   * New upstream version
+  * debian/libosmgpsmap2.symbols updated, two new symbols added
+(osm_gps_map_point_copy and osm_gps_map_point_free)
 
- -- David Paleino da...@debian.org  Thu, 22 Jul 2010 08:43:52 +0200
+ -- David Paleino da...@debian.org  Thu, 22 Jul 2010 09:11:14 +0200
 
 osm-gps-map (0.7.1-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap2.symbols b/debian/libosmgpsmap2.symbols
index 44f1f2b..2b24320 100644
--- a/debian/libosmgpsmap2.symbols
+++ b/debian/libosmgpsmap2.symbols
@@ -57,6 +57,8 @@ libosmgpsmap.so.2 libosmgpsmap2 #MINVER#
  osm_gps_map_new@Base 0.7.0
  osm_gps_map_osd_get_type@Base 0.7.0
  osm_gps_map_osd_new@Base 0.7.0
+ osm_gps_map_point_copy@Base 0.7.2
+ osm_gps_map_point_free@Base 0.7.2
  osm_gps_map_point_get_degrees@Base 0.7.0
  osm_gps_map_point_get_radians@Base 0.7.0
  osm_gps_map_point_get_type@Base 0.7.0

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 78/153: debian/control: bump Standards-Version to 3.9.0, no changes needed

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 26169b9c6d67f63efeda8960c54ea42b84bf2e43
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 09:22:20 2010 +0200

debian/control: bump Standards-Version to 3.9.0, no changes needed
---
 debian/changelog | 4 +++-
 debian/control   | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 44bf1b8..4bd2a47 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,10 @@ osm-gps-map (0.7.2-1) UNRELEASED; urgency=low
   * New upstream version
   * debian/libosmgpsmap2.symbols updated, two new symbols added
 (osm_gps_map_point_copy and osm_gps_map_point_free)
+  * debian/control:
+- bump Standards-Version to 3.9.0, no changes needed
 
- -- David Paleino da...@debian.org  Thu, 22 Jul 2010 09:11:14 +0200
+ -- David Paleino da...@debian.org  Thu, 22 Jul 2010 09:21:45 +0200
 
 osm-gps-map (0.7.1-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index b634104..8688c56 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends: debhelper (= 7.0.50~)
  , gnome-common
  , gtk-doc-tools (= 1.12)
 XS-Python-Version: = 2.5
-Standards-Version: 3.8.4
+Standards-Version: 3.9.0
 Homepage: http://nzjrs.github.com/osm-gps-map/
 Vcs-Git: git://git.debian.org/collab-maint/osm-gps-map.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/osm-gps-map.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 74/153: New upstream version

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit abfc6c00f35a4cedb9252f5eb9b5b5c829533d2d
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 08:44:03 2010 +0200

New upstream version
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index dcf7be9..f3fc00c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.7.2-1) UNRELEASED; urgency=low
+
+  * New upstream version
+
+ -- David Paleino da...@debian.org  Thu, 22 Jul 2010 08:43:52 +0200
+
 osm-gps-map (0.7.1-1) unstable; urgency=low
 
   * New upstream version

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 76/153: Patch refreshed

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 17403cd5de230bd21a813840d1869708bf8746cd
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 09:10:43 2010 +0200

Patch refreshed
---
 debian/patches/01-fix_python_linking.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/01-fix_python_linking.patch 
b/debian/patches/01-fix_python_linking.patch
index 71861aa..4472c1f 100644
--- a/debian/patches/01-fix_python_linking.patch
+++ b/debian/patches/01-fix_python_linking.patch
@@ -7,12 +7,12 @@ Subject: fix linking to locally compiled library
 
 --- osm-gps-map.orig/python/configure.ac
 +++ osm-gps-map/python/configure.ac
-@@ -52,7 +52,7 @@ if test -f ../src/libosmgpsmap.la; then
+@@ -57,7 +57,7 @@ if test -f ../src/libosmgpsmap.la; then
  
#and we must link to the local lib
OSMGPSMAP_CFLAGS=-I\$(top_srcdir)/../src/
 -  OSMGPSMAP_LIBS=\$(top_builddir)/../src/libosmgpsmap.la
 +  OSMGPSMAP_LIBS=-L\$(top_builddir)/../src/.libs/ -losmgpsmap
  else
-   PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap = 0.7.1)
+   PKG_CHECK_MODULES(OSMGPSMAP, osmgpsmap = 0.7.2)
  fi

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 81/153: Merge commit 'upstream/0.7.3'

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit b24b3510e08d7a2a691a23ca2a9363b96c30eceb
Merge: d1ebbec 42e63ba
Author: David Paleino da...@debian.org
Date:   Fri Mar 25 19:46:40 2011 +0100

Merge commit 'upstream/0.7.3'

 .gitignore |4 +
 Makefile.am|5 +-
 NEWS   |   12 +
 autogen.sh |5 +-
 configure.ac   |   29 +-
 docs/reference/Makefile.am |9 +-
 examples/Makefile.am   |   22 +-
 examples/README|   14 +
 examples/mapviewer.c   |9 +
 examples/mapviewer.py  |   30 +-
 examples/mapviewer.ui  |   10 +-
 python/README  |9 +
 python/configure.ac|4 +-
 python/osmgpsmap.defs  |9 +
 python/setup.py|2 +-
 src/osm-gps-map-image.c|   27 +-
 src/osm-gps-map-layer.c|   14 +-
 src/osm-gps-map-point.c|   28 +-
 src/osm-gps-map-source.c   |6 +-
 src/osm-gps-map-track.c|   28 +-
 src/osm-gps-map-widget.c   |  177 +--
 src/osm-gps-map-widget.h   |1 +
 src/private.h  |3 +
 uncrustify.cfg | 1174 
 24 files changed, 1552 insertions(+), 79 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 79/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit d1ebbecf7c2176479cd826e04559ae7b2c186664
Author: David Paleino da...@debian.org
Date:   Thu Jul 22 09:36:12 2010 +0200

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4bd2a47..f74b24d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.7.2-1) UNRELEASED; urgency=low
+osm-gps-map (0.7.2-1) unstable; urgency=low
 
   * New upstream version
   * debian/libosmgpsmap2.symbols updated, two new symbols added
@@ -6,7 +6,7 @@ osm-gps-map (0.7.2-1) UNRELEASED; urgency=low
   * debian/control:
 - bump Standards-Version to 3.9.0, no changes needed
 
- -- David Paleino da...@debian.org  Thu, 22 Jul 2010 09:21:45 +0200
+ -- David Paleino da...@debian.org  Thu, 22 Jul 2010 09:22:23 +0200
 
 osm-gps-map (0.7.1-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 82/153: New upstream version

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 7fa054021632e97e3cae47e72503007d4de61548
Author: David Paleino da...@debian.org
Date:   Fri Mar 25 19:47:25 2011 +0100

New upstream version
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index f74b24d..ee43d09 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
+
+  * New upstream version
+
+ -- David Paleino da...@debian.org  Fri, 25 Mar 2011 19:47:20 +0100
+
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
   * New upstream version

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 87/153: Package moved under pkg-osm umbrella

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit eeddedddb451f694818d3182960033fc37ae38a6
Author: David Paleino da...@debian.org
Date:   Fri Mar 25 21:00:59 2011 +0100

Package moved under pkg-osm umbrella
---
 debian/changelog | 3 ++-
 debian/control   | 7 ---
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 514aeb9..e468b25 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,9 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * Patches refreshed
   * Added missing Build-Depends on libgirepository1.0-dev
   * Enable generation of gtkdoc documentation, and introspection
+  * Package moved under pkg-osm umbrella
 
- -- David Paleino da...@debian.org  Fri, 25 Mar 2011 20:57:42 +0100
+ -- David Paleino da...@debian.org  Fri, 25 Mar 2011 21:01:53 +0100
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 1ff4fe5..48e8a4f 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,8 @@
 Source: osm-gps-map
 Section: libs
 Priority: optional
-Maintainer: David Paleino da...@debian.org
+Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
+Uploaders: David Paleino da...@debian.org
 Build-Depends: debhelper (= 7.0.50~)
  , libtool
  , automake
@@ -20,8 +21,8 @@ Build-Depends: debhelper (= 7.0.50~)
 XS-Python-Version: = 2.5
 Standards-Version: 3.9.1
 Homepage: http://nzjrs.github.com/osm-gps-map/
-Vcs-Git: git://git.debian.org/collab-maint/osm-gps-map.git
-Vcs-Browser: http://git.debian.org/?p=collab-maint/osm-gps-map.git
+Vcs-Git: git://git.debian.org/pkg-osm/osm-gps-map.git
+Vcs-Browser: http://git.debian.org/?p=pkg-osm/osm-gps-map.git
 
 Package: libosmgpsmap-dev
 Section: libdevel

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 88/153: Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 9185e04c9ce0f9c22f9683e9fb99bb3443c8c172
Author: David Paleino da...@debian.org
Date:   Fri Mar 25 21:18:31 2011 +0100

Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu
---
 debian/changelog | 3 ++-
 debian/rules | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e468b25..95d5851 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,8 +6,9 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * Added missing Build-Depends on libgirepository1.0-dev
   * Enable generation of gtkdoc documentation, and introspection
   * Package moved under pkg-osm umbrella
+  * Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu
 
- -- David Paleino da...@debian.org  Fri, 25 Mar 2011 21:01:53 +0100
+ -- David Paleino da...@debian.org  Fri, 25 Mar 2011 21:16:24 +0100
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index d479c56..6e45e9d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,6 +4,8 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+export CFLAGS+=-UGDK_DISABLE_DEPRECATED
+
 # This is a bit hacky.
 override_dh_auto_configure:
NOCONFIGURE=y ./autogen.sh

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 90/153: Introspection is currently broken

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 009da64f923ee313574950ce09149fe411a97ccd
Author: David Paleino da...@debian.org
Date:   Wed Mar 30 13:04:16 2011 +0200

Introspection is currently broken
---
 debian/changelog | 5 ++---
 debian/control   | 1 -
 debian/rules | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e4fd283..e20c7d4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,13 +3,12 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * New upstream version
   * Bump Standards-Version to 3.9.1, no changes needed
   * Patches refreshed
-  * Added missing Build-Depends on libgirepository1.0-dev
-  * Enable generation of gtkdoc documentation, and introspection
+  * Enable generation of gtkdoc documentation
   * Package moved under pkg-osm umbrella
   * Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu
   * Move files to be cleaned inside debian/clean
 
- -- David Paleino da...@debian.org  Fri, 25 Mar 2011 22:24:01 +0100
+ -- David Paleino da...@debian.org  Wed, 30 Mar 2011 13:04:00 +0200
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 48e8a4f..ec3601b 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,6 @@ Build-Depends: debhelper (= 7.0.50~)
  , python-all-dev
  , gnome-common
  , gtk-doc-tools (= 1.12)
- , libgirepository1.0-dev (= 0.6.7)
 XS-Python-Version: = 2.5
 Standards-Version: 3.9.1
 Homepage: http://nzjrs.github.com/osm-gps-map/
diff --git a/debian/rules b/debian/rules
index fc6e0c1..3421bf7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -13,8 +13,7 @@ override_dh_auto_configure:
--enable-maintainer-mode \
--enable-gtk-doc \
--enable-gtk-doc-html \
-   --enable-gtk-doc-pdf \
-   --enable-introspection=yes
+   --enable-gtk-doc-pdf
 
 override_dh_auto_install:
for py in $(shell pyversions -r); do \

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 89/153: Move files to be cleaned inside debian/clean

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 55b5fc3c72024b0cb4a7188631a59289422ce3a1
Author: David Paleino da...@debian.org
Date:   Fri Mar 25 22:24:50 2011 +0100

Move files to be cleaned inside debian/clean
---
 debian/changelog |  3 ++-
 debian/clean | 11 +++
 debian/rules |  4 
 3 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 95d5851..e4fd283 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,8 +7,9 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * Enable generation of gtkdoc documentation, and introspection
   * Package moved under pkg-osm umbrella
   * Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu
+  * Move files to be cleaned inside debian/clean
 
- -- David Paleino da...@debian.org  Fri, 25 Mar 2011 21:16:24 +0100
+ -- David Paleino da...@debian.org  Fri, 25 Mar 2011 22:24:01 +0100
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 000..fa1019e
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,11 @@
+compile
+osmgpsmap.pc
+python/osmgpsmap.c
+src/openstreetmap-gps-map
+stamp-h1
+docs/reference/version.xml
+gkt-doc.make
+omf.make
+python/omf.make
+python/xmldocs.make
+xmldocs.make
diff --git a/debian/rules b/debian/rules
index 6e45e9d..fc6e0c1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -38,10 +38,6 @@ override_dh_auto_clean:
-o -name missing -o -name INSTALL \
-o -name aclocal.m4 -o -name depcomp \) -delete
 
-   dh_clean compile osmgpsmap.pc python/osmgpsmap.c \
-   src/openstreetmap-gps-map stamp-h1 \
-   docs/reference/version.xml gkt-doc.make
-
 override_dh_strip:
dh_strip --keep-debug --dbg-package=libosmgpsmap2-dbg
-mkdir -p $(CURDIR)/debian/python-osmgpsmap-dbg/usr/lib/debug/usr/lib/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 83/153: Bump Standards-Version to 3.9.1, no changes needed

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 4a2086ce97745783a6377333c8c6f6b3ec7c6efb
Author: David Paleino da...@debian.org
Date:   Fri Mar 25 19:49:02 2011 +0100

Bump Standards-Version to 3.9.1, no changes needed
---
 debian/changelog | 3 ++-
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ee43d09..c4cbd43 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
 
   * New upstream version
+  * Bump Standards-Version to 3.9.1, no changes needed
 
- -- David Paleino da...@debian.org  Fri, 25 Mar 2011 19:47:20 +0100
+ -- David Paleino da...@debian.org  Fri, 25 Mar 2011 19:48:52 +0100
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 8688c56..b205f2a 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends: debhelper (= 7.0.50~)
  , gnome-common
  , gtk-doc-tools (= 1.12)
 XS-Python-Version: = 2.5
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Homepage: http://nzjrs.github.com/osm-gps-map/
 Vcs-Git: git://git.debian.org/collab-maint/osm-gps-map.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/osm-gps-map.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 95/153: Don't install *.la files anymore (Closes: #621487)

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 2e6a22617be1e2b61206e60747579b13ff01714e
Author: David Paleino da...@debian.org
Date:   Sun Apr 17 11:02:29 2011 +0200

Don't install *.la files anymore (Closes: #621487)
---
 debian/changelog| 6 ++
 debian/libosmgpsmap-dev.install | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 7d837fc..a4067b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+osm-gps-map (0.7.3-2) UNRELEASED; urgency=low
+
+  * Don't install *.la files anymore (Closes: #621487)
+
+ -- David Paleino da...@debian.org  Sun, 17 Apr 2011 11:02:06 +0200
+
 osm-gps-map (0.7.3-1) unstable; urgency=low
 
   * New upstream version
diff --git a/debian/libosmgpsmap-dev.install b/debian/libosmgpsmap-dev.install
index 6fcfdff..3e4a8ca 100644
--- a/debian/libosmgpsmap-dev.install
+++ b/debian/libosmgpsmap-dev.install
@@ -2,6 +2,5 @@ usr/include/*
 usr/lib/lib*.a
 usr/lib/lib*.so
 usr/lib/pkgconfig/*
-usr/lib/*.la
 
 docs/reference/html/*  /usr/share/gtk-doc/html/osmgpsmap/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 92/153: Symbols file updated

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit fed9cba50e2a76aef07402b47160d86a288bb4bd
Author: David Paleino da...@debian.org
Date:   Wed Mar 30 14:21:31 2011 +0200

Symbols file updated
---
 debian/changelog | 3 ++-
 debian/libosmgpsmap2.symbols | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index af23190..71d4e1a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,8 +7,9 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * Package moved under pkg-osm umbrella
   * Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu
   * Move files to be cleaned inside debian/clean
+  * Symbols file updated
 
- -- David Paleino da...@debian.org  Wed, 30 Mar 2011 13:29:13 +0200
+ -- David Paleino da...@debian.org  Wed, 30 Mar 2011 14:21:24 +0200
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap2.symbols b/debian/libosmgpsmap2.symbols
index 2b24320..2cf1420 100644
--- a/debian/libosmgpsmap2.symbols
+++ b/debian/libosmgpsmap2.symbols
@@ -75,6 +75,7 @@ libosmgpsmap.so.2 libosmgpsmap2 #MINVER#
  osm_gps_map_set_keyboard_shortcut@Base 0.7.0
  osm_gps_map_set_mapcenter@Base 0.7.0
  osm_gps_map_set_zoom@Base 0.7.0
+ osm_gps_map_set_zoom_offset@Base 0.7.3
  osm_gps_map_source_get_friendly_name@Base 0.7.0
  osm_gps_map_source_get_image_format@Base 0.7.0
  osm_gps_map_source_get_max_zoom@Base 0.7.0

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 96/153: Standards-Version bump to 3.9.2, no changes needed

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit e10ec65adcbf33e29702817b6a7e7f6a866e53bf
Author: David Paleino da...@debian.org
Date:   Sun Apr 17 11:06:28 2011 +0200

Standards-Version bump to 3.9.2, no changes needed
---
 debian/changelog | 3 ++-
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a4067b5..1f78ecc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 osm-gps-map (0.7.3-2) UNRELEASED; urgency=low
 
   * Don't install *.la files anymore (Closes: #621487)
+  * Standards-Version bump to 3.9.2, no changes needed
 
- -- David Paleino da...@debian.org  Sun, 17 Apr 2011 11:02:06 +0200
+ -- David Paleino da...@debian.org  Sun, 17 Apr 2011 11:02:51 +0200
 
 osm-gps-map (0.7.3-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index ec3601b..5d061a8 100644
--- a/debian/control
+++ b/debian/control
@@ -18,7 +18,7 @@ Build-Depends: debhelper (= 7.0.50~)
  , gnome-common
  , gtk-doc-tools (= 1.12)
 XS-Python-Version: = 2.5
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
 Homepage: http://nzjrs.github.com/osm-gps-map/
 Vcs-Git: git://git.debian.org/pkg-osm/osm-gps-map.git
 Vcs-Browser: http://git.debian.org/?p=pkg-osm/osm-gps-map.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 93/153: Add more files to be cleaned up

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 3c27c165eed6dad658357290438e809df0f03736
Author: David Paleino da...@debian.org
Date:   Wed Mar 30 14:24:25 2011 +0200

Add more files to be cleaned up
---
 debian/clean | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/debian/clean b/debian/clean
index fa1019e..d27f88e 100644
--- a/debian/clean
+++ b/debian/clean
@@ -9,3 +9,13 @@ omf.make
 python/omf.make
 python/xmldocs.make
 xmldocs.make
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
+python/m4/libtool.m4
+python/m4/ltoptions.m4
+python/m4/ltsugar.m4
+python/m4/ltversion.m4
+python/m4/lt~obsolete.m4

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 94/153: Releasing to sid

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit fa1fe2e045320e78be278d0181378845173c889c
Author: David Paleino da...@debian.org
Date:   Wed Mar 30 14:31:51 2011 +0200

Releasing to sid
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 71d4e1a..7d837fc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
+osm-gps-map (0.7.3-1) unstable; urgency=low
 
   * New upstream version
   * Bump Standards-Version to 3.9.1, no changes needed
@@ -9,7 +9,7 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * Move files to be cleaned inside debian/clean
   * Symbols file updated
 
- -- David Paleino da...@debian.org  Wed, 30 Mar 2011 14:21:24 +0200
+ -- David Paleino da...@debian.org  Wed, 30 Mar 2011 14:24:35 +0200
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


[osm-gps-map] 91/153: Install documentation under devhelp and doc-base

2014-05-13 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository osm-gps-map.

commit 89f11b419baab7abf7585fba6522bc59584ac94b
Author: David Paleino da...@debian.org
Date:   Wed Mar 30 13:29:42 2011 +0200

Install documentation under devhelp and doc-base
---
 debian/changelog | 2 +-
 debian/libosmgpsmap-dev.dirs | 1 +
 debian/libosmgpsmap-dev.doc-base | 9 +
 debian/libosmgpsmap-dev.install  | 2 ++
 4 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e20c7d4..af23190 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,7 +8,7 @@ osm-gps-map (0.7.3-1) UNRELEASED; urgency=low
   * Add -UGDK_DISABLE_DEPRECATED to CFLAGS, merged from Ubuntu
   * Move files to be cleaned inside debian/clean
 
- -- David Paleino da...@debian.org  Wed, 30 Mar 2011 13:04:00 +0200
+ -- David Paleino da...@debian.org  Wed, 30 Mar 2011 13:29:13 +0200
 
 osm-gps-map (0.7.2-1) unstable; urgency=low
 
diff --git a/debian/libosmgpsmap-dev.dirs b/debian/libosmgpsmap-dev.dirs
new file mode 100644
index 000..59a7fc0
--- /dev/null
+++ b/debian/libosmgpsmap-dev.dirs
@@ -0,0 +1 @@
+usr/share/gtk-doc/html/osmgpsmap/
diff --git a/debian/libosmgpsmap-dev.doc-base b/debian/libosmgpsmap-dev.doc-base
new file mode 100644
index 000..8b43c5f
--- /dev/null
+++ b/debian/libosmgpsmap-dev.doc-base
@@ -0,0 +1,9 @@
+Document: libosmgpsmap-dev
+Title: OsmGpsMap Reference Manual
+Author: John Stowers
+Abstract: This manual describes the OsmGpsMap API.
+Section: Programming/C
+
+Format: HTML
+Index: /usr/share/gtk-doc/html/osmgpsmap/index.html
+Files: /usr/share/gtk-doc/html/osmgpsmap/*.html
diff --git a/debian/libosmgpsmap-dev.install b/debian/libosmgpsmap-dev.install
index 68a175d..6fcfdff 100644
--- a/debian/libosmgpsmap-dev.install
+++ b/debian/libosmgpsmap-dev.install
@@ -3,3 +3,5 @@ usr/lib/lib*.a
 usr/lib/lib*.so
 usr/lib/pkgconfig/*
 usr/lib/*.la
+
+docs/reference/html/*  /usr/share/gtk-doc/html/osmgpsmap/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/osm-gps-map.git

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


  1   2   >