Bug#861788: unblock: libosmium/2.11.3-1

2017-05-03 Thread Bas Couwenberg
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libosmium

Upstream has only fixed bugs for this release in line with the freeze
policy.

(include/attach the debdiff against the package in testing)

unblock libosmium/2.11.3-1

Kind Regards,

Bas
diff -Nru libosmium-2.11.1/CHANGELOG.md libosmium-2.11.3/CHANGELOG.md
--- libosmium-2.11.1/CHANGELOG.md   2017-03-07 13:54:48.0 +0100
+++ libosmium-2.11.3/CHANGELOG.md   2017-05-03 14:01:48.0 +0200
@@ -8,6 +8,24 @@
 
 ### Fixed
 
+## [2.11.3] - 2017-05-03
+
+### Fixed
+
+- Two bugs in area assembler affecting very complex multipolygons and
+  multipolygons with overlapping or nearly overlapping lines.
+- Invalid use of iterators leading to undefined behaviour in area assembler
+  code.
+- Read OPL file correctly even if trailing newline in file is missing.
+
+
+## [2.11.2] - 2017-04-10
+
+### Fixed
+
+- Use minimum size of 64 bytes for buffers. This fixes an infinite loop
+  when buffer size is zero.
+
 
 ## [2.11.1] - 2017-03-07
 
@@ -531,7 +549,9 @@
   Doxygen (up to version 1.8.8). This version contains a workaround to fix
   this.
 
