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 6937F139694 for ; Mon, 10 Jul 2017 22:22:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32BE1274163; Mon, 10 Jul 2017 22:22:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01FF4274163 for ; Mon, 10 Jul 2017 22:22:51 +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 968B1341B2A for ; Mon, 10 Jul 2017 22:22:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92B657489 for ; Mon, 10 Jul 2017 22:22:48 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1499725362.78beda8bdbf94b62a586e38d6ac00e32180f3eb8.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/db/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/db/db-5.3.28-r2.ebuild sys-libs/db/db-5.3.28-r3.ebuild sys-libs/db/db-6.0.35-r1.ebuild sys-libs/db/db-6.0.35.ebuild sys-libs/db/db-6.1.29-r1.ebuild sys-libs/db/db-6.1.29.ebuild sys-libs/db/db-6.2.23-r1.ebuild sys-libs/db/db-6.2.23.ebuild X-VCS-Directories: sys-libs/db/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 78beda8bdbf94b62a586e38d6ac00e32180f3eb8 X-VCS-Branch: master Date: Mon, 10 Jul 2017 22:22:48 +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: f6a8df06-855f-4b2c-bb02-5730e651e386 X-Archives-Hash: 90a58eb9ff2ec6447844090a114c3ba6 commit: 78beda8bdbf94b62a586e38d6ac00e32180f3eb8 Author: Lars gentoo org> AuthorDate: Sat Jan 14 18:17:36 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Mon Jul 10 22:22:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78beda8b sys-libs/db: Security revbumps to disable usage of bundled sqlite. This fixes Gentoo bug #605688 (cherry picked from commit 953247c8dda0eec48bf7f019583003077d008ba1) Fixes: https://bugs.gentoo.org/show_bug.cgi?id=605688 Fixes: https://github.com/gentoo/gentoo/pull/3480/ Signed-off-by: Robin H. Johnson gentoo.org> sys-libs/db/{db-5.3.28-r2.ebuild => db-5.3.28-r3.ebuild} | 6 ++++-- sys-libs/db/{db-6.0.35.ebuild => db-6.0.35-r1.ebuild} | 6 ++++-- sys-libs/db/{db-6.1.29.ebuild => db-6.1.29-r1.ebuild} | 6 ++++-- sys-libs/db/{db-6.2.23.ebuild => db-6.2.23-r1.ebuild} | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/sys-libs/db/db-5.3.28-r2.ebuild b/sys-libs/db/db-5.3.28-r3.ebuild similarity index 97% rename from sys-libs/db/db-5.3.28-r2.ebuild rename to sys-libs/db/db-5.3.28-r3.ebuild index c9c47add336..e5330769b21 100644 --- a/sys-libs/db/db-5.3.28-r2.ebuild +++ b/sys-libs/db/db-5.3.28-r3.ebuild @@ -143,6 +143,8 @@ multilib_src_configure() { # sql_compat will cause a collision with sqlite3 # --enable-sql_compat + # Don't --enable-sql* because we don't want to use bundled sqlite. + # See Gentoo bug #605688 ECONF_SOURCE="${S_BASE}"/dist \ STRIP="true" \ econf \ @@ -150,8 +152,8 @@ multilib_src_configure() { --enable-dbm \ --enable-o_direct \ --without-uniquename \ - --enable-sql \ - --enable-sql_codegen \ + --disable-sql \ + --disable-sql_codegen \ --disable-sql_compat \ $([[ ${ABI} == arm ]] && echo --with-mutex=ARM/gcc-assembly) \ $([[ ${ABI} == amd64 ]] && echo --with-mutex=x86/gcc-assembly) \ diff --git a/sys-libs/db/db-6.0.35.ebuild b/sys-libs/db/db-6.0.35-r1.ebuild similarity index 97% rename from sys-libs/db/db-6.0.35.ebuild rename to sys-libs/db/db-6.0.35-r1.ebuild index feca1dcaa8b..0c5fe167e08 100644 --- a/sys-libs/db/db-6.0.35.ebuild +++ b/sys-libs/db/db-6.0.35-r1.ebuild @@ -141,6 +141,8 @@ multilib_src_configure() { # sql_compat will cause a collision with sqlite3 # --enable-sql_compat + # Don't --enable-sql* because we don't want to use bundled sqlite. + # See Gentoo bug #605688 ECONF_SOURCE="${S_BASE}"/dist \ STRIP="true" \ econf \ @@ -148,8 +150,8 @@ multilib_src_configure() { --enable-dbm \ --enable-o_direct \ --without-uniquename \ - --enable-sql \ - --enable-sql_codegen \ + --disable-sql \ + --disable-sql_codegen \ --disable-sql_compat \ $([[ ${ABI} == arm ]] && echo --with-mutex=ARM/gcc-assembly) \ $([[ ${ABI} == amd64 ]] && echo --with-mutex=x86/gcc-assembly) \ diff --git a/sys-libs/db/db-6.1.29.ebuild b/sys-libs/db/db-6.1.29-r1.ebuild similarity index 97% rename from sys-libs/db/db-6.1.29.ebuild rename to sys-libs/db/db-6.1.29-r1.ebuild index 75d89109cd9..1055a51317b 100644 --- a/sys-libs/db/db-6.1.29.ebuild +++ b/sys-libs/db/db-6.1.29-r1.ebuild @@ -141,6 +141,8 @@ multilib_src_configure() { # sql_compat will cause a collision with sqlite3 # --enable-sql_compat + # Don't --enable-sql* because we don't want to use bundled sqlite. + # See Gentoo bug #605688 ECONF_SOURCE="${S_BASE}"/dist \ STRIP="true" \ econf \ @@ -148,8 +150,8 @@ multilib_src_configure() { --enable-dbm \ --enable-o_direct \ --without-uniquename \ - --enable-sql \ - --enable-sql_codegen \ + --disable-sql \ + --disable-sql_codegen \ --disable-sql_compat \ $([[ ${ABI} == arm ]] && echo --with-mutex=ARM/gcc-assembly) \ $([[ ${ABI} == amd64 ]] && echo --with-mutex=x86/gcc-assembly) \ diff --git a/sys-libs/db/db-6.2.23.ebuild b/sys-libs/db/db-6.2.23-r1.ebuild similarity index 97% rename from sys-libs/db/db-6.2.23.ebuild rename to sys-libs/db/db-6.2.23-r1.ebuild index af25495f83e..2d4ba9b4437 100644 --- a/sys-libs/db/db-6.2.23.ebuild +++ b/sys-libs/db/db-6.2.23-r1.ebuild @@ -146,6 +146,8 @@ multilib_src_configure() { # sql_compat will cause a collision with sqlite3 # --enable-sql_compat + # Don't --enable-sql* because we don't want to use bundled sqlite. + # See Gentoo bug #605688 ECONF_SOURCE="${S_BASE}"/dist \ STRIP="true" \ econf \ @@ -153,8 +155,8 @@ multilib_src_configure() { --enable-dbm \ --enable-o_direct \ --without-uniquename \ - --enable-sql \ - --enable-sql_codegen \ + --disable-sql \ + --disable-sql_codegen \ --disable-sql_compat \ $([[ ${ABI} == arm ]] && echo --with-mutex=ARM/gcc-assembly) \ $([[ ${ABI} == amd64 ]] && echo --with-mutex=x86/gcc-assembly) \