Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clion/
Date: Fri, 18 Oct 2019 05:26:00
Message-Id: 1571376334.0ccfd04651a72a7e9cf32076b671ab1df8932705.juippis@gentoo
1 commit: 0ccfd04651a72a7e9cf32076b671ab1df8932705
2 Author: Christian Strahl <c.a.strahl <AT> gmail <DOT> com>
3 AuthorDate: Sun Oct 13 12:46:47 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 18 05:25:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ccfd046
7
8 dev-util/clion: version bump to 2019.2.4
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Christian Strahl <c.a.strahl <AT> gmail.com>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-util/clion/Manifest | 1 +
15 dev-util/clion/clion-2019.2.4.ebuild | 80 ++++++++++++++++++++++++++++++++++++
16 2 files changed, 81 insertions(+)
17
18 diff --git a/dev-util/clion/Manifest b/dev-util/clion/Manifest
19 index 884263a7b6c..877bc690892 100644
20 --- a/dev-util/clion/Manifest
21 +++ b/dev-util/clion/Manifest
22 @@ -1 +1,2 @@
23 DIST clion-2019.2.3.tar.gz 495323742 BLAKE2B b4747a4805ec7d8776e3c52c4f94a2d12c1156eff9c0a65e5e275bed269f472d3e8d410e2ef41b2e1504408cf7dfe3f2b8ccee06c5cdba4c8664ad5e7a1873fd SHA512 34599a92b9522cbc6bee6505a26d24b9d4ac727100b2b30414199ac3ec03f73d81c5811f66b35ad51e846eb6fcf66651c522207bb5f471adbf5c5e25d5e7d7d5
24 +DIST clion-2019.2.4.tar.gz 495317026 BLAKE2B 24e2dfbd9253b1b2bf70f8259ee09c6439d5623c12c78a7af60a9bdf00cdb48c7d2967150b5dca98c588b91573f2928288dbb57416b6fe397e3f7ea4b4d7bc23 SHA512 fbac7c3f6ea8b7f38031ad9a46dfd918683d66c317cca954d5f0f3b729040e23ac2ac1ea611bd6eff4c41ea3f03816ec95c4786475ab6f49dcf9b3d612d6c067
25
26 diff --git a/dev-util/clion/clion-2019.2.4.ebuild b/dev-util/clion/clion-2019.2.4.ebuild
27 new file mode 100644
28 index 00000000000..fbe93d313de
29 --- /dev/null
30 +++ b/dev-util/clion/clion-2019.2.4.ebuild
31 @@ -0,0 +1,80 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit desktop eutils
38 +
39 +DESCRIPTION="A complete toolset for C and C++ development"
40 +HOMEPAGE="https://www.jetbrains.com/clion"
41 +SRC_URI="https://download.jetbrains.com/cpp/CLion-${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="|| ( IDEA IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )
44 + Apache-1.1 Apache-2.0 BSD BSD-2 CC0-1.0 CDDL-1.1 CPL-0.5 CPL-1.0
45 + EPL-1.0 EPL-2.0 GPL-2 GPL-2-with-classpath-exception GPL-3 ISC JDOM
46 + LGPL-2.1+ LGPL-3 MIT MPL-1.0 MPL-1.1 OFL public-domain PSF-2 UoI-NCSA ZLIB"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +RESTRICT="bindist mirror splitdebug"
50 +IUSE="custom-jdk"
51 +
52 +# RDEPENDS may cause false positives in repoman.
53 +# clion requires cmake and gdb at runtime to build and debug C/C++ projects
54 +RDEPEND="
55 + dev-util/cmake
56 + sys-devel/gdb
57 + !custom-jdk? ( virtual/jdk )"
58 +
59 +QA_PREBUILT="opt/${P}/*"
60 +
61 +src_prepare() {
62 + default
63 +
64 + local remove_me=(
65 + bin/gdb/linux
66 + bin/lldb/linux
67 + bin/cmake
68 + license/CMake*
69 + lib/pty4j-native/linux/ppc64le
70 + )
71 +
72 + use amd64 || remove_me+=( bin/fsnotifier64 lib/pty4j-native/linux/x86_64)
73 + use arm || remove_me+=( bin/fsnotifier-arm )
74 + use x86 || remove_me+=( bin/fsnotifier lib/pty4j-native/linux/x86)
75 +
76 + use custom-jdk || remove_me+=( jbr )
77 +
78 + rm -rv "${remove_me[@]}" || die
79 +}
80 +
81 +src_install() {
82 + local dir="/opt/${P}"
83 +
84 + insinto "${dir}"
85 + doins -r *
86 + fperms 755 "${dir}"/bin/{clion.sh,clang/linux/clang{d,-tidy}}
87 +
88 + if use amd64; then
89 + fperms 755 "${dir}"/bin/fsnotifier64
90 + fi
91 + if use arm; then
92 + fperms 755 "${dir}"/bin/fsnotifier-arm
93 + fi
94 + if use x86; then
95 + fperms 755 "${dir}"/bin/fsnotifier
96 + fi
97 +
98 + if use custom-jdk; then
99 + if [[ -d jbr ]]; then
100 + fperms 755 "${dir}"/jbr/bin/{jaotc,java,javac,jdb,jjs,jrunscript,keytool,pack200,rmid,rmiregistry,serialver,unpack200}
101 + fi
102 + fi
103 +
104 + make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
105 + newicon "bin/${PN}.svg" "${PN}.svg"
106 + make_desktop_entry "${PN}" "clion" "${PN}" "Development;IDE;"
107 +
108 + # recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
109 + dodir /usr/lib/sysctl.d/
110 + echo "fs.inotify.max_user_watches = 524288" > "${D}/usr/lib/sysctl.d/30-clion-inotify-watches.conf" || die
111 +}