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 9018F13908F for ; Sun, 29 Jan 2017 14:20:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6669142DD; Sun, 29 Jan 2017 14:20:51 +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 A72A9142DD for ; Sun, 29 Jan 2017 14:20:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59EC93413AA for ; Sun, 29 Jan 2017 14:20:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDF1939DB for ; Sun, 29 Jan 2017 14:20:48 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1485693008.6707305d8d26969571e92f7acbb6031d47019b62.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/path64/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lang/path64/path64-9999.ebuild X-VCS-Directories: dev-lang/path64/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6707305d8d26969571e92f7acbb6031d47019b62 X-VCS-Branch: master Date: Sun, 29 Jan 2017 14:20: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: e40c617c-0099-485b-8f52-c98cbe0e2b55 X-Archives-Hash: 184806b1acaaf1c56540156f9c0feac8 commit: 6707305d8d26969571e92f7acbb6031d47019b62 Author: Justin Lecher gentoo org> AuthorDate: Sun Jan 29 12:30:08 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Jan 29 12:30:08 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6707305d dev-lang/path64: QA fixes Bump to6 EAPI drop non active code add missing die Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Justin Lecher gentoo.org> dev-lang/path64/path64-9999.ebuild | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/dev-lang/path64/path64-9999.ebuild b/dev-lang/path64/path64-9999.ebuild index ed6c769..3f44655 100644 --- a/dev-lang/path64/path64-9999.ebuild +++ b/dev-lang/path64/path64-9999.ebuild @@ -1,26 +1,18 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -if [ "${PV%9999}" != "${PV}" ] ; then - SCM=git-r3 - EGIT_REPO_URI="git://github.com/pathscale/${PN}-suite.git" - PATH64_URI="compiler assembler" - PATHSCALE_URI="compiler-rt libcxxrt libdwarf-bsd libunwind stdcxx" - DBG_URI="git://github.com/path64/debugger.git" -fi - -inherit cmake-utils ${SCM} multilib toolchain-funcs +inherit cmake-utils git-r3 toolchain-funcs DESCRIPTION="Path64 Compiler Suite Community Edition" HOMEPAGE="http://www.pathscale.com/ekopath-compiler-suite" -if [ "${PV%9999}" != "${PV}" ] ; then - SRC_URI="" -else - SRC_URI="" # for tarballs -fi +SRC_URI="" +EGIT_REPO_URI="git://github.com/pathscale/${PN}-suite.git" +PATH64_URI="compiler assembler" +PATHSCALE_URI="compiler-rt libcxxrt libdwarf-bsd libunwind stdcxx" +DBG_URI="git://github.com/path64/debugger.git" LICENSE="GPL-3" SLOT="0" @@ -29,7 +21,7 @@ IUSE="assembler custom-cflags debugger fortran +native +openmp valgrind" DEPEND=" !native? ( sys-devel/gcc:*[vanilla] ) - native? ( || ( dev-lang/ekopath dev-lang/path64 ) ) + native? ( || ( dev-lang/ekopath:* dev-lang/path64 ) ) valgrind? ( dev-util/valgrind )" RDEPEND="${DEPEND}" @@ -46,8 +38,8 @@ pkg_setup() { src_unpack() { git-r3_src_unpack - cd "${S}" - mkdir compiler + cd "${S}" || die + mkdir compiler || die for f in ${PATH64_URI}; do EGIT_REPO_URI="git://github.com/${PN}/${f}.git" \ EGIT_DIR="${EGIT_STORE_DIR}/compiler/${f}" \