[pg_comparator] 05/06: Refresh patches.

Bas Couwenberg sebastic at debian.org
Sun Mar 18 16:30:50 UTC 2018


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pg_comparator.

commit 5b8c2d59fc84cd53dd581dcd4f626909ebdd76d8
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Sun Mar 18 17:14:32 2018 +0100

    Refresh patches.
---
 debian/changelog                       |  1 +
 debian/patches/against-typo.patch      | 15 --------------
 debian/patches/allows-to-typo.patch    |  9 ---------
 debian/patches/below-typo.patch        | 24 -----------------------
 debian/patches/extension-control.patch | 36 ++++++----------------------------
 debian/patches/make-clean.patch        | 14 -------------
 debian/patches/minimum-typo.patch      | 15 --------------
 debian/patches/series                  |  4 ----
 8 files changed, 7 insertions(+), 111 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 04752bf..ac78b14 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ pg-comparator (2.3.1-1) UNRELEASED; urgency=medium
   * New upstream release.
   * Update copyright-format URL to use HTTPS.
   * Bump Standards-Version to 4.1.3, no changes.
+  * Refresh patches.
 
  -- Bas Couwenberg <sebastic at debian.org>  Sun, 18 Mar 2018 17:06:08 +0100
 
diff --git a/debian/patches/against-typo.patch b/debian/patches/against-typo.patch
deleted file mode 100644
index 6bb6ad7..0000000
--- a/debian/patches/against-typo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Fix 'agains' typo, replace with 'against'.
-Author: Bas Couwenberg <sebastic at debian.org>
-Forwarded: http://pgfoundry.org/tracker/index.php?func=detail&aid=1011537&group_id=1000037&atid=232
-
---- a/pg_comparator
-+++ b/pg_comparator
-@@ -240,7 +240,7 @@ when synchronizing, by chunks of the spe
- 
- 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.
diff --git a/debian/patches/allows-to-typo.patch b/debian/patches/allows-to-typo.patch
index 0dd3c36..310638a 100644
--- a/debian/patches/allows-to-typo.patch
+++ b/debian/patches/allows-to-typo.patch
@@ -13,12 +13,3 @@ Forwarded: http://pgfoundry.org/tracker/?func=detail&group_id=1000037&aid=101144
  Short one-letter options are also available, usually with the first letter
  of the option name.
  
-@@ -1195,7 +1195,7 @@ Add an option to avoid IN (x,y,...) synt
- 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.
diff --git a/debian/patches/below-typo.patch b/debian/patches/below-typo.patch
deleted file mode 100644
index efaf2a2..0000000
--- a/debian/patches/below-typo.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Description: Fix 'bellow' typo, replace with 'below'.
-Author: Bas Couwenberg <sebastic at debian.org>
-Forwarded: http://pgfoundry.org/tracker/index.php?func=detail&aid=1011537&group_id=1000037&atid=232
-
---- a/pg_comparator
-+++ b/pg_comparator
-@@ -4,7 +4,7 @@
- #
- # 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
-@@ -404,7 +404,7 @@ that does not necessary mean anything us
- 
-   [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
diff --git a/debian/patches/extension-control.patch b/debian/patches/extension-control.patch
index edf9487..3ec574a 100644
--- a/debian/patches/extension-control.patch
+++ b/debian/patches/extension-control.patch
@@ -3,39 +3,15 @@ Description: Add extension control file.
   make[1]: *** No rule to make target 'pgcmp.control', needed by 'all'.  Stop.
 Author: Bas Couwenberg <sebastic at debian.org>
 
+--- a/pgcmp.control
++++ /dev/null
+@@ -1,3 +0,0 @@
+-# pg_comparator extension
+-comment = 'pg_comparator extension'
+-default_version = 3.0
 --- /dev/null
 +++ b/pgcmp.control.in
 @@ -0,0 +1,3 @@
 +# pg_comparator extension
 +comment = 'pg_comparator extension'
 +default_version = @EXTVERSION@
---- a/Makefile
-+++ b/Makefile
-@@ -6,13 +6,15 @@
- 
- name		= pg_comparator
- 
-+EXTVERSION      = 3.0
-+
- EXTENSION	= pgcmp
- SCRIPTS		= $(name)
- MODULES		= $(EXTENSION)
--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
-@@ -35,6 +37,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
- #
diff --git a/debian/patches/make-clean.patch b/debian/patches/make-clean.patch
deleted file mode 100644
index c841b47..0000000
--- a/debian/patches/make-clean.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Don't remove pg_comparator script in clean target.
- It's a script, not data that needs to be built (and removed on clean).
-Author: Bas Couwenberg <sebastic at debian.org>
-
---- a/Makefile
-+++ b/Makefile
-@@ -9,7 +9,6 @@ name		= pg_comparator
- EXTENSION	= pgcmp
- SCRIPTS		= $(name)
- MODULES		= $(EXTENSION)
--DATA_built	= $(name)
- DATA		= pgcmp--3.0.sql
- DOCS		= README.$(name)
- 
diff --git a/debian/patches/minimum-typo.patch b/debian/patches/minimum-typo.patch
deleted file mode 100644
index 77c0e39..0000000
--- a/debian/patches/minimum-typo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Fix 'mimimum' typo, replace with 'minimum'.
-Author: Bas Couwenberg <sebastic at debian.org>
-Forwarded: http://pgfoundry.org/tracker/index.php?func=detail&aid=1011629&group_id=1000037&atid=232
-
---- a/pg_comparator
-+++ b/pg_comparator
-@@ -203,7 +203,7 @@ option is ignored, otherwise the effort
- 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>
- 
diff --git a/debian/patches/series b/debian/patches/series
index 49eb56a..b346fc5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,7 +1,3 @@
 allows-to-typo.patch
-against-typo.patch
-below-typo.patch
-minimum-typo.patch
-make-clean.patch
 extension-control.patch
 checksum-typo.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pg_comparator.git



More information about the Pkg-grass-devel mailing list