databases/percona-toolkit: Update to 3.5.0

This commit is contained in:
Florian Smeets 2023-01-08 09:18:43 +01:00
parent c4c6e93d0f
commit 62562539a5
3 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= percona-toolkit
PORTVERSION= 3.3.1
PORTVERSION= 3.5.0
CATEGORIES= databases
MASTER_SITES= https://www.percona.com/downloads/${PORTNAME}/${PORTVERSION}/source/tarball/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1644348536
SHA256 (percona-toolkit-3.3.1.tar.gz) = 60fc106b195b6716f1ebb3ca16b401692228c1a2a885da72111a93391fd12090
SIZE (percona-toolkit-3.3.1.tar.gz) = 15348084
TIMESTAMP = 1673103559
SHA256 (percona-toolkit-3.5.0.tar.gz) = f4344bc86a1aadc6db6691a4fedd2736b4a17bd9ee8ca085722917ba08dac610
SIZE (percona-toolkit-3.5.0.tar.gz) = 15696972

View File

@ -1,7 +1,7 @@
--- Makefile.PL.orig 2017-12-16 18:29:36 UTC
--- Makefile.PL.orig 2022-11-28 18:41:57 UTC
+++ Makefile.PL
@@ -5,12 +5,12 @@ WriteMakefile(
VERSION => '3.0.5',
VERSION => '3.5.0',
EXE_FILES => [ <bin/*> ],
MAN1PODS => {
- 'docs/percona-toolkit.pod' => 'blib/man1/percona-toolkit.1p',
@ -9,9 +9,9 @@
map {
(my $name = $_) =~ s/^bin.//;
my $file_name = $_;
if ( $file_name !~ m/mongo/ ) {
if ( ( $file_name !~ m/mongo/ ) || ( $file_name !~ m/pg/ ) ) {
- $_ => "blib/man1/$name.1p";
+ $_ => "blib/man1/$name.1";
}
}
} <bin/*>
},