From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C6468138334 for ; Sat, 17 Aug 2019 00:50:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D05CBE086D; Sat, 17 Aug 2019 00:50:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA44CE086D for ; Sat, 17 Aug 2019 00:50:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F2CD349C77 for ; Sat, 17 Aug 2019 00:50:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50A46766 for ; Sat, 17 Aug 2019 00:50:30 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1566003006.2a000ead4cfd4fc9713d95fe942362ae1f9ddbe5.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mysql/mysql-5.6.44-r1.ebuild dev-db/mysql/mysql-5.6.44.ebuild dev-db/mysql/mysql-5.6.45-r1.ebuild dev-db/mysql/mysql-5.6.45.ebuild X-VCS-Directories: dev-db/mysql/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 2a000ead4cfd4fc9713d95fe942362ae1f9ddbe5 X-VCS-Branch: master Date: Sat, 17 Aug 2019 00:50:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7a12508c-c4f9-41a9-a6b0-a21782631cba X-Archives-Hash: 880b1ae08449cd3bc46e9af98eddc0c2 commit: 2a000ead4cfd4fc9713d95fe942362ae1f9ddbe5 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Aug 17 00:34:01 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Aug 17 00:50:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a000ead dev-db/mysql: move /usr/sql-bench to /usr/share/mysql Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Thomas Deutschmann gentoo.org> dev-db/mysql/{mysql-5.6.44.ebuild => mysql-5.6.44-r1.ebuild} | 4 ++++ dev-db/mysql/{mysql-5.6.45.ebuild => mysql-5.6.45-r1.ebuild} | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-db/mysql/mysql-5.6.44.ebuild b/dev-db/mysql/mysql-5.6.44-r1.ebuild similarity index 99% rename from dev-db/mysql/mysql-5.6.44.ebuild rename to dev-db/mysql/mysql-5.6.44-r1.ebuild index db524e08ba4..c870688eb8e 100644 --- a/dev-db/mysql/mysql-5.6.44.ebuild +++ b/dev-db/mysql/mysql-5.6.44-r1.ebuild @@ -371,6 +371,10 @@ src_install() { rm -Rf "${ED}/usr/data" || die fi + if [[ -d "${ED%/}/usr/sql-bench" ]] ; then + mv "${ED%/}/usr/sql-bench" "${ED%/}/usr/share/mysql/" || die + fi + # Unless they explicitly specific USE=test, then do not install the # testsuite. It DOES have a use to be installed, esp. when you want to do a # validation of your database configuration after tuning it. diff --git a/dev-db/mysql/mysql-5.6.45.ebuild b/dev-db/mysql/mysql-5.6.45-r1.ebuild similarity index 99% rename from dev-db/mysql/mysql-5.6.45.ebuild rename to dev-db/mysql/mysql-5.6.45-r1.ebuild index 4c2579a3156..cda536ad33f 100644 --- a/dev-db/mysql/mysql-5.6.45.ebuild +++ b/dev-db/mysql/mysql-5.6.45-r1.ebuild @@ -376,6 +376,10 @@ src_install() { rm -Rf "${ED}/usr/data" || die fi + if [[ -d "${ED%/}/usr/sql-bench" ]] ; then + mv "${ED%/}/usr/sql-bench" "${ED%/}/usr/share/mysql/" || die + fi + # Unless they explicitly specific USE=test, then do not install the # testsuite. It DOES have a use to be installed, esp. when you want to do a # validation of your database configuration after tuning it.