diff options
author | wen <wen@FreeBSD.org> | 2016-01-20 03:36:50 +0000 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2016-01-20 03:36:50 +0000 |
commit | e3c8110aaf61b8da323a628b35b3c35c426821a9 (patch) | |
tree | a9d80089899feb8720d1a026612573b1307a57b0 | |
parent | 235d066e55f772014c6cd0602bbc2bacdb4c91bf (diff) | |
download | FreeBSD-ports-e3c8110aaf61b8da323a628b35b3c35c426821a9.zip FreeBSD-ports-e3c8110aaf61b8da323a628b35b3c35c426821a9.tar.gz |
- Update to 2.3.3
PR: 204251
Submitted by: tbabut@mobileobjects.de
Approved by: maintainer(timeout, >60 days)
-rw-r--r-- | databases/xtrabackup/Makefile | 14 | ||||
-rw-r--r-- | databases/xtrabackup/distinfo | 4 | ||||
-rw-r--r-- | databases/xtrabackup/files/patch-libarchive-CMakeLists.txt | 14 |
3 files changed, 25 insertions, 7 deletions
diff --git a/databases/xtrabackup/Makefile b/databases/xtrabackup/Makefile index 0485dd1..da449d1 100644 --- a/databases/xtrabackup/Makefile +++ b/databases/xtrabackup/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xtrabackup -PORTVERSION= 2.2.12 +PORTVERSION= 2.3.3 CATEGORIES= databases MASTER_SITES= https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PORTVERSION}/source/tarball/ DISTNAME= percona-${PORTNAME}-${PORTVERSION} @@ -16,16 +16,20 @@ LICENSE_FILE= ${WRKSRC}/COPYING # quilt is required by build.sh BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ cmake:${PORTSDIR}/devel/cmake \ - bison:${PORTSDIR}/devel/bison -LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \ + bison:${PORTSDIR}/devel/bison \ + xxd:${PORTSDIR}/editors/vim-lite +LIB_DEPENDS= libev.so:${PORTSDIR}/devel/libev \ + libgcrypt.so:${PORTSDIR}/security/libgcrypt \ libgpg-error.so:${PORTSDIR}/security/libgpg-error RUN_DEPENDS= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \ qpress:${PORTSDIR}/archivers/qpress # autotool is in use for 5.1 builds -USES= alias autoreconf:build cpe gettext cmake libtool perl5 +USES= alias autoreconf:build cpe gettext cmake libtool perl5 shebangfix CPE_VENDOR= percona +SHEBANG_FILES= storage/innobase/xtrabackup/xbcloud_osenv.sh -PLIST_FILES= bin/xtrabackup bin/xbstream bin/innobackupex bin/xbcrypt +PLIST_FILES= bin/xtrabackup bin/xbstream bin/innobackupex bin/xbcrypt \ + bin/xbcloud bin/xbcloud_osenv .include <bsd.port.mk> diff --git a/databases/xtrabackup/distinfo b/databases/xtrabackup/distinfo index 8146c40..1a42008 100644 --- a/databases/xtrabackup/distinfo +++ b/databases/xtrabackup/distinfo @@ -1,2 +1,2 @@ -SHA256 (percona-xtrabackup-2.2.12.tar.gz) = 6e8e3f6e6188321eef649cc1169bbc70200e4ae6a55160f3382db6be02a538d3 -SIZE (percona-xtrabackup-2.2.12.tar.gz) = 34827353 +SHA256 (percona-xtrabackup-2.3.3.tar.gz) = 88c2b2897c571dd9fac73c1506620a95276f0b7d7e7a30d96aadff0b0f23ae15 +SIZE (percona-xtrabackup-2.3.3.tar.gz) = 34864301 diff --git a/databases/xtrabackup/files/patch-libarchive-CMakeLists.txt b/databases/xtrabackup/files/patch-libarchive-CMakeLists.txt new file mode 100644 index 0000000..8259ac6 --- /dev/null +++ b/databases/xtrabackup/files/patch-libarchive-CMakeLists.txt @@ -0,0 +1,14 @@ +--- storage/innobase/xtrabackup/src/libarchive/CMakeLists.txt 2015-10-16 20:40:52.000000000 +0200 ++++ storage/innobase/xtrabackup/src/libarchive/CMakeLists.txt.new 2015-11-03 14:46:57.952677630 +0100 +@@ -822,9 +822,9 @@ + # Especially for early development, we want to be a little + # aggressive about diagnosing build problems; this can get + # relaxed somewhat in final shipping versions. +-IF ("CMAKE_C_COMPILER_ID" MATCHES "^GNU$") ++IF (CMAKE_C_COMPILER_ID MATCHES "^GNU$") + ADD_DEFINITIONS(-Wall -Werror) +-ENDIF ("CMAKE_C_COMPILER_ID" MATCHES "^GNU$") ++ENDIF (CMAKE_C_COMPILER_ID MATCHES "^GNU$") + + IF(ENABLE_TEST) + ADD_CUSTOM_TARGET(run_all_tests) |