From: "demize" <demize@unstable.systems>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-mathematics/rstudio-desktop-bin/
Date: Wed, 05 Mar 2025 13:56:17 +0000 (UTC) [thread overview]
Message-ID: <1741182946.ad336408f2ea60ed731dc8f5f7a52cc9a63819ea.demize@gentoo> (raw)
commit: ad336408f2ea60ed731dc8f5f7a52cc9a63819ea
Author: demize <demize <AT> unstable <DOT> systems>
AuthorDate: Wed Mar 5 13:54:42 2025 +0000
Commit: demize <demize <AT> unstable <DOT> systems>
CommitDate: Wed Mar 5 13:55:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad336408
sci-mathematics/rstudio-desktop-bin: add missing RDEPEND, update QA_PREBUILT
Closes: https://bugs.gentoo.org/950642
Closes: https://bugs.gentoo.org/950643
Closes: https://bugs.gentoo.org/950644
Signed-off-by: demize <demize <AT> unstable.systems>
.../rstudio-desktop-bin-2024.12.0_p467-r1.ebuild | 124 +++++++++++++++++++++
1 file changed, 124 insertions(+)
diff --git a/sci-mathematics/rstudio-desktop-bin/rstudio-desktop-bin-2024.12.0_p467-r1.ebuild b/sci-mathematics/rstudio-desktop-bin/rstudio-desktop-bin-2024.12.0_p467-r1.ebuild
new file mode 100644
index 000000000..debc3593a
--- /dev/null
+++ b/sci-mathematics/rstudio-desktop-bin/rstudio-desktop-bin-2024.12.0_p467-r1.ebuild
@@ -0,0 +1,124 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN/-desktop-bin/}"
+
+CHROMIUM_LANGS="
+ af am ar bg bn ca cs da de el en-GB en-US es-419 es et fa fi fil fr gu he hi
+ hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv
+ sw ta te th tr uk ur vi zh-CN zh-TW
+"
+
+inherit chromium-2 linux-info optfeature rpm xdg
+
+DESCRIPTION="IDE for R and Python"
+HOMEPAGE="https://posit.co"
+SRC_URI="https://download1.rstudio.org/electron/rhel8/x86_64/${MY_PN}-${PV/_p/-}-x86_64.rpm"
+
+S="${WORKDIR}/usr/lib/${MY_PN}"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+RESTRICT="bindist mirror strip test"
+
+RDEPEND="
+ >=app-accessibility/at-spi2-core-2.46.0:2
+ app-crypt/libsecret
+ app-misc/jq
+ dev-db/postgresql
+ dev-db/sqlite
+ dev-cpp/yaml-cpp
+ dev-lang/R
+ dev-libs/boost[context(+)]
+ dev-libs/expat
+ dev-libs/glib:2
+ dev-libs/mathjax
+ dev-libs/nspr
+ dev-libs/nss
+ || (
+ dev-libs/openssl-compat:1.1.1
+ =dev-libs/openssl-1.1.1*
+ )
+ media-libs/alsa-lib
+ media-libs/fontconfig
+ media-libs/mesa[gbm(+)]
+ net-misc/curl
+ net-print/cups
+ sys-apps/dbus
+ sys-apps/util-linux
+ sys-libs/glibc
+ sys-libs/zlib
+ x11-libs/cairo
+ x11-libs/libdrm
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:3
+ x11-libs/libX11
+ x11-libs/libXScrnSaver
+ x11-libs/libXcomposite
+ x11-libs/libXdamage
+ x11-libs/libXext
+ x11-libs/libXfixes
+ x11-libs/libXrandr
+ x11-libs/libxcb
+ x11-libs/libxkbcommon
+ x11-libs/libxshmfence
+ x11-libs/pango
+ =virtual/jdk-11*:*
+"
+
+DESTDIR="/opt/${MY_PN}"
+
+# the app bundles a -lot- of prebuilt resources
+QA_PREBUILT="*"
+
+CONFIG_CHECK="~USER_NS"
+
+src_configure() {
+ default
+ chromium_suid_sandbox_check_kernel_config
+}
+
+src_prepare() {
+ default
+ pushd "locales/" >/dev/null || die "location change for language cleanup failed"
+ chromium_remove_language_paks
+ popd >/dev/null || die "location reset for language cleanup failed"
+ # fix .desktop exec location
+ sed -i "/Exec/s:/usr/lib/rstudio/rstudio:${DESTDIR}/${MY_PN}:" \
+ "${WORKDIR}/usr/share/applications/${MY_PN}.desktop" ||
+ die "fixing of exec location on .desktop failed"
+}
+
+src_install() {
+ insinto "/usr"
+ doins -r "${WORKDIR}/usr/share"
+
+ exeinto "${DESTDIR}"
+
+ doexe "${MY_PN}" chrome-sandbox chrome_crashpad_handler
+ doexe "${MY_PN}" libEGL.so libGLESv2.so libffmpeg.so libvk_swiftshader.so libvulkan.so.1
+
+ insinto "${DESTDIR}"
+ doins chrome_100_percent.pak chrome_200_percent.pak icudtl.dat resources.pak
+ doins snapshot_blob.bin v8_context_snapshot.bin vk_swiftshader_icd.json
+ insopts -m0755
+ doins -r locales resources
+
+ # Chrome-sandbox requires the setuid bit to be specifically set.
+ # see https://github.com/electron/electron/issues/17972
+ fowners root "${DESTDIR}/chrome-sandbox"
+ fperms 4711 "${DESTDIR}/chrome-sandbox"
+
+ dosym "${DESTDIR}/${MY_PN}" "/usr/bin/${MY_PN}"
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ optfeature "sound support" \
+ media-sound/pulseaudio media-sound/apulse[sdk] media-video/pipewire
+ optfeature "system tray support" dev-libs/libappindicator
+}
next reply other threads:[~2025-03-05 13:56 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-05 13:56 demize [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-10 17:55 [gentoo-commits] repo/proj/guru:dev commit in: sci-mathematics/rstudio-desktop-bin/ Michael Egger
2023-10-29 15:59 Mazunki Hoksaas
2023-09-30 13:28 Mazunki Hoksaas
2023-09-15 8:20 Mazunki Hoksaas
2023-01-11 21:52 Joe Kappus
2023-01-11 8:19 Joe Kappus
2023-01-11 8:07 Joe Kappus
2023-01-11 7:14 Joe Kappus
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1741182946.ad336408f2ea60ed731dc8f5f7a52cc9a63819ea.demize@gentoo \
--to=demize@unstable.systems \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox