Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/ifc/
Date: Tue, 05 May 2020 06:30:49
Message-Id: 1588658685.a59a74dc85efffa65ac15d8f39a24e0dd37db58f.tamiko@gentoo
1 commit: a59a74dc85efffa65ac15d8f39a24e0dd37db58f
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 05:03:51 2020 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 06:04:45 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a59a74dc
7
8 dev-lang/ifc: version bump to 2020 update 1
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 dev-lang/ifc/ifc-19.1.1.217.ebuild | 43 ++++++++++++++++++++++++++++++++++++++
14 1 file changed, 43 insertions(+)
15
16 diff --git a/dev-lang/ifc/ifc-19.1.1.217.ebuild b/dev-lang/ifc/ifc-19.1.1.217.ebuild
17 new file mode 100644
18 index 000000000..4157a3eec
19 --- /dev/null
20 +++ b/dev-lang/ifc/ifc-19.1.1.217.ebuild
21 @@ -0,0 +1,43 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +INTEL_DIST_PV=2020_update1_professional_edition
28 +
29 +inherit intel-sdp-r1
30 +
31 +DESCRIPTION="Intel FORTRAN Compiler"
32 +HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/"
33 +
34 +IUSE="doc"
35 +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
36 +
37 +RDEPEND="~dev-libs/intel-common-${PV}[compiler]"
38 +
39 +MY_PV="$(ver_rs 3 '-')" # 20.1.0-607630
40 +
41 +QA_PREBUILT="*"
42 +
43 +CHECKREQS_DISK_BUILD=400M
44 +
45 +INTEL_DIST_DAT_RPMS=( "ifort-common-${MY_PV}-${MY_PV}.noarch.rpm" )
46 +INTEL_DIST_AMD64_RPMS=( "ifort-${MY_PV}-${MY_PV}.x86_64.rpm" )
47 +INTEL_DIST_X86_RPMS=( "ifort-32bit-${MY_PV}-${MY_PV}.x86_64.rpm" )
48 +
49 +pkg_setup() {
50 + if use doc; then
51 + INTEL_DIST_DAT_RPMS+=( "ifort-doc-19.1-${MY_PV}.noarch.rpm" )
52 + fi
53 +}
54 +
55 +src_install() {
56 + # already provided in dev-libs/intel-common
57 + rm \
58 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2020.1.217/linux/compiler/include/omp_lib.f90 \
59 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2020.1.217/linux/compiler/include/intel64/omp_lib.mod \
60 + "${WORKDIR}"/opt/intel/compilers_and_libraries_2020.1.217/linux/compiler/include/intel64/omp_lib_kinds.mod \
61 + || die "rm failed"
62 +
63 + intel-sdp-r1_src_install
64 +}