-[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.1...HEAD
+[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.3...HEAD
+[2.11.3]: https://github.com/osmcode/libosmium/compare/v2.11.2...v2.11.3
+[2.11.2]: https://github.com/osmcode/libosmium/compare/v2.11.1...v2.11.2
 [2.11.1]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.11.1
 [2.11.0]: https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
 [2.10.3]: https://github.com/osmcode/libosmium/compare/v2.10.2...v2.10.3
diff -Nru libosmium-2.11.1/CMakeLists.txt libosmium-2.11.3/CMakeLists.txt
--- libosmium-2.11.1/CMakeLists.txt 2017-03-07 13:54:48.0 +0100
+++ libosmium-2.11.3/CMakeLists.txt 2017-05-03 14:01:48.0 +0200
@@ -25,7 +25,7 @@
 
 set(LIBOSMIUM_VERSION_MAJOR 2)
 set(LIBOSMIUM_VERSION_MINOR 11)
-set(LIBOSMIUM_VERSION_PATCH 1)
+set(LIBOSMIUM_VERSION_PATCH 3)
 
 set(LIBOSMIUM_VERSION
 
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")
diff -Nru libosmium-2.11.1/debian/changelog libosmium-2.11.3/debian/changelog
--- libosmium-2.11.1/debian/changelog   2017-03-07 18:31:00.0 +0100
+++ libosmium-2.11.3/debian/changelog   2017-05-03 18:44:44.0 +0200
@@ -1,3 +1,17 @@
+libosmium (2.11.3-1) unstable; urgency=medium
+
+  * New upstream bugfix release.
+- Use minimum size of 64 bytes for buffers. This fixes an infinite
+  loop when buffer size is zero.
+- Two bugs in area assembler affecting very complex multipolygons and
+  multipolygons with overlapping or nearly overlapping lines.
+- Invalid use of iterators leading to undefined behaviour in area
+  assembler code.
+- Read OPL file correctly even if trailing newline in file is missing.
+  * Update watch file to limit results to 2.11.x releases.
+
+ -- Bas Couwenberg   Wed, 03 May 2017 18:44:44 +0200
+
 libosmium (2.11.1-1) unstable; urgency=medium
 
   * New upstream bugfix release.
diff -Nru libosmium-2.11.1/debian/watch libosmium-2.11.3/debian/watch
--- libosmium-2.11.1/debian/watch   2017-03-07 18:23:24.0 +0100
+++ libosmium-2.11.3/debian/watch   2017-05-03 18:38:25.0 +0200
@@ -4,4 +4,4 @@
 
uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\
 
filenamemangle=s/(?:.*\/)?(?:rel|v|libosmium)[\-\_]?(\d[\d\-\.]+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/libosmium-$1.$2/
 \
 https://github.com/osmcode/libosmium/releases \
-(?:.*/)?(?:rel|v|libosmium)[\-\_]?(\d[\d\-\.]+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
+(?:.*/)?(?:rel|v|libosmium)[\-\_]?(2\.11\.\d[\d\-\.]*)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
diff -Nru libosmium-2.11.1/include/osmium/area/assembler.hpp 
libosmium-2.11.3/include/osmium/area/assembler.hpp
--- libosmium-2.11.1/include/osmium/area/assembler.hpp  2017-03-07 
13:54:48.0 +0100
+++ libosmium-2.11.3/include/osmium/area/assembler.hpp  2017-05-03 
14:01:48.0 +0200
@@ -474,17 +474,17 @@
 
 class rings_stack_element {
 
-int32_t m_y;
+double m_y;
 detail::ProtoRing* m_ring_ptr;
 
 public:
 
-rings_stack_element(int32_t y, detail::ProtoRing* ring_ptr) :
+rings_stack_element(double y, detail::ProtoRing* ring_ptr) :
 m_y(y),
 m_ring_ptr(ring_ptr) {
 }
 
-int32_t y() const noexcept {
+double y() const noexcept {
 return m_y;
 }
 
@@ -504,7 +504,7 @@
 return m_y < rhs.m_y;
 }
 
-}; // class ring_stack_element
+}; // class rings_stack_element
 
 using rings_stack = std::vector;
 
@@ -592,7 

[grass] tag ubuntugis/7.2.1-1.trusty1 created (now 73f60c1)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to tag ubuntugis/7.2.1-1.trusty1
in repository grass.

at  73f60c1   (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/grass.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


[grass] tag ubuntugis/7.2.1-1.exp1.trusty1 deleted (was 73f60c1)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to tag ubuntugis/7.2.1-1.exp1.trusty1
in repository grass.

*** WARNING: tag ubuntugis/7.2.1-1.exp1.trusty1 was deleted! ***

   was  73f60c1   Rebuild 7.2.1 for trusty

The revisions that were on this tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] tag ubuntugis/7.2.1-1.xenial1 created (now 2dc0106)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to tag ubuntugis/7.2.1-1.xenial1
in repository grass.

at  2dc0106   (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/grass.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



[grass] branch ubuntugis/trusty updated (967064f -> 73f60c1)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to branch ubuntugis/trusty
in repository grass.

  from  967064f   Rebuild 7.2.1~rc2 for trusty
  adds  beb009c   Imported Upstream version 7.2.1
  adds  11d593a   Merge tag 'upstream/7.2.1' into experimental
  adds  d90212e   New upstream release.
  adds  42071f1   Set distribution to experimental.
   new  73f60c1   Rebuild 7.2.1 for trusty

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:
 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 debian/changelog |  12 ++
 debian/control   |   2 +-
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 16 files changed, 107 insertions(+), 113 deletions(-)
 create mode 100644 ChangeLog_7.2.1.gz
 delete mode 100644 ChangeLog_7.2.1RC2.gz
 delete mode 100644 demolocation/PERMANENT/.bash_history
 delete mode 100644 demolocation/PERMANENT/.bashrc
 create mode 100644 vector/v.kernel/v_kernel.png

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] tag ubuntugis/7.2.1-1.exp1.trusty1 created (now 73f60c1)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to tag ubuntugis/7.2.1-1.exp1.trusty1
in repository grass.

at  73f60c1   (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/grass.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


[grass] 01/01: Rebuild 7.2.1 for trusty

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a commit to branch ubuntugis/trusty
in repository grass.

commit 73f60c131b132c3ad8099ebc41a1f53e75424058
Merge: 967064f 42071f1
Author: Martin Landa 
Date:   Wed May 3 20:54:38 2017 +0200

Rebuild 7.2.1 for trusty

 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 debian/changelog |  12 ++
 debian/control   |   2 +-
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 16 files changed, 107 insertions(+), 113 deletions(-)

diff --cc debian/changelog
index 9dc3864,3c87dc9..8028e79
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,9 +1,21 @@@
++grass (7.2.1-1~trusty1) trusty; urgency=medium
++
++  * Rebuild for trusty.
++
++ -- Martin Landa   Wed, 03 May 2017 20:54:02 +0200
++
+ grass (7.2.1-1~exp1) experimental; urgency=medium
+ 
+   * New upstream release.
+ 
+  -- Bas Couwenberg   Wed, 03 May 2017 18:40:15 +0200
+ 
 +grass (7.2.1~rc2-1~exp1~trusty1) trusty; urgency=medium
 +
 +  * Rebuild for trusty.
 +
 + -- Martin Landa   Sun, 23 Apr 2017 11:57:44 +0200
 +
  grass (7.2.1~rc2-1~exp1) experimental; urgency=medium
  
* New upstream release candidate.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] 01/01: Rebuild 7.2.1~rc1 for yakkety

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a commit to branch ubuntugis/yakkety
in repository grass.

commit 3fb0d0cc78a04d7dce3f6090c8bebc885676e143
Merge: fe5902f b5cbf04
Author: Martin Landa 
Date:   Wed Apr 5 17:36:21 2017 +0200

Rebuild 7.2.1~rc1 for yakkety

 AUTHORS| 6 +-
 CITING | 2 +-
 ChangeLog_7.2.0RC1.gz  |   Bin 847678 -> 0 bytes
 ChangeLog_7.2.1RC1.gz  |   Bin 0 -> 862811 bytes
 INSTALL| 4 +-
 REQUIREMENTS.html  | 4 +-
 Vagrantfile|13 +-
 configure.in   | 2 +-
 contributors.csv   | 9 +-
 contributors_extra.csv |17 +-
 db/drivers/odbc/TODO   | 4 +-
 db/drivers/ogr/describe.c  |14 +-
 db/drivers/postgres/README | 2 +-
 db/drivers/postgres/describe.c | 4 +-
 db/drivers/postgres/grass-pg.html  | 7 +-
 db/drivers/postgres/priv.c | 2 +-
 db/drivers/sqlite/README   | 2 +-
 db/drivers/sqlite/grass-sqlite.html| 4 +-
 debian/changelog   |60 +
 debian/control | 2 +-
 debian/copyright   |34 +-
 debian/patches/spelling-errors.patch   |93 +-
 debian/rules   | 5 +-
 display/d.barscale/draw_scale.c|   323 +-
 display/d.barscale/main.c  |19 +-
 display/d.barscale/options.h   | 2 +-
 display/d.geodesic/d.geodesic.html | 5 +-
 display/d.legend.vect/d.legend.vect.html   | 4 +-
 display/d.linegraph/main.c | 4 +
 display/d.mon/render_cmd.py|10 +-
 display/d.rast.arrow/d.rast.arrow.html | 8 +-
 display/d.rast.arrow/d_rast_arrow_wind.png |   Bin 0 -> 51500 bytes
 display/d.rhumbline/d.rhumbline.html   | 5 +-
 display/d.vect.thematic/d.vect.thematic.html   | 4 +-
 display/d.vect/zcoor.c |35 +-
 doc/gi_addons.jpg  |   Bin 0 -> 28793 bytes
 doc/{gi_misc.jpg => gi_miscellaneous.jpg}  |   Bin
 doc/grass_database.png |   Bin 46732 -> 51787 bytes
 doc/grass_database.svg |   117 +-
 doc/howto_release.txt  |39 +-
 doc/infrastructure.txt |61 +-
 general/g.parser/standard_option.c | 1 +
 general/g.region/Makefile  | 4 +-
 general/g.region/main.c|70 +-
 general/g.version/g.version.html   |35 +-
 grasslib.dox   | 2 +-
 gui/icons/Makefile |32 +-
 gui/icons/grass.desktop|95 +-
 gui/wxpython/animation/dialogs.py  |11 +-
 gui/wxpython/animation/utils.py| 2 +-
 gui/wxpython/core/debug.py | 4 +-
 gui/wxpython/core/globalvar.py | 2 +
 gui/wxpython/core/render.py| 8 +-
 gui/wxpython/core/settings.py  |12 +-
 gui/wxpython/core/utils.py |10 +-
 gui/wxpython/core/ws.py| 2 +-
 gui/wxpython/datacatalog/tree.py   | 8 +-
 gui/wxpython/dbmgr/base.py | 5 +-
 gui/wxpython/dbmgr/dialogs.py  | 5 +-
 gui/wxpython/docs/wxGUI.html   |15 +-
 gui/wxpython/gcp/manager.py| 5 +-
 gui/wxpython/gcp/statusbar.py  | 3 +-
 gui/wxpython/gis_set.py|63 +-
 gui/wxpython/gmodeler/dialogs.py   | 2 +-
 gui/wxpython/gmodeler/model.py | 2 +-
 gui/wxpython/gmodeler/preferences.py   |17 +-
 gui/wxpython/gui_core/dialogs.py   | 7 +-
 gui/wxpython/gui_core/forms.py |11 +-
 gui/wxpython/gui_core/ghelp.py | 2 +-
 gui/wxpython/gui_core/preferences.py   |52 +-
 gui/wxpython/gui_core/pyedit.py| 2 +-
 gui/wxpython/gui_core/wrap.py  |36 +
 gui/wxpython/gui_core/wxlibplot.py |   

[grass] 01/01: Rebuild 7.2.1 for xenial

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a commit to branch ubuntugis/xenial
in repository grass.

commit 2dc01067acefe503f1436d699b6cf9e0c2a54b8b
Merge: 9e5d712 42071f1
Author: Martin Landa 
Date:   Wed May 3 20:39:55 2017 +0200

Rebuild 7.2.1 for xenial

 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 debian/changelog |  12 ++
 debian/control   |   2 +-
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 16 files changed, 107 insertions(+), 113 deletions(-)

diff --cc debian/changelog
index fd3db92,3c87dc9..25673a6
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,15 -1,9 +1,27 @@@
++grass (7.2.1-1~xenial1) xenial; urgency=medium
++
++  * Rebuild for xenial.
++
++ -- Martin Landa   Wed, 03 May 2017 20:36:50 +0200
++
+ grass (7.2.1-1~exp1) experimental; urgency=medium
+ 
+   * New upstream release.
+ 
+  -- Bas Couwenberg   Wed, 03 May 2017 18:40:15 +0200
+ 
 +grass (7.2.1~rc2-1~exp1~xenial2) UNRELEASED; urgency=medium
 +
 +  * Drop global disabling of PIE, made conditional for Ubuntu.
 +
 + -- Bas Couwenberg   Sun, 23 Apr 2017 12:03:07 +0200
 +
 +grass (7.2.1~rc2-1~exp1~xenial1) xenial; urgency=medium
 +
 +  * Rebuild for xenial.
 +
 + -- Martin Landa   Sun, 23 Apr 2017 11:02:32 +0200
 +
  grass (7.2.1~rc2-1~exp1) experimental; urgency=medium
  
* New upstream release candidate.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] branch ubuntugis/xenial updated (9e5d712 -> 2dc0106)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to branch ubuntugis/xenial
in repository grass.

  from  9e5d712   Drop global disabling of PIE, made conditional for Ubuntu.
  adds  beb009c   Imported Upstream version 7.2.1
  adds  11d593a   Merge tag 'upstream/7.2.1' into experimental
  adds  d90212e   New upstream release.
  adds  42071f1   Set distribution to experimental.
   new  2dc0106   Rebuild 7.2.1 for xenial

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:
 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 debian/changelog |  12 ++
 debian/control   |   2 +-
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 16 files changed, 107 insertions(+), 113 deletions(-)
 create mode 100644 ChangeLog_7.2.1.gz
 delete mode 100644 ChangeLog_7.2.1RC2.gz
 delete mode 100644 demolocation/PERMANENT/.bash_history
 delete mode 100644 demolocation/PERMANENT/.bashrc
 create mode 100644 vector/v.kernel/v_kernel.png

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] branch ubuntugis/yakkety updated (fe5902f -> 3fb0d0c)

2017-05-03 Thread Martin Landa
This is an automated email from the git hooks/post-receive script.

martinl-guest pushed a change to branch ubuntugis/yakkety
in repository grass.

  from  fe5902f   Update branch in gbp.conf & Vcs-Git URL (add ubuntugis 
prefix)
  adds  8c7e765   Mark spelling-errors.patch as Applied-Upstream.
  adds  42c2f88   Drop Conflicts/Provides/Replaces in control.in too.
  adds  4b3419c   Strip common after only dependency.
  adds  8f32342   Set distribution to experimental.
  adds  9ca950c   Imported Upstream version 7.2.0~rc2
  adds  b396e23   Merge tag 'upstream/7.2.0_rc2' into experimental
  adds  48fc010   New upstream release candidate.
  adds  bfd0700   Add license & copyright for fix_typos.sh.
  adds  2d64e17   Drop spelling-errors.patch, applied upstream.
  adds  3e28770   Re-instate lintian overrides for hardening-no-pie.
  adds  9a9c110   Set distribution to experimental.
  adds  6982921   Add patch to fix v.net.iso segmentation fault. (closes: 
#845429)
  adds  6a2f5c1   Re-instate lintian overrides for hardening-no-pie.
  adds  082e368   Set distribution to unstable.
  adds  24d7692   Merge tag 'debian/7.0.5-3' into experimental
  adds  4f43fad   Make grass-core depend on grass-doc, g.extension requires 
some of its files. (LP: #1646812)
  adds  7a2436b   Revert "Update branch in gbp.conf & Vcs-Git URL."
  adds  533f29d   Imported Upstream version 7.2.0
  adds  721b005   Merge tag 'upstream/7.2.0'
  adds  0578ead   New upstream release.
  adds  0baaae4   Drop svn-r69952-dglib-update-to-libavl-2.0.3.patch, 
included upstream.
  adds  9f85a72   Update license & copyright for avl.
  adds  1ab2338   Add patch to fix spelling errors.
  adds  be045d8   Add patch to fix hicolor icon name.
  adds  c58b5d2   Set distribution to unstable.
  adds  eca0567   Mark hicolor-icons.patch as Applied-Upstream.
  adds  f7d83e8   Enable PIE hardening flags. (closes: #859372)
  adds  b1042e4   Drop unused lintian overrides for hardening-no-pie.
  adds  7398dec   Set distribution to unstable.
  adds  e0fa381   Update branch in gbp.conf & Vcs-Git URL.
  adds  f6982bb   Imported Upstream version 7.2.1~rc1
  adds  01c28ca   Merge tag 'upstream/7.2.1_rc1' into experimental
  adds  183789c   New upstream release candidate.
  adds  91944d0   Drop patches applied upstream.
  adds  5e4728f   Update copyright file.
  adds  75121c7   Add patch to fix spelling errors.
  adds  b5cbf04   Set distribution to experimental.
   new  3fb0d0c   Rebuild 7.2.1~rc1 for yakkety

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:
 AUTHORS| 6 +-
 CITING | 2 +-
 ChangeLog_7.2.0RC1.gz  |   Bin 847678 -> 0 bytes
 ChangeLog_7.2.1RC1.gz  |   Bin 0 -> 862811 bytes
 INSTALL| 4 +-
 REQUIREMENTS.html  | 4 +-
 Vagrantfile|13 +-
 configure.in   | 2 +-
 contributors.csv   | 9 +-
 contributors_extra.csv |17 +-
 db/drivers/odbc/TODO   | 4 +-
 db/drivers/ogr/describe.c  |14 +-
 db/drivers/postgres/README | 2 +-
 db/drivers/postgres/describe.c | 4 +-
 db/drivers/postgres/grass-pg.html  | 7 +-
 db/drivers/postgres/priv.c | 2 +-
 db/drivers/sqlite/README   | 2 +-
 db/drivers/sqlite/grass-sqlite.html| 4 +-
 debian/changelog   |60 +
 debian/control | 2 +-
 debian/copyright   |34 +-
 debian/patches/spelling-errors.patch   |93 +-
 debian/rules   | 5 +-
 display/d.barscale/draw_scale.c|   323 +-
 display/d.barscale/main.c  |19 +-
 display/d.barscale/options.h   | 2 +-
 display/d.geodesic/d.geodesic.html | 5 +-
 display/d.legend.vect/d.legend.vect.html   | 4 +-
 display/d.linegraph/main.c | 4 +
 display/d.mon/render_cmd.py|10 +-
 display/d.rast.arrow/d.rast.arrow.html | 8 +-
 display/d.rast.arrow/d_rast_arrow_wind.png |   Bin 0 -> 51500 bytes
 display/d.rhumbline/d.rhumbline.html

grass_7.2.1-1~exp1_amd64.changes ACCEPTED into experimental

2017-05-03 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 May 2017 18:40:15 +0200
Source: grass
Binary: grass grass-core grass-gui grass-doc grass-dev-doc grass-dev
Architecture: source amd64 all
Version: 7.2.1-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 grass  - Geographic Resources Analysis Support System (GRASS GIS)
 grass-core - GRASS GIS core components
 grass-dev  - GRASS GIS development files
 grass-dev-doc - GRASS GIS Programmers' Manual
 grass-doc  - GRASS GIS user documentation
 grass-gui  - GRASS GIS graphical user interfaces
Changes:
 grass (7.2.1-1~exp1) experimental; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 8260aa3a36569286ae78da6bd5dce2df91f03d08 2805 grass_7.2.1-1~exp1.dsc
 27e0bbc063972462fc96c1c4e9ce49c4350a2612 46657090 grass_7.2.1.orig.tar.gz
 ea00c21c4363bb2e8b9d694db737ab657ca4f927 29600 grass_7.2.1-1~exp1.debian.tar.xz
 b43823b6e1ce5dad2972166d9677ce481cab2bac 11528858 
grass-core-dbgsym_7.2.1-1~exp1_amd64.deb
 7f2626491d460667c7519eedc99bb9b0b0730874 5514518 
grass-core_7.2.1-1~exp1_amd64.deb
 d98f070d0d9b36c11cfe7dc4bbaf99ca8454f491 3670 
grass-dev-dbgsym_7.2.1-1~exp1_amd64.deb
 da662fb97a66fbcfb9dbc91124fa06d4ed8248a2 8193134 
grass-dev-doc_7.2.1-1~exp1_all.deb
 2e46e3b73a7ab289d231b69392d8cef8e337ddd3 201344 
grass-dev_7.2.1-1~exp1_amd64.deb
 eea42a2f153961d14b4b02fb4c5ff36a57cb9c6a 24191586 
grass-doc_7.2.1-1~exp1_all.deb
 e92f4c9e540ce537dd7dd5006d9bd1fdfe37b89f 3201384 
grass-gui_7.2.1-1~exp1_amd64.deb
 562fc9a4ba50c1e35b84db3c22b75a209b3576ed 19638 grass_7.2.1-1~exp1_all.deb
 c8cf5f101cfbb9ef59239d008f6b49dd1b89bd94 18410 
grass_7.2.1-1~exp1_amd64.buildinfo
Checksums-Sha256:
 258777db202ec964484c0569db14fa4c1369eb346bac274d84dd64e9750d 2805 
grass_7.2.1-1~exp1.dsc
 4bccf6676bb3546fb4de0a20d7931abee56b92cafc96e8e8563cc07b5a3d 46657090 
grass_7.2.1.orig.tar.gz
 9435c9b78f527c4c7bf5cec201cc18a318d51efbe4071f79919e1e6a09ed8acc 29600 
grass_7.2.1-1~exp1.debian.tar.xz
 c53d7ea0a5e4a718704920d68017209bdc1aeaa34c0ae43f384fc11322a02201 11528858 
grass-core-dbgsym_7.2.1-1~exp1_amd64.deb
 7e3b8343063d3904f516b475ac2bcc48996de6babebd54fe95f9e62fdcb2bc54 5514518 
grass-core_7.2.1-1~exp1_amd64.deb
 f4e5ec238b59b0056f7eedfeac40da9b26cd3cc1cc4946f139e814cac8a3600e 3670 
grass-dev-dbgsym_7.2.1-1~exp1_amd64.deb
 6bbcc6d8bf8c20a3113b6be8aed101423a91d4cc55dc7e7547e5783547f7e166 8193134 
grass-dev-doc_7.2.1-1~exp1_all.deb
 e9c625fd54f4ca9c71fe7003f5592bc5adf3547aa60f0db2aedce06dac6b63bf 201344 
grass-dev_7.2.1-1~exp1_amd64.deb
 5332e59b9cd23e9d7fcb3134059865080b8c5467fd414960c8c765131c71274a 24191586 
grass-doc_7.2.1-1~exp1_all.deb
 2cc37592e1cfd810ceebf841db5e5b9cd56f4eba162ae52e76fedd6f5500ac76 3201384 
grass-gui_7.2.1-1~exp1_amd64.deb
 49183eb7583836135d9d117c1f3056906a345d7254ee7347ccc320ac7d21df2e 19638 
grass_7.2.1-1~exp1_all.deb
 7073a8bf043c510556c1227ca304f84a6927f69de592f980f50509368bb54b10 18410 
grass_7.2.1-1~exp1_amd64.buildinfo
Files:
 2d906a0c3956694670d4d0fdecffa6a6 2805 science optional grass_7.2.1-1~exp1.dsc
 5c858c718d40a4f3e82741e60c9f7b97 46657090 science optional 
grass_7.2.1.orig.tar.gz
 f6958ac3c4f7388970ba0c3edb9ac8b5 29600 science optional 
grass_7.2.1-1~exp1.debian.tar.xz
 5137921fb336d4f151c5004b36db05c4 11528858 debug extra 
grass-core-dbgsym_7.2.1-1~exp1_amd64.deb
 9c35cf38c018dd3bffe3a71c8d16cc60 5514518 science optional 
grass-core_7.2.1-1~exp1_amd64.deb
 a76889fbfddd829cdeb89a8dadaa5d42 3670 debug extra 
grass-dev-dbgsym_7.2.1-1~exp1_amd64.deb
 f62b62ef9a9b85dd67621a9bce1a25c7 8193134 doc optional 
grass-dev-doc_7.2.1-1~exp1_all.deb
 ef5015e3fc6f0d8b0e18694b516b7b84 201344 devel optional 
grass-dev_7.2.1-1~exp1_amd64.deb
 5070676edda4ec16a74dab8ef8376bca 24191586 doc optional 
grass-doc_7.2.1-1~exp1_all.deb
 00938b881d322097c6be97ef76a93f75 3201384 science optional 
grass-gui_7.2.1-1~exp1_amd64.deb
 39037cf9632baf7647a33ad5dda5279b 19638 metapackages optional 
grass_7.2.1-1~exp1_all.deb
 65b1feef66876869f38d1c421e27e6f8 18410 science optional 
grass_7.2.1-1~exp1_amd64.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJZCgxxAAoJEGdQ8QrojUrxNYEQAKDx6Som7192VoIjeszEtDrP
P3u0ghpaMkIlQOufD1X5yo3NIFqwK5/EyGaa4YpePGGbbmeOgVV8Vm27YDt56C+e
6lIlagBgS9gej2bUbyT3MB/n2Lh5ncgNnQ5NClfQKzOPQFzOgc5XJl6A3Sv/kgwW
t2hf9KdWWqBKcjwuMW7CGVJDqV1GBmMfByGSeFCRMM7a4/dHbLobSEOkDGwsW4CN
R2hPKWj7RBEVapIXhy9/HrONBNTxgKrJ6ZwwnP2SSJZzxysBrd8NRIXDTFfZ7tX/
XSSYlVQp4r4RCO37XSwE2HZottjWfpCZodoj/eyr+DI4YOQfNsJ9UY1kdhdmm6zO
G5wR72tKEo+gTfaquBuQ06jXXpYyYAFX/HuttkDxvukQpH0MqJoBSSEaWz294ros
2iQt+RC1HZXRyn+zTsSIYuo6s9Bi06rI9XuSSWDAolJZGCBpISDbjtIeT7uokmLc
43ZwI0eVsBeThZkn47prht7WxUCiNsNseahZ5q/VE1Q5uCBNBkaJemvRPi1GZ7oV
73YHUl1Ole2AXFCTJ5jDsQP6HyGVp9k4q/e/AnUrwUVEDfeqEvtxMxrrSc0zFkj2
ytUkF8DNFJOnzJMoPYP9XCB9+8MRpHk833jDiHaBv9Wqch2FR1Nl5YcGYT/AJtE0
gxXI/Kjl3mjB2fvxNb5P
=mria

libosmium_2.11.3-1_amd64.changes ACCEPTED into unstable

2017-05-03 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 May 2017 18:44:44 +0200
Source: libosmium
Binary: libosmium2-dev libosmium2-doc
Architecture: source amd64 all
Version: 2.11.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 libosmium2-dev - C++ framework for working with OSM data files
 libosmium2-doc - C++ framework for working with OSM data files - documentation
Changes:
 libosmium (2.11.3-1) unstable; urgency=medium
 .
   * New upstream bugfix release.
 - Use minimum size of 64 bytes for buffers. This fixes an infinite
   loop when buffer size is zero.
 - Two bugs in area assembler affecting very complex multipolygons and
   multipolygons with overlapping or nearly overlapping lines.
 - Invalid use of iterators leading to undefined behaviour in area
   assembler code.
 - Read OPL file correctly even if trailing newline in file is missing.
   * Update watch file to limit results to 2.11.x releases.
Checksums-Sha1:
 95546fd9f4f9403321629aa81dc0de2a530093d0 2171 libosmium_2.11.3-1.dsc
 28b10e02851e060d0250bf12af8b388fb01d0402 437250 libosmium_2.11.3.orig.tar.gz
 7d898f8284a9dc7b3921b0a3466c03a2b15c2065 6572 libosmium_2.11.3-1.debian.tar.xz
 ce4113a82aa081cc80078e98452b4c0275acefc1 187538 
libosmium2-dev_2.11.3-1_amd64.deb
 2f5bee96dde98b9f35937708dbcf09ca794c5e1c 44739616 
libosmium2-doc_2.11.3-1_all.deb
 39055cf4ff81da239be2c7eb35c64e74a24476e3 11205 
libosmium_2.11.3-1_amd64.buildinfo
Checksums-Sha256:
 68715510cb05bb497531ad6e5bc51dea3d357a0cdb709b092d5137a962804116 2171 
libosmium_2.11.3-1.dsc
 d8aac0f81f4a7853da4a024859a89f39098db2c2f236a001f490effe8e03e8ef 437250 
libosmium_2.11.3.orig.tar.gz
 d2580050153c2e37751921cc2b178ce8eb54078b248b41878403836451c3ec86 6572 
libosmium_2.11.3-1.debian.tar.xz
 43e0853f6d559887a2f4ec8a4d9ecac711768c354b905240a6ec689949ff40a6 187538 
libosmium2-dev_2.11.3-1_amd64.deb
 c353c00d300a9165c6e2ce17530d7df61b4fd7b66a5e30b5259964850ea74053 44739616 
libosmium2-doc_2.11.3-1_all.deb
 7c5f6159346114e1d40f3038077936b897d5e05f76c70cc7b76b772dc47eb734 11205 
libosmium_2.11.3-1_amd64.buildinfo
Files:
 a37b8dc43bb182ca5dca4c1ddc6448e9 2171 science optional libosmium_2.11.3-1.dsc
 af1507a64b1d403b6c3d064d1f72974b 437250 science optional 
libosmium_2.11.3.orig.tar.gz
 304fd9e1676633192e80b665f156bdbf 6572 science optional 
libosmium_2.11.3-1.debian.tar.xz
 2589897853c96631057b885da22638ea 187538 libdevel optional 
libosmium2-dev_2.11.3-1_amd64.deb
 d376424e0a6bb927baede50b104b23ba 44739616 doc optional 
libosmium2-doc_2.11.3-1_all.deb
 2aa072db4f900ed044782206ea1c1a2a 11205 science optional 
libosmium_2.11.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJZCgx/AAoJEGdQ8QrojUrxw+YP/R+iIQgfpJgzZzAaFIUR3r9G
xO7Jyg1knnXeFA9cmgfWw7TuEaGJ7dKLkz1MwWekx42WyPm/raezlmieOdcbEcPp
7F8x2NexBCdBBn4e3JJ913fLIMrpVJNf6baZiKyquOsOjX+AtNRU1b7Om1MWC46L
oknRJgTL97+x3+oh6Zx3M3ViYpUlRlQgNXTh7BnACLXETEfoTCljueC+38uxz7Se
k+p5/pvY4b2Ml6ldaP1ZAPoLJHdvlPw3ZWETu7d74g9Scs1+kkpjf0HWYCX3NwUd
8xY5QHx/LaSw4EuGMf9Jz1lYvVERwQIlY06yzaymwV3J8BqjbWh/vJv7EGsIma5b
A64gLm6yCsfcKe3kTl6RzueH2ITrn4fN/CLoM1ONriw8NBbuUxO0ClTtCu+s8qTA
ugIsgRMxLRSrJv1Tq7ko6I5qOpQNy2OlOh2qJOWfZYhc9QKitLJ6UkoT28UWdMIk
A5+spskFoKXhT7LnVBmnqbTNTLLsXWcTF8L1LIZymvgXlxF4hkaZ/QEr/Gl2oza6
Mg8nJAx0KJJ7mu9zMhaO62RCTo7//7vocIENrfWX0AJBAl7aBD0srz9HalnCs8BM
BZk9w8WoDnXu11hxqsgKZKcu7sdreFMmbNI+8WbMmFE2GnibvEpO4NaCViiqCSvW
oY0rhAN2Af7cMtpdXXzF
=WNJt
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
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 grass_7.2.1-1~exp1_amd64.changes

2017-05-03 Thread Debian FTP Masters
grass_7.2.1-1~exp1_amd64.changes uploaded successfully to localhost
along with the files:
  grass_7.2.1-1~exp1.dsc
  grass_7.2.1.orig.tar.gz
  grass_7.2.1-1~exp1.debian.tar.xz
  grass-core-dbgsym_7.2.1-1~exp1_amd64.deb
  grass-core_7.2.1-1~exp1_amd64.deb
  grass-dev-dbgsym_7.2.1-1~exp1_amd64.deb
  grass-dev-doc_7.2.1-1~exp1_all.deb
  grass-dev_7.2.1-1~exp1_amd64.deb
  grass-doc_7.2.1-1~exp1_all.deb
  grass-gui_7.2.1-1~exp1_amd64.deb
  grass_7.2.1-1~exp1_all.deb
  grass_7.2.1-1~exp1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.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


Processing of libosmium_2.11.3-1_amd64.changes

2017-05-03 Thread Debian FTP Masters
libosmium_2.11.3-1_amd64.changes uploaded successfully to localhost
along with the files:
  libosmium_2.11.3-1.dsc
  libosmium_2.11.3.orig.tar.gz
  libosmium_2.11.3-1.debian.tar.xz
  libosmium2-dev_2.11.3-1_amd64.deb
  libosmium2-doc_2.11.3-1_all.deb
  libosmium_2.11.3-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.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


[grass] tag debian/7.2.1-1.exp1 created (now 42071f1)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/7.2.1-1.exp1
in repository grass.

at  42071f1   (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/grass.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


[grass] annotated tag upstream/7.2.1 created (now 02c6982)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/7.2.1
in repository grass.

at  02c6982   (tag)
   tagging  beb009cfdfc375b2d53ed4a11383e87b3455b4cf (commit)
  replaces  upstream/7.2.1_rc2
 tagged by  Bas Couwenberg
on  Wed May 3 18:27:46 2017 +0200

- Log -
Upstream version 7.2.1

Bas Couwenberg (1):
  Imported Upstream version 7.2.1

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] 04/04: Set distribution to experimental.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository grass.

commit 42071f157496551b865f378ccdbbf8265daf11e3
Author: Bas Couwenberg 
Date:   Wed May 3 18:40:35 2017 +0200

Set distribution to experimental.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 06c211b..3c87dc9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-grass (7.2.1-1) UNRELEASED; urgency=medium
+grass (7.2.1-1~exp1) experimental; urgency=medium
 
   * New upstream release.
 
- -- Bas Couwenberg   Wed, 03 May 2017 18:29:20 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 18:40:15 +0200
 
 grass (7.2.1~rc2-1~exp1) experimental; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] branch upstream updated (11bfb75 -> beb009c)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream
in repository grass.

  from  11bfb75   Imported Upstream version 7.2.1~rc2
   new  beb009c   Imported Upstream version 7.2.1

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:
 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 14 files changed, 94 insertions(+), 112 deletions(-)
 create mode 100644 ChangeLog_7.2.1.gz
 delete mode 100644 ChangeLog_7.2.1RC2.gz
 delete mode 100644 demolocation/PERMANENT/.bash_history
 delete mode 100644 demolocation/PERMANENT/.bashrc
 create mode 100644 vector/v.kernel/v_kernel.png

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] 01/01: pristine-tar data for grass_7.2.1.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository grass.

commit 081d887574ea52270dc9afd72e69c1fa9f09852f
Author: Bas Couwenberg 
Date:   Wed May 3 18:27:45 2017 +0200

pristine-tar data for grass_7.2.1.orig.tar.gz
---
 grass_7.2.1.orig.tar.gz.delta | Bin 0 -> 265801 bytes
 grass_7.2.1.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/grass_7.2.1.orig.tar.gz.delta b/grass_7.2.1.orig.tar.gz.delta
new file mode 100644
index 000..9dabf8f
Binary files /dev/null and b/grass_7.2.1.orig.tar.gz.delta differ
diff --git a/grass_7.2.1.orig.tar.gz.id b/grass_7.2.1.orig.tar.gz.id
new file mode 100644
index 000..494c4f9
--- /dev/null
+++ b/grass_7.2.1.orig.tar.gz.id
@@ -0,0 +1 @@
+cfa5ef90adbd5dc15e1b60bf9a2daaed8f115d25

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] 03/04: New upstream release.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository grass.

commit d90212e3012e072f615ca3daf11132a931803e2d
Author: Bas Couwenberg 
Date:   Wed May 3 18:29:44 2017 +0200

New upstream release.
---
 debian/changelog | 6 ++
 debian/control   | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 274c3fd..06c211b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+grass (7.2.1-1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+
+ -- Bas Couwenberg   Wed, 03 May 2017 18:29:20 +0200
+
 grass (7.2.1~rc2-1~exp1) experimental; urgency=medium
 
   * New upstream release candidate.
diff --git a/debian/control b/debian/control
index e9d2173..539cfda 100644
--- a/debian/control
+++ b/debian/control
@@ -98,7 +98,7 @@ Suggests: grass-dev,
   python-rpy2,
   python-termcolor
 Breaks: grass (<< 6.4.2-1~)
-Provides: grass721-2
+Provides: grass721
 Replaces: grass (<< 6.4.2-1~)
 Description: GRASS GIS core components
  Commonly referred to as GRASS, this is a Geographic Information

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] branch pristine-tar updated (c009504 -> 081d887)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository grass.

  from  c009504   pristine-tar data for grass_7.2.1~rc2.orig.tar.gz
   new  081d887   pristine-tar data for grass_7.2.1.orig.tar.gz

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:
 grass_7.2.1.orig.tar.gz.delta | Bin 0 -> 265801 bytes
 grass_7.2.1.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 grass_7.2.1.orig.tar.gz.delta
 create mode 100644 grass_7.2.1.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[gdal-grass] branch upstream-2.2 updated (2757bea -> 7b61017)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream-2.2
in repository gdal-grass.

  from  2757bea   Imported Upstream version 2.2.0~beta1
   new  41a727c   Imported Upstream version 2.2.0~beta2
   new  7b61017   Imported Upstream version 2.2.0~rc1

The 2 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:

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 04/07: Imported Upstream version 2.2.0~rc1

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit 7b61017407ea782ae7a33f373431db4dda2782f0
Author: Bas Couwenberg 
Date:   Fri Apr 28 18:45:49 2017 +0200

Imported Upstream version 2.2.0~rc1

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 02/02: pristine-tar data for libgdal-grass_2.2.0~rc1.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository gdal-grass.

commit d11c595eaa42fae7f089535e8ff4f40b6d177c8c
Author: Bas Couwenberg 
Date:   Fri Apr 28 18:45:49 2017 +0200

pristine-tar data for libgdal-grass_2.2.0~rc1.orig.tar.gz
---
 libgdal-grass_2.2.0~rc1.orig.tar.gz.delta | Bin 0 -> 1145 bytes
 libgdal-grass_2.2.0~rc1.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libgdal-grass_2.2.0~rc1.orig.tar.gz.delta 
b/libgdal-grass_2.2.0~rc1.orig.tar.gz.delta
new file mode 100644
index 000..8826bde
Binary files /dev/null and b/libgdal-grass_2.2.0~rc1.orig.tar.gz.delta differ
diff --git a/libgdal-grass_2.2.0~rc1.orig.tar.gz.id 
b/libgdal-grass_2.2.0~rc1.orig.tar.gz.id
new file mode 100644
index 000..b150848
--- /dev/null
+++ b/libgdal-grass_2.2.0~rc1.orig.tar.gz.id
@@ -0,0 +1 @@
+c0820eaf0907e0be58f5c073df4fc3305b7f423b

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] annotated tag upstream/2.2.0_beta2 created (now 48816ef)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/2.2.0_beta2
in repository gdal-grass.

at  48816ef   (tag)
   tagging  41a727cb92b5e0c9f776d6a60d8d8ae520f97424 (commit)
  replaces  upstream/2.2.0_beta1
 tagged by  Bas Couwenberg
on  Sun Apr 23 16:09:56 2017 +0200

- Log -
Upstream version 2.2.0~beta2

Bas Couwenberg (1):
  Imported Upstream version 2.2.0~beta2

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[grass] 02/04: Merge tag 'upstream/7.2.1' into experimental

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository grass.

commit 11d593ad72175e33aceb9f1c68a1be29c500
Merge: 3a583c1 beb009c
Author: Bas Couwenberg 
Date:   Wed May 3 18:27:46 2017 +0200

Merge tag 'upstream/7.2.1' into experimental

Upstream version 7.2.1

 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 14 files changed, 94 insertions(+), 112 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[grass] 01/04: Imported Upstream version 7.2.1

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository grass.

commit beb009cfdfc375b2d53ed4a11383e87b3455b4cf
Author: Bas Couwenberg 
Date:   Wed May 3 18:27:18 2017 +0200

Imported Upstream version 7.2.1
---
 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 14 files changed, 94 insertions(+), 112 deletions(-)

diff --git a/ChangeLog_7.2.1.gz b/ChangeLog_7.2.1.gz
new file mode 100644
index 000..c7b9911
Binary files /dev/null and b/ChangeLog_7.2.1.gz differ
diff --git a/ChangeLog_7.2.1RC2.gz b/ChangeLog_7.2.1RC2.gz
deleted file mode 100644
index 390a699..000
Binary files a/ChangeLog_7.2.1RC2.gz and /dev/null differ
diff --git a/demolocation/PERMANENT/.bash_history 
b/demolocation/PERMANENT/.bash_history
deleted file mode 100644
index 18f4619..000
--- a/demolocation/PERMANENT/.bash_history
+++ /dev/null
@@ -1,45 +0,0 @@
-v.unpack country_boundaries.pack 
-g.proj -w
-v.unpack country_boundaries.pack -v
-v.unpack country_boundaries.pack --v
-g.proj -w
-g.proj -p
-cd grass72/demolocation/PERMANENT/
-pwd
-meld PROJ_INFO ~/grassdata/ll/PERMANENT/PERMANENT/PROJ_INFO 
-cp ~/grassdata/ll/PERMANENT/PERMANENT/PROJ_INFO .
-svn diff
-cat PROJ_
-cat PROJ_INFO 
-cat PROJ_UNITS �
-cat PROJ_UNITS
-ccat ~/grassdata/ll/PERMANENT/PERMANENT/PROJ_UNITS 
-cat ~/grassdata/ll/PERMANENT/PERMANENT/PROJ_UNITS 
-svn ci -m"demolocation: update to current file structure as generated with 
'grass72 -c EPSG:4326 ~/grassdata/ll/PERMANENT'" PROJ_INFO 
-v.unpack country_boundaries.pack --v
-l /home/neteler/grass72/demolocation/PERMANENT/
-cd grass72/demolocation/PERMANENT/
-mkdir sqlite
-cd
-v.unpack country_boundaries.pack --v
-v.info country_boundaries
-v.db.connect -p country_boundaries
-g.region -p
-g.gui
-v.info -c country_boundaries
-v.unpack country_boundaries.pack
-v.info map=country_boundaries@PERMANENT
-g.region -p
-v.db.connect -p country_boundaries
-v.build.all 
-g.gisenv 
-v.split g
-v.split -n box_4_corners output=box_4_corners_many_vertices length=200 
units=kilometers
-g.region -p
-v.split -n box_4_corners output=box_4_corners_many_vertices length=0.2
-v.split -n box_4_corners output=box_4_corners_many_vertices length=0.2 --o
-v.split -n box_4_corners output=box_4_corners_many_vertices length=200 
units=kilometers
-v.split -n box_4_corners output=box_4_corners_many_vertices length=200 
units=kilometers --o
-g.list vect
-g.remove vect=box_4_corners box_4_corners_many_vertices
-g.remove vect=box_4_corners,box_4_corners_many_vertices
diff --git a/demolocation/PERMANENT/.bashrc b/demolocation/PERMANENT/.bashrc
deleted file mode 100644
index 8a64b20..000
--- a/demolocation/PERMANENT/.bashrc
+++ /dev/null
@@ -1,9 +0,0 @@
-test -r ~/.alias && . ~/.alias
-PS1='GRASS 7.2.0svn (demolocation):\w > '
-PROMPT_COMMAND="'/home/neteler/software/grass72_release/dist.x86_64-pc-linux-gnu/etc/prompt.py'"
-# User specific aliases and functions
-alias cp='cp -i'
-alias mv='mv -i'
-alias rm='rm -i'
-export 
PATH="/home/neteler/software/grass72_release/dist.x86_64-pc-linux-gnu/bin:/home/neteler/software/grass72_release/dist.x86_64-pc-linux-gnu/scripts:/home/neteler/.grass7/addons/bin:/home/neteler/.grass7/addons/scripts:/usr/lib64/qt-3.3/bin:/usr/lib64/ccache:/usr/libexec/lightdm:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/usr/sbin:/home/neteler/bin"
-export HOME="/home/neteler"
diff --git a/doc/howto_release.txt b/doc/howto_release.txt
index 8f422c1..4685a00 100644
--- a/doc/howto_release.txt
+++ b/doc/howto_release.txt
@@ -1,6 +1,6 @@
 How to release GRASS GIS binaries and source code
 
-$Date: 2017-04-22 18:54:09 +0200 (Sat, 22 Apr 2017) $
+$Date: 2017-04-22 22:17:30 +0200 (Sa, 22. Apr 2017) $
 
 Note: This text contains *some* rules only applicable to the
   development coordinator (currently Markus Neteler, PSC Chair).
@@ -41,6 +41,7 @@ Contents
- cleanup rubbish:
rm -f locale/templates/*.pot
rm -f locale/po/messages.mo
+   rm -f demolocation/PERMANENT/.bash*
find . -name '*~' | xargs rm
find . -name '*.bak'  | xargs rm
find . -name '.#*'| xargs rm
diff --git a/imagery/i.group/i.group.html b/imagery/i.group/i.group.html
index ac59995..92655c9 

[gdal-grass] 06/07: New upstream release candidate.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit d2f668716ea45d103971218a92c1121c2537c1c4
Author: Bas Couwenberg 
Date:   Fri Apr 28 18:46:25 2017 +0200

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

diff --git a/debian/changelog b/debian/changelog
index 66363fc..34b5bed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-libgdal-grass (2.2.0~beta2-1) UNRELEASED; urgency=medium
+libgdal-grass (2.2.0~rc1-1) UNRELEASED; urgency=medium
 
-  * New upstream beta release.
+  * New upstream release candidate.
 
- -- Bas Couwenberg   Sun, 23 Apr 2017 16:10:06 +0200
+ -- Bas Couwenberg   Fri, 28 Apr 2017 18:46:02 +0200
 
 libgdal-grass (2.2.0~beta1-1~exp1) experimental; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[grass] branch experimental updated (3a583c1 -> 42071f1)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch experimental
in repository grass.

  from  3a583c1   Set distribution to experimental.
   new  beb009c   Imported Upstream version 7.2.1
   new  11d593a   Merge tag 'upstream/7.2.1' into experimental
   new  d90212e   New upstream release.
   new  42071f1   Set distribution to experimental.

The 4 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:
 ChangeLog_7.2.1.gz   | Bin 0 -> 863712 bytes
 ChangeLog_7.2.1RC2.gz| Bin 863398 -> 0 bytes
 debian/changelog |   6 +++
 debian/control   |   2 +-
 demolocation/PERMANENT/.bash_history |  45 
 demolocation/PERMANENT/.bashrc   |   9 
 doc/howto_release.txt|   3 +-
 imagery/i.group/i.group.html |  11 -
 include/VERSION  |   2 +-
 raster/r.circle/r.circle.html|   4 +-
 temporal/t.list/t.list.py|  20 -
 temporal/t.rast.what/t.rast.what.py  |   2 +-
 temporal/t.register/t.register.html  |  80 ---
 temporal/t.register/t.register.py|  12 +++---
 vector/v.kernel/v.kernel.html|  18 +++-
 vector/v.kernel/v_kernel.png | Bin 0 -> 96181 bytes
 16 files changed, 101 insertions(+), 113 deletions(-)
 create mode 100644 ChangeLog_7.2.1.gz
 delete mode 100644 ChangeLog_7.2.1RC2.gz
 delete mode 100644 demolocation/PERMANENT/.bash_history
 delete mode 100644 demolocation/PERMANENT/.bashrc
 create mode 100644 vector/v.kernel/v_kernel.png

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/grass.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


[gdal-grass] annotated tag upstream/2.2.0_rc1 created (now 633625e)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/2.2.0_rc1
in repository gdal-grass.

at  633625e   (tag)
   tagging  7b61017407ea782ae7a33f373431db4dda2782f0 (commit)
  replaces  upstream/2.2.0_beta2
 tagged by  Bas Couwenberg
on  Fri Apr 28 18:45:49 2017 +0200

- Log -
Upstream version 2.2.0~rc1

Bas Couwenberg (1):
  Imported Upstream version 2.2.0~rc1

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 01/07: Imported Upstream version 2.2.0~beta2

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit 41a727cb92b5e0c9f776d6a60d8d8ae520f97424
Author: Bas Couwenberg 
Date:   Sun Apr 23 16:09:55 2017 +0200

Imported Upstream version 2.2.0~beta2

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 02/07: Merge tag 'upstream/2.2.0_beta2' into experimental-2.2

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit 0950a6119eaec36d896e7a04a47a3f9bf21052ff
Merge: d77917b 41a727c
Author: Bas Couwenberg 
Date:   Sun Apr 23 16:09:56 2017 +0200

Merge tag 'upstream/2.2.0_beta2' into experimental-2.2

Upstream version 2.2.0~beta2


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 07/07: Bump minimum GRASS version to 7.2.1.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit e66d553c28f77f9c4f9ea6e1f9ac99a25d599e36
Author: Bas Couwenberg 
Date:   Wed May 3 19:02:13 2017 +0200

Bump minimum GRASS version to 7.2.1.
---
 debian/changelog  | 3 ++-
 debian/control| 6 +++---
 debian/control.in | 4 ++--
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 34b5bed..dba2a8a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 libgdal-grass (2.2.0~rc1-1) UNRELEASED; urgency=medium
 
   * New upstream release candidate.
+  * Bump minimum GRASS version to 7.2.1.
 
- -- Bas Couwenberg   Fri, 28 Apr 2017 18:46:02 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 19:01:39 +0200
 
 libgdal-grass (2.2.0~beta1-1~exp1) experimental; urgency=medium
 
diff --git a/debian/control b/debian/control
index cba95af..1c9846d 100644
--- a/debian/control
+++ b/debian/control
@@ -7,8 +7,8 @@ Priority: optional
 Build-Depends: debhelper (>= 9),
dh-autoreconf,
d-shlibs,
-   grass (>= 7.2.0),
-   grass-dev (>= 7.2.0),
+   grass (>= 7.2.1),
+   grass-dev (>= 7.2.1),
libgdal-dev (>= 2.2.0~),
libproj-dev,
libpq-dev,
@@ -21,7 +21,7 @@ Homepage: http://www.gdal.org/
 Package: libgdal-grass
 Architecture: any
 Section: libs
-Depends: grass720,
+Depends: grass721,
  ${shlibs:Depends},
  ${misc:Depends}
 Recommends: gdal-bin
diff --git a/debian/control.in b/debian/control.in
index 8115bc8..b36aa52 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -7,8 +7,8 @@ Priority: optional
 Build-Depends: debhelper (>= 9),
dh-autoreconf,
d-shlibs,
-   grass (>= 7.2.0),
-   grass-dev (>= 7.2.0),
+   grass (>= 7.2.1),
+   grass-dev (>= 7.2.1),
libgdal-dev (>= 2.2.0~),
libproj-dev,
libpq-dev,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 01/02: pristine-tar data for libgdal-grass_2.2.0~beta2.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository gdal-grass.

commit 3795e1c395ea6d0af677643ee4032aa204dbb84e
Author: Bas Couwenberg 
Date:   Sun Apr 23 16:09:56 2017 +0200

pristine-tar data for libgdal-grass_2.2.0~beta2.orig.tar.gz
---
 libgdal-grass_2.2.0~beta2.orig.tar.gz.delta | Bin 0 -> 1158 bytes
 libgdal-grass_2.2.0~beta2.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libgdal-grass_2.2.0~beta2.orig.tar.gz.delta 
b/libgdal-grass_2.2.0~beta2.orig.tar.gz.delta
new file mode 100644
index 000..469ff60
Binary files /dev/null and b/libgdal-grass_2.2.0~beta2.orig.tar.gz.delta differ
diff --git a/libgdal-grass_2.2.0~beta2.orig.tar.gz.id 
b/libgdal-grass_2.2.0~beta2.orig.tar.gz.id
new file mode 100644
index 000..b150848
--- /dev/null
+++ b/libgdal-grass_2.2.0~beta2.orig.tar.gz.id
@@ -0,0 +1 @@
+c0820eaf0907e0be58f5c073df4fc3305b7f423b

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] branch pristine-tar updated (1b7db89 -> d11c595)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository gdal-grass.

  from  1b7db89   pristine-tar data for 
libgdal-grass_2.2.0~beta1.orig.tar.gz
   new  3795e1c   pristine-tar data for 
libgdal-grass_2.2.0~beta2.orig.tar.gz
   new  d11c595   pristine-tar data for libgdal-grass_2.2.0~rc1.orig.tar.gz

The 2 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:
 libgdal-grass_2.2.0~beta2.orig.tar.gz.delta  | Bin 0 -> 1158 bytes
 ...tar.gz.id => libgdal-grass_2.2.0~beta2.orig.tar.gz.id |   0
 libgdal-grass_2.2.0~rc1.orig.tar.gz.delta| Bin 0 -> 1145 bytes
 ...g.tar.gz.id => libgdal-grass_2.2.0~rc1.orig.tar.gz.id |   0
 4 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 libgdal-grass_2.2.0~beta2.orig.tar.gz.delta
 copy libgdal-grass_2.2.0~beta1.orig.tar.gz.id => 
libgdal-grass_2.2.0~beta2.orig.tar.gz.id (100%)
 create mode 100644 libgdal-grass_2.2.0~rc1.orig.tar.gz.delta
 copy libgdal-grass_2.2.0~beta1.orig.tar.gz.id => 
libgdal-grass_2.2.0~rc1.orig.tar.gz.id (100%)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 03/07: New upstream beta release.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit 0cb4f0fcadee9a7b3270dee35157b4d26b5c6508
Author: Bas Couwenberg 
Date:   Sun Apr 23 16:10:45 2017 +0200

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

diff --git a/debian/changelog b/debian/changelog
index 9142da6..66363fc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libgdal-grass (2.2.0~beta2-1) UNRELEASED; urgency=medium
+
+  * New upstream beta release.
+
+ -- Bas Couwenberg   Sun, 23 Apr 2017 16:10:06 +0200
+
 libgdal-grass (2.2.0~beta1-1~exp1) experimental; urgency=medium
 
   * New upstream beta release.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] 05/07: Merge tag 'upstream/2.2.0_rc1' into experimental-2.2

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.2
in repository gdal-grass.

commit 22bb8f12c618b2a8b086171539dcefba213d9a3e
Merge: 0cb4f0f 7b61017
Author: Bas Couwenberg 
Date:   Fri Apr 28 18:45:51 2017 +0200

Merge tag 'upstream/2.2.0_rc1' into experimental-2.2

Upstream version 2.2.0~rc1


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[gdal-grass] branch experimental-2.2 updated (d77917b -> e66d553)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch experimental-2.2
in repository gdal-grass.

  from  d77917b   Set distribution to experimental.
   new  41a727c   Imported Upstream version 2.2.0~beta2
   new  0950a61   Merge tag 'upstream/2.2.0_beta2' into experimental-2.2
   new  0cb4f0f   New upstream beta release.
   new  7b61017   Imported Upstream version 2.2.0~rc1
   new  22bb8f1   Merge tag 'upstream/2.2.0_rc1' into experimental-2.2
   new  d2f6687   New upstream release candidate.
   new  e66d553   Bump minimum GRASS version to 7.2.1.

The 7 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/control| 6 +++---
 debian/control.in | 4 ++--
 3 files changed, 12 insertions(+), 5 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/gdal-grass.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


[libosmium] annotated tag upstream/2.11.3 created (now df454ac)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/2.11.3
in repository libosmium.

at  df454ac   (tag)
   tagging  71a1169050d4424972a219eabeba42cf514df6a7 (commit)
  replaces  upstream/2.11.2
 tagged by  Bas Couwenberg
on  Wed May 3 18:39:36 2017 +0200

- Log -
Upstream version 2.11.3

Bas Couwenberg (1):
  Imported Upstream version 2.11.3

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] tag debian/2.11.3-1 created (now ecea6d3)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.11.3-1
in repository libosmium.

at  ecea6d3   (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/libosmium.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


[libosmium] annotated tag upstream/2.11.2 created (now d3c75a9)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/2.11.2
in repository libosmium.

at  d3c75a9   (tag)
   tagging  6bbec29bd97aff81385fe6f690a42baf141d9bb5 (commit)
  replaces  upstream/2.11.1
 tagged by  Bas Couwenberg
on  Wed May 3 18:39:31 2017 +0200

- Log -
Upstream version 2.11.2

Bas Couwenberg (1):
  Imported Upstream version 2.11.2

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 02/02: pristine-tar data for libosmium_2.11.3.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository libosmium.

commit f86e7a32f509ed01c9832abf65ecccea1c15cd37
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:36 2017 +0200

pristine-tar data for libosmium_2.11.3.orig.tar.gz
---
 libosmium_2.11.3.orig.tar.gz.delta | Bin 0 -> 14601 bytes
 libosmium_2.11.3.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libosmium_2.11.3.orig.tar.gz.delta 
b/libosmium_2.11.3.orig.tar.gz.delta
new file mode 100644
index 000..4afa9f0
Binary files /dev/null and b/libosmium_2.11.3.orig.tar.gz.delta differ
diff --git a/libosmium_2.11.3.orig.tar.gz.id b/libosmium_2.11.3.orig.tar.gz.id
new file mode 100644
index 000..1c0c99e
--- /dev/null
+++ b/libosmium_2.11.3.orig.tar.gz.id
@@ -0,0 +1 @@
+c2a473d2f815862c7f91c24a17e4d844ffa0b6ca

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] branch upstream-2.11 updated (03ce3d9 -> 71a1169)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream-2.11
in repository libosmium.

  from  03ce3d9   Imported Upstream version 2.11.1
   new  6bbec29   Imported Upstream version 2.11.2
   new  71a1169   Imported Upstream version 2.11.3

The 2 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:
 CHANGELOG.md  | 22 +-
 CMakeLists.txt|  2 +-
 include/osmium/area/assembler.hpp | 24 +---
 include/osmium/io/detail/opl_input_format.hpp |  5 +
 include/osmium/memory/buffer.hpp  | 15 ---
 include/osmium/version.hpp|  4 ++--
 test/CMakeLists.txt   |  2 +-
 test/t/io/data-nonl.opl   |  1 +
 test/t/io/data.opl|  1 +
 test/t/io/test_opl_parser.cpp | 22 ++
 test/t/memory/test_buffer_basics.cpp  | 19 +--
 11 files changed, 96 insertions(+), 21 deletions(-)
 create mode 100644 test/t/io/data-nonl.opl
 create mode 100644 test/t/io/data.opl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 01/02: pristine-tar data for libosmium_2.11.2.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository libosmium.

commit 3e37e0cbf6fc045c091636e5e517ce0f8f3ebeef
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:31 2017 +0200

pristine-tar data for libosmium_2.11.2.orig.tar.gz
---
 libosmium_2.11.2.orig.tar.gz.delta | Bin 0 -> 14512 bytes
 libosmium_2.11.2.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libosmium_2.11.2.orig.tar.gz.delta 
b/libosmium_2.11.2.orig.tar.gz.delta
new file mode 100644
index 000..fddad65
Binary files /dev/null and b/libosmium_2.11.2.orig.tar.gz.delta differ
diff --git a/libosmium_2.11.2.orig.tar.gz.id b/libosmium_2.11.2.orig.tar.gz.id
new file mode 100644
index 000..0d64fcd
--- /dev/null
+++ b/libosmium_2.11.2.orig.tar.gz.id
@@ -0,0 +1 @@
+54dd38e8cc76567f28518e60d84bb5005619df7d

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 06/07: New upstream bugfix release

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit 238374933db78ade51b5c8f52f5b7aafca60e938
Author: Bas Couwenberg 
Date:   Wed May 3 18:44:23 2017 +0200

New upstream bugfix release

- Use minimum size of 64 bytes for buffers. This fixes an infinite
  loop when buffer size is zero.
- Two bugs in area assembler affecting very complex multipolygons and
  multipolygons with overlapping or nearly overlapping lines.
- Invalid use of iterators leading to undefined behaviour in area
  assembler code.
- Read OPL file correctly even if trailing newline in file is missing.
---
 debian/changelog | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index eae3a16..5bb7f3e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,16 @@
-libosmium (2.11.1-2) UNRELEASED; urgency=medium
+libosmium (2.11.3-1) UNRELEASED; urgency=medium
 
+  * New upstream bugfix release.
+- Use minimum size of 64 bytes for buffers. This fixes an infinite
+  loop when buffer size is zero.
+- Two bugs in area assembler affecting very complex multipolygons and
+  multipolygons with overlapping or nearly overlapping lines.
+- Invalid use of iterators leading to undefined behaviour in area
+  assembler code.
+- Read OPL file correctly even if trailing newline in file is missing.
   * Update watch file to limit results to 2.11.x releases.
 
- -- Bas Couwenberg   Wed, 03 May 2017 18:39:07 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 18:39:40 +0200
 
 libosmium (2.11.1-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 05/07: Merge tag 'upstream/2.11.3'

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit 581052fa6b1370d3eceb76cefd7ebbbc4cd5c39b
Merge: 9870db0 71a1169
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:36 2017 +0200

Merge tag 'upstream/2.11.3'

Upstream version 2.11.3

 CHANGELOG.md  | 14 +-
 CMakeLists.txt|  2 +-
 include/osmium/area/assembler.hpp | 24 +---
 include/osmium/io/detail/opl_input_format.hpp |  5 +
 include/osmium/version.hpp|  4 ++--
 test/CMakeLists.txt   |  2 +-
 test/t/io/data-nonl.opl   |  1 +
 test/t/io/data.opl|  1 +
 test/t/io/test_opl_parser.cpp | 22 ++
 9 files changed, 59 insertions(+), 16 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] branch pristine-tar updated (0a8fd04 -> f86e7a3)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository libosmium.

  from  0a8fd04   pristine-tar data for libosmium_2.12.2.orig.tar.gz
   new  3e37e0c   pristine-tar data for libosmium_2.11.2.orig.tar.gz
   new  f86e7a3   pristine-tar data for libosmium_2.11.3.orig.tar.gz

The 2 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:
 libosmium_2.11.2.orig.tar.gz.delta | Bin 0 -> 14512 bytes
 libosmium_2.11.2.orig.tar.gz.id|   1 +
 libosmium_2.11.3.orig.tar.gz.delta | Bin 0 -> 14601 bytes
 libosmium_2.11.3.orig.tar.gz.id|   1 +
 4 files changed, 2 insertions(+)
 create mode 100644 libosmium_2.11.2.orig.tar.gz.delta
 create mode 100644 libosmium_2.11.2.orig.tar.gz.id
 create mode 100644 libosmium_2.11.3.orig.tar.gz.delta
 create mode 100644 libosmium_2.11.3.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 07/07: Set distribution to unstable.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit ecea6d3b7af17546cb187150950b25abbdc48b48
Author: Bas Couwenberg 
Date:   Wed May 3 18:44:55 2017 +0200

Set distribution to unstable.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5bb7f3e..8d35b5e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libosmium (2.11.3-1) UNRELEASED; urgency=medium
+libosmium (2.11.3-1) unstable; urgency=medium
 
   * New upstream bugfix release.
 - Use minimum size of 64 bytes for buffers. This fixes an infinite
@@ -10,7 +10,7 @@ libosmium (2.11.3-1) UNRELEASED; urgency=medium
 - Read OPL file correctly even if trailing newline in file is missing.
   * Update watch file to limit results to 2.11.x releases.
 
- -- Bas Couwenberg   Wed, 03 May 2017 18:39:40 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 18:44:44 +0200
 
 libosmium (2.11.1-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 04/07: Imported Upstream version 2.11.3

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit 71a1169050d4424972a219eabeba42cf514df6a7
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:35 2017 +0200

Imported Upstream version 2.11.3
---
 CHANGELOG.md  | 14 +-
 CMakeLists.txt|  2 +-
 include/osmium/area/assembler.hpp | 24 +---
 include/osmium/io/detail/opl_input_format.hpp |  5 +
 include/osmium/version.hpp|  4 ++--
 test/CMakeLists.txt   |  2 +-
 test/t/io/data-nonl.opl   |  1 +
 test/t/io/data.opl|  1 +
 test/t/io/test_opl_parser.cpp | 22 ++
 9 files changed, 59 insertions(+), 16 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 250ec2e..cc1fdcc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,17 @@ This project adheres to [Semantic 
Versioning](http://semver.org/).
 
 ### Fixed
 
+## [2.11.3] - 2017-05-03
+
+### Fixed
+
+- Two bugs in area assembler affecting very complex multipolygons and
+  multipolygons with overlapping or nearly overlapping lines.
+- Invalid use of iterators leading to undefined behaviour in area assembler
+  code.
+- Read OPL file correctly even if trailing newline in file is missing.
+
+
 ## [2.11.2] - 2017-04-10
 
 ### Fixed
@@ -538,7 +549,8 @@ This project adheres to [Semantic 
Versioning](http://semver.org/).
   Doxygen (up to version 1.8.8). This version contains a workaround to fix
   this.
 
-[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.2...HEAD
+[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.3...HEAD
+[2.11.3]: https://github.com/osmcode/libosmium/compare/v2.11.2...v2.11.3
 [2.11.2]: https://github.com/osmcode/libosmium/compare/v2.11.1...v2.11.2
 [2.11.1]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.11.1
 [2.11.0]: https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b823d74..e536c34 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,7 @@ project(libosmium)
 
 set(LIBOSMIUM_VERSION_MAJOR 2)
 set(LIBOSMIUM_VERSION_MINOR 11)
-set(LIBOSMIUM_VERSION_PATCH 2)
+set(LIBOSMIUM_VERSION_PATCH 3)
 
 set(LIBOSMIUM_VERSION
 
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")
diff --git a/include/osmium/area/assembler.hpp 
b/include/osmium/area/assembler.hpp
index 3509b57..78a9d09 100644
--- a/include/osmium/area/assembler.hpp
+++ b/include/osmium/area/assembler.hpp
@@ -474,17 +474,17 @@ namespace osmium {
 
 class rings_stack_element {
 
-int32_t m_y;
+double m_y;
 detail::ProtoRing* m_ring_ptr;
 
 public:
 
-rings_stack_element(int32_t y, detail::ProtoRing* ring_ptr) :
+rings_stack_element(double y, detail::ProtoRing* ring_ptr) :
 m_y(y),
 m_ring_ptr(ring_ptr) {
 }
 
-int32_t y() const noexcept {
+double y() const noexcept {
 return m_y;
 }
 
@@ -504,7 +504,7 @@ namespace osmium {
 return m_y < rhs.m_y;
 }
 
-}; // class ring_stack_element
+}; // class rings_stack_element
 
 using rings_stack = std::vector;
 
@@ -592,7 +592,7 @@ namespace osmium {
 if (debug()) {
 std::cerr << "Segment belongs to 
outer ring\n";
 }
-const int32_t y = int32_t(ay + (by - ay) * (lx 
- ax) / (bx - ax));
+const double y = ay + (by - ay) * (lx - ax) / 
double(bx - ax);
 outer_rings.emplace_back(y, segment->ring());
 }
 }
@@ -859,8 +859,8 @@ namespace osmium {
 }
 
 void merge_two_rings(open_ring_its_type& open_ring_its, const 
location_to_ring_map& m1, const location_to_ring_map& m2) {
-auto& r1 = *m1.ring_it;
-auto& r2 = *m2.ring_it;
+std::list::iterator r1 = *m1.ring_it;
+std::list::iterator r2 = *m2.ring_it;
 
 if (r1->get_node_ref_stop().location() == 
r2->get_node_ref_start().location()) {
 r1->join_forward(*r2);
@@ -876,11 +876,11 @@ namespace osmium {
 assert(false);
 }
 
+open_ring_its.erase(std::find(open_ring_its.begin(), 
open_ring_its.end(), r2));
 m_rings.erase(r2);
-open_ring_its.remove(r2);
 
 if (r1->closed()) {
-

[libosmium] branch master updated (b5d22f1 -> ecea6d3)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository libosmium.

  from  b5d22f1   Set distribution to unstable.
   new  9224956   Update watch file to limit results to 2.11.x releases.
   new  6bbec29   Imported Upstream version 2.11.2
   new  9870db0   Merge tag 'upstream/2.11.2'
   new  71a1169   Imported Upstream version 2.11.3
   new  581052f   Merge tag 'upstream/2.11.3'
   new  2383749   New upstream bugfix release
   new  ecea6d3   Set distribution to unstable.

The 7 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:
 CHANGELOG.md  | 22 +-
 CMakeLists.txt|  2 +-
 debian/changelog  | 14 ++
 debian/watch  |  2 +-
 include/osmium/area/assembler.hpp | 24 +---
 include/osmium/io/detail/opl_input_format.hpp |  5 +
 include/osmium/memory/buffer.hpp  | 15 ---
 include/osmium/version.hpp|  4 ++--
 test/CMakeLists.txt   |  2 +-
 test/t/io/data-nonl.opl   |  1 +
 test/t/io/data.opl|  1 +
 test/t/io/test_opl_parser.cpp | 22 ++
 test/t/memory/test_buffer_basics.cpp  | 19 +--
 13 files changed, 111 insertions(+), 22 deletions(-)
 create mode 100644 test/t/io/data-nonl.opl
 create mode 100644 test/t/io/data.opl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 02/07: Imported Upstream version 2.11.2

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit 6bbec29bd97aff81385fe6f690a42baf141d9bb5
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:30 2017 +0200

Imported Upstream version 2.11.2
---
 CHANGELOG.md | 10 +-
 CMakeLists.txt   |  2 +-
 include/osmium/memory/buffer.hpp | 15 ---
 include/osmium/version.hpp   |  4 ++--
 test/t/memory/test_buffer_basics.cpp | 19 +--
 5 files changed, 41 insertions(+), 9 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5aab3f3..250ec2e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,13 @@ This project adheres to [Semantic 
Versioning](http://semver.org/).
 
 ### Fixed
 
+## [2.11.2] - 2017-04-10
+
+### Fixed
+
+- Use minimum size of 64 bytes for buffers. This fixes an infinite loop
+  when buffer size is zero.
+
 
 ## [2.11.1] - 2017-03-07
 
@@ -531,7 +538,8 @@ This project adheres to [Semantic 
Versioning](http://semver.org/).
   Doxygen (up to version 1.8.8). This version contains a workaround to fix
   this.
 
-[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.1...HEAD
+[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.2...HEAD
+[2.11.2]: https://github.com/osmcode/libosmium/compare/v2.11.1...v2.11.2
 [2.11.1]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.11.1
 [2.11.0]: https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
 [2.10.3]: https://github.com/osmcode/libosmium/compare/v2.10.2...v2.10.3
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 372a2a4..b823d74 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,7 @@ project(libosmium)
 
 set(LIBOSMIUM_VERSION_MAJOR 2)
 set(LIBOSMIUM_VERSION_MINOR 11)
-set(LIBOSMIUM_VERSION_PATCH 1)
+set(LIBOSMIUM_VERSION_PATCH 2)
 
 set(LIBOSMIUM_VERSION
 
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")
diff --git a/include/osmium/memory/buffer.hpp b/include/osmium/memory/buffer.hpp
index 370d01e..1b75b4f 100644
--- a/include/osmium/memory/buffer.hpp
+++ b/include/osmium/memory/buffer.hpp
@@ -119,6 +119,15 @@ namespace osmium {
 auto_grow m_auto_grow{auto_grow::no};
 std::function m_full;
 
+static size_t calculate_capacity(size_t capacity) noexcept {
+// The majority of all Nodes will fit into this size.
+constexpr static const size_t min_capacity = 64;
+if (capacity < min_capacity) {
+return min_capacity;
+}
+return capacity;
+}
+
 public:
 
 /**
@@ -198,13 +207,13 @@ namespace osmium {
  * of the alignment.
  */
 explicit Buffer(size_t capacity, auto_grow auto_grow = 
auto_grow::yes) :
-m_memory(new unsigned char[capacity]),
+m_memory(new unsigned char[calculate_capacity(capacity)]),
 m_data(m_memory.get()),
-m_capacity(capacity),
+m_capacity(calculate_capacity(capacity)),
 m_written(0),
 m_committed(0),
 m_auto_grow(auto_grow) {
-if (capacity % align_bytes != 0) {
+if (m_capacity % align_bytes != 0) {
 throw std::invalid_argument("buffer capacity needs to be 
multiple of alignment");
 }
 }
diff --git a/include/osmium/version.hpp b/include/osmium/version.hpp
index 1bda080..56b7e94 100644
--- a/include/osmium/version.hpp
+++ b/include/osmium/version.hpp
@@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.
 
 #define LIBOSMIUM_VERSION_MAJOR 2
 #define LIBOSMIUM_VERSION_MINOR 11
-#define LIBOSMIUM_VERSION_PATCH 1
+#define LIBOSMIUM_VERSION_PATCH 2
 
-#define LIBOSMIUM_VERSION_STRING "2.11.1"
+#define LIBOSMIUM_VERSION_STRING "2.11.2"
 
 #endif // OSMIUM_VERSION_HPP
diff --git a/test/t/memory/test_buffer_basics.cpp 
b/test/t/memory/test_buffer_basics.cpp
index ffe7251..d9d174b 100644
--- a/test/t/memory/test_buffer_basics.cpp
+++ b/test/t/memory/test_buffer_basics.cpp
@@ -6,8 +6,8 @@ TEST_CASE("Buffer basics") {
 
 osmium::memory::Buffer invalid_buffer1;
 osmium::memory::Buffer invalid_buffer2;
-osmium::memory::Buffer empty_buffer1(1024);
-osmium::memory::Buffer empty_buffer2(2048);
+osmium::memory::Buffer empty_buffer1{1024};
+osmium::memory::Buffer empty_buffer2{2048};
 
 REQUIRE(!invalid_buffer1);
 REQUIRE(!invalid_buffer2);
@@ -32,3 +32,18 @@ TEST_CASE("Buffer basics") {
 
 }
 
+TEST_CASE("Buffer with zero size") {
+osmium::memory::Buffer buffer{0};
+REQUIRE(buffer.capacity() == 64);
+}
+
+TEST_CASE("Buffer with less than minimum size") {
+osmium::memory::Buffer buffer{63};
+REQUIRE(buffer.capacity() == 64);
+}
+
+TEST_CASE("Buffer with 

[libosmium] 03/07: Merge tag 'upstream/2.11.2'

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit 9870db05711e568fa2f0b823357df9cabc13307a
Merge: 9224956 6bbec29
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:31 2017 +0200

Merge tag 'upstream/2.11.2'

Upstream version 2.11.2

 CHANGELOG.md | 10 +-
 CMakeLists.txt   |  2 +-
 include/osmium/memory/buffer.hpp | 15 ---
 include/osmium/version.hpp   |  4 ++--
 test/t/memory/test_buffer_basics.cpp | 19 +--
 5 files changed, 41 insertions(+), 9 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 01/07: Update watch file to limit results to 2.11.x releases.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository libosmium.

commit 9224956da17c7149162e82eeadec42ea262e44a1
Author: Bas Couwenberg 
Date:   Wed May 3 18:39:25 2017 +0200

Update watch file to limit results to 2.11.x releases.
---
 debian/changelog | 6 ++
 debian/watch | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 1015506..eae3a16 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libosmium (2.11.1-2) UNRELEASED; urgency=medium
+
+  * Update watch file to limit results to 2.11.x releases.
+
+ -- Bas Couwenberg   Wed, 03 May 2017 18:39:07 +0200
+
 libosmium (2.11.1-1) unstable; urgency=medium
 
   * New upstream bugfix release.
diff --git a/debian/watch b/debian/watch
index f172b18..56b327f 100644
--- a/debian/watch
+++ b/debian/watch
@@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\
 
uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\
 
filenamemangle=s/(?:.*\/)?(?:rel|v|libosmium)[\-\_]?(\d[\d\-\.]+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/libosmium-$1.$2/
 \
 https://github.com/osmcode/libosmium/releases \
-(?:.*/)?(?:rel|v|libosmium)[\-\_]?(\d[\d\-\.]+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
+(?:.*/)?(?:rel|v|libosmium)[\-\_]?(2\.11\.\d[\d\-\.]*)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


libosmium_2.12.2-1~exp1_amd64.changes ACCEPTED into experimental

2017-05-03 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 May 2017 18:21:03 +0200
Source: libosmium
Binary: libosmium2-dev libosmium2-doc
Architecture: source amd64 all
Version: 2.12.2-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 libosmium2-dev - C++ framework for working with OSM data files
 libosmium2-doc - C++ framework for working with OSM data files - documentation
Changes:
 libosmium (2.12.2-1~exp1) experimental; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 75b6f3ec12f9b651c007716fcbc838c9f04b5092 2207 libosmium_2.12.2-1~exp1.dsc
 0887b02717985a9ddc8916a1f616e7723d76d01c 455800 libosmium_2.12.2.orig.tar.gz
 5c49f4280a21c67823e7d7943095ab1365e0ac60 6244 
libosmium_2.12.2-1~exp1.debian.tar.xz
 f08a2da75ea197def123c333aa3a97a862869efc 193690 
libosmium2-dev_2.12.2-1~exp1_amd64.deb
 0a9f921e1373dc20cea5a87812e88baec8ea2acb 47155386 
libosmium2-doc_2.12.2-1~exp1_all.deb
 3a90927c52a8c205c4fac23477b8ef1804214f9c 11255 
libosmium_2.12.2-1~exp1_amd64.buildinfo
Checksums-Sha256:
 5712289696a93541740ec5437e86daa5b972ff3a4d4544ffe5cd5386243f5c33 2207 
libosmium_2.12.2-1~exp1.dsc
 717fda38ac49c3e098084b0871cffd3332b0b49a1bba9f5412a085f540bff1a4 455800 
libosmium_2.12.2.orig.tar.gz
 c67391a5a82cb1e9e5bba2564210a8904584faca979b1298c5d86651da210212 6244 
libosmium_2.12.2-1~exp1.debian.tar.xz
 a99f22d88c75d8d15f9c3671c53f307ec9dbf5e450e7f5bc423a517e88391876 193690 
libosmium2-dev_2.12.2-1~exp1_amd64.deb
 aea8c22d7e5dc12ce2dc3160d1e4293d568f484f277b1c3697492101154641cf 47155386 
libosmium2-doc_2.12.2-1~exp1_all.deb
 177df4ae3c54b2ed6c661c39d38a01a5929f9f7cdec858b2fc5236c0ce185786 11255 
libosmium_2.12.2-1~exp1_amd64.buildinfo
Files:
 5f2af48a999091935b5617f8810918e0 2207 science optional 
libosmium_2.12.2-1~exp1.dsc
 28bb29ea9a0b5133c9ff4ce21c9e1bdb 455800 science optional 
libosmium_2.12.2.orig.tar.gz
 238b6510717e54fa8e9f4630692f11c0 6244 science optional 
libosmium_2.12.2-1~exp1.debian.tar.xz
 008e8ee764c345c13401f670385ca224 193690 libdevel optional 
libosmium2-dev_2.12.2-1~exp1_amd64.deb
 9eb748834392c82c6ad653bce45e5030 47155386 doc optional 
libosmium2-doc_2.12.2-1~exp1_all.deb
 71bd46d844647abe356d3ac127281465 11255 science optional 
libosmium_2.12.2-1~exp1_amd64.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJZCgYkAAoJEGdQ8QrojUrxrEEP/00ka/PTsTC9csL2pZY+YIrV
5cSvsKcG0yKFFk4Ms+0zMjwxcbczoQC1puTZEBO1DL+xPaKx4fGNv4W89M9Ay84o
aRjj67eQ/5FKSYI/gc1iD8lShWzDpAROQp2As26M5ML6QwgZxMAti5arF2oiO7nd
lfT35L/4cgcByQseLYz3pX69Cxlq/S/9i1NbUKkTkVwTMobriGaFXHbpibrExgdP
gE4Pgf9t9ojHjBA6P6g+GuZgOhHbJKVqsHuv4sE5DEVdDuAW2MQyUZxMIx4Kg8BK
Qsi73UsZOW1zzokIvldZ3YatMs+YT6G20kCpBMzuFAJ76/De629TZc1zR2YffiCz
tmv293n5TCmCjGH2Uk4xwRWgSPiAXzqlvO1ksZSczlZjjgGLGeTdERLLBVIuRxTa
V6YmXiXSt2hk5pioZ32RAR8MLw827d4qHMYMF6zvDTq2ah2E/K2TXP9bXZdyO0QH
bfppFCd1kY68MorQVIHFr4O2j8H9PoigiBznXLnElliuc9cQxTOAzR2QRUQjLxZe
TvAwyR1HR8ED6wvQXQW6KusGHhkZ7vvZw670dPa15iYrske6O8j7+z94Z9kbQhLB
IX+ED+7Hj3uPMDqKYLFj/GRWNmJv6AwiluAWyzrEgS06tDp7OpHVfbNQm8vwcmlZ
x+kseMbxYtNlcCMBAg5E
=4zdp
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
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 libosmium_2.12.2-1~exp1_amd64.changes

2017-05-03 Thread Debian FTP Masters
libosmium_2.12.2-1~exp1_amd64.changes uploaded successfully to localhost
along with the files:
  libosmium_2.12.2-1~exp1.dsc
  libosmium_2.12.2.orig.tar.gz
  libosmium_2.12.2-1~exp1.debian.tar.xz
  libosmium2-dev_2.12.2-1~exp1_amd64.deb
  libosmium2-doc_2.12.2-1~exp1_all.deb
  libosmium_2.12.2-1~exp1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.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


[libosmium] tag debian/2.12.2-1.exp1 created (now 3f8c266)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.12.2-1.exp1
in repository libosmium.

at  3f8c266   (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/libosmium.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


[libosmium] branch upstream updated (17c6b88 -> afcae49)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream
in repository libosmium.

  from  17c6b88   Imported Upstream version 2.12.1
   new  afcae49   Imported Upstream version 2.12.2

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:
 CHANGELOG.md   |   37 +-
 CMakeLists.txt |   14 +-
 appveyor.yml   |5 +
 build-appveyor.bat |3 +-
 cmake/FindOsmium.cmake |4 +
 include/osmium/area/assembler.hpp  |2 +
 include/osmium/area/detail/basic_assembler.hpp |   36 +-
 include/osmium/area/detail/node_ref_segment.hpp|2 +-
 include/osmium/area/detail/proto_ring.hpp  |   18 +-
 include/osmium/area/detail/segment_list.hpp|   21 +-
 include/osmium/area/multipolygon_collector.hpp |1 +
 include/osmium/area/problem_reporter.hpp   |8 +
 include/osmium/area/problem_reporter_exception.hpp |6 +
 include/osmium/area/problem_reporter_ogr.hpp   |   16 +
 include/osmium/area/problem_reporter_stream.hpp|5 +
 include/osmium/area/stats.hpp  |3 +
 include/osmium/index/map/dense_file_array.hpp  |4 +
 include/osmium/index/map/dense_mem_array.hpp   |4 +
 include/osmium/index/map/dense_mmap_array.hpp  |4 +
 include/osmium/index/map/sparse_file_array.hpp |4 +
 include/osmium/index/map/sparse_mem_array.hpp  |4 +
 include/osmium/index/map/sparse_mem_map.hpp|4 +
 include/osmium/index/map/sparse_mem_table.hpp  |   24 +-
 include/osmium/index/map/sparse_mmap_array.hpp |4 +
 include/osmium/index/node_locations_map.hpp|2 +
 include/osmium/io/detail/input_format.hpp  |   53 +-
 include/osmium/io/detail/o5m_input_format.hpp  |   14 +-
 include/osmium/io/detail/opl_input_format.hpp  |   19 +-
 include/osmium/io/detail/pbf_input_format.hpp  |   14 +-
 include/osmium/io/detail/xml_input_format.hpp  |   14 +-
 include/osmium/io/reader.hpp   |   54 +-
 include/osmium/io/writer.hpp   |   26 +-
 include/osmium/tags/matcher.hpp|   13 +-
 include/osmium/util/file.hpp   |4 +-
 include/osmium/util/string_matcher.hpp |2 +-
 include/osmium/version.hpp |4 +-
 test/CMakeLists.txt|2 +-
 test/data-tests/CMakeLists.txt |6 +-
 test/data-tests/multipolygon.qgs   | 2089 
 test/data-tests/testdata-xml.cpp   |   10 +-
 test/t/area/test_node_ref_segment.cpp  |   65 +-
 test/t/io/data-nonl.opl|1 +
 test/t/io/data.opl |1 +
 test/t/io/test_opl_parser.cpp  |   22 +
 test/t/io/test_reader.cpp  |   52 +-
 test/t/io/test_reader_with_mock_parser.cpp |   14 +-
 test/t/io/test_writer_with_mock_encoder.cpp|2 +-
 47 files changed, 1647 insertions(+), 1069 deletions(-)
 create mode 100644 test/t/io/data-nonl.opl
 create mode 100644 test/t/io/data.opl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] annotated tag upstream/2.12.2 created (now df8d635)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/2.12.2
in repository libosmium.

at  df8d635   (tag)
   tagging  afcae4980d66b6b68f068678cf7edeb6cada8c6a (commit)
  replaces  upstream/2.12.1
 tagged by  Bas Couwenberg
on  Wed May 3 18:19:57 2017 +0200

- Log -
Upstream version 2.12.2

Bas Couwenberg (1):
  Imported Upstream version 2.12.2

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] branch experimental updated (d598eb0 -> 3f8c266)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch experimental
in repository libosmium.

  from  d598eb0   Set distribution to experimental.
   new  afcae49   Imported Upstream version 2.12.2
   new  d910459   Merge tag 'upstream/2.12.2' into experimental
   new  87b2d0a   New upstream release.
   new  3f8c266   Set distribution to experimental.

The 4 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:
 CHANGELOG.md   |   37 +-
 CMakeLists.txt |   14 +-
 appveyor.yml   |5 +
 build-appveyor.bat |3 +-
 cmake/FindOsmium.cmake |4 +
 debian/changelog   |6 +
 include/osmium/area/assembler.hpp  |2 +
 include/osmium/area/detail/basic_assembler.hpp |   36 +-
 include/osmium/area/detail/node_ref_segment.hpp|2 +-
 include/osmium/area/detail/proto_ring.hpp  |   18 +-
 include/osmium/area/detail/segment_list.hpp|   21 +-
 include/osmium/area/multipolygon_collector.hpp |1 +
 include/osmium/area/problem_reporter.hpp   |8 +
 include/osmium/area/problem_reporter_exception.hpp |6 +
 include/osmium/area/problem_reporter_ogr.hpp   |   16 +
 include/osmium/area/problem_reporter_stream.hpp|5 +
 include/osmium/area/stats.hpp  |3 +
 include/osmium/index/map/dense_file_array.hpp  |4 +
 include/osmium/index/map/dense_mem_array.hpp   |4 +
 include/osmium/index/map/dense_mmap_array.hpp  |4 +
 include/osmium/index/map/sparse_file_array.hpp |4 +
 include/osmium/index/map/sparse_mem_array.hpp  |4 +
 include/osmium/index/map/sparse_mem_map.hpp|4 +
 include/osmium/index/map/sparse_mem_table.hpp  |   24 +-
 include/osmium/index/map/sparse_mmap_array.hpp |4 +
 include/osmium/index/node_locations_map.hpp|2 +
 include/osmium/io/detail/input_format.hpp  |   53 +-
 include/osmium/io/detail/o5m_input_format.hpp  |   14 +-
 include/osmium/io/detail/opl_input_format.hpp  |   19 +-
 include/osmium/io/detail/pbf_input_format.hpp  |   14 +-
 include/osmium/io/detail/xml_input_format.hpp  |   14 +-
 include/osmium/io/reader.hpp   |   54 +-
 include/osmium/io/writer.hpp   |   26 +-
 include/osmium/tags/matcher.hpp|   13 +-
 include/osmium/util/file.hpp   |4 +-
 include/osmium/util/string_matcher.hpp |2 +-
 include/osmium/version.hpp |4 +-
 test/CMakeLists.txt|2 +-
 test/data-tests/CMakeLists.txt |6 +-
 test/data-tests/multipolygon.qgs   | 2089 
 test/data-tests/testdata-xml.cpp   |   10 +-
 test/t/area/test_node_ref_segment.cpp  |   65 +-
 test/t/io/data-nonl.opl|1 +
 test/t/io/data.opl |1 +
 test/t/io/test_opl_parser.cpp  |   22 +
 test/t/io/test_reader.cpp  |   52 +-
 test/t/io/test_reader_with_mock_parser.cpp |   14 +-
 test/t/io/test_writer_with_mock_encoder.cpp|2 +-
 48 files changed, 1653 insertions(+), 1069 deletions(-)
 create mode 100644 test/t/io/data-nonl.opl
 create mode 100644 test/t/io/data.opl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 04/04: Set distribution to experimental.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository libosmium.

commit 3f8c266825095e9102ccd0034b3824a9ecb20cca
Author: Bas Couwenberg 
Date:   Wed May 3 18:21:19 2017 +0200

Set distribution to experimental.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8d30208..e1c6830 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-libosmium (2.12.2-1) UNRELEASED; urgency=medium
+libosmium (2.12.2-1~exp1) experimental; urgency=medium
 
   * New upstream release.
 
- -- Bas Couwenberg   Wed, 03 May 2017 18:20:05 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 18:21:03 +0200
 
 libosmium (2.12.1-1~exp1) experimental; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 01/01: pristine-tar data for libosmium_2.12.2.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository libosmium.

commit 0a8fd0435613c26c83601489919383bda8df194d
Author: Bas Couwenberg 
Date:   Wed May 3 18:19:57 2017 +0200

pristine-tar data for libosmium_2.12.2.orig.tar.gz
---
 libosmium_2.12.2.orig.tar.gz.delta | Bin 0 -> 15405 bytes
 libosmium_2.12.2.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libosmium_2.12.2.orig.tar.gz.delta 
b/libosmium_2.12.2.orig.tar.gz.delta
new file mode 100644
index 000..6e70555
Binary files /dev/null and b/libosmium_2.12.2.orig.tar.gz.delta differ
diff --git a/libosmium_2.12.2.orig.tar.gz.id b/libosmium_2.12.2.orig.tar.gz.id
new file mode 100644
index 000..b342a37
--- /dev/null
+++ b/libosmium_2.12.2.orig.tar.gz.id
@@ -0,0 +1 @@
+48056c22cdf9cba1bf15e48c8ecb125f3229

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 03/04: New upstream release.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository libosmium.

commit 87b2d0a3df42fc4c1a7ff1959cd108e50afe44b4
Author: Bas Couwenberg 
Date:   Wed May 3 18:20:13 2017 +0200

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

diff --git a/debian/changelog b/debian/changelog
index 3cea9f0..8d30208 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libosmium (2.12.2-1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+
+ -- Bas Couwenberg   Wed, 03 May 2017 18:20:05 +0200
+
 libosmium (2.12.1-1~exp1) experimental; urgency=medium
 
   * New upstream release.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] 02/04: Merge tag 'upstream/2.12.2' into experimental

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository libosmium.

commit d910459df4313a8802924c3a2b010ee7020c398a
Merge: d598eb0 afcae49
Author: Bas Couwenberg 
Date:   Wed May 3 18:19:58 2017 +0200

Merge tag 'upstream/2.12.2' into experimental

Upstream version 2.12.2

 CHANGELOG.md   |   37 +-
 CMakeLists.txt |   14 +-
 appveyor.yml   |5 +
 build-appveyor.bat |3 +-
 cmake/FindOsmium.cmake |4 +
 include/osmium/area/assembler.hpp  |2 +
 include/osmium/area/detail/basic_assembler.hpp |   36 +-
 include/osmium/area/detail/node_ref_segment.hpp|2 +-
 include/osmium/area/detail/proto_ring.hpp  |   18 +-
 include/osmium/area/detail/segment_list.hpp|   21 +-
 include/osmium/area/multipolygon_collector.hpp |1 +
 include/osmium/area/problem_reporter.hpp   |8 +
 include/osmium/area/problem_reporter_exception.hpp |6 +
 include/osmium/area/problem_reporter_ogr.hpp   |   16 +
 include/osmium/area/problem_reporter_stream.hpp|5 +
 include/osmium/area/stats.hpp  |3 +
 include/osmium/index/map/dense_file_array.hpp  |4 +
 include/osmium/index/map/dense_mem_array.hpp   |4 +
 include/osmium/index/map/dense_mmap_array.hpp  |4 +
 include/osmium/index/map/sparse_file_array.hpp |4 +
 include/osmium/index/map/sparse_mem_array.hpp  |4 +
 include/osmium/index/map/sparse_mem_map.hpp|4 +
 include/osmium/index/map/sparse_mem_table.hpp  |   24 +-
 include/osmium/index/map/sparse_mmap_array.hpp |4 +
 include/osmium/index/node_locations_map.hpp|2 +
 include/osmium/io/detail/input_format.hpp  |   53 +-
 include/osmium/io/detail/o5m_input_format.hpp  |   14 +-
 include/osmium/io/detail/opl_input_format.hpp  |   19 +-
 include/osmium/io/detail/pbf_input_format.hpp  |   14 +-
 include/osmium/io/detail/xml_input_format.hpp  |   14 +-
 include/osmium/io/reader.hpp   |   54 +-
 include/osmium/io/writer.hpp   |   26 +-
 include/osmium/tags/matcher.hpp|   13 +-
 include/osmium/util/file.hpp   |4 +-
 include/osmium/util/string_matcher.hpp |2 +-
 include/osmium/version.hpp |4 +-
 test/CMakeLists.txt|2 +-
 test/data-tests/CMakeLists.txt |6 +-
 test/data-tests/multipolygon.qgs   | 2089 
 test/data-tests/testdata-xml.cpp   |   10 +-
 test/t/area/test_node_ref_segment.cpp  |   65 +-
 test/t/io/data-nonl.opl|1 +
 test/t/io/data.opl |1 +
 test/t/io/test_opl_parser.cpp  |   22 +
 test/t/io/test_reader.cpp  |   52 +-
 test/t/io/test_reader_with_mock_parser.cpp |   14 +-
 test/t/io/test_writer_with_mock_encoder.cpp|2 +-
 47 files changed, 1647 insertions(+), 1069 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


[libosmium] branch pristine-tar updated (8feb07d -> 0a8fd04)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository libosmium.

  from  8feb07d   pristine-tar data for libosmium_2.12.1.orig.tar.gz
   new  0a8fd04   pristine-tar data for libosmium_2.12.2.orig.tar.gz

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:
 libosmium_2.12.2.orig.tar.gz.delta | Bin 0 -> 15405 bytes
 libosmium_2.12.2.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libosmium_2.12.2.orig.tar.gz.delta
 create mode 100644 libosmium_2.12.2.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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


josm_0.0.svn12039+dfsg-1~exp1_amd64.changes ACCEPTED into experimental

2017-05-03 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 May 2017 07:39:18 +0200
Source: josm
Binary: josm josm-l10n
Architecture: source all
Version: 0.0.svn12039+dfsg-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 josm   - Editor for OpenStreetMap
 josm-l10n  - Editor for OpenStreetMap - translation files
Changes:
 josm (0.0.svn12039+dfsg-1~exp1) experimental; urgency=medium
 .
   * New tested snapshot.
   * Drop webkit-image-* packages from Recommends.
 Yahoo imagery is no longer available (since 13 September 2011).
   * Bump minimum required jmapviewer version to 2.1.
   * Refresh patches.
Checksums-Sha1:
 c4a7b74f92cf4adb2f0c7233eff6e467da0bab1c 2386 josm_0.0.svn12039+dfsg-1~exp1.dsc
 d784a34f1be0ec34494b161b463e75b8d8869769 33694281 
josm_0.0.svn12039+dfsg.orig.tar.gz
 dffb76dd11ea0e8273a3ec16766d532656829ef3 89652 
josm_0.0.svn12039+dfsg-1~exp1.debian.tar.xz
 56831149e62e18696bd90b81869949925a1840be 1620442 
josm-l10n_0.0.svn12039+dfsg-1~exp1_all.deb
 3a586d4582f28bd448c20f7dd89faedfbb2552ee 7421972 
josm_0.0.svn12039+dfsg-1~exp1_all.deb
 6d6b142bf02218b0ff8ec4752ca213892f76cd0f 10787 
josm_0.0.svn12039+dfsg-1~exp1_amd64.buildinfo
Checksums-Sha256:
 f856182764d426224f2da4e13dd87b6599015e1d2072eefb478ac34a6584284a 2386 
josm_0.0.svn12039+dfsg-1~exp1.dsc
 fffe7cef1634be590ba69456c56d6ad7c4dabfcbfc63a0e257e8c385763707b1 33694281 
josm_0.0.svn12039+dfsg.orig.tar.gz
 91a0e142ed063b8375dc5187ec7df4af7c3ea0a809bfcaf2df1645f5f1f96650 89652 
josm_0.0.svn12039+dfsg-1~exp1.debian.tar.xz
 20828ad248edc86df956903b15423e27d4588a9d3dd87014e95242f604a1f54d 1620442 
josm-l10n_0.0.svn12039+dfsg-1~exp1_all.deb
 72f5dab7f2630a1b08a86a4dec3f7a4a01f2e0b7cface48de0f76c302628f186 7421972 
josm_0.0.svn12039+dfsg-1~exp1_all.deb
 5b164c51901d7c9dd27459198473ea273aab6d8d638a83775cd91163ec3a2b50 10787 
josm_0.0.svn12039+dfsg-1~exp1_amd64.buildinfo
Files:
 1fbbd1e69a284b20db635a339942cdf0 2386 utils extra 
josm_0.0.svn12039+dfsg-1~exp1.dsc
 b08c0836864bf6e810ecac769bda9b49 33694281 utils extra 
josm_0.0.svn12039+dfsg.orig.tar.gz
 378fee25e9868789c78c5284c052e3d2 89652 utils extra 
josm_0.0.svn12039+dfsg-1~exp1.debian.tar.xz
 7a344f33812551c2d5fef381d4813fdd 1620442 localization extra 
josm-l10n_0.0.svn12039+dfsg-1~exp1_all.deb
 773d25e6c318db6c8f4aadee0cce340e 7421972 utils extra 
josm_0.0.svn12039+dfsg-1~exp1_all.deb
 b87ecd32e9acba6ecbdfe66aff960a64 10787 utils extra 
josm_0.0.svn12039+dfsg-1~exp1_amd64.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJZCXgtAAoJEGdQ8QrojUrxKFMP/ihQnbf3oZvof5SkKW9LZ235
LZMHXoei3m25A+H63offy3D/Xs2ZApsb6l2HVSlr1DGOZ8FxHBFakXp33amza9HH
DtLxcgxlU+t0AZvbF3RX7L+gBVgwJdFJqktwb+fvNZeDmcaMZHc/a8YoXQg+nAS1
Lsd7xJK3DVmw2lM/C0fVYVPS6w8W5tLBFZCzrgn4f536f0zFZlEKvzLiqcSDIMRF
OKHsC1XGVl2cXDw36w4Hcz0GuVcIVW0+F3087NVqJ/rJEHaoO0a2m7ThfW0IT9mQ
7W1Hm2QBG3g67Jpammi04/cEOJi4ixcmr73a0nOcmhssPYjPjw8RK59OJu3UQcNN
8k4wAi/TzzLL2IHd00TdLJiB7GfzXZYME3NxlsAD/RD5GP9gdHlhTIEtQtT+K66S
5xZJzCHpaI2NxgZe+zrwinuDhKo5vrGMTrV1jGWfokqBOxBAqzyp7WQh6lIXMUy2
9d5E9hk+YuDDWjrCSwp9pWwYc+NZi1s7WE4wQUYKkHg3JO+SNAUP5aqwQKeOXa4X
n1bJM8kUKwXUOrTz/MwaiVKqqkXsTe7LOr6IOLsIscmwrytR2T4WNe9ZDZh+O3SH
PeOAC2lZZb6oHmstHw56YyqC88oIrVFYciEAVmGBa/dfDQzKJ995cmW4SMDTlNcj
q0lDKt/QawFJX7sryErU
=2ZEX
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
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 josm_0.0.svn12039+dfsg-1~exp1_amd64.changes

2017-05-03 Thread Debian FTP Masters
josm_0.0.svn12039+dfsg-1~exp1_amd64.changes uploaded successfully to localhost
along with the files:
  josm_0.0.svn12039+dfsg-1~exp1.dsc
  josm_0.0.svn12039+dfsg.orig.tar.gz
  josm_0.0.svn12039+dfsg-1~exp1.debian.tar.xz
  josm-l10n_0.0.svn12039+dfsg-1~exp1_all.deb
  josm_0.0.svn12039+dfsg-1~exp1_all.deb
  josm_0.0.svn12039+dfsg-1~exp1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.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


[josm] 03/06: New tested snapshot.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository josm.

commit 27e24faa4c2f660fe152c287b9b2a69db67dfd2e
Author: Bas Couwenberg 
Date:   Wed May 3 07:24:01 2017 +0200

New tested snapshot.
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 481960e..6557977 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-josm (0.0.svn11826+dfsg-1~exp2) UNRELEASED; urgency=medium
+josm (0.0.svn12039+dfsg-1) UNRELEASED; urgency=medium
 
+  * New tested snapshot.
   * Drop webkit-image-* packages from Recommends.
 Yahoo imagery is no longer available (since 13 September 2011).
 
- -- Bas Couwenberg   Mon, 03 Apr 2017 14:22:50 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 07:23:41 +0200
 
 josm (0.0.svn11826+dfsg-1~exp1) experimental; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/josm.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


[josm] annotated tag upstream/0.0.svn12039+dfsg created (now 6004db3)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/0.0.svn12039+dfsg
in repository josm.

at  6004db3   (tag)
   tagging  45f7069c632ef4b9cbef77fc6d958edcf220aa3b (commit)
  replaces  upstream/0.0.svn11826+dfsg
 tagged by  Bas Couwenberg
on  Wed May 3 07:23:32 2017 +0200

- Log -
Upstream version 0.0.svn12039+dfsg

Bas Couwenberg (1):
  Imported Upstream version 0.0.svn12039+dfsg

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/josm.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


[josm] 05/06: Refresh patches.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository josm.

commit b02cdcc7ea78c30d53218f3d23af5f13f6419631
Author: Bas Couwenberg 
Date:   Wed May 3 07:39:16 2017 +0200

Refresh patches.
---
 debian/changelog |  1 +
 debian/patches/00-build.patch| 19 ++-
 debian/patches/01-bts.patch  |  4 ++--
 debian/patches/05-fix_version.patch  |  2 +-
 debian/patches/06-move_data_out_of_jar.patch |  2 +-
 5 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5132544..a241c68 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ josm (0.0.svn12039+dfsg-1) UNRELEASED; urgency=medium
   * Drop webkit-image-* packages from Recommends.
 Yahoo imagery is no longer available (since 13 September 2011).
   * Bump minimum required jmapviewer version to 2.1.
+  * Refresh patches.
 
  -- Bas Couwenberg   Wed, 03 May 2017 07:23:41 +0200
 
diff --git a/debian/patches/00-build.patch b/debian/patches/00-build.patch
index 5596f7f..6c19ce2 100644
--- a/debian/patches/00-build.patch
+++ b/debian/patches/00-build.patch
@@ -13,7 +13,7 @@ Forwarded: not-needed
  
  
  
--
+-
 +
 +
  
@@ -82,7 +82,7 @@ Forwarded: not-needed
  
  
  
-@@ -212,38 +229,21 @@ Build-Date: ${build.tstamp}
+@@ -212,39 +229,21 @@ Build-Date: ${build.tstamp}
  
  
  
@@ -106,6 +106,7 @@ Forwarded: not-needed
  
  
 -
+-
 -
 -
 -
@@ -124,7 +125,7 @@ Forwarded: not-needed
  
  
  
-@@ -264,19 +264,13 @@ Build-Date: ${build.tstamp}
+@@ -265,19 +264,13 @@ Build-Date: ${build.tstamp}
  
  
  
@@ -139,7 +140,7 @@ Forwarded: not-needed
  
 -
 -
 -
@@ -147,7 +148,7 @@ Forwarded: not-needed
  
  
  
-@@ -290,16 +284,12 @@ Build-Date: ${build.tstamp}
+@@ -291,16 +284,12 @@ Build-Date: ${build.tstamp}
  
  
  
@@ -165,7 +166,7 @@ Forwarded: not-needed
  
  
  
-@@ -313,11 +303,6 @@ Build-Date: ${build.tstamp}
+@@ -314,11 +303,6 @@ Build-Date: ${build.tstamp}
  
  
  
@@ -177,7 +178,7 @@ Forwarded: not-needed
  
  
  
-@@ -331,6 +316,7 @@ Build-Date: ${build.tstamp}
+@@ -332,6 +316,7 @@ Build-Date: ${build.tstamp}
  
  
  
@@ -185,7 +186,7 @@ Forwarded: not-needed
  
  
  
  
  
@@ -193,7 +194,7 @@ Forwarded: not-needed
  
  
  
-@@ -808,6 +795,7 @@ Build-Date: ${build.tstamp}
+@@ -811,6 +797,7 @@ Build-Date: ${build.tstamp}
  
  
  
diff --git a/debian/patches/01-bts.patch b/debian/patches/01-bts.patch
index 9d34e74..352e7cd 100644
--- a/debian/patches/01-bts.patch
+++ b/debian/patches/01-bts.patch
@@ -36,7 +36,7 @@ Forwarded: not-needed
  about.addTab(tr("Readme"), createScrollPane(readme));
 --- a/src/org/openstreetmap/josm/data/Version.java
 +++ b/src/org/openstreetmap/josm/data/Version.java
-@@ -37,6 +37,7 @@ public class Version {
+@@ -38,6 +38,7 @@ public class Version {
  
  private int version;
  private String releaseDescription;
@@ -53,7 +53,7 @@ Forwarded: not-needed
  // the last changed data
  //
  time = properties.getProperty("Last Changed Date");
-@@ -132,6 +135,10 @@ public class Version {
+@@ -125,6 +128,10 @@ public class Version {
  return version == 0 ? tr("UNKNOWN") : Integer.toString(version);
  }
  
diff --git a/debian/patches/05-fix_version.patch 
b/debian/patches/05-fix_version.patch
index 204b208..ae2009d 100644
--- a/debian/patches/05-fix_version.patch
+++ b/debian/patches/05-fix_version.patch
@@ -11,7 +11,7 @@ Forwarded: not-needed
 @@ -152,7 +152,7 @@ Debian-Release: ${debian.version}
  
  
- 
+ 
 -
 +
  
diff --git a/debian/patches/06-move_data_out_of_jar.patch 
b/debian/patches/06-move_data_out_of_jar.patch
index 286945e..e49de37 100644
--- a/debian/patches/06-move_data_out_of_jar.patch
+++ b/debian/patches/06-move_data_out_of_jar.patch
@@ -44,7 +44,7 @@ Forwarded: not-needed
  /**
 --- a/src/org/openstreetmap/josm/io/CachedFile.java
 +++ b/src/org/openstreetmap/josm/io/CachedFile.java
-@@ -207,11 +207,17 @@ public class CachedFile implements Close
+@@ -206,11 +206,17 @@ public class CachedFile implements Close
  File file = getFile();
  if (file == null) {
  if (name != null && 

[josm] 04/06: Bump minimum required jmapviewer version to 2.1.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository josm.

commit 48645823150d1f6bc30a38a68ad924d14d76f5b8
Author: Bas Couwenberg 
Date:   Wed May 3 07:24:54 2017 +0200

Bump minimum required jmapviewer version to 2.1.
---
 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6557977..5132544 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ josm (0.0.svn12039+dfsg-1) UNRELEASED; urgency=medium
   * New tested snapshot.
   * Drop webkit-image-* packages from Recommends.
 Yahoo imagery is no longer available (since 13 September 2011).
+  * Bump minimum required jmapviewer version to 2.1.
 
  -- Bas Couwenberg   Wed, 03 May 2017 07:23:41 +0200
 
diff --git a/debian/control b/debian/control
index aa61cef..6f13702 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 9~),
gettext,
groovy,
javacc,
-   jmapviewer (>= 2.0),
+   jmapviewer (>= 2.1),
libcommons-compress-java,
libcommons-logging-java,
libgettext-ant-tasks-java,
@@ -29,7 +29,7 @@ Package: josm
 Architecture: all
 Depends: default-jre (>= 2:1.8) | java8-runtime,
  fonts-noto,
- jmapviewer (>= 2.0),
+ jmapviewer (>= 2.1),
  libcommons-compress-java,
  libcommons-logging-java,
  libgettext-commons-java (>= 0.9.6),

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/josm.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


[josm] 01/01: pristine-tar data for josm_0.0.svn12039+dfsg.orig.tar.gz

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository josm.

commit 2834d13bf05b73582a45833f498c173b61d84526
Author: Bas Couwenberg 
Date:   Wed May 3 07:23:31 2017 +0200

pristine-tar data for josm_0.0.svn12039+dfsg.orig.tar.gz
---
 josm_0.0.svn12039+dfsg.orig.tar.gz.delta | Bin 0 -> 210764 bytes
 josm_0.0.svn12039+dfsg.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/josm_0.0.svn12039+dfsg.orig.tar.gz.delta 
b/josm_0.0.svn12039+dfsg.orig.tar.gz.delta
new file mode 100644
index 000..42c22b4
Binary files /dev/null and b/josm_0.0.svn12039+dfsg.orig.tar.gz.delta differ
diff --git a/josm_0.0.svn12039+dfsg.orig.tar.gz.id 
b/josm_0.0.svn12039+dfsg.orig.tar.gz.id
new file mode 100644
index 000..3f0aad1
--- /dev/null
+++ b/josm_0.0.svn12039+dfsg.orig.tar.gz.id
@@ -0,0 +1 @@
+71f558961030920431b069756629aa46fa65797d

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/josm.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


[josm] tag debian/0.0.svn12039+dfsg-1.exp1 created (now 9914209)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/0.0.svn12039+dfsg-1.exp1
in repository josm.

at  9914209   (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/josm.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


[josm] 02/06: Merge tag 'upstream/0.0.svn12039+dfsg'

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository josm.

commit 90d631dd82aaf3496ceffb2f87fc1e95f16c8eda
Merge: a3c7c36 45f7069
Author: Bas Couwenberg 
Date:   Wed May 3 07:23:32 2017 +0200

Merge tag 'upstream/0.0.svn12039+dfsg'

Upstream version 0.0.svn12039+dfsg

 .classpath | 1 +
 README | 2 +-
 REVISION   | 8 +-
 build.xml  |25 +-
 data/boundaries.osm| 2 +-
 data/defaultpresets.xml|56 +-
 data/security/StartCom_Certification_Authority.pem |44 -
 data/tagging-preset.xsd| 1 +
 data/validator/deprecated.mapcss   | 2 +-
 data/validator/ignoretags.cfg  | 6 +-
 data/validator/wikipedia.mapcss| 1 +
 data_nodist/mapcss/basic.osm   | 2 +-
 data_nodist/mapcss/relation.osm| 2 +-
 .../projection/projection-regression-test-data | 11764 +--
 data_nodist/trans/ast.lang |   Bin 8801 -> 8733 bytes
 data_nodist/trans/be.lang  |   Bin 18388 -> 18299 bytes
 data_nodist/trans/bg.lang  |   Bin 2433 -> 2433 bytes
 data_nodist/trans/ca-valencia.lang |   Bin 7813 -> 7752 bytes
 data_nodist/trans/ca.lang  |   Bin 10474 -> 10413 bytes
 data_nodist/trans/cs.lang  |   Bin 11585 -> 11579 bytes
 data_nodist/trans/da.lang  |   Bin 10536 -> 10485 bytes
 data_nodist/trans/de.lang  |   Bin 12238 -> 12328 bytes
 data_nodist/trans/el.lang  |   Bin 1435 -> 1435 bytes
 data_nodist/trans/en.lang  |   Bin 9957 -> 10042 bytes
 data_nodist/trans/en_AU.lang   |   Bin 1520 -> 1520 bytes
 data_nodist/trans/en_GB.lang   |   Bin 2112 -> 2112 bytes
 data_nodist/trans/es.lang  |   Bin 12618 -> 12546 bytes
 data_nodist/trans/et.lang  |   Bin 1412 -> 1412 bytes
 data_nodist/trans/fi.lang  |   Bin 3033 -> 3033 bytes
 data_nodist/trans/fr.lang  |   Bin 12219 -> 12170 bytes
 data_nodist/trans/gl.lang  |   Bin 2983 -> 2983 bytes
 data_nodist/trans/hu.lang  |   Bin 12512 -> 13382 bytes
 data_nodist/trans/id.lang  |   Bin 6723 -> 6723 bytes
 data_nodist/trans/it.lang  |   Bin 10357 -> 10297 bytes
 data_nodist/trans/ja.lang  |   Bin 11661 -> 11610 bytes
 data_nodist/trans/km.lang  |   Bin 16686 -> 16577 bytes
 data_nodist/trans/lt.lang  |   Bin 2041 -> 2041 bytes
 data_nodist/trans/nb.lang  |   Bin 1711 -> 1711 bytes
 data_nodist/trans/nl.lang  |   Bin 12362 -> 12773 bytes
 data_nodist/trans/pl.lang  |   Bin 2860 -> 2860 bytes
 data_nodist/trans/pt.lang  |   Bin 13644 -> 13644 bytes
 data_nodist/trans/pt_BR.lang   |   Bin 10116 -> 10116 bytes
 data_nodist/trans/ru.lang  |   Bin 18731 -> 19151 bytes
 data_nodist/trans/sk.lang  |   Bin 10489 -> 10867 bytes
 data_nodist/trans/sv.lang  |   Bin 1334 -> 1334 bytes
 data_nodist/trans/uk.lang  |   Bin 18807 -> 19539 bytes
 data_nodist/trans/vi.lang  |   Bin 10676 -> 10614 bytes
 data_nodist/trans/zh_CN.lang   |   Bin 7531 -> 7531 bytes
 data_nodist/trans/zh_TW.lang   |   Bin 4921 -> 5341 bytes
 eclipse/JOSM (Java 8).launch   | 4 +-
 i18n/convwiki.pl   | 1 +
 i18n/po/af.po  |   623 +-
 i18n/po/am.po  |   623 +-
 i18n/po/ar.po  |   623 +-
 i18n/po/ast.po |   679 +-
 i18n/po/az.po  |   623 +-
 i18n/po/be.po  |   711 +-
 i18n/po/bg.po  |   649 +-
 i18n/po/bn.po  |   623 +-
 i18n/po/br.po  |   623 +-
 i18n/po/bs.po  |   623 +-
 i18n/po/ca.po  |   706 +-
 i18n/po/c...@valencia.po |   665 +-
 i18n/po/cs.po

[josm] branch upstream updated (d109609 -> 45f7069)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream
in repository josm.

  from  d109609   Imported Upstream version 0.0.svn11826+dfsg
   new  45f7069   Imported Upstream version 0.0.svn12039+dfsg

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:
 .classpath | 1 +
 README | 2 +-
 REVISION   | 8 +-
 build.xml  |25 +-
 data/boundaries.osm| 2 +-
 data/defaultpresets.xml|56 +-
 data/security/StartCom_Certification_Authority.pem |44 -
 data/tagging-preset.xsd| 1 +
 data/validator/deprecated.mapcss   | 2 +-
 data/validator/ignoretags.cfg  | 6 +-
 data/validator/wikipedia.mapcss| 1 +
 data_nodist/mapcss/basic.osm   | 2 +-
 data_nodist/mapcss/relation.osm| 2 +-
 .../projection/projection-regression-test-data | 11764 +--
 data_nodist/trans/ast.lang |   Bin 8801 -> 8733 bytes
 data_nodist/trans/be.lang  |   Bin 18388 -> 18299 bytes
 data_nodist/trans/bg.lang  |   Bin 2433 -> 2433 bytes
 data_nodist/trans/ca-valencia.lang |   Bin 7813 -> 7752 bytes
 data_nodist/trans/ca.lang  |   Bin 10474 -> 10413 bytes
 data_nodist/trans/cs.lang  |   Bin 11585 -> 11579 bytes
 data_nodist/trans/da.lang  |   Bin 10536 -> 10485 bytes
 data_nodist/trans/de.lang  |   Bin 12238 -> 12328 bytes
 data_nodist/trans/el.lang  |   Bin 1435 -> 1435 bytes
 data_nodist/trans/en.lang  |   Bin 9957 -> 10042 bytes
 data_nodist/trans/en_AU.lang   |   Bin 1520 -> 1520 bytes
 data_nodist/trans/en_GB.lang   |   Bin 2112 -> 2112 bytes
 data_nodist/trans/es.lang  |   Bin 12618 -> 12546 bytes
 data_nodist/trans/et.lang  |   Bin 1412 -> 1412 bytes
 data_nodist/trans/fi.lang  |   Bin 3033 -> 3033 bytes
 data_nodist/trans/fr.lang  |   Bin 12219 -> 12170 bytes
 data_nodist/trans/gl.lang  |   Bin 2983 -> 2983 bytes
 data_nodist/trans/hu.lang  |   Bin 12512 -> 13382 bytes
 data_nodist/trans/id.lang  |   Bin 6723 -> 6723 bytes
 data_nodist/trans/it.lang  |   Bin 10357 -> 10297 bytes
 data_nodist/trans/ja.lang  |   Bin 11661 -> 11610 bytes
 data_nodist/trans/km.lang  |   Bin 16686 -> 16577 bytes
 data_nodist/trans/lt.lang  |   Bin 2041 -> 2041 bytes
 data_nodist/trans/nb.lang  |   Bin 1711 -> 1711 bytes
 data_nodist/trans/nl.lang  |   Bin 12362 -> 12773 bytes
 data_nodist/trans/pl.lang  |   Bin 2860 -> 2860 bytes
 data_nodist/trans/pt.lang  |   Bin 13644 -> 13644 bytes
 data_nodist/trans/pt_BR.lang   |   Bin 10116 -> 10116 bytes
 data_nodist/trans/ru.lang  |   Bin 18731 -> 19151 bytes
 data_nodist/trans/sk.lang  |   Bin 10489 -> 10867 bytes
 data_nodist/trans/sv.lang  |   Bin 1334 -> 1334 bytes
 data_nodist/trans/uk.lang  |   Bin 18807 -> 19539 bytes
 data_nodist/trans/vi.lang  |   Bin 10676 -> 10614 bytes
 data_nodist/trans/zh_CN.lang   |   Bin 7531 -> 7531 bytes
 data_nodist/trans/zh_TW.lang   |   Bin 4921 -> 5341 bytes
 eclipse/JOSM (Java 8).launch   | 4 +-
 i18n/convwiki.pl   | 1 +
 i18n/po/af.po  |   623 +-
 i18n/po/am.po  |   623 +-
 i18n/po/ar.po  |   623 +-
 i18n/po/ast.po |   679 +-
 i18n/po/az.po  |   623 +-
 i18n/po/be.po  |   711 +-
 i18n/po/bg.po  |   649 +-
 i18n/po/bn.po  |   623 +-
 i18n/po/br.po  |   623 +-
 i18n/po/bs.po  |   623 +-
 i18n/po/ca.po  

[josm] 06/06: Set distribution to experimental.

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository josm.

commit 9914209411ed38ff8500b5503f38cd6e25b988c6
Author: Bas Couwenberg 
Date:   Wed May 3 07:39:30 2017 +0200

Set distribution to experimental.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a241c68..5e2c9d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-josm (0.0.svn12039+dfsg-1) UNRELEASED; urgency=medium
+josm (0.0.svn12039+dfsg-1~exp1) experimental; urgency=medium
 
   * New tested snapshot.
   * Drop webkit-image-* packages from Recommends.
@@ -6,7 +6,7 @@ josm (0.0.svn12039+dfsg-1) UNRELEASED; urgency=medium
   * Bump minimum required jmapviewer version to 2.1.
   * Refresh patches.
 
- -- Bas Couwenberg   Wed, 03 May 2017 07:23:41 +0200
+ -- Bas Couwenberg   Wed, 03 May 2017 07:39:18 +0200
 
 josm (0.0.svn11826+dfsg-1~exp1) experimental; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/josm.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


[josm] branch pristine-tar updated (6d536d4 -> 2834d13)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository josm.

  from  6d536d4   pristine-tar data for josm_0.0.svn11826+dfsg.orig.tar.gz
   new  2834d13   pristine-tar data for josm_0.0.svn12039+dfsg.orig.tar.gz

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:
 josm_0.0.svn12039+dfsg.orig.tar.gz.delta | Bin 0 -> 210764 bytes
 josm_0.0.svn12039+dfsg.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 josm_0.0.svn12039+dfsg.orig.tar.gz.delta
 create mode 100644 josm_0.0.svn12039+dfsg.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/josm.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


[josm] branch master updated (a3c7c36 -> 9914209)

2017-05-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository josm.

  from  a3c7c36   Drop webkit-image-* packages from Recommends.
   new  45f7069   Imported Upstream version 0.0.svn12039+dfsg
   new  90d631d   Merge tag 'upstream/0.0.svn12039+dfsg'
   new  27e24fa   New tested snapshot.
   new  4864582   Bump minimum required jmapviewer version to 2.1.
   new  b02cdcc   Refresh patches.
   new  9914209   Set distribution to experimental.

The 6 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:
 .classpath | 1 +
 README | 2 +-
 REVISION   | 8 +-
 build.xml  |25 +-
 data/boundaries.osm| 2 +-
 data/defaultpresets.xml|56 +-
 data/security/StartCom_Certification_Authority.pem |44 -
 data/tagging-preset.xsd| 1 +
 data/validator/deprecated.mapcss   | 2 +-
 data/validator/ignoretags.cfg  | 6 +-
 data/validator/wikipedia.mapcss| 1 +
 data_nodist/mapcss/basic.osm   | 2 +-
 data_nodist/mapcss/relation.osm| 2 +-
 .../projection/projection-regression-test-data | 11764 +--
 data_nodist/trans/ast.lang |   Bin 8801 -> 8733 bytes
 data_nodist/trans/be.lang  |   Bin 18388 -> 18299 bytes
 data_nodist/trans/bg.lang  |   Bin 2433 -> 2433 bytes
 data_nodist/trans/ca-valencia.lang |   Bin 7813 -> 7752 bytes
 data_nodist/trans/ca.lang  |   Bin 10474 -> 10413 bytes
 data_nodist/trans/cs.lang  |   Bin 11585 -> 11579 bytes
 data_nodist/trans/da.lang  |   Bin 10536 -> 10485 bytes
 data_nodist/trans/de.lang  |   Bin 12238 -> 12328 bytes
 data_nodist/trans/el.lang  |   Bin 1435 -> 1435 bytes
 data_nodist/trans/en.lang  |   Bin 9957 -> 10042 bytes
 data_nodist/trans/en_AU.lang   |   Bin 1520 -> 1520 bytes
 data_nodist/trans/en_GB.lang   |   Bin 2112 -> 2112 bytes
 data_nodist/trans/es.lang  |   Bin 12618 -> 12546 bytes
 data_nodist/trans/et.lang  |   Bin 1412 -> 1412 bytes
 data_nodist/trans/fi.lang  |   Bin 3033 -> 3033 bytes
 data_nodist/trans/fr.lang  |   Bin 12219 -> 12170 bytes
 data_nodist/trans/gl.lang  |   Bin 2983 -> 2983 bytes
 data_nodist/trans/hu.lang  |   Bin 12512 -> 13382 bytes
 data_nodist/trans/id.lang  |   Bin 6723 -> 6723 bytes
 data_nodist/trans/it.lang  |   Bin 10357 -> 10297 bytes
 data_nodist/trans/ja.lang  |   Bin 11661 -> 11610 bytes
 data_nodist/trans/km.lang  |   Bin 16686 -> 16577 bytes
 data_nodist/trans/lt.lang  |   Bin 2041 -> 2041 bytes
 data_nodist/trans/nb.lang  |   Bin 1711 -> 1711 bytes
 data_nodist/trans/nl.lang  |   Bin 12362 -> 12773 bytes
 data_nodist/trans/pl.lang  |   Bin 2860 -> 2860 bytes
 data_nodist/trans/pt.lang  |   Bin 13644 -> 13644 bytes
 data_nodist/trans/pt_BR.lang   |   Bin 10116 -> 10116 bytes
 data_nodist/trans/ru.lang  |   Bin 18731 -> 19151 bytes
 data_nodist/trans/sk.lang  |   Bin 10489 -> 10867 bytes
 data_nodist/trans/sv.lang  |   Bin 1334 -> 1334 bytes
 data_nodist/trans/uk.lang  |   Bin 18807 -> 19539 bytes
 data_nodist/trans/vi.lang  |   Bin 10676 -> 10614 bytes
 data_nodist/trans/zh_CN.lang   |   Bin 7531 -> 7531 bytes
 data_nodist/trans/zh_TW.lang   |   Bin 4921 -> 5341 bytes
 debian/changelog   | 7 +-
 debian/control | 4 +-
 debian/patches/00-build.patch  |19 +-
 debian/patches/01-bts.patch| 4 +-
 debian/patches/05-fix_version.patch| 2 +-
 debian/patches/06-move_data_out_of_jar.patch   | 2 +-
 eclipse/JOSM (Java 8).launch   | 4 +-
 i18n/convwiki.pl   | 1 +