Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/path64/
Date: Sun, 29 Jan 2017 14:20:57
Message-Id: 1485693008.6707305d8d26969571e92f7acbb6031d47019b62.jlec@gentoo
1 commit: 6707305d8d26969571e92f7acbb6031d47019b62
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 12:30:08 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 12:30:08 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6707305d
7
8 dev-lang/path64: QA fixes
9
10 Bump to6 EAPI
11 drop non active code
12 add missing die
13
14 Package-Manager: Portage-2.3.3, Repoman-2.3.1
15 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
16
17 dev-lang/path64/path64-9999.ebuild | 30 +++++++++++-------------------
18 1 file changed, 11 insertions(+), 19 deletions(-)
19
20 diff --git a/dev-lang/path64/path64-9999.ebuild b/dev-lang/path64/path64-9999.ebuild
21 index ed6c769..3f44655 100644
22 --- a/dev-lang/path64/path64-9999.ebuild
23 +++ b/dev-lang/path64/path64-9999.ebuild
24 @@ -1,26 +1,18 @@
25 -# Copyright 1999-2015 Gentoo Foundation
26 +# Copyright 1999-2017 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 # $Id$
29
30 -EAPI=5
31 +EAPI=6
32
33 -if [ "${PV%9999}" != "${PV}" ] ; then
34 - SCM=git-r3
35 - EGIT_REPO_URI="git://github.com/pathscale/${PN}-suite.git"
36 - PATH64_URI="compiler assembler"
37 - PATHSCALE_URI="compiler-rt libcxxrt libdwarf-bsd libunwind stdcxx"
38 - DBG_URI="git://github.com/path64/debugger.git"
39 -fi
40 -
41 -inherit cmake-utils ${SCM} multilib toolchain-funcs
42 +inherit cmake-utils git-r3 toolchain-funcs
43
44 DESCRIPTION="Path64 Compiler Suite Community Edition"
45 HOMEPAGE="http://www.pathscale.com/ekopath-compiler-suite"
46 -if [ "${PV%9999}" != "${PV}" ] ; then
47 - SRC_URI=""
48 -else
49 - SRC_URI="" # for tarballs
50 -fi
51 +SRC_URI=""
52 +EGIT_REPO_URI="git://github.com/pathscale/${PN}-suite.git"
53 +PATH64_URI="compiler assembler"
54 +PATHSCALE_URI="compiler-rt libcxxrt libdwarf-bsd libunwind stdcxx"
55 +DBG_URI="git://github.com/path64/debugger.git"
56
57 LICENSE="GPL-3"
58 SLOT="0"
59 @@ -29,7 +21,7 @@ IUSE="assembler custom-cflags debugger fortran +native +openmp valgrind"
60
61 DEPEND="
62 !native? ( sys-devel/gcc:*[vanilla] )
63 - native? ( || ( dev-lang/ekopath dev-lang/path64 ) )
64 + native? ( || ( dev-lang/ekopath:* dev-lang/path64 ) )
65 valgrind? ( dev-util/valgrind )"
66 RDEPEND="${DEPEND}"
67
68 @@ -46,8 +38,8 @@ pkg_setup() {
69
70 src_unpack() {
71 git-r3_src_unpack
72 - cd "${S}"
73 - mkdir compiler
74 + cd "${S}" || die
75 + mkdir compiler || die
76 for f in ${PATH64_URI}; do
77 EGIT_REPO_URI="git://github.com/${PN}/${f}.git" \
78 EGIT_DIR="${EGIT_STORE_DIR}/compiler/${f}" \