Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ekopath/
Date: Fri, 29 Apr 2016 09:27:37
Message-Id: 1461922021.48d5ea9a3cdbecb888f43f132322e63c967b8765.mgorny@gentoo
1 commit: 48d5ea9a3cdbecb888f43f132322e63c967b8765
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 09:25:01 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 09:27:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d5ea9a
7
8 dev-lang/ekopath: Snapshot bump
9
10 dev-lang/ekopath/Manifest | 1 +
11 .../ekopath/ekopath-6.0.779_p20160428-r1.ebuild | 63 ++++++++++++++++++
12 .../ekopath/ekopath-6.0.779_p20160428-r100.ebuild | 74 ++++++++++++++++++++++
13 3 files changed, 138 insertions(+)
14
15 diff --git a/dev-lang/ekopath/Manifest b/dev-lang/ekopath/Manifest
16 index 15af562..03f8eac 100644
17 --- a/dev-lang/ekopath/Manifest
18 +++ b/dev-lang/ekopath/Manifest
19 @@ -1,2 +1,3 @@
20 DIST ekopath-2015-12-13-installer.run 57231316 SHA256 85a3fc7df59373bfef32bf9388fd77c19d7c780dc5e9e52e1e8664f0139a9ac6 SHA512 9454f263c921d26f521e374eb2f346f1e257bf58daf2ce5e54ce1a2cced7291bd9b5ece08cd4da441498f66bcd6a01a45309d4463fe65ea5d094b21612a8d3f8 WHIRLPOOL 3157ed63da3d87912163af2e8927a332640b2682289234b25b5f7b75a698490dc2cf8e0d5f51d82eb0b072654f15040c6b94f94e3cf7a428b793a575d6f71ed0
21 DIST ekopath-2016-04-09-installer.run 57165340 SHA256 ccdfe4aca6063d8cf885b3878b0ab12505aa765db081f4a0278e392f883dee46 SHA512 cdb8647d36ea8ca411cc2378d87c0a2edf34c834206905350a6cdde5ae0ed14f56f716ebb7ad28129b634088f94e0304c1cef3df1beaac38c3ccc87d5387dce0 WHIRLPOOL 299ac5494f17dc680a794f4cda3417e232c2fe6768df2ee5ba48356be0d929f7ed821b32b5e179c9fd0334081bcca61dddac577b6b8a63201723b1172f94a005
22 +DIST ekopath-2016-04-28-installer.run 57174533 SHA256 92a0d516fff57849ac88f6fe22e112184f5102cdf0f159324243dc49e7e248ac SHA512 9bb8f22bc3644b5bbfe0dcf768345fd9050d030ee2c9aba315004a5b2f2d95adbc8c613aa41e698f3fde7da235534ecb1b03f489ad2cbbec19b65abfe3ff0967 WHIRLPOOL c64a5578e789c1412da12053d7550689cdd1bb9a330c93b3d00c6b67c3bf7cd9fbcc9a558d2defc7a9ebb9e13c8be038c6c37d067bcf10bd70b29528b201db6c
23
24 diff --git a/dev-lang/ekopath/ekopath-6.0.779_p20160428-r1.ebuild b/dev-lang/ekopath/ekopath-6.0.779_p20160428-r1.ebuild
25 new file mode 100644
26 index 0000000..f71706c
27 --- /dev/null
28 +++ b/dev-lang/ekopath/ekopath-6.0.779_p20160428-r1.ebuild
29 @@ -0,0 +1,63 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit pax-utils versionator
37 +
38 +MY_PV=$(get_version_component_range 1-3)
39 +MY_P=${PN}-${MY_PV}
40 +DATE=$(get_version_component_range 4)
41 +DATE=${DATE#p}
42 +DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
43 +INSTALLER=${PN}-${DATE}-installer.run
44 +
45 +DESCRIPTION="PathScale EKOPath Compiler Suite"
46 +HOMEPAGE="http://www.pathscale.com/ekopath-compiler-suite"
47 +SRC_URI="http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER}"
48 +
49 +LICENSE="all-rights-reserved"
50 +SLOT="${MY_PV}"
51 +KEYWORDS="~amd64"
52 +IUSE=""
53 +
54 +DEPEND="!!app-arch/rpm"
55 +RDEPEND="!dev-lang/ekopath:0/${MY_PV}"
56 +
57 +RESTRICT="bindist mirror"
58 +
59 +QA_PREBUILT="opt/${MY_P}/*"
60 +
61 +S="${WORKDIR}"
62 +
63 +src_unpack() {
64 + cp "${DISTDIR}/${INSTALLER}" "${S}/" || die
65 + chmod +x "${S}/${INSTALLER}" || die
66 +}
67 +
68 +src_install() {
69 + # EI_PAX marking is obsolete and PT_PAX breaks the binary.
70 + # We must use XT_PAX to run the installer.
71 + if [[ ${PAX_MARKINGS} == "XT" ]]; then
72 + pax-mark m "${INSTALLER}"
73 + fi
74 +
75 + ./"${INSTALLER}" \
76 + --prefix "${ED%/}/opt/${MY_P}" \
77 + --mode unattended || die
78 +
79 + if [[ ! -d ${ED%/}/opt/${MY_P}/lib/${MY_PV} ]]; then
80 + local guess
81 + cd "${ED%/}/opt/${MY_P}/lib" && guess=( * )
82 +
83 + if [[ ${guess[@]} ]]; then
84 + die "Incorrect release version in PV, guessing it should be: ${guess[*]}"
85 + else
86 + die "No libdir installed"
87 + fi
88 + fi
89 + [[ -x ${ED%}/opt/${MY_P}/bin/pathcc ]] || die "No pathcc executable was installed, your hardware is unsupported most likely"
90 +
91 + rm -r "${ED}/opt/${MY_P}"/uninstall* || die
92 +}
93
94 diff --git a/dev-lang/ekopath/ekopath-6.0.779_p20160428-r100.ebuild b/dev-lang/ekopath/ekopath-6.0.779_p20160428-r100.ebuild
95 new file mode 100644
96 index 0000000..6a39c10
97 --- /dev/null
98 +++ b/dev-lang/ekopath/ekopath-6.0.779_p20160428-r100.ebuild
99 @@ -0,0 +1,74 @@
100 +# Copyright 1999-2016 Gentoo Foundation
101 +# Distributed under the terms of the GNU General Public License v2
102 +# $Id$
103 +
104 +EAPI=6
105 +
106 +inherit pax-utils versionator
107 +
108 +MY_PV=$(get_version_component_range 1-3)
109 +MY_P=${PN}-${MY_PV}
110 +DATE=$(get_version_component_range 4)
111 +DATE=${DATE#p}
112 +DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
113 +INSTALLER=${PN}-${DATE}-installer.run
114 +
115 +DESCRIPTION="PathScale EKOPath Compiler Suite"
116 +HOMEPAGE="http://www.pathscale.com/ekopath-compiler-suite"
117 +SRC_URI="http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER}"
118 +
119 +LICENSE="all-rights-reserved"
120 +SLOT="0/${MY_PV}"
121 +KEYWORDS="~amd64"
122 +IUSE=""
123 +
124 +DEPEND="!!app-arch/rpm"
125 +RDEPEND="!dev-lang/ekopath:${MY_PV}"
126 +
127 +RESTRICT="bindist mirror"
128 +
129 +QA_PREBUILT="opt/${MY_P}/*"
130 +
131 +S="${WORKDIR}"
132 +
133 +src_unpack() {
134 + cp "${DISTDIR}/${INSTALLER}" "${S}/" || die
135 + chmod +x "${S}/${INSTALLER}" || die
136 +}
137 +
138 +src_configure() {
139 + cat > 99${PN} <<-EOF || die
140 + PATH=${EROOT%/}/opt/${PN}/bin
141 + ROOTPATH=${EROOT%/}/opt/${PN}/bin
142 + LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64
143 + MANPATH=${EROOT%/}/opt/${PN}/docs/man
144 + EOF
145 +}
146 +
147 +src_install() {
148 + # EI_PAX marking is obsolete and PT_PAX breaks the binary.
149 + # We must use XT_PAX to run the installer.
150 + if [[ ${PAX_MARKINGS} == "XT" ]]; then
151 + pax-mark m "${INSTALLER}"
152 + fi
153 +
154 + ./"${INSTALLER}" \
155 + --prefix "${ED%/}/opt/${MY_P}" \
156 + --mode unattended || die
157 +
158 + if [[ ! -d ${ED%/}/opt/${MY_P}/lib/${MY_PV} ]]; then
159 + local guess
160 + cd "${ED%/}/opt/${MY_P}/lib" && guess=( * )
161 +
162 + if [[ ${guess[@]} ]]; then
163 + die "Incorrect release version in PV, guessing it should be: ${guess[*]}"
164 + else
165 + die "No libdir installed"
166 + fi
167 + fi
168 + [[ -x ${ED%}/opt/${MY_P}/bin/pathcc ]] || die "No pathcc executable was installed, your hardware is unsupported most likely"
169 +
170 + rm -r "${ED}/opt/${MY_P}"/uninstall* || die
171 + dosym ${MY_P} /opt/${PN}
172 + doenvd 99${PN}
173 +}