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 5932A139083 for ; Wed, 22 Nov 2017 22:01:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEA63E0EB8; Wed, 22 Nov 2017 22:01:09 +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 8E852E0EB8 for ; Wed, 22 Nov 2017 22:01:08 +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 BA1AC340FBF for ; Wed, 22 Nov 2017 22:01:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35061A416 for ; Wed, 22 Nov 2017 22:01:05 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1511388050.ce8381097ae89c5795e482a429fc4b8943c7e5f3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cppcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cppcheck/cppcheck-1.81.ebuild X-VCS-Directories: dev-util/cppcheck/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ce8381097ae89c5795e482a429fc4b8943c7e5f3 X-VCS-Branch: master Date: Wed, 22 Nov 2017 22:01:05 +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: 376f9794-002b-4e01-a987-80496aac891c X-Archives-Hash: 97e37b670ec4020f35297691abbe43bc commit: ce8381097ae89c5795e482a429fc4b8943c7e5f3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Nov 22 20:00:16 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 22 22:00:50 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce838109 dev-util/cppcheck: Switch to EAPI 6 Package-Manager: Portage-2.3.16, Repoman-2.3.6 dev-util/cppcheck/cppcheck-1.81.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-util/cppcheck/cppcheck-1.81.ebuild b/dev-util/cppcheck/cppcheck-1.81.ebuild index 765ecfadc61..c1c281e82e2 100644 --- a/dev-util/cppcheck/cppcheck-1.81.ebuild +++ b/dev-util/cppcheck/cppcheck-1.81.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python{2_7,3_4,3_5} ) -inherit distutils-r1 eutils flag-o-matic qmake-utils toolchain-funcs +inherit distutils-r1 flag-o-matic qmake-utils toolchain-funcs DESCRIPTION="static analyzer of C/C++ code" HOMEPAGE="http://cppcheck.sourceforge.net" @@ -28,17 +28,17 @@ DEPEND="${RDEPEND} virtual/pkgconfig " +PATCHES=( "${FILESDIR}"/${PN}-1.75-tinyxml2.patch ) + src_prepare() { + default append-cxxflags -std=c++0x # Drop bundled libs, patch Makefile generator and re-run it rm -r externals/tinyxml || die - epatch "${FILESDIR}"/${PN}-1.75-tinyxml2.patch tc-export CXX emake dmake ./dmake || die - - default } src_configure() {