From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ekopath/
Date: Mon, 14 Dec 2015 22:14:33 +0000 (UTC) [thread overview]
Message-ID: <1450131258.ca510430911b7c04bbddd1a28f75bb4f20fe1825.mgorny@gentoo> (raw)
commit: ca510430911b7c04bbddd1a28f75bb4f20fe1825
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 14 22:13:28 2015 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 14 22:14:18 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca510430
dev-lang/ekopath: Snapshot bump
dev-lang/ekopath/Manifest | 1 +
dev-lang/ekopath/ekopath-6.0.619_p20151213.ebuild | 74 +++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-lang/ekopath/Manifest b/dev-lang/ekopath/Manifest
index 2a26f5c..3bf1a5b 100644
--- a/dev-lang/ekopath/Manifest
+++ b/dev-lang/ekopath/Manifest
@@ -2,3 +2,4 @@ DIST ekopath-2015-10-10-installer.run 57723481 SHA256 0cd16e8c70d3e7938474e8885a
DIST ekopath-2015-10-29-installer.run 57559240 SHA256 eea8bba70f89ccaaf8f5eb48bdd7200d54a1af2d993ac850c5d08f39577eea50 SHA512 62cdb322def3bccfac5c4c12f9b3fb1eeaa5a8251a5a4ee59dfff8e7b30463f45fce04d482cc16abbb3b263a88bf845723f22858bae5933570fc43841f970667 WHIRLPOOL fa3a8dd365840c33dd4139bd139e902bf990b0d3ebc736c661060c4faf4e79f41c93c6961b7fd7b46e9aa20e38fbb4265480a006450f728825440392af228351
DIST ekopath-2015-11-25-installer.run 57197459 SHA256 884877a0586ecac3b21a1575e3d2445bda1daf09d68c0dde4cc0d0eb56a3feb2 SHA512 931b36e55592752b5851c98413082a99d537502a6184fa787043f9986554a1f5004e3a9c197851789f2b251b77a663c0dca6fae304bc5da4318b790c4b396ac9 WHIRLPOOL a783a994d17e214c205ba1ebdce0f071f1cfd5db65adc7a1ec939d0dfd901a875e76260bbf540d8229016967ee3ac5fb3091f894e4edbfe391807e407d3e5a6c
DIST ekopath-2015-12-11-installer.run 56918287 SHA256 e0aa1d1d49c359ce0c8e2fa227241f5df51b87d060f13f2e2a56b2e580995843 SHA512 cacffd24a180c91af0e1ff908078e20e348760d212765950a9efa555455e8ead3d5f225af8992ffae8a3b001fc1c5c8aa519184dd0f10a33849526fbc9f8f0ec WHIRLPOOL 4ef583739f884dc2c23f25f2efc27aa83d4aa4a7addafd5a84c46a39fb228b5cfd6ece8d55b33787833ab682aeef3ffa68cb3893d50adc246f5ea50fcfdc2c2a
+DIST ekopath-2015-12-13-installer.run 57231316 SHA256 85a3fc7df59373bfef32bf9388fd77c19d7c780dc5e9e52e1e8664f0139a9ac6 SHA512 9454f263c921d26f521e374eb2f346f1e257bf58daf2ce5e54ce1a2cced7291bd9b5ece08cd4da441498f66bcd6a01a45309d4463fe65ea5d094b21612a8d3f8 WHIRLPOOL 3157ed63da3d87912163af2e8927a332640b2682289234b25b5f7b75a698490dc2cf8e0d5f51d82eb0b072654f15040c6b94f94e3cf7a428b793a575d6f71ed0
diff --git a/dev-lang/ekopath/ekopath-6.0.619_p20151213.ebuild b/dev-lang/ekopath/ekopath-6.0.619_p20151213.ebuild
new file mode 100644
index 0000000..c886d13
--- /dev/null
+++ b/dev-lang/ekopath/ekopath-6.0.619_p20151213.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit versionator multilib pax-utils
+
+MY_PV=$(get_version_component_range 1-3)
+DATE=$(get_version_component_range 4)
+DATE=${DATE#p}
+DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
+INSTALLER=${PN}-${DATE}-installer.run
+
+DESCRIPTION="PathScale EKOPath Compiler Suite"
+HOMEPAGE="http://www.pathscale.com/ekopath-compiler-suite"
+SRC_URI="http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER}"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="!!app-arch/rpm"
+RDEPEND=""
+
+RESTRICT="bindist mirror"
+
+QA_PREBUILT="
+ opt/${PN}/lib/${MY_PV}/x8664/*
+ opt/${PN}/bin/*"
+
+S="${WORKDIR}"
+
+src_unpack() {
+ cp "${DISTDIR}/${INSTALLER}" "${S}/" || die
+ chmod +x "${S}/${INSTALLER}" || die
+}
+
+src_prepare() {
+ cat > 99${PN} <<-EOF || die
+ PATH=${EROOT%/}/opt/${PN}/bin
+ ROOTPATH=${EROOT%/}/opt/${PN}/bin
+ LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64
+ MANPATH=${EROOT%/}/opt/${PN}/docs/man
+ EOF
+}
+
+src_install() {
+ # EI_PAX marking is obsolete and PT_PAX breaks the binary.
+ # We must use XT_PAX to run the installer.
+ if [[ ${PAX_MARKINGS} == "XT" ]]; then
+ pax-mark m "${INSTALLER}"
+ fi
+
+ ./"${INSTALLER}" \
+ --prefix "${ED%/}/opt/${PN}" \
+ --mode unattended || die
+
+ if [[ ! -d ${ED%/}/opt/${PN}/lib/${MY_PV} ]]; then
+ local guess
+ cd "${ED%/}/opt/${PN}/lib" && guess=( * )
+
+ if [[ ${guess[@]} ]]; then
+ die "Incorrect release version in PV, guessing it should be: ${guess[*]}"
+ else
+ die "No libdir installed"
+ fi
+ fi
+ [[ -x ${ED%}/opt/${PN}/bin/pathcc ]] || die "No pathcc executable was installed, your hardware is unsupported most likely"
+
+ rm -r "${ED}/opt/${PN}"/uninstall* || die
+ doenvd 99${PN}
+}
next reply other threads:[~2015-12-14 22:14 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-14 22:14 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-06-14 9:30 [gentoo-commits] repo/gentoo:master commit in: dev-lang/ekopath/ Mikle Kolyada
2016-10-21 18:58 Michał Górny
2016-10-21 18:58 Michał Górny
2016-06-30 17:07 Michał Górny
2016-06-23 12:48 Michał Górny
2016-04-29 9:27 Michał Górny
2016-04-29 9:27 Michał Górny
2016-04-10 12:34 Michał Górny
2016-03-25 8:28 Michał Górny
2016-03-19 14:03 Michał Górny
2016-03-12 16:33 Michał Górny
2016-03-12 16:33 Michał Górny
2016-03-12 16:33 Michał Górny
2016-03-12 16:33 Michał Górny
2016-03-12 16:33 Michał Górny
2016-03-12 13:41 Michał Górny
2016-03-04 6:12 Michał Górny
2016-01-25 19:45 Michał Górny
2016-01-01 10:25 Michał Górny
2016-01-01 10:25 Michał Górny
2015-12-12 12:59 Michał Górny
2015-12-02 20:08 Michał Górny
2015-10-30 23:37 Michał Górny
2015-10-30 23:37 Michał Górny
2015-10-12 8:52 Michał Górny
2015-10-11 18:19 Michał Górny
2015-09-22 17:42 Michał Górny
2015-09-11 18:51 Michał Górny
2015-08-12 20:51 Michał Górny
2015-08-10 7:15 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1450131258.ca510430911b7c04bbddd1a28f75bb4f20fe1825.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox