public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup/
Date: Sun, 21 Apr 2019 19:18:16 +0000 (UTC)	[thread overview]
Message-ID: <1555874285.2abf6846a13e71d41bd00e20f3e3645769b9f1f4.soap@gentoo> (raw)

commit:     2abf6846a13e71d41bd00e20f3e3645769b9f1f4
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 19:18:05 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 19:18:05 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2abf6846

dev-db/percona-xtrabackup: Remove old

Closes: https://github.com/gentoo/gentoo/pull/11766
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-db/percona-xtrabackup/Manifest                 |  1 -
 .../percona-xtrabackup-2.4.12.ebuild               | 86 ----------------------
 2 files changed, 87 deletions(-)

diff --git a/dev-db/percona-xtrabackup/Manifest b/dev-db/percona-xtrabackup/Manifest
index 0f003953d5a..551c586904a 100644
--- a/dev-db/percona-xtrabackup/Manifest
+++ b/dev-db/percona-xtrabackup/Manifest
@@ -1,3 +1,2 @@
 DIST boost_1_59_0.tar.gz 83709983 BLAKE2B 8c6676fa05fa401a6ecb3b890d95aceb4421ec48dd0eab38ce8d170c618e177c82dc67a165938f6be1a01daab24ce41888f5442dbc19ad3dd41368a01a6f89e4 SHA512 05fdbe5637543defdbc630b921515425885593d16db14534ed7b9aa60925ade8fb598d50cb894aed6dae688e789047216daa1bf03fa1aeb6b531060d9dae52ae
-DIST percona-xtrabackup-2.4.12.tar.gz 57232309 BLAKE2B 71b1dc0448b521b252463fb68ff111def3b71aebe187d3196e3c82f56539db02347d94713bea3dda5978f13b86b88a564ad6f12e3907134edc49a41dcde98e51 SHA512 228a48617eec3b824c7cb33882796ac2beb6ca1895fe73f7004e8dfd0b8bd1df471c39ba1c3fca2a819140d934a8a884f61dafae7cb56023dc7bc844d2846c8a
 DIST percona-xtrabackup-2.4.13.tar.gz 57254236 BLAKE2B 061cbee03374193359ae557909389ec675ed35edf216afc9deeb0b7880705d03024d380d0d6070aabfdb710bbde3664fd73da65ae5980e58290d8c9af29f351c SHA512 19d5fb3d775f1513b931cb2e736b753c1dd82c42fee382fdfa9f183eaee562c32f635db5d569d991cf1c8f7168de55ed863ba2c59db459ab79b80792b21ab298

diff --git a/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.12.ebuild b/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.12.ebuild
deleted file mode 100644
index 00fa92ff8fb..00000000000
--- a/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.12.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# 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"
-
-DEPEND="
-	app-arch/lz4:0=
-	app-editors/vim-core
-	<dev-libs/boost-1.65.0:=
-	dev-libs/libaio
-	<dev-libs/libedit-20170329.3.1
-	dev-libs/libev
-	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/percona-xtrabackup-bin
-	dev-perl/DBD-mysql"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-2.4.6-remove-boost-version-check.patch
-	"${FILESDIR}"/${PN}-2.4.11-fix-gcc6-isystem.patch
-)
-
-src_prepare() {
-	cmake-utils_src_prepare
-
-	# remove bundled boost, libedit, libevent, zlib
-	# just to be safe...
-	# We keep lz4 directory because we use extra/lz4/xxhash.c in cmake/libutils.cmake
-	rm -rv \
-		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
-
-	# Upstream doesn't support C++14 -- build will fail with -fpermissive error
-	# https://bugs.mysql.com/bug.php?id=87956
-	append-cxxflags $(test-flags-CXX -std=gnu++03) -std=gnu++03
-
-	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
-	)
-
-	local CMAKE_BUILD_TYPE="Release"
-	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/*
-}


             reply	other threads:[~2019-04-21 19:18 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-21 19:18 David Seifert [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-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-26 21:02 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=1555874285.2abf6846a13e71d41bd00e20f3e3645769b9f1f4.soap@gentoo \
    --to=soap@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