2025.09.2.418

This commit is contained in:
xiota 2025-11-01 00:51:22 +00:00
parent 149b746cb1
commit 86e00f25d6
2 changed files with 9 additions and 13 deletions

View file

@ -1,7 +1,7 @@
pkgbase = rstudio-desktop
pkgdesc = A powerful and productive integrated development environment (IDE) for R programming language
pkgver = 2025.09.1.401
pkgrel = 2
pkgver = 2025.09.2.418
pkgrel = 1
url = https://github.com/rstudio/rstudio
arch = x86_64
license = AGPL-3.0-only
@ -47,7 +47,7 @@ pkgbase = rstudio-desktop
options = !emptydirs
options = !debug
options = !strip
source = rstudio-2025.09.1.401-20de356.tar.gz::https://github.com/rstudio/rstudio/archive/20de356561bd58a6d88927cce948bd076d06e4ca.tar.gz
source = rstudio-2025.09.2.418-12f6d5e.tar.gz::https://github.com/rstudio/rstudio/archive/12f6d5e22720bd78dbd926bb344efe12d0dce83d.tar.gz
source = quarto::git+https://github.com/quarto-dev/quarto.git#branch=release/rstudio-cranberry-hibiscus
source = 0001-steady_timer.patch
source = https://rstudio-buildtools.s3.us-east-1.amazonaws.com/gwt/gwt-2.12.2.tar.gz

View file

@ -18,12 +18,12 @@
# dependencies/common/install-copilot-language-server
: ${_copilot_version:=1.381.0}
: ${_commit:=20de356561bd58a6d88927cce948bd076d06e4ca}
: ${_commit:=12f6d5e22720bd78dbd926bb344efe12d0dce83d}
_pkgname="rstudio-desktop"
pkgname="$_pkgname"
pkgver=2025.09.1.401
pkgrel=2
pkgver=2025.09.2.418
pkgrel=1
pkgdesc="A powerful and productive integrated development environment (IDE) for R programming language"
url="https://github.com/rstudio/rstudio"
license=('AGPL-3.0-only')
@ -233,7 +233,9 @@ build() (
export CMAKE_POLICY_VERSION_MINIMUM=3.5
_nvm_env
_run_if_exists _build_soci
echo "Building soci..."
_build_soci
# Quarto set up
if (pacman -Q quarto > /dev/null 2> /dev/null); then
@ -347,9 +349,3 @@ export ELECTRON_FORCE_IS_PACKAGED
exec /usr/lib/rstudio/rstudio "\${flags[@]}" "\$@"
END
}
_run_if_exists() {
if declare -F "$1" > /dev/null; then
eval "$1"
fi
}