Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] discord-ptb: update to 0.0.30.
@ 2022-05-28  1:26 0x5c
  2022-05-28  6:38 ` classabbyamp
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: 0x5c @ 2022-05-28  1:26 UTC (permalink / raw)
  To: ml

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

There is a new pull request by 0x5c against master on the void-packages repository

https://github.com/0x5c/void-packages ptb
https://github.com/void-linux/void-packages/pull/37322

discord-ptb: update to 0.0.30.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 8c5ac83f6f45d3c381cd6525338d538f7d0e54f4 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 27 May 2022 21:25:39 -0400
Subject: [PATCH] discord-ptb: update to 0.0.30.

---
 srcpkgs/discord-ptb/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/discord-ptb/template b/srcpkgs/discord-ptb/template
index 64abe1248c30..d457b707a63f 100644
--- a/srcpkgs/discord-ptb/template
+++ b/srcpkgs/discord-ptb/template
@@ -1,6 +1,6 @@
 # Template file for 'discord-ptb'
 pkgname=discord-ptb
-version=0.0.29
+version=0.0.30
 revision=1
 archs="x86_64"
 wrksrc="DiscordPTB"
@@ -12,8 +12,8 @@ maintainer="0x5c <dev@0x5c.io>"
 license="custom:Proprietary"
 homepage="https://discord.com/"
 distfiles="https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz"
-checksum=77bf0d9d06773242e37bc987ac8ea7a07da20f6a04bd22777039ec9b342c5187
-_license_checksum=03580ea1297c38f31c4437555f2dbf9dae25a91c9e61391d7141cf8cc036aeff
+checksum=7333a5e3d176b20da0e7da739877bd1d8f3d3a6aad71efe5f954ec90ff534db5
+_license_checksum=df4707f9ed6889fc8c64661ef054daeddd97ba1c1da8c0dedf22f57c925398d7
 nopie=yes
 restricted=yes
 repository=nonfree
@@ -21,7 +21,7 @@ repository=nonfree
 post_extract() {
 	$XBPS_FETCH_CMD -o eula https://discord.com/terms; cat eula |
 		w3m -dump -I utf-8 -T text/html |
-		sed -n '/Discord Terms of Service/,/^Imagine a place$/p' > EULA
+		sed -n '/Discord.s Terms of Service/,/^IMAGINE A PLACE$/p' > EULA
 
 	filesum="$(xbps-digest EULA)"
 	if [ "$filesum" != "$_license_checksum" ]; then

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
@ 2022-05-28  6:38 ` classabbyamp
  2022-05-29  4:37 ` [PR REVIEW] " wundrweapon
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: classabbyamp @ 2022-05-28  6:38 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/37322#issuecomment-1140187392

Comment:
tested, works for me

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR REVIEW] discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
  2022-05-28  6:38 ` classabbyamp
@ 2022-05-29  4:37 ` wundrweapon
  2022-05-29  6:08 ` 0x5c
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: wundrweapon @ 2022-05-29  4:37 UTC (permalink / raw)
  To: ml

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

New review comment by wundrweapon on void-packages repository

https://github.com/void-linux/void-packages/pull/37322#discussion_r884209234

Comment:
Testing this via the below command, the sed command does not end where I believe you intend it to -- "IMAGINE A PLACE" should have bee left unchanged.

`curl https://discord.com/terms | w3m -dump -I utf-8 -T text/html | sed -n '/Discord.s Terms of Service/,/^IMAGINE A PLACE$/p'`

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR REVIEW] discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
  2022-05-28  6:38 ` classabbyamp
  2022-05-29  4:37 ` [PR REVIEW] " wundrweapon
@ 2022-05-29  6:08 ` 0x5c
  2022-05-29  6:20 ` 0x5c
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: 0x5c @ 2022-05-29  6:08 UTC (permalink / raw)
  To: ml

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

New review comment by 0x5c on void-packages repository

https://github.com/void-linux/void-packages/pull/37322#discussion_r884216466

Comment:
The sed cut has to end at the start of the footer, which is the catchphrase. That catchphrase used to be in lowercase, which they changed since the last version to the uppercase 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR REVIEW] discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
                   ` (2 preceding siblings ...)
  2022-05-29  6:08 ` 0x5c
@ 2022-05-29  6:20 ` 0x5c
  2022-05-29  6:25 ` [PR PATCH] [Updated] " 0x5c
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: 0x5c @ 2022-05-29  6:20 UTC (permalink / raw)
  To: ml

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

New review comment by 0x5c on void-packages repository

https://github.com/void-linux/void-packages/pull/37322#discussion_r884217648

Comment:
I thought I had checked specifically for that, but apparently not, thanks for catching this

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
                   ` (3 preceding siblings ...)
  2022-05-29  6:20 ` 0x5c
