[Git][debian-gis-team/virtualpg][master] 5 commits: New upstream version 2.0.1

Bas Couwenberg gitlab at salsa.debian.org
Fri Nov 6 05:29:19 GMT 2020



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


Commits:
833e331d by Bas Couwenberg at 2020-11-06T06:20:31+01:00
New upstream version 2.0.1
- - - - -
30defcdc by Bas Couwenberg at 2020-11-06T06:20:33+01:00
Update upstream source from tag 'upstream/2.0.1'

Update to upstream version '2.0.1'
with Debian dir 5152905ce8440ca2e02251749917e63a68c8f5fd
- - - - -
6daa087c by Bas Couwenberg at 2020-11-06T06:20:44+01:00
New upstream release.

- - - - -
863db8d8 by Bas Couwenberg at 2020-11-06T06:21:22+01:00
Update lintian overrides.

- - - - -
23388527 by Bas Couwenberg at 2020-11-06T06:21:32+01:00
Set distribution to unstable.

- - - - -


5 changed files:

- configure
- configure.ac
- debian/changelog
- − debian/source/lintian-overrides
- virtualpg.c


Changes:

=====================================
configure
=====================================
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for virtualpg 2.0.0.
+# Generated by GNU Autoconf 2.69 for virtualpg 2.0.1.
 #
 # Report bugs to <a.furieri at lqt.it>.
 #
@@ -590,8 +590,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='virtualpg'
 PACKAGE_TARNAME='virtualpg'
-PACKAGE_VERSION='2.0.0'
-PACKAGE_STRING='virtualpg 2.0.0'
+PACKAGE_VERSION='2.0.1'
+PACKAGE_STRING='virtualpg 2.0.1'
 PACKAGE_BUGREPORT='a.furieri at lqt.it'
 PACKAGE_URL=''
 
@@ -1332,7 +1332,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures virtualpg 2.0.0 to adapt to many kinds of systems.
+\`configure' configures virtualpg 2.0.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1402,7 +1402,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of virtualpg 2.0.0:";;
+     short | recursive ) echo "Configuration of virtualpg 2.0.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1514,7 +1514,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-virtualpg configure 2.0.0
+virtualpg configure 2.0.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2058,7 +2058,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by virtualpg $as_me 2.0.0, which was
+It was created by virtualpg $as_me 2.0.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2929,7 +2929,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='virtualpg'
- VERSION='2.0.0'
+ VERSION='2.0.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -17823,7 +17823,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by virtualpg $as_me 2.0.0, which was
+This file was extended by virtualpg $as_me 2.0.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -17889,7 +17889,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-virtualpg config.status 2.0.0
+virtualpg config.status 2.0.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 


=====================================
configure.ac
=====================================
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.61)
-AC_INIT(virtualpg, 2.0.0, a.furieri at lqt.it)
+AC_INIT(virtualpg, 2.0.1, a.furieri at lqt.it)
 AC_LANG(C)
 AC_CONFIG_MACRO_DIR([m4])
 


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+virtualpg (2.0.1-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Update lintian overrides.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Fri, 06 Nov 2020 06:21:23 +0100
+
 virtualpg (2.0.0-1) unstable; urgency=medium
 
   * New upstream release.


=====================================
debian/source/lintian-overrides deleted
=====================================
@@ -1,3 +0,0 @@
-# Not worth the effort
-testsuite-autopkgtest-missing
-


=====================================
virtualpg.c
=====================================
@@ -2087,6 +2087,11 @@ vpg_update (sqlite3_vtab * pVTab, int argc, sqlite3_value ** argv,
     VirtualPgPtr p_vt = (VirtualPgPtr) pVTab;
     if (p_vt->readOnly)
 	return SQLITE_READONLY;
+    if (p_vt->pg_conn == NULL)
+      {
+	  /* last attempt to establish a DB connection */
+	  p_vt->pg_conn = vpgPQconnectdb (p_vt->ConnInfo);
+      }
     if (argc == 1)
       {
 	  /* performing a DELETE */



View it on GitLab: https://salsa.debian.org/debian-gis-team/virtualpg/-/compare/e639f40c0eccab4cb6461ee432171505faee9e79...2338852742368f5e44f39f9ea1dc5f8da93d6fee

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/virtualpg/-/compare/e639f40c0eccab4cb6461ee432171505faee9e79...2338852742368f5e44f39f9ea1dc5f8da93d6fee
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/20201106/c48120f2/attachment-0001.html>


More information about the Pkg-grass-devel mailing list