Github messages for voidlinux
 help / color / mirror / Atom feed
From: shizonic <shizonic@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: vscodium-bin-1.33.0
Date: Fri, 08 May 2020 12:02:02 +0200	[thread overview]
Message-ID: <20200508100202.HBjKo5U5U9nCbleyKXFyYJ3CR0vqerRjDG6LxHOzSF4@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: 19622 bytes --]

From 90955eee752241be5d46ec6b1de241c408a6c312 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Sat, 12 Oct 2019 10:20:33 +0200
Subject: [PATCH 01/16] 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 fa8af66f925..add01cef683 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -130,6 +130,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 d1b0f80232b58ed0f51f004b09b529f83401861f Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Thu, 17 Oct 2019 08:30:38 +0200
Subject: [PATCH 02/16] 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() {

From ddb74ed77cffec72f344cd1e0ca027a3737e1444 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Sun, 10 Nov 2019 07:25:34 +0100
Subject: [PATCH 03/16] vscodium-bin: update to 1.40.0.

---
 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 e5b7febf91e..d0bb69586d7 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.2
+version=1.40.0
 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=34b9fb9a3e277dfe50953698165359187232b10452a28513c4cfaa2458857204
+checksum=4482f533bc639d0462a0b98f1a5a13f0adf50a4e7bb75102280bee18297c217a
 nostrip_files="codium"
 
 do_install() {

From ca7de455a7db887b4c2f39c90aa245bd25e9900c Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Mon, 18 Nov 2019 08:32:10 +0100
Subject: [PATCH 04/16] vscodium-bin: update to 1.40.1.

---
 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 d0bb69586d7..ffe4ffffae0 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.40.0
+version=1.40.1
 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=4482f533bc639d0462a0b98f1a5a13f0adf50a4e7bb75102280bee18297c217a
+checksum=fa897af34d8efdcac64f9790ad387912306d3a0264ffc83338d2e281f9a4ab06
 nostrip_files="codium"
 
 do_install() {

From c3b8ab05449a8f81bac2b126673614ea179c797e Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Wed, 27 Nov 2019 08:54:52 +0100
Subject: [PATCH 05/16] vscodium-bin: update to 1.40.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 ffe4ffffae0..e4d6790bcbc 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.40.1
+version=1.40.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=fa897af34d8efdcac64f9790ad387912306d3a0264ffc83338d2e281f9a4ab06
+checksum=957da1c6445c759a8cf400dccfac05ecb0ee8e27224acf7da1e02a38c4308f17
 nostrip_files="codium"
 
 do_install() {

From 715dea81cba3b453507c7d4b4d85393086808532 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Mon, 16 Dec 2019 08:05:16 +0100
Subject: [PATCH 06/16] vscodium-bin: update to 1.41.0.

---
 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 e4d6790bcbc..4377556d1dc 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.40.2
+version=1.41.0
 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=957da1c6445c759a8cf400dccfac05ecb0ee8e27224acf7da1e02a38c4308f17
+checksum=f56ca012fb45cf95c1d2fcff9eea088ad03614ac1c3ea664f8cdff5f53505dda
 nostrip_files="codium"
 
 do_install() {

From b71e4ce2717c5b79ae59b1fda0f6b6bca9118cb0 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Tue, 24 Dec 2019 09:28:48 +0100
Subject: [PATCH 07/16] vscodium-bin: update to 1.41.1.

---
 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 4377556d1dc..25a402d1031 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.41.0
+version=1.41.1
 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=f56ca012fb45cf95c1d2fcff9eea088ad03614ac1c3ea664f8cdff5f53505dda
+checksum=3d50cedad289730301ddbb6cc5f754753e3fc58b0c812da5390b2871c0639c58
 nostrip_files="codium"
 
 do_install() {

From 7eee8d45c2d21db3a90743ce332bd04cb615aae4 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Fri, 7 Feb 2020 13:10:23 +0100
Subject: [PATCH 08/16] vscodium-bin: update to 1.42.0.

---
 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 25a402d1031..75cf176776e 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.41.1
+version=1.42.0
 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=3d50cedad289730301ddbb6cc5f754753e3fc58b0c812da5390b2871c0639c58
+checksum=b83425865394d6414ea22aa065a4b2413e93acf63b97f973743c69c38960d138
 nostrip_files="codium"
 
 do_install() {

From 3ecfbfa3926a434a915e49795a05075c3cef46b8 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Fri, 14 Feb 2020 12:55:21 +0100
Subject: [PATCH 09/16] vscodium-bin: update to 1.42.1.

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

diff --git a/srcpkgs/vscodium-bin/template b/srcpkgs/vscodium-bin/template
index 75cf176776e..5d47e665b24 100644
--- a/srcpkgs/vscodium-bin/template
+++ b/srcpkgs/vscodium-bin/template
@@ -1,16 +1,16 @@
 # Template file for 'vscodium-bin'
 pkgname=vscodium-bin
-version=1.42.0
+version=1.42.1
 revision=1
 archs="x86_64"
 create_wrksrc=yes
-depends="GConf libXtst libxkbfile nss dejavu-fonts-ttf"
+depends="GConf libXtst libxkbfile nss dejavu-fonts-ttf xdg-utils"
 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=b83425865394d6414ea22aa065a4b2413e93acf63b97f973743c69c38960d138
+checksum=be05377a2a88a3167e3959cf312c55a404314be30df96d7df543e87b761e4cdd
 nostrip_files="codium"
 
 do_install() {

From 4c944e26ea1a95c26b5639103403b972487fb850 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Wed, 11 Mar 2020 08:51:43 +0100
Subject: [PATCH 10/16] vscodium-bin: update to 1.43.0.

---
 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 5d47e665b24..c43c862b1b1 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.42.1
+version=1.43.0
 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=be05377a2a88a3167e3959cf312c55a404314be30df96d7df543e87b761e4cdd
+checksum=6ae5c32f0968d93570a7acf3262cb44fb2dd5dba6c6e6133bb1433daa3c23a8d
 nostrip_files="codium"
 
 do_install() {

From df1b65206bd5c6e04bbf7fc1637c9dca77bcd7e8 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Thu, 19 Mar 2020 07:07:28 +0100
Subject: [PATCH 11/16] vscodium-bin: update to 1.43.1.

---
 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 c43c862b1b1..d75b82b0ed7 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.43.0
+version=1.43.1
 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=6ae5c32f0968d93570a7acf3262cb44fb2dd5dba6c6e6133bb1433daa3c23a8d
+checksum=5a8c67b3da103baaa843797d4dc487c167c9068ae99181d8f483baf632ef5975
 nostrip_files="codium"
 
 do_install() {

From 9f158e9ffab9479e789dc548416512279e7bcb8b Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Wed, 25 Mar 2020 09:54:06 +0100
Subject: [PATCH 12/16] vscodium-bin: update to 1.43.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 d75b82b0ed7..1b52f12db3d 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.43.1
+version=1.43.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=5a8c67b3da103baaa843797d4dc487c167c9068ae99181d8f483baf632ef5975
+checksum=957f7f6a6286fbbf9daf1c4d63469c577b06cdee8461b9f021c8c94d87cffbf0
 nostrip_files="codium"
 
 do_install() {

From 7bf3fcbedeb741fbcd475c6122843985fc0ef874 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Thu, 9 Apr 2020 12:52:10 +0200
Subject: [PATCH 13/16] vscodium-bin: update to 1.44.0.

---
 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 1b52f12db3d..847af77d1ee 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.43.2
+version=1.44.0
 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=957f7f6a6286fbbf9daf1c4d63469c577b06cdee8461b9f021c8c94d87cffbf0
+checksum=0f842932e6a4db3510a171a54aac457f96fc4f6a75562b8d2e20fd927f263bdf
 nostrip_files="codium"
 
 do_install() {

From b5acc4365e5607be0d7b35093b0f00472a862682 Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Thu, 16 Apr 2020 10:07:57 +0200
Subject: [PATCH 14/16] vscodium-bin: update to 1.44.1.

---
 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 847af77d1ee..0d0a2627f9d 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.44.0
+version=1.44.1
 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=0f842932e6a4db3510a171a54aac457f96fc4f6a75562b8d2e20fd927f263bdf
+checksum=ab5265197811c339fdc42660edbfb32cbc83cc1bc16fdee9e6362b7ebb851c9b
 nostrip_files="codium"
 
 do_install() {

From d9661e71f37ad6c62582083c397bfb5a7814df5b Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Tue, 21 Apr 2020 16:26:52 +0200
Subject: [PATCH 15/16] vscodium-bin: update to 1.44.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 0d0a2627f9d..27f0c5385b1 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.44.1
+version=1.44.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=ab5265197811c339fdc42660edbfb32cbc83cc1bc16fdee9e6362b7ebb851c9b
+checksum=4e856de6ba89a4e9e9c54ff7a1b503602af2aab58d9431ddfd4f2fa182e43090
 nostrip_files="codium"
 
 do_install() {

From 76d846ad789ce377d02b296e48de1bafa76be88a Mon Sep 17 00:00:00 2001
From: Toby Merz <realtiaz@gmail.com>
Date: Fri, 8 May 2020 10:06:36 +0200
Subject: [PATCH 16/16] vscodium-bin: update to 1.45.0.

---
 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 27f0c5385b1..3605bc1443a 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.44.2
+version=1.45.0
 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=4e856de6ba89a4e9e9c54ff7a1b503602af2aab58d9431ddfd4f2fa182e43090
+checksum=
 nostrip_files="codium"
 
 do_install() {

  parent reply	other threads:[~2020-05-08 10:02 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
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 [this message]
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=20200508100202.HBjKo5U5U9nCbleyKXFyYJ3CR0vqerRjDG6LxHOzSF4@z \
    --to=shizonic@users.noreply.github.com \
    --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).