Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: vscodium-bin-1.33.0
Date: Thu, 17 Oct 2019 08:30:52 +0200	[thread overview]
Message-ID: <20191017063052.1V_ho29HbRIGMEz3aGlw6Al4TxeCX7Yb4sTlMe2CB2E@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-10640@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 342 bytes --]

There is an updated pull request by shizonic against master on the void-packages repository

https://github.com/shizonic/void-packages vscodium-bin
https://github.com/void-linux/void-packages/pull/10640

New package: vscodium-bin-1.33.0
Closes #10582

A patch file from https://github.com/void-linux/void-packages/pull/10640.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-vscodium-bin-10640.patch --]
[-- Type: text/x-diff, Size: 4541 bytes --]

From 3323abb2598ea51b566ec2f49cffba27e0ff4f39 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Sat, 12 Oct 2019 10:20:33 +0200
Subject: [PATCH 1/2] New package: vscodium-bin-1.39.1

---
 common/shlibs                               |  1 +
 srcpkgs/vscodium-bin/REMOVE                 |  9 ++++++
 srcpkgs/vscodium-bin/files/vscodium.desktop | 18 +++++++++++
 srcpkgs/vscodium-bin/template               | 33 +++++++++++++++++++++
 4 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/vscodium-bin/REMOVE
 create mode 100644 srcpkgs/vscodium-bin/files/vscodium.desktop
 create mode 100644 srcpkgs/vscodium-bin/template

diff --git a/common/shlibs b/common/shlibs
index 8ffba92e24e..e7048bda893 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -128,6 +128,7 @@ libGLESv2.so keybase-desktop-3.1.2_1
 libGLESv2.so riot-desktop-0.17.9_2
 libGLESv2.so wire-desktop-3.6.2885_1
 libGLESv2.so vscode-1.36.1_1
+libGLESv2.so vscodium-bin-1.39.1_1
 libGLESv2.so Signal-Desktop-1.23.2_1
 libGLESv2.so slack-desktop-3.4.2_1
 libbrcmEGL.so rpi-userland-20180103_2
diff --git a/srcpkgs/vscodium-bin/REMOVE b/srcpkgs/vscodium-bin/REMOVE
new file mode 100644
index 00000000000..2ea0a945cc1
--- /dev/null
+++ b/srcpkgs/vscodium-bin/REMOVE
@@ -0,0 +1,9 @@
+if [ "$UPDATE" = "no" ]; then
+    case "$ACTION" in
+        post)
+            if [ -d usr/lib/vscodium ]; then
+                rm -rf usr/lib/vscodium
+            fi
+        ;;
+    esac
+fi
diff --git a/srcpkgs/vscodium-bin/files/vscodium.desktop b/srcpkgs/vscodium-bin/files/vscodium.desktop
new file mode 100644
index 00000000000..2109fd9f1ed
--- /dev/null
+++ b/srcpkgs/vscodium-bin/files/vscodium.desktop
@@ -0,0 +1,18 @@
+[Desktop Entry]
+Name=VSCodium
+Comment=Code Editing. Redefined.
+GenericName=Text Editor
+Exec=/usr/lib/vscodium/codium --unity-launch %F
+Icon=vscodium
+Type=Application
+StartupNotify=true
+StartupWMClass=VSCodium
+Categories=Utility;Development;IDE;
+MimeType=text/plain;inode/directory;
+Actions=new-empty-window;
+Keywords=vscode;
+
+[Desktop Action new-empty-window]
+Name=New Empty Window
+Exec=/usr/lib/vscodium/codium --new-window %F
+Icon=vscodium
diff --git a/srcpkgs/vscodium-bin/template b/srcpkgs/vscodium-bin/template
new file mode 100644
index 00000000000..ccfbe33879f
--- /dev/null
+++ b/srcpkgs/vscodium-bin/template
@@ -0,0 +1,33 @@
+# Template file for 'vscodium-bin'
+pkgname=vscodium-bin
+version=1.39.1
+revision=1
+archs="x86_64"
+create_wrksrc=yes
+depends="GConf libXtst libxkbfile nss dejavu-fonts-ttf"
+short_desc="Binary releases of VS Code without MS branding/telemetry/licensing"
+maintainer="shizonic <realtiaz@gmail.com>"
+license="MIT"
+homepage="https://github.com/VSCodium/vscodium"
+distfiles="https://github.com/VSCodium/vscodium/releases/download/${version}/VSCodium-linux-x64-${version}.tar.gz"
+checksum=56bc17bfba771d1db655e6d6b0517df912eabb6532955094a2c77865c67719ee
+nostrip_files="codium"
+
+do_install() {
+	sed -i 's,/usr/share/codium,/usr/lib/vscodium,g' bin/codium
+
+	vmkdir usr/lib/vscodium
+	vcopy * usr/lib/vscodium
+
+	vmkdir usr/bin
+	ln -sf /usr/lib/vscodium/bin/codium ${DESTDIR}/usr/bin/codium
+	ln -sf /usr/lib/vscodium/bin/codium ${DESTDIR}/usr/bin/vscodium
+
+	vmkdir usr/share/applications
+	vinstall ${FILESDIR}/vscodium.desktop 644 usr/share/applications
+
+	vmkdir usr/share/pixmaps
+	vinstall resources/app/resources/linux/code.png 644 usr/share/pixmaps vscodium.png
+
+	vlicense resources/app/LICENSE.txt
+}

