From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup/
Date: Wed, 26 Apr 2017 21:02:41 +0000 (UTC) [thread overview]
Message-ID: <1493240504.fc0e93f4c79400485e369518a9bc8dd7665d283a.monsieurp@gentoo> (raw)
commit: fc0e93f4c79400485e369518a9bc8dd7665d283a
Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Fri Apr 21 15:09:02 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 21:01:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc0e93f4
dev-db/percona-xtrabackup: version bump to 2.4.7.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4458
dev-db/percona-xtrabackup/Manifest | 1 +
.../percona-xtrabackup-2.4.7.ebuild | 74 ++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-db/percona-xtrabackup/Manifest b/dev-db/percona-xtrabackup/Manifest
index 7b00b9fe287..f34a4c3f7be 100644
--- a/dev-db/percona-xtrabackup/Manifest
+++ b/dev-db/percona-xtrabackup/Manifest
@@ -1 +1,2 @@
DIST percona-xtrabackup-2.4.6.tar.gz 54108124 SHA256 1e21ab097550901d8f2fa3dc37402ba6a994afa0722760f8f19cb369565e5e8b SHA512 7ed16ba73d4232cc5f40f3dd4674087b65326b42f3f0d9cd462a1eef1dd2c41c582cb71fff49998d9e65f71322e2b26d0708b2ba36da22f54f456679b9a544e5 WHIRLPOOL 3d53e7a2b7b61c0dd779d723a3efb4d1ab4d98aff751a325e6028c0710a1f4de969d70f62c65a8a0e67f0d95643a0245524fb37708602ef303f21674c5f92fe3
+DIST percona-xtrabackup-2.4.7.tar.gz 54119422 SHA256 261567a4f0bdde0df7eefeb4f651ad39b4752984bbaabd68245e0e5ee368871a SHA512 7aaf82975cd4c0b7af119902eddf96b8ce75c0fbcbd6835991e33f1f89347361fbe3c9040762c9989df5d53199b628aa6b2b45004ef440bb46e2415fbab13009 WHIRLPOOL 768749471ac987a24f86d07b330988cb679042be5a8affd264f1195eeeacaa8e403370d558316708a056acb4b0ad78083e195f31a4f2a58bc497bf301be2ddb1
diff --git a/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.7.ebuild b/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.7.ebuild
new file mode 100644
index 00000000000..a2108da72ad
--- /dev/null
+++ b/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.7.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils flag-o-matic
+
+DESCRIPTION="Hot backup utility for MySQL based servers"
+HOMEPAGE="https://www.percona.com/software/mysql-database/percona-xtrabackup"
+SRC_URI="https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/source/tarball/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+ app-arch/lz4:0=
+ app-editors/vim-core
+ >=dev-libs/boost-1.59.0:=
+ dev-libs/libaio
+ dev-libs/libedit
+ dev-libs/libevent:0=
+ dev-libs/libgcrypt:0=
+ dev-libs/libgpg-error
+ dev-python/sphinx
+ net-misc/curl
+ sys-libs/zlib"
+RDEPEND="${DEPEND}
+ !dev-db/xtrabackup-bin
+ dev-perl/DBD-mysql"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.4.6-remove-boost-version-check.patch
+ "${FILESDIR}"/${PN}-2.4.6-fix-gcc6-isystem.patch
+)
+
+src_prepare() {
+ cmake-utils_src_prepare
+
+ # remove bundled lz4, boost, libedit, libevent, zlib
+ # just to be safe...
+ rm -r extra/lz4 include/boost_1_59_0 \
+ cmd-line-utils/libedit libevent zlib || die
+}
+
+src_configure() {
+ # Needed, due to broken handling of CMAKE_BUILD_TYPE leading to
+ #
+ # error: 'fts_ast_node_type_get' was not declared in this scope
+ #
+ append-cppflags -DDBUG_OFF
+
+ local mycmakeargs=(
+ -DBUILD_CONFIG=xtrabackup_release
+ -DWITH_EDITLINE=system
+ -DWITH_LIBEVENT=system
+ -DWITH_LZ4=system
+ -DWITH_SSL=bundled # uses yassl, which isn't packaged
+ -DWITH_ZLIB=system
+ -DWITH_PIC=ON
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ local p="${BUILD_DIR}/storage/innobase/xtrabackup"
+
+ dobin "${p}"/src/{xbcloud,xbcrypt,xbstream,xtrabackup}
+ dosym xtrabackup /usr/bin/innobackupex
+
+ einstalldocs
+ doman "${p}"/doc/source/build/man/*
+}
next reply other threads:[~2017-04-26 21:02 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-26 21:02 Patrice Clement [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-23 12:24 [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup/ Arthur Zamarin
2024-10-05 9:51 Sam James
2024-08-09 13:02 Eli Schwartz
2024-08-08 16:06 Eli Schwartz
2024-08-08 16:06 Eli Schwartz
2024-08-08 16:06 Eli Schwartz
2023-11-02 14:48 Hans de Graaff
2023-07-04 22:20 Sam James
2023-04-19 1:32 Sam James
2023-04-19 1:32 Sam James
2023-04-19 1:32 Sam James
2023-04-19 1:32 Sam James
2022-12-14 1:53 Sam James
2022-11-18 4:24 Sam James
2022-10-31 19:55 Sam James
2022-10-31 1:43 Sam James
2022-06-19 9:41 Agostino Sarubbo
2022-06-19 8:13 Agostino Sarubbo
2021-09-29 16:55 Thomas Deutschmann
2021-09-29 16:55 Thomas Deutschmann
2021-03-23 20:16 Thomas Deutschmann
2021-03-23 20:16 Thomas Deutschmann
2021-01-21 23:25 Thomas Deutschmann
2021-01-21 23:25 Thomas Deutschmann
2021-01-03 16:21 Jonas Stein
2020-11-21 18:27 Conrad Kostecki
2020-06-30 13:31 Thomas Deutschmann
2020-05-16 13:24 Joonas Niilola
2019-10-28 14:43 Joonas Niilola
2019-10-28 14:43 Joonas Niilola
2019-09-26 19:55 Mikle Kolyada
2019-09-26 19:02 Thomas Deutschmann
2019-07-31 6:39 Joonas Niilola
2019-07-15 19:35 Michał Górny
2019-07-15 19:35 Michał Górny
2019-04-21 19:18 David Seifert
2019-04-18 20:32 Thomas Deutschmann
2019-04-16 20:29 Mikle Kolyada
2019-02-14 14:45 Thomas Deutschmann
2019-02-13 13:41 Thomas Deutschmann
2019-02-13 13:41 Thomas Deutschmann
2019-02-13 13:41 Thomas Deutschmann
2018-11-15 15:48 Thomas Deutschmann
2018-11-15 13:23 Mikle Kolyada
2018-07-11 10:34 Tony Vroon
2018-05-04 14:40 Thomas Deutschmann
2018-04-16 12:23 Thomas Deutschmann
2018-03-13 19:33 Mikle Kolyada
2018-02-21 3:01 Thomas Deutschmann
2017-12-16 10:31 Tobias Klausmann
2017-12-02 22:53 Patrice Clement
2017-10-29 22:08 Thomas Deutschmann
2017-09-22 9:58 Patrice Clement
2017-08-13 13:00 Patrice Clement
2017-08-13 13:00 Patrice Clement
2017-07-30 14:24 David Seifert
2017-06-01 9:13 Agostino Sarubbo
2017-05-31 13:06 Agostino Sarubbo
2017-05-01 21:31 Patrice Clement
2017-04-17 8:02 Agostino Sarubbo
2017-04-05 12:55 Agostino Sarubbo
2017-04-04 17:47 David Seifert
2017-04-04 17:28 David Seifert
2017-03-02 13:50 Thomas Deutschmann
2016-12-04 22:36 Patrice Clement
2016-08-11 9:30 Michael Palimaka
2016-08-11 9:30 Michael Palimaka
2016-08-11 9:30 Michael Palimaka
2016-08-03 12:00 Patrice Clement
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1493240504.fc0e93f4c79400485e369518a9bc8dd7665d283a.monsieurp@gentoo \
--to=monsieurp@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox