Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clion/
Date: Fri, 28 Jan 2022 08:36:52
Message-Id: 1643358935.830bbc9ea89c75993c45e36ecaafeea56ee76a3d.sam@gentoo
1 commit: 830bbc9ea89c75993c45e36ecaafeea56ee76a3d
2 Author: Christian Strahl <c.a.strahl <AT> gmail <DOT> com>
3 AuthorDate: Thu Jan 27 18:27:01 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 08:35:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=830bbc9e
7
8 dev-util/clion: version bump to 2021.3.2
9
10 Package-Manager: Portage-3.0.30-r1, Repoman-3.0.3-r1
11 Signed-off-by: Christian Strahl <c.a.strahl <AT> gmail.com>
12
13 Closes: https://bugs.gentoo.org/829906
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 dev-util/clion/Manifest | 1 +
17 dev-util/clion/clion-2021.3.2.ebuild | 106 +++++++++++++++++++++++++++++++++++
18 2 files changed, 107 insertions(+)
19
20 diff --git a/dev-util/clion/Manifest b/dev-util/clion/Manifest
21 index 12e379e02510..7e2ff321d84f 100644
22 --- a/dev-util/clion/Manifest
23 +++ b/dev-util/clion/Manifest
24 @@ -1 +1,2 @@
25 +DIST CLion-2021.3.2.tar.gz 747081798 BLAKE2B 68be520b06e2d59d3a240b03e8e64cdd0a96e96022fc72fd531813fe0d417055b58d36a6a5a0360e3121cbb111ccdecf96b25778e2368fb21b92f404013a4604 SHA512 6c965c745588e49fcb3c2ecadcca38817884bd3f830d6b5f1042a6edff5687419fc2375bb41063c808c894588c371d2a860a75ceed86a187eec7fd9fce380678
26 DIST CLion-2021.3.tar.gz 741453727 BLAKE2B 0bcc79df3180256732523df6acf34f7eecbd08f87427f41796ebef342d71d4a0643770fd8e08c25dbd7e96360e72806f7fe1b57a199cc7fd53ad34cb85ff1d74 SHA512 d4b9f8b8cf8f218c45a568498630216f55540b2094ec7fe2a36f04478ff713c34dc7431da3824da44c61ae999b475a4ae7d4c7c9c7e02d0ca0ab6520ecf8cedb
27
28 diff --git a/dev-util/clion/clion-2021.3.2.ebuild b/dev-util/clion/clion-2021.3.2.ebuild
29 new file mode 100644
30 index 000000000000..93132025c95b
31 --- /dev/null
32 +++ b/dev-util/clion/clion-2021.3.2.ebuild
33 @@ -0,0 +1,106 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +inherit desktop wrapper
40 +
41 +DESCRIPTION="A complete toolset for C and C++ development"
42 +HOMEPAGE="https://www.jetbrains.com/clion"
43 +SRC_URI="https://download.jetbrains.com/cpp/CLion-${PV}.tar.gz"
44 +
45 +LICENSE="|| ( IDEA IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )
46 + Apache-1.1 Apache-2.0 BSD BSD-2 CC0-1.0 CDDL-1.1 CPL-0.5 CPL-1.0
47 + EPL-1.0 EPL-2.0 GPL-2 GPL-2-with-classpath-exception GPL-3 ISC JDOM
48 + LGPL-2.1+ LGPL-3 MIT MPL-1.0 MPL-1.1 OFL public-domain PSF-2 UoI-NCSA ZLIB"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +RESTRICT="bindist mirror splitdebug"
52 +
53 +BDEPEND="dev-util/patchelf"
54 +
55 +# RDEPENDS may cause false positives in repoman.
56 +# clion requires cmake and gdb at runtime to build and debug C/C++ projects
57 +RDEPEND="
58 + app-accessibility/at-spi2-atk:2
59 + app-accessibility/at-spi2-core:2
60 + dev-libs/atk
61 + dev-libs/expat
62 + dev-libs/glib:2
63 + dev-libs/nspr
64 + dev-libs/nss
65 + dev-util/cmake
66 + dev-util/ninja
67 + media-libs/alsa-lib
68 + media-libs/freetype:2
69 + media-libs/mesa
70 + net-print/cups
71 + sys-apps/dbus
72 + sys-devel/gdb
73 + sys-libs/zlib
74 + x11-libs/libX11
75 + x11-libs/libXcomposite
76 + x11-libs/libXcursor
77 + x11-libs/libXdamage
78 + x11-libs/libXext
79 + x11-libs/libXfixes
80 + x11-libs/libXi
81 + x11-libs/libXrandr
82 + x11-libs/libXtst
83 + x11-libs/libXxf86vm
84 + x11-libs/libdrm
85 + x11-libs/libxcb
86 + x11-libs/libxkbcommon
87 + x11-libs/libxshmfence"
88 +
89 +QA_PREBUILT="opt/${P}/*"
90 +
91 +src_prepare() {
92 + default
93 +
94 + local remove_me=(
95 + bin/cmake
96 + bin/lldb/linux
97 + bin/gdb/linux
98 + license/CMake*
99 + lib/pty4j-native/linux/aarch64
100 + lib/pty4j-native/linux/arm
101 + lib/pty4j-native/linux/mips64el
102 + lib/pty4j-native/linux/ppc64le
103 + plugins/remote-dev-server/selfcontained
104 + )
105 +
106 + use amd64 || remove_me+=( lib/pty4j-native/linux/x86_64)
107 + use x86 || remove_me+=( lib/pty4j-native/linux/x86)
108 +
109 + rm -rv "${remove_me[@]}" || die
110 +
111 + for file in "jbr/lib/"/{libjcef.so,jcef_helper}
112 + do
113 + if [[ -f "${file}" ]]; then
114 + patchelf --set-rpath '$ORIGIN' ${file} || die
115 + fi
116 + done
117 +}
118 +
119 +src_install() {
120 + local dir="/opt/${P}"
121 +
122 + insinto "${dir}"
123 + doins -r *
124 + fperms 755 "${dir}"/bin/{clion.sh,fsnotifier,inspect.sh,ltedit.sh,repair,clang/linux/{clangd,clang-tidy,clazy-standalone,llvm-symbolizer},ninja/linux/ninja}
125 +
126 + if [[ -d jbr ]]; then
127 + fperms 755 "${dir}"/jbr/bin/{jaotc,java,javac,jdb,jjs,jrunscript,keytool,pack200,rmid,rmiregistry,serialver,unpack200}
128 + # Fix #763582
129 + fperms 755 "${dir}"/jbr/lib/{chrome-sandbox,jcef_helper,jexec,jspawnhelper}
130 + fi
131 +
132 + make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
133 + newicon "bin/${PN}.svg" "${PN}.svg"
134 + make_desktop_entry "${PN}" "clion" "${PN}" "Development;IDE;"
135 +
136 + # recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
137 + dodir /usr/lib/sysctl.d/
138 + echo "fs.inotify.max_user_watches = 524288" > "${D}/usr/lib/sysctl.d/30-clion-inotify-watches.conf" || die
139 +}