@Pippip19,
Did you mean rstudio-desktop-bin
package is installed on your machine?
If yes, please refer https://aur.archlinux.org/packages/rstudio-desktop-bin
Git Clone URL: | https://aur.archlinux.org/rstudio-desktop.git (read-only, click to copy) |
---|---|
Package Base: | rstudio-desktop |
Description: | A powerful and productive integrated development environment (IDE) for R programming language |
Upstream URL: | https://github.com/rstudio/rstudio |
Licenses: | AGPL-3.0-only |
Conflicts: | rstudio-desktop |
Provides: | rstudio-desktop |
Submitter: | None |
Maintainer: | xiota |
Last Packager: | xiota |
Votes: | 73 |
Popularity: | 0.052003 |
First Submitted: | 2011-03-04 15:02 (UTC) |
Last Updated: | 2024-11-11 05:37 (UTC) |
« First ‹ Previous 1 .. 9 10 11 12 13 14 15 16 17 18 19 .. 29 Next › Last »
@Pippip19,
Did you mean rstudio-desktop-bin
package is installed on your machine?
If yes, please refer https://aur.archlinux.org/packages/rstudio-desktop-bin
I am still not seeing panes launching rstudio-bin, even with the solution proposed by @flying-sheep. Any suggestions?
Regarding to experiments with building quarto-cli
from source.
I've managed to create PKGBUILD. Unfortunately, current pandoc version in arch repo is outdated (2.14.2), whereas quarto requires 2.17 for correct work (version is available as pandoc-bin
in AUR, though). Effectively this means that quarto can't be built totally without binary dependencies (at least, until community/pandoc
becomes up to date).
To whom it might be interesting. As my PKGBUILD uses third-party binaries (pandoc), I assume it's not good enough to upload it to AUR, so I've pushed it to my repo here: https://github.com/trap000d/aur/tree/master/quarto-cli
Build logic is slightly changed due to changes in upstream. As they've introduced new project format (quarto), it contradicted with standard Arch package base. In brief, quarto contains pandoc as part of itself, so it's pretty hard to keep together system pandoc and embedded quarto.
So I've "resolved" it such way: if there is "quarto*" package installed, then rstudio-desktop will pick it up and use. Otherwise (not installed), quarto support in rstudio will be disabled.
'quarto' is added as optional dependency.
Keep calm and wait for updates. there are 2 problems with package so far.
Upstream URL just has been changed back to "standard" with leading 'v'
Quarto. Rstudio build depends on it. If I download it the same way as e.g. GWT, everything builds successfully, but quarto binary can't be included into package (conflict files with quarto-cli-bin). Effectively, quarto projects will not be supported, unless user installs quarto separately. So, I assume the best would be to add quarto/quarto-cli-bin as optional dependency.
Please give me a day or two for further tests.
It was about the binary, thank you very much for the quick update.
@Alad, Hmm. Rstudio upstream developers have added quarto as dependency to the new version, so I had to pick it somewhere for satisfying them. Are you more concerning of 'quarto' or 'binary'?
UPD: I've managed to include quarto into build tree the same way as GWT and node. Build process seems going OK.
Why is this depending on a binary packaged version quarto-cli-bin
?
Hi, Did anybody have issues with build? One user has reported that git apply doesn't applying patches. == After some manual tinkering with makepkg I realized that git apply actually just skips both patch files because it searches for them from the root of the git repo instead of the current working directory == I've tested build on two Arch computers - everything seems OK. If nobody else complains for current release I'll change 'git apply' ==> 'patch -p1' with next major Rstudio release.
I meet this problem.
rstudio-desktop git:(master) $ cd src/rstudio-2021.09.1-372/src/gwt/
$gwt git:(master) $ ls
acesupport ant build.xml CMakeLists.txt gwt.iml gwt-unit-tests.sh.in lib panmirror RStudio.launch src test tools www
gwt git:(master) $ grep 14 build.xml
gwt git:(master) $ grep 10 build.xml
<property name="node.version" value="10.19.0"/>
The PKGBUILD file after I modify.
Hi,
Did anybody have issues with build? One user has reported that git apply
doesn't applying patches.
==
After some manual tinkering with makepkg I realized that git apply actually just skips both patch files because it searches for them from the root of the git repo instead of the current working directory
==
I've tested build on two Arch computers - everything seems OK. If nobody else complains for current release I'll change 'git apply' ==> 'patch -p1' with next major Rstudio release.
Pinned Comments
trap000d commented on 2024-05-16 21:42 (UTC) (edited on 2024-05-28 20:09 (UTC) by trap000d)
A note for users.
This package is quite complex. It MAY not be built because of OTHER issues. I always build, install and test it on at least two different machines. Only after that I would push a new version to AUR.
Please try some generic solutions before reporting of build problems:
1) Update all other packages (sudo pacman -Syu),
2) Clean up yay and/or makepkg caches ('yay -Sc', 'rm -rf /var/tmp/makepkg'),
3) Be sure you've got enough RAM (8 GB or more is highly recommended) and space on disk (at least 3 GB).
4) Is your Internet connection is stable, fast and not blocked somewhere?
trap000d commented on 2022-07-05 20:32 (UTC) (edited on 2022-10-03 06:28 (UTC) by trap000d)
PLEASE READ THIS MESSAGE BEFORE COMPLAINING FOR LIBBOOST
When boost is updated to a new version and you see an error message about missing libboost*.so, you will need to rebuild and reinstall the rstudio-desktop package.
trap000d commented on 2022-02-19 06:20 (UTC) (edited on 2022-02-19 06:21 (UTC) by trap000d)
Build logic is slightly changed due to changes in upstream. As they've introduced new project format (quarto), it contradicted with standard Arch package base. In brief, quarto contains pandoc as part of itself, so it's pretty hard to keep together system pandoc and embedded quarto.
So I've "resolved" it such way: if there is "quarto*" package installed, then rstudio-desktop will pick it up and use. Otherwise (not installed), quarto support in rstudio will be disabled.
'quarto' is added as optional dependency.