From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 73523138D03 for ; Wed, 24 Jun 2015 09:52:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A83CE0990; Wed, 24 Jun 2015 09:52:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8D35E0990 for ; Wed, 24 Jun 2015 09:51:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2301634092E for ; Wed, 24 Jun 2015 09:51:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E5F5A59 for ; Wed, 24 Jun 2015 09:51:56 +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: <1435139485.e05834ec44dc6fb93275141bd14212c162c52524.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/vtune/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lang/vtune/ChangeLog dev-lang/vtune/vtune-15.3.403110.ebuild X-VCS-Directories: dev-lang/vtune/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: e05834ec44dc6fb93275141bd14212c162c52524 X-VCS-Branch: master Date: Wed, 24 Jun 2015 09:51:56 +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: 11a62773-3c1b-43da-8400-1628fa0eebc0 X-Archives-Hash: 1bdd4891fdeddf52168d55ca2c375a60 commit: e05834ec44dc6fb93275141bd14212c162c52524 Author: Justin Lecher gentoo org> AuthorDate: Wed Jun 24 09:48:58 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Jun 24 09:51:25 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e05834ec dev-lang/vtune: Version Bump, bug #552296 Package-Manager: portage-2.2.20 dev-lang/vtune/ChangeLog | 5 ++++ dev-lang/vtune/vtune-15.3.403110.ebuild | 50 +++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) diff --git a/dev-lang/vtune/ChangeLog b/dev-lang/vtune/ChangeLog index 07871f9..2af3c92 100644 --- a/dev-lang/vtune/ChangeLog +++ b/dev-lang/vtune/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*vtune-15.3.403110 (24 Jun 2015) + + 24 Jun 2015; Justin Lecher +vtune-15.3.403110.ebuild: + dev-lang/vtune: Version Bump, bug #552296 + *vtune-15.2.393444 (12 Feb 2015) 12 Feb 2015; Justin Lecher +vtune-15.2.393444.ebuild: diff --git a/dev-lang/vtune/vtune-15.3.403110.ebuild b/dev-lang/vtune/vtune-15.3.403110.ebuild new file mode 100644 index 0000000..02bfe11 --- /dev/null +++ b/dev-lang/vtune/vtune-15.3.403110.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +INTEL_DPN=parallel_studio_xe +INTEL_DID=7538 +INTEL_DPV=2015_update3 +INTEL_SUBDIR=composerxe +INTEL_SINGLE_ARCH=false +INTEL_SDP_DIR=opt/intel/ + +inherit intel-sdp multilib + +DESCRIPTION="Intel VTune Amplifier XE" +HOMEPAGE="http://software.intel.com/en-us/articles/intel-vtune-amplifier-xe/" + +IUSE="" +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux" + +INTEL_BIN_RPMS=( + vtune-amplifier-xe-2015-cli + vtune-amplifier-xe-2015-gui + ) +INTEL_AMD64_RPMS=( + vtune-amplifier-xe-2015-collector-64linux + ) +INTEL_X86_RPMS=( + vtune-amplifier-xe-2015-collector-32linux + ) +INTEL_DAT_RPMS=( + vtune-amplifier-xe-2015-cli-common + vtune-amplifier-xe-2015-common + vtune-amplifier-xe-2015-common-pset + vtune-amplifier-xe-2015-doc + vtune-amplifier-xe-2015-gui-common + vtune-amplifier-xe-2015-sep + ) + +src_install() { + intel-sdp_src_install + + cat >> "${T}"/50vtune <<- EOF + PATH=${INTEL_SDP_EDIR}/bin64:${INTEL_SDP_EDIR}/bin32 + EOF + doenvd "${T}"/50vtune + + make_desktop_entry amplxe-gui "VTune Amplifier XE" "" "Development;Debugger" +}