[Git][debian-gis-team/tinyows][master] 5 commits: New upstream version 1.2.2
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Wed Jul 31 19:30:46 BST 2024
Bas Couwenberg pushed to branch master at Debian GIS Project / tinyows
Commits:
3ae09178 by Bas Couwenberg at 2024-07-31T20:19:03+02:00
New upstream version 1.2.2
- - - - -
062b7133 by Bas Couwenberg at 2024-07-31T20:19:11+02:00
Update upstream source from tag 'upstream/1.2.2'
Update to upstream version '1.2.2'
with Debian dir a8731768643527d53a3c50c20b44aad21e4f5486
- - - - -
b64614a6 by Bas Couwenberg at 2024-07-31T20:19:23+02:00
New upstream release.
- - - - -
1379d121 by Bas Couwenberg at 2024-07-31T20:20:04+02:00
Drop implicit-function-declaration.patch, applied upstream.
- - - - -
9beb6eed by Bas Couwenberg at 2024-07-31T20:20:17+02:00
Set distribution to unstable.
- - - - -
10 changed files:
- NEWS.md
- README.md
- VERSION.md
- debian/changelog
- − debian/patches/implicit-function-declaration.patch
- − debian/patches/series
- demo/install.sh.in
- doc/Doxyfile
- src/ows/ows_config.c
- src/ows_define.h.in
Changes:
=====================================
NEWS.md
=====================================
@@ -1,3 +1,6 @@
+1.2.2 (2024-07-31) *in memory of Olivier Courtin*
+ - Include stdlib.h for atoi ([#105](https://github.com/MapServer/tinyows/pull/105)) (Bas Couwenberg)
+
1.2.1 (2024-05-17) *in memory of Olivier Courtin*
- Fix JSON encoding ([#100](https://github.com/MapServer/tinyows/pull/100)) (Kévin Dubuc)
- Use stdbool.h instead of custom definitions ([#99](https://github.com/MapServer/tinyows/pull/99)) (Bas Couwenberg)
=====================================
README.md
=====================================
@@ -25,7 +25,7 @@ All code must meet the following rules :
Code dynamically linked with the following other librairies:
- PostgreSQL
-- libxml 2.9.x
+- libxml2
- flex
## Credits
=====================================
VERSION.md
=====================================
@@ -1 +1 @@
-1.2.1
+1.2.2
=====================================
debian/changelog
=====================================
@@ -1,8 +1,10 @@
-tinyows (1.2.1-3) UNRELEASED; urgency=medium
+tinyows (1.2.2-1) unstable; urgency=medium
+ * New upstream release.
* Bump Standards-Version to 4.7.0, no changes.
+ * Drop implicit-function-declaration.patch, applied upstream.
- -- Bas Couwenberg <sebastic at debian.org> Sun, 28 Jul 2024 20:05:11 +0200
+ -- Bas Couwenberg <sebastic at debian.org> Wed, 31 Jul 2024 20:20:05 +0200
tinyows (1.2.1-2) unstable; urgency=medium
=====================================
debian/patches/implicit-function-declaration.patch deleted
=====================================
@@ -1,16 +0,0 @@
-Description: Fix FTBFS with -Werror=implicit-function-declaration.
-Author: Bas Couwenberg <sebastic at debian.org>
-Bug-Debian: https://bugs.debian.org/1072981
-Forwarded: https://github.com/MapServer/tinyows/pull/105
-Applied-Upstream: https://github.com/MapServer/tinyows/commit/195597d905abe4d6e3e29e74b92d64d93ecae88f
-
---- a/src/ows/ows_config.c
-+++ b/src/ows/ows_config.c
-@@ -22,6 +22,7 @@
-
-
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <assert.h>
- #include <libxml/xmlreader.h>
=====================================
debian/patches/series deleted
=====================================
@@ -1 +0,0 @@
-implicit-function-declaration.patch
=====================================
demo/install.sh.in
=====================================
@@ -11,8 +11,10 @@ PGUSER=postgres
SHP2PGSQL=@SHP2PGSQL@
DB=tinyows_demo
-if [ -d /usr/local/pgsql/share/contrib/postgis-3.4 ]; then
- PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.4
+if [ -d /usr/local/pgsql/share/contrib/postgis-3.5 ]; then
+ PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.5
+elif [ -d /usr/local/pgsql/share/contrib/postgis-3.4 ]; then
+ PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.4
elif [ -d /usr/local/pgsql/share/contrib/postgis-3.3 ]; then
PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.3
elif [ -d /usr/local/pgsql/share/contrib/postgis-3.2 ]; then
=====================================
doc/Doxyfile
=====================================
@@ -23,7 +23,7 @@ PROJECT_NAME = tinyows
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 1.2.1
+PROJECT_NUMBER = 1.2.2
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
=====================================
src/ows/ows_config.c
=====================================
@@ -22,6 +22,7 @@
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <libxml/xmlreader.h>
=====================================
src/ows_define.h.in
=====================================
@@ -28,7 +28,7 @@
#define OWS_DEBUG
#endif
-#define TINYOWS_VERSION "1.2.1"
+#define TINYOWS_VERSION "1.2.2"
#define TINYOWS_FCGI @USE_FCGI@
#define OWS_CONFIG_FILE_PATH "/etc/tinyows.xml"
View it on GitLab: https://salsa.debian.org/debian-gis-team/tinyows/-/compare/4e509b2fcb85eeed45364c9d05d17b7d6500e09b...9beb6eedad3be54b2f36d241f263e75710b14a2a
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/tinyows/-/compare/4e509b2fcb85eeed45364c9d05d17b7d6500e09b...9beb6eedad3be54b2f36d241f263e75710b14a2a
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/20240731/7a06c015/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list