@ 2022-05-29  6:25 ` 0x5c
  2022-05-30 19:24 ` 0x5c
  2022-05-31 18:28 ` [PR PATCH] [Merged]: " abenson
  6 siblings, 0 replies; 8+ messages in thread
From: 0x5c @ 2022-05-29  6:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages ptb
https://github.com/void-linux/void-packages/pull/37322

discord-ptb: update to 0.0.30.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 6f242bd2ad4069c009820853dad4e324db7bc2ad Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 27 May 2022 21:25:39 -0400
Subject: [PATCH] discord-ptb: update to 0.0.30.

---
 srcpkgs/discord-ptb/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/discord-ptb/template b/srcpkgs/discord-ptb/template
index 64abe1248c30..7cbe5b7dc240 100644
--- a/srcpkgs/discord-ptb/template
+++ b/srcpkgs/discord-ptb/template
@@ -1,6 +1,6 @@
 # Template file for 'discord-ptb'
 pkgname=discord-ptb
-version=0.0.29
+version=0.0.30
 revision=1
 archs="x86_64"
 wrksrc="DiscordPTB"
@@ -12,8 +12,8 @@ maintainer="0x5c <dev@0x5c.io>"
 license="custom:Proprietary"
 homepage="https://discord.com/"
 distfiles="https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz"
-checksum=77bf0d9d06773242e37bc987ac8ea7a07da20f6a04bd22777039ec9b342c5187
-_license_checksum=03580ea1297c38f31c4437555f2dbf9dae25a91c9e61391d7141cf8cc036aeff
+checksum=7333a5e3d176b20da0e7da739877bd1d8f3d3a6aad71efe5f954ec90ff534db5
+_license_checksum=41fe9e5a91c8f0af3a0a3833a0badf0ace75f1c4097889fafc0a029c68b96fcd
 nopie=yes
 restricted=yes
 repository=nonfree
@@ -21,7 +21,7 @@ repository=nonfree
 post_extract() {
 	$XBPS_FETCH_CMD -o eula https://discord.com/terms; cat eula |
 		w3m -dump -I utf-8 -T text/html |
-		sed -n '/Discord Terms of Service/,/^Imagine a place$/p' > EULA
+		sed -n '/Discord.s Terms of Service/,/^Imagine a place$/p' > EULA
 
 	filesum="$(xbps-digest EULA)"
 	if [ "$filesum" != "$_license_checksum" ]; then

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
                   ` (4 preceding siblings ...)
  2022-05-29  6:25 ` [PR PATCH] [Updated] " 0x5c
@ 2022-05-30 19:24 ` 0x5c
  2022-05-31 18:28 ` [PR PATCH] [Merged]: " abenson
  6 siblings, 0 replies; 8+ messages in thread
From: 0x5c @ 2022-05-30 19:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages ptb
https://github.com/void-linux/void-packages/pull/37322

discord-ptb: update to 0.0.30.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From a4fc79e7fa7f8b9b6d956aea40471c9e3fcd3a3b Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Fri, 27 May 2022 21:25:39 -0400
Subject: [PATCH] discord-ptb: update to 0.0.30.

---
 srcpkgs/discord-ptb/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/discord-ptb/template b/srcpkgs/discord-ptb/template
index 64abe1248c30..7cbe5b7dc240 100644
--- a/srcpkgs/discord-ptb/template
+++ b/srcpkgs/discord-ptb/template
@@ -1,6 +1,6 @@
 # Template file for 'discord-ptb'
 pkgname=discord-ptb
-version=0.0.29
+version=0.0.30
 revision=1
 archs="x86_64"
 wrksrc="DiscordPTB"
@@ -12,8 +12,8 @@ maintainer="0x5c <dev@0x5c.io>"
 license="custom:Proprietary"
 homepage="https://discord.com/"
 distfiles="https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz"
-checksum=77bf0d9d06773242e37bc987ac8ea7a07da20f6a04bd22777039ec9b342c5187
-_license_checksum=03580ea1297c38f31c4437555f2dbf9dae25a91c9e61391d7141cf8cc036aeff
+checksum=7333a5e3d176b20da0e7da739877bd1d8f3d3a6aad71efe5f954ec90ff534db5
+_license_checksum=41fe9e5a91c8f0af3a0a3833a0badf0ace75f1c4097889fafc0a029c68b96fcd
 nopie=yes
 restricted=yes
 repository=nonfree
@@ -21,7 +21,7 @@ repository=nonfree
 post_extract() {
 	$XBPS_FETCH_CMD -o eula https://discord.com/terms; cat eula |
 		w3m -dump -I utf-8 -T text/html |
-		sed -n '/Discord Terms of Service/,/^Imagine a place$/p' > EULA
+		sed -n '/Discord.s Terms of Service/,/^Imagine a place$/p' > EULA
 
 	filesum="$(xbps-digest EULA)"
 	if [ "$filesum" != "$_license_checksum" ]; then

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Merged]: discord-ptb: update to 0.0.30.
  2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
                   ` (5 preceding siblings ...)
  2022-05-30 19:24 ` 0x5c
@ 2022-05-31 18:28 ` abenson
  6 siblings, 0 replies; 8+ messages in thread
From: abenson @ 2022-05-31 18:28 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

discord-ptb: update to 0.0.30.
https://github.com/void-linux/void-packages/pull/37322

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-05-31 18:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-28  1:26 [PR PATCH] discord-ptb: update to 0.0.30 0x5c
2022-05-28  6:38 ` classabbyamp
2022-05-29  4:37 ` [PR REVIEW] " wundrweapon
2022-05-29  6:08 ` 0x5c
2022-05-29  6:20 ` 0x5c
2022-05-29  6:25 ` [PR PATCH] [Updated] " 0x5c
2022-05-30 19:24 ` 0x5c
2022-05-31 18:28 ` [PR PATCH] [Merged]: " abenson

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).