From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4CF701381F3 for ; Thu, 25 Apr 2013 00:43:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 412F8E096C; Thu, 25 Apr 2013 00:43:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2D33E096C for ; Thu, 25 Apr 2013 00:43:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 86D5633DE8E for ; Thu, 25 Apr 2013 00:43:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1A242E43F5 for ; Thu, 25 Apr 2013 00:43:37 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <1366850467.76a8059006d5d68d47f7bb4f012d454d28cff6b3.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql-v2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: 76a8059006d5d68d47f7bb4f012d454d28cff6b3 X-VCS-Branch: master Date: Thu, 25 Apr 2013 00:43:37 +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-Archives-Salt: b8af7eec-8203-48f2-9b22-2ae0c6d0e723 X-Archives-Hash: 937dd319ba1129d92355403f28392fc5 commit: 76a8059006d5d68d47f7bb4f012d454d28cff6b3 Author: Brian Evans lavabit com> AuthorDate: Fri Apr 12 13:15:25 2013 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Thu Apr 25 00:41:07 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=76a80590 Cleanup IUSE="berkdb" and EAPI support. Drop EAPI 3 as we are now using REQUIRED_USE and all builds are EAPI4+ which use mysql-v2.eclass. Drop IUSE="berkdb" as only a post-install note affected <5.1 and mysql-v2.eclass only supports 5.1.50+ --- eclass/mysql-v2.eclass | 9 ++------- 1 files changed, 2 insertions(+), 7 deletions(-) diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass index b13d226..7f1ab2e 100644 --- a/eclass/mysql-v2.eclass +++ b/eclass/mysql-v2.eclass @@ -53,7 +53,7 @@ inherit eutils flag-o-matic gnuconfig ${MYSQL_EXTRAS} ${BUILD_INHERIT} mysql_fx # case "${EAPI:-0}" in - 3|4|5) ;; + 4|5) ;; *) die "Unsupported EAPI: ${EAPI}" ;; esac @@ -172,7 +172,6 @@ IUSE="${IUSE} extraengine" IUSE="${IUSE} cluster" IUSE="${IUSE} max-idx-128" -IUSE="${IUSE} berkdb" IUSE="${IUSE} +community profiling" [[ ${PN} == "mariadb" ]] \ @@ -536,10 +535,6 @@ mysql-v2_pkg_postinst() { elog " PRIMARY KEY (name)" elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" fi - - mysql_check_version_range "4.0 to 5.0.99.99" \ - && use berkdb \ - && elog "Berkeley DB support is deprecated and will be removed in future versions!" } # @FUNCTION: mysql-v2_getopt @@ -674,7 +669,7 @@ mysql-v2_pkg_config() { # Figure out which options we need to disable to do the setup helpfile="${TMPDIR}/mysqld-help" ${EROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null - for opt in grant-tables host-cache name-resolve networking slave-start bdb \ + for opt in grant-tables host-cache name-resolve networking slave-start \ federated innodb ssl log-bin relay-log slow-query-log external-locking \ ndbcluster log-slave-updates \ ; do