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 39D4E138334 for ; Sat, 23 Jun 2018 08:17:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECBA1E0830; Sat, 23 Jun 2018 08:17:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B6A6FE0830 for ; Sat, 23 Jun 2018 08:17:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 37EC5335C81 for ; Sat, 23 Jun 2018 08:17:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A92A62E8 for ; Sat, 23 Jun 2018 08:17:14 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1529741827.e74b7e94d9d15ee82b2a10feb17b2e912a1701e0.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/qdbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/qdbm/qdbm-1.8.78-r1.ebuild dev-db/qdbm/qdbm-1.8.78-r2.ebuild X-VCS-Directories: dev-db/qdbm/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: e74b7e94d9d15ee82b2a10feb17b2e912a1701e0 X-VCS-Branch: master Date: Sat, 23 Jun 2018 08:17:14 +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: 2e67237c-87dc-4f04-a91f-6b94e509516c X-Archives-Hash: bfd5e3ca2230eaa251a0bbc3241706de commit: e74b7e94d9d15ee82b2a10feb17b2e912a1701e0 Author: Akinori Hattori gentoo org> AuthorDate: Sat Jun 23 08:15:49 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sat Jun 23 08:17:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e74b7e94 dev-db/qdbm: fix build with >=sys-devel/gcc-7 Closes: https://bugs.gentoo.org/638878 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-db/qdbm/{qdbm-1.8.78-r1.ebuild => qdbm-1.8.78-r2.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-db/qdbm/qdbm-1.8.78-r1.ebuild b/dev-db/qdbm/qdbm-1.8.78-r2.ebuild similarity index 93% rename from dev-db/qdbm/qdbm-1.8.78-r1.ebuild rename to dev-db/qdbm/qdbm-1.8.78-r2.ebuild index fcb210018c4..fee0cfe58c3 100644 --- a/dev-db/qdbm/qdbm-1.8.78-r1.ebuild +++ b/dev-db/qdbm/qdbm-1.8.78-r2.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_OPTIONAL="yes" -inherit autotools java-pkg-opt-2 perl-functions ruby-ng +inherit autotools flag-o-matic java-pkg-opt-2 perl-functions ruby-ng DESCRIPTION="Quick Database Manager" HOMEPAGE="http://fallabs.com/qdbm/" @@ -89,6 +89,9 @@ src_prepare() { default java-pkg-opt-2_src_prepare + # fix build with >=sys-devel/gcc-7, bug #638878 + append-cflags $(test-flags-CC -fno-tree-vrp) + sed -i \ -e "/^CFLAGS/s|$| ${CFLAGS}|" \ -e "/^OPTIMIZE/s|$| ${CFLAGS}|" \