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