@neiesc Thanks for the heads up. I thought I saw something fishy when the package got updated. I fixed it temporarily (until next linux release).
Search Criteria
Package Details: vscodium-bin 1.101.03933-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/vscodium-bin.git (read-only, click to copy) |
---|---|
Package Base: | vscodium-bin |
Description: | Binary releases of VS Code without MS branding/telemetry/licensing. |
Upstream URL: | https://github.com/VSCodium/vscodium |
Licenses: | MIT |
Conflicts: | vscodium |
Provides: | codium, vscode, vscodium |
Submitter: | ckatri |
Maintainer: | sperg512 (Icelk) |
Last Packager: | Icelk |
Votes: | 337 |
Popularity: | 8.54 |
First Submitted: | 2020-09-23 18:58 (UTC) |
Last Updated: | 2025-06-12 22:01 (UTC) |
Dependencies (14)
- alsa-lib
- bash (bash-devel-gitAUR, bash-gitAUR)
- cairo (cairo-gitAUR)
- fontconfig (fontconfig-gitAUR, fontconfig-ubuntuAUR)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc-libs-snapshotAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- libnotify (libnotify-gitAUR)
- libxss
- libxtst
- nss (nss-hgAUR)
- python (python37AUR)
- gvfs (gvfs-gitAUR) (optional) – For move to trash functionality
- libdbusmenu-glib (optional) – For KDE global menu
Required by (7)
- caelestia-meta (requires vscode) (optional)
- vscode-xdg-patch-hook (requires vscode) (optional)
- vscodium-bin-features
- vscodium-bin-marketplace
- vscodium-features (requires vscodium)
- vscodium-marketplace (requires vscodium)
- vscodium-prod-patcher (requires vscodium)
Sources (7)
- https://github.com/VSCodium/vscodium/releases/download/1.101.03933/VSCodium-linux-arm64-1.101.03933.tar.gz
- https://github.com/VSCodium/vscodium/releases/download/1.101.03933/VSCodium-linux-x64-1.101.03933.tar.gz
- vscodium-bin-url-handler.desktop
- vscodium-bin-wayland.desktop
- vscodium-bin.desktop
- vscodium-bin.install
- vscodium-bin.sh
Latest Comments
« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 19 20 .. 27 Next › Last »
Icelk commented on 2022-08-16 18:08 (UTC)
neiesc commented on 2022-08-16 18:01 (UTC) (edited on 2022-08-16 18:03 (UTC) by neiesc)
curl: (22) The requested URL returned error: 404
==> ERROR: Failure while downloading https://github.com/VSCodium/vscodium/releases/download/1.70.1.22228/VSCodium-linux-x64-1.70.1.22228.tar.gz
Aborting...
-> error making: vscodium-bin
in https://github.com/VSCodium/vscodium/releases/tag/1.70.1.22228 don't exists bin for linux only macOs or Windows
15:10 GMT: For package managers, please don't use that version yet. An update will be provided soon. Thx
17:00 GMT: Launching workflows for macOS and Windows.
exploder-jimmy commented on 2022-08-11 19:16 (UTC)
@Icelk, Thanks.
Icelk commented on 2022-08-10 14:38 (UTC)
@exploder-jimmy Thanks. This is now implemented!
exploder-jimmy commented on 2022-08-06 19:21 (UTC) (edited on 2022-08-06 19:32 (UTC) by exploder-jimmy)
Please apply this patch to fix globs:
diff --git a/PKGBUILD b/PKGBUILD
index 8eb32b1..67856c2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
pkgname=vscodium-bin
_pkgname=VSCodium
pkgver=1.70.0
-pkgrel=1
+pkgrel=2
pkgdesc="Binary releases of VS Code without MS branding/telemetry/licensing."
arch=('x86_64' 'aarch64')
url="https://github.com/VSCodium/vscodium"
@@ -39,7 +39,7 @@ package() {
install -d -m755 ${pkgdir}/opt/${pkgname}
install -d -m755 ${pkgdir}/usr/bin
install -d -m755 ${pkgdir}/usr/share/{applications,pixmaps}
- cp -r ${srcdir}/!(vscodium-bin.desktop|${pkgname}-${pkgver}.tar.gz) ${pkgdir}/opt/${pkgname}
+ cp -r ${srcdir}/!(vscodium-bin?(-uri-handler).desktop|${_pkgname}-linux-@(x|arm)64-${pkgver}.tar.gz) ${pkgdir}/opt/${pkgname}
ln -s /opt/${pkgname}/bin/codium ${pkgdir}/usr/bin/codium
ln -s /opt/${pkgname}/bin/codium ${pkgdir}/usr/bin/vscodium
install -D -m644 ${srcdir}/vscodium-bin.desktop ${pkgdir}/usr/share/applications/codium.desktop
And this to install codium shell completions:
diff --git a/PKGBUILD b/PKGBUILD
index 67856c2..4378c04 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
pkgname=vscodium-bin
_pkgname=VSCodium
pkgver=1.70.0
-pkgrel=2
+pkgrel=3
pkgdesc="Binary releases of VS Code without MS branding/telemetry/licensing."
arch=('x86_64' 'aarch64')
url="https://github.com/VSCodium/vscodium"
@@ -46,4 +46,10 @@ package() {
install -D -m644 ${srcdir}/vscodium-bin-uri-handler.desktop ${pkgdir}/usr/share/applications/codium-uri-handler.desktop
install -D -m644 ${srcdir}/resources/app/resources/linux/code.png \
${pkgdir}/usr/share/pixmaps/vscodium.png
+
+ # Symlink shell completions
+ install -d -m755 ${pkgdir}/usr/share/zsh/site-functions
+ install -d -m755 ${pkgdir}/usr/share/bash-completion/completions
+ ln -s /opt/${pkgname}/resources/completions/zsh/_codium ${pkgdir}/usr/share/zsh/site-functions
+ ln -s /opt/${pkgname}/resources/completions/bash/codium ${pkgdir}/usr/share/bash-completion/completions
}
Icelk commented on 2022-08-02 10:58 (UTC)
@Ashark The issue was resolved. Thanks for bringing it to my attention! And sorry for the delay.
Ashark commented on 2022-07-05 23:23 (UTC)
Can you please add vscode to provides array? See https://wiki.archlinux.org/title/Talk:Visual_Studio_Code#Provides_array_for_flavor_packages
jplatte commented on 2022-04-01 12:20 (UTC)
1.66.0-1 seems to have broken wayland support via --ozone-platform=wayland (not sure whether --enable-features=UseOzonePlatform was still required for this one). Does somebody know what broke it?
sperg512 commented on 2022-02-10 23:12 (UTC)
Another reminder that unless the package isn't updated for several hours, or something needs fixed in the PKGBUILD, then you do not need to flag this OOD
Pinned Comments
sperg512 commented on 2021-05-12 00:31 (UTC) (edited on 2024-06-04 15:14 (UTC) by sperg512)
@Icelk set up a script that checks for new releases and pushes updates if there are any new ones. I believe it runs every hour so there's no need to flag OOD, unless there's something that needs changed with the PKGBUILD.