[Git][debian-gis-team/pg_comparator][upstream] New upstream version 2.3.1

Bas Couwenberg gitlab at salsa.debian.org
Sun Mar 18 16:31:11 UTC 2018


Bas Couwenberg pushed to branch upstream at Debian GIS Project / pg_comparator


Commits:
e966b692 by Bas Couwenberg at 2018-03-18T17:06:00+01:00
New upstream version 2.3.1
- - - - -


3 changed files:

- Makefile
- pg_comparator
- + pgcmp.control


Changes:

=====================================
Makefile
=====================================
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile 1557 2015-08-17 07:44:52Z coelho $
+# $Id: Makefile 1579 2017-07-07 09:11:54Z coelho $
 
 #
 # PostgreSQL stuff
@@ -6,14 +6,14 @@
 
 name		= pg_comparator
 
+EXTVERSION	= 3.0
 EXTENSION	= pgcmp
 SCRIPTS		= $(name)
 MODULES		= $(EXTENSION)
-DATA_built	= $(name)
-DATA		= pgcmp--3.0.sql
+DATA		= $(EXTENSION)--$(EXTVERSION).sql
 DOCS		= README.$(name)
 
-EXTRA_CLEAN	= $(name).1 $(name).html pod2htm?.tmp
+EXTRA_CLEAN	= $(name).1 $(name).html pod2htm?.tmp $(EXTENSION).control
 
 # get postgresql extension infrastructure
 PG_CONFIG	= pg_config
@@ -36,6 +36,9 @@ pgcmp.o: jenkins.c fnv.c
 pgsql_install: install
 pgsql_uninstall: uninstall
 
+$(EXTENSION).control: $(EXTENSION).control.in
+	sed -e 's/@EXTVERSION@/$(EXTVERSION)/g' $< > $@
+
 #
 # MySQL stuff
 #


=====================================
pg_comparator
=====================================
--- a/pg_comparator
+++ b/pg_comparator
@@ -1,10 +1,10 @@
 #!/usr/bin/env perl
 #
-# $Id: pg_comparator.pl 1569 2017-07-07 04:28:00Z coelho $
+# $Id: pg_comparator.pl 1582 2017-07-07 10:21:41Z coelho $
 #
 # HELP 1: pg_comparator --man
 # HELP 2: pod2text pg_comparator
-# HELP 3: read pod stuff bellow with your favorite text viewer
+# HELP 3: read pod stuff below with your favorite text viewer
 #
 
 use strict;   # I don't like perl
@@ -203,7 +203,7 @@ option is ignored, otherwise the effort is computed with the ratio once
 the table size is known.
 
 Default is to compute the maximum number of reported differences based on
-the C<--max-ratio> option, with a mimimum of 100 differences allowed.
+the C<--max-ratio> option, with a minimum of 100 differences allowed.
 
 =item C<--max-levels=0>
 
@@ -240,7 +240,7 @@ when synchronizing, by chunks of the specified size.
 
 Name prefix, possibly schema qualified, used for generated comparison tables
 by appending numbers to it. Consider changing the prefix if you expect several
-comparisons to run concurrently agains the same database.
+comparisons to run concurrently against the same database.
 
 Default is C<pgc_cmp>. Cheksum tables is named C<pgc_cmp_1_0> and
 C<pgc_cmp_2_0>, and summary tables are named by increasing the last number.
@@ -404,7 +404,7 @@ that does not necessary mean anything useful.
 
   [driver://][login[:pass]@][host][:port]/[base/[[schema.]table[?key[:cols]]]]
 
-See the EXAMPLES section bellow, and also the C<--source-*> options above.
+See the EXAMPLES section below, and also the C<--source-*> options above.
 
 Note that some default value used by DBI drivers may be changed with
 driver-specific environment variables, and that DBI also provides its own
@@ -585,7 +585,7 @@ This section describes how to install extensions (functions, casts, aggregates)
 needed by pg_comparator for the different target databases.
 
 First, get pg_comparator
-L<sources|http://www.coelho.net/pg_comparator/pg_comparator-2.3.0.tgz>.
+L<sources|http://www.coelho.net/pg_comparator/pg_comparator-2.3.1.tgz>.
 
 =head2 PostgreSQL
 
@@ -1195,7 +1195,7 @@ Add an option to avoid IN (x,y,...) syntax, maybe with a temporary table
 to hold values and use a JOIN on that. I'm not sure about the performance
 implications, though.
 
-Allow to generate the SQL update script without applying it.
+Allow generating the SQL update script without applying it.
 
 Option to generate more compact updates, i.e. only update attributes with
 different values.
@@ -1208,15 +1208,19 @@ L<github repos|https://github.com/zx80/pg_comparator>.
 
 =over 4
 
+=item B<version 2.3.1> (r1582 on 2017-07-07)
+
+Fix spelling errors in the documentation, reported by I<Bas Couwenberg>.
+Fix distribution C<Makefile>.
+
 =item B<version 2.3.0> (r1569 on 2017-07-07)
 
 Add new L</"INSTALL"> Section.
 Turn cast, functions and aggregates into a PostgreSQL extension.
 Fix C<--where> handling when C<--tcs> is used, reported by I<Kenneth Hammink>.
 Add C<--pg-text-cast> option to work around missing implicit casts, issue
-reported by Saulius Grigaitis.
+reported by I<Saulius Grigaitis>.
 Documentation updates.
-
 The I<release> validation was run successfully
 on PostgreSQL 9.6.3 and MySQL 5.7.18.
 
@@ -1513,8 +1517,8 @@ saying so. See my webpage for current address.
 
 =cut
 
-my $script_version = '2.3.0 (r1569)';
-my $revision = '$Revision: 1569 $';
+my $script_version = '2.3.1 (r1582)';
+my $revision = '$Revision: 1582 $';
 $revision =~ tr/0-9//cd;
 
 ################################################################# SOME DEFAULTS


=====================================
pgcmp.control
=====================================
--- /dev/null
+++ b/pgcmp.control
@@ -0,0 +1,3 @@
+# pg_comparator extension
+comment = 'pg_comparator extension'
+default_version = 3.0



View it on GitLab: https://salsa.debian.org/debian-gis-team/pg_comparator/commit/e966b6924221ff435982887038b61d9525a99ea6

---
View it on GitLab: https://salsa.debian.org/debian-gis-team/pg_comparator/commit/e966b6924221ff435982887038b61d9525a99ea6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20180318/8a455e38/attachment-0001.html>


More information about the Pkg-grass-devel mailing list