From 25c0ec314a6d1934a7df1d4dd4da63665231bb1e Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Thu, 17 Oct 2019 08:30:38 +0200
Subject: [PATCH 2/2] vscodium-bin: update to 1.39.2.

---
 srcpkgs/vscodium-bin/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/vscodium-bin/template b/srcpkgs/vscodium-bin/template
index ccfbe33879f..e5b7febf91e 100644
--- a/srcpkgs/vscodium-bin/template
+++ b/srcpkgs/vscodium-bin/template
@@ -1,6 +1,6 @@
 # Template file for 'vscodium-bin'
 pkgname=vscodium-bin
-version=1.39.1
+version=1.39.2
 revision=1
 archs="x86_64"
 create_wrksrc=yes
@@ -10,7 +10,7 @@ maintainer="shizonic <realtiaz@gmail.com>"
 license="MIT"
 homepage="https://github.com/VSCodium/vscodium"
 distfiles="https://github.com/VSCodium/vscodium/releases/download/${version}/VSCodium-linux-x64-${version}.tar.gz"
-checksum=56bc17bfba771d1db655e6d6b0517df912eabb6532955094a2c77865c67719ee
+checksum=34b9fb9a3e277dfe50953698165359187232b10452a28513c4cfaa2458857204
 nostrip_files="codium"
 
 do_install() {

  parent reply	other threads:[~2019-10-17  6:30 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-10640@inbox.vuxu.org>
2019-06-19  8:28 ` voidlinux-github
2019-06-19  8:28 ` voidlinux-github
2019-07-15  7:02 ` voidlinux-github
2019-07-15  7:02 ` voidlinux-github
2019-09-09  6:30 ` voidlinux-github
2019-09-09  6:30 ` voidlinux-github
2019-09-09  6:36 ` voidlinux-github
2019-09-09  6:36 ` voidlinux-github
2019-09-09  6:41 ` voidlinux-github
2019-09-09  6:41 ` voidlinux-github
2019-09-09  6:44 ` voidlinux-github
2019-09-09  6:44 ` voidlinux-github
2019-09-12 10:53 ` voidlinux-github
2019-09-12 10:53 ` voidlinux-github
2019-09-21  8:35 ` voidlinux-github
2019-09-21  8:35 ` voidlinux-github
2019-10-10 15:34 ` voidlinux-github
2019-10-10 15:34 ` voidlinux-github
2019-10-12  8:20 ` voidlinux-github
2019-10-12  8:20 ` voidlinux-github
2019-10-12  8:24 ` voidlinux-github
2019-10-12  8:24 ` voidlinux-github
2019-10-17  6:30 ` voidlinux-github [this message]
2019-10-17  6:30 ` voidlinux-github
2019-11-02  4:48 ` voidlinux-github
2019-11-02  4:48 ` voidlinux-github
2019-11-10  6:25 ` voidlinux-github
2020-03-20  7:09 ` travankor
2020-04-09 10:53 ` [PR PATCH] [Updated] " shizonic
2020-04-16  8:07 ` shizonic
2020-04-16  8:08 ` shizonic
2020-04-21 14:28 ` shizonic
2020-05-08 10:02 ` shizonic
2020-05-11  7:32 ` shizonic
2020-05-15  7:24 ` Piraty
2020-05-15 14:00 ` Johnnynator
2020-05-16  9:04 ` Piraty
2020-05-16  9:04 ` [PR PATCH] [Closed]: " Piraty

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=20191017063052.1V_ho29HbRIGMEz3aGlw6Al4TxeCX7Yb4sTlMe2CB2E@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --cc=ml@inbox.vuxu.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;
as well as URLs for NNTP newsgroup(s).