aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-03-25 12:45:53 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-03-25 13:36:40 +0000
commitf3a7596323c1219c5435831544422a1a7d3ad8b0 (patch)
treeb5cc5056335b961bd838c1c41506716ca4a8e81d
parente655e570b404e6ed8b88ce8f4896cbf00d2a7ae4 (diff)
downloadports-f3a7596323c1219c5435831544422a1a7d3ad8b0.tar.gz
ports-f3a7596323c1219c5435831544422a1a7d3ad8b0.zip
databases/mydumper: Update to 0.12.1
- Update pkg-descr - Update WWW Changes: https://github.com/mydumper/mydumper/releases
-rw-r--r--databases/mydumper/Makefile3
-rw-r--r--databases/mydumper/distinfo6
-rw-r--r--databases/mydumper/pkg-descr16
3 files changed, 14 insertions, 11 deletions
diff --git a/databases/mydumper/Makefile b/databases/mydumper/Makefile
index 0c612ee314a0..3d5fed1de503 100644
--- a/databases/mydumper/Makefile
+++ b/databases/mydumper/Makefile
@@ -1,7 +1,7 @@
# Created by: Gea-Suan Lin <gslin@gslin.org>
PORTNAME= mydumper
-DISTVERSION= 0.11.5-2
+PORTVERSION= 0.12.1
DISTVERSIONPREFIX= v
CATEGORIES= databases
@@ -21,7 +21,6 @@ CMAKE_OFF= BUILD_DOCS WITH_BINLOG
PLIST_FILES= sbin/mydumper sbin/myloader
-GH_ACCOUNT= maxbube
USE_GITHUB= yes
post-patch:
diff --git a/databases/mydumper/distinfo b/databases/mydumper/distinfo
index b72e4a10fdbd..c3a7513c56ca 100644
--- a/databases/mydumper/distinfo
+++ b/databases/mydumper/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1643970972
-SHA256 (maxbube-mydumper-v0.11.5-2_GH0.tar.gz) = 5ca8fbca52abaf42d0c21eca2a182772a958709b3b150bfd3c10a47496591727
-SIZE (maxbube-mydumper-v0.11.5-2_GH0.tar.gz) = 110088
+TIMESTAMP = 1647264420
+SHA256 (mydumper-mydumper-v0.12.1_GH0.tar.gz) = f3c8ae09573d9a37512984cff24ade1cd87b50ae772944ef57d5bd1d5fac8e5b
+SIZE (mydumper-mydumper-v0.12.1_GH0.tar.gz) = 114268
diff --git a/databases/mydumper/pkg-descr b/databases/mydumper/pkg-descr
index 0384e69ae42b..2834898e1ded 100644
--- a/databases/mydumper/pkg-descr
+++ b/databases/mydumper/pkg-descr
@@ -1,12 +1,16 @@
-== What is mydumper? Why? ==
+MyDumper is a MySQL Logical Backup Tool. It has 2 tools:
+- mydumper which is responsible to export a consistent backup of MySQL databases
+- myloader reads the backup from mydumper, connects the to destination database
+ and imports the backup. Both tools use multithreading capabilities
-* Parallelism (hence, speed) and performance (avoids expensive character set
+Why do we need MyDumper?
+- Parallelism (hence, speed) and performance (avoids expensive character set
conversion routines, efficient code overall)
-* Easier to manage output (separate files for tables, dump metadata, etc, easy
+- Easier to manage output (separate files for tables, dump metadata, etc, easy
to view/parse data)
-* Consistency - maintains snapshot across all threads, provides accurate master
+- Consistency - maintains snapshot across all threads, provides accurate master
and slave log positions, etc
-* Manageability - supports PCRE for specifying database and tables inclusions
+- Manageability - supports PCRE for specifying database and tables inclusions
and exclusions
-WWW: https://github.com/maxbube/mydumper
+WWW: https://github.com/mydumper/mydumper