[Git][debian-gis-team/routino][master] 7 commits: New upstream version 3.3.2

Bas Couwenberg gitlab at salsa.debian.org
Thu Sep 19 06:07:10 BST 2019



Bas Couwenberg pushed to branch master at Debian GIS Project / routino


Commits:
5fac67b1 by Bas Couwenberg at 2019-09-19T04:29:41Z
New upstream version 3.3.2
- - - - -
26dd85ad by Bas Couwenberg at 2019-09-19T04:29:50Z
Update upstream source from tag 'upstream/3.3.2'

Update to upstream version '3.3.2'
with Debian dir 7539032ce93cea30264924113c59a9dada3175c4
- - - - -
6876c516 by Bas Couwenberg at 2019-09-19T04:31:25Z
New upstream release.

- - - - -
fb90821d by Bas Couwenberg at 2019-09-19T04:48:55Z
Also build python3-routino package.

- - - - -
73b2cb86 by Bas Couwenberg at 2019-09-19T04:57:50Z
Set distribution to experimental.

- - - - -
449296e8 by Bas Couwenberg at 2019-09-19T04:58:00Z
Revert "Also build python3-routino package."

This reverts commit fb90821d76598c2c0f15c68554a8661e6920b3f3.

- - - - -
715457de by Bas Couwenberg at 2019-09-19T04:59:11Z
Set distribution to unstable.

- - - - -


7 changed files:

- ChangeLog
- debian/changelog
- doc/NEWS.txt
- doc/README.txt
- doc/html/readme.html
- python/Makefile
- src/version.h


Changes:

=====================================
ChangeLog
=====================================
@@ -1,3 +1,17 @@
+2019-09-18  Andrew M. Bishop <amb>
+
+	Version 3.3.2 released.
+
+2019-09-18 [r2025]  Andrew M. Bishop <amb>
+
+	* FILES, doc/NEWS.txt, doc/README.txt, doc/html/readme.html,
+	  src/version.h: Update for version 3.3.2 release.
+
+2019-09-09 [r2023]  Andrew M. Bishop <amb>
+
+	* python/Makefile: Fix parallel compilation in the 'python'
+	  directory.
+
 2019-09-08  Andrew M. Bishop <amb>
 
 	Version 3.3.1 released.


=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+routino (3.3.2-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Thu, 19 Sep 2019 06:42:17 +0200
+
 routino (3.3.1-1) unstable; urgency=medium
 
   * New upstream release.


=====================================
doc/NEWS.txt
=====================================
@@ -1,3 +1,14 @@
+Version 3.3.2 of Routino released : Wed Sep 18 2019
+---------------------------------------------------
+
+Bug fixes:
+  Ensure that parallel compilation works in the python directory.
+  Updated the version number in the executables to "3.3.2".
+
+
+Note: This version is compatible with databases from versions 2.7.1 - 3.3.1.
+
+
 Version 3.3.1 of Routino released : Sun Sep 8 2019
 --------------------------------------------------
 


=====================================
doc/README.txt
=====================================
@@ -136,6 +136,7 @@ Status
    Version 3.2 of Routino was released on 12th March 2017.
    Version 3.3 of Routino was released on 7th September 2019.
    Version 3.3.1 of Routino was released on 8th September 2019.
+   Version 3.3.2 of Routino was released on 18th September 2019.
 
    The full version history is available in the NEWS.txt file.
 


=====================================
doc/html/readme.html
=====================================
@@ -224,13 +224,27 @@ Version 3.2 of Routino was released on 12th March 2017.
 Version 3.3 of Routino was released on 7th September 2019.
 <br>
 Version 3.3.1 of Routino was released on 8th September 2019.
+<br>
+Version 3.3.2 of Routino was released on 18th September 2019.
 
 <p>
 
 The full version history is available in the NEWS.txt file.
 
 
-<h3 id="H_1_5_1" title="Changes 3.3.1">Changes in Version 3.3.1</h3>
+<h3 id="H_1_5_1" title="Changes 3.3.2">Changes in Version 3.3.2</h3>
+
+<dl>
+  <dt>Bug fixes:
+    <dd>Ensure that parallel compilation works in the python directory.
+    <br>Updated the version number in the executables to "3.3.2".
+</dl>
+
+<p>
+<b>Note:</b> This version is compatible with databases from versions 2.7.1 - 3.3.
+
+
+<h3 id="H_1_5_2" title="Changes 3.3.1">Changes in Version 3.3.1</h3>
 
 <dl>
   <dt>Bug fixes:
@@ -242,7 +256,7 @@ The full version history is available in the NEWS.txt file.
 <b>Note:</b> This version is compatible with databases from versions 2.7.1 - 3.3.
 
 
-<h3 id="H_1_5_2" title="Changes 3.3">Changes in Version 3.3</h3>
+<h3 id="H_1_5_3" title="Changes 3.3">Changes in Version 3.3</h3>
 
 <dl>
   <dt>Bug fixes:


=====================================
python/Makefile
=====================================
@@ -76,9 +76,15 @@ $(BUILD_TIMESTAMP): $(SWIG_C) $(SWIG_CC) $(SWIG_PY) $(PY_FILES) $(C_FILES) $(CC_
 src/_router.c : src/router.i ../src/routino.h
 	$(SWIG) -python -o $@ $<
 
+src/router.py : src/_router.c
+	@true # fake rule since src/router.py is created by the same rule as src/_router.c 
+
 src/_database.cc : src/database.i src/database.hh
 	$(SWIG) -c++ -python -o $@ $<
 
+src/database.py : src/_database.cc
+	@true # fake rule since src/database.py is created by the same rule as src/_database.cc 
+
 src/%.o : src/%.c
 	$(CC) -c $(CFLAGS) $< -o $@
 


=====================================
src/version.h
=====================================
@@ -3,7 +3,7 @@
 
  Part of the Routino routing software.
  ******************/ /******************
- This file Copyright 2016, 2017 Andrew M. Bishop
+ This file Copyright 2016, 2017, 2019 Andrew M. Bishop
 
  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Affero General Public License as published by
@@ -23,7 +23,7 @@
 #ifndef VERSION_H
 #define VERSION_H    /*+ To stop multiple inclusions. +*/
 
-#define ROUTINO_VERSION "3.2+svn"
+#define ROUTINO_VERSION "3.3.2"
 
 #define ROUTINO_URL     "<http://www.routino.org/>"
 



View it on GitLab: https://salsa.debian.org/debian-gis-team/routino/compare/fd0b60b5338c42c13bcca1436e3d4ee2c5589474...715457de0a120e35f8f3c8ec154b1afe9fc75887

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/routino/compare/fd0b60b5338c42c13bcca1436e3d4ee2c5589474...715457de0a120e35f8f3c8ec154b1afe9fc75887
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20190919/e4857b3b/attachment-0001.html>


More information about the Pkg-grass-devel mailing list