Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Backblaze-b2: Patch TQDM version
@ 2023-11-25 19:00 sww1235
  2023-11-25 19:03 ` sww1235
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: sww1235 @ 2023-11-25 19:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sww1235/void-packages backblaze-fixes
https://github.com/void-linux/void-packages/pull/47400

Backblaze-b2: Patch TQDM version
Allows package to build with newer version of tqdm in void-packages. Upstream has a dependabot pull that passed all their tests, but is not merged yet.

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64 glibc)

Closes #47348 


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

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

From 63a727ba2c2a67e5c1517cc7a911b1931bc2be0c Mon Sep 17 00:00:00 2001
From: Stephen Walker-Weinshenker <sww1235@sww1235.net>
Date: Sat, 25 Nov 2023 11:55:27 -0700
Subject: [PATCH] Patching tqdm requirement

Allows package to build with newer version in void-packages
---
 srcpkgs/backblaze-b2/patches/tqdm_ver.patch | 10 ++++++++++
 srcpkgs/backblaze-b2/template               |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/backblaze-b2/patches/tqdm_ver.patch

diff --git a/srcpkgs/backblaze-b2/patches/tqdm_ver.patch b/srcpkgs/backblaze-b2/patches/tqdm_ver.patch
new file mode 100644
index 0000000000000..d246f562a7801
--- /dev/null
+++ b/srcpkgs/backblaze-b2/patches/tqdm_ver.patch
@@ -0,0 +1,10 @@
+Upstream builds with the newer version of tqdm, but upstream hasn't updated their requirements.txt
+
+--- a/requirements.txt
++++ b/requirements.txt
+@@ -7,4 +7,4 @@
+ phx-class-registry~=4.0
+ rst2ansi==0.1.5
+ tabulate==0.9.0
+-tqdm~=4.65.0
++tqdm~=4.66.0
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index aa42641f0f336..ddb5895545c37 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -1,7 +1,7 @@
 # Template file for 'backblaze-b2'
 pkgname=backblaze-b2
 version=3.11.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-Arrow python3-b2sdk python3-docutils

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

* Re: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
@ 2023-11-25 19:03 ` sww1235
  2023-11-25 19:12 ` sww1235
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-25 19:03 UTC (permalink / raw)
  To: ml

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

New comment by sww1235 on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#issuecomment-1826399410

Comment:
I ran Xlint locally and had no issues. Not sure exactly what is failing in the lint step.

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

* Re: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
  2023-11-25 19:03 ` sww1235
@ 2023-11-25 19:12 ` sww1235
  2023-11-25 21:43 ` [PR REVIEW] " ahesford
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-25 19:12 UTC (permalink / raw)
  To: ml

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

New comment by sww1235 on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#issuecomment-1826401162

Comment:
@ahesford more than happy to also upgrade to 3.13.1 in the same or different pull request, but the version patch is still needed to build correctly.

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

* Re: [PR REVIEW] Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
  2023-11-25 19:03 ` sww1235
  2023-11-25 19:12 ` sww1235
@ 2023-11-25 21:43 ` ahesford
  2023-11-25 22:10 ` sww1235
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ahesford @ 2023-11-25 21:43 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#discussion_r1405239053

Comment:
```suggestion
+tqdm>=4.65.0
```
Weaken the restriction to avoid version issues in the future.

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

* Re: [PR REVIEW] Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (2 preceding siblings ...)
  2023-11-25 21:43 ` [PR REVIEW] " ahesford
@ 2023-11-25 22:10 ` sww1235
  2023-11-25 22:11 ` [PR PATCH] [Updated] " sww1235
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-25 22:10 UTC (permalink / raw)
  To: ml

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

New review comment by sww1235 on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#discussion_r1405245006

Comment:
Will get that pushed momentarily

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

* Re: [PR PATCH] [Updated] Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (3 preceding siblings ...)
  2023-11-25 22:10 ` sww1235
@ 2023-11-25 22:11 ` sww1235
  2023-11-25 23:41 ` ahesford
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-25 22:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sww1235/void-packages backblaze-fixes
https://github.com/void-linux/void-packages/pull/47400

Backblaze-b2: Patch TQDM version
Allows package to build with newer version of tqdm in void-packages. Upstream has a dependabot pull that passed all their tests, but is not merged yet.

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64 glibc)

Closes #47348 


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

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

From 6521537df72f410794183d3ae63a1464cef0866e Mon Sep 17 00:00:00 2001
From: Stephen Walker-Weinshenker <sww1235@sww1235.net>
Date: Sat, 25 Nov 2023 11:55:27 -0700
Subject: [PATCH] Patching tqdm requirement

Allows package to build with newer version in void-packages
---
 srcpkgs/backblaze-b2/patches/tqdm_ver.patch | 10 ++++++++++
 srcpkgs/backblaze-b2/template               |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/backblaze-b2/patches/tqdm_ver.patch

diff --git a/srcpkgs/backblaze-b2/patches/tqdm_ver.patch b/srcpkgs/backblaze-b2/patches/tqdm_ver.patch
new file mode 100644
index 0000000000000..35e7701c9eef2
--- /dev/null
+++ b/srcpkgs/backblaze-b2/patches/tqdm_ver.patch
@@ -0,0 +1,10 @@
+Upstream builds with the newer version of tqdm, but upstream hasn't updated their requirements.txt
+
+--- a/requirements.txt
++++ b/requirements.txt
+@@ -7,4 +7,4 @@
+ phx-class-registry~=4.0
+ rst2ansi==0.1.5
+ tabulate==0.9.0
+-tqdm~=4.65.0
++tqdm>=4.65.0
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index aa42641f0f336..ddb5895545c37 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -1,7 +1,7 @@
 # Template file for 'backblaze-b2'
 pkgname=backblaze-b2
 version=3.11.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-Arrow python3-b2sdk python3-docutils

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

* Re: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (4 preceding siblings ...)
  2023-11-25 22:11 ` [PR PATCH] [Updated] " sww1235
@ 2023-11-25 23:41 ` ahesford
  2023-11-26  4:01 ` [PR PATCH] [Updated] " sww1235
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ahesford @ 2023-11-25 23:41 UTC (permalink / raw)
  To: ml

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

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#issuecomment-1826443686

Comment:
Please change your commit message to `backblaze-b2: relax version restrictions`.

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

* Re: [PR PATCH] [Updated] Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (5 preceding siblings ...)
  2023-11-25 23:41 ` ahesford
@ 2023-11-26  4:01 ` sww1235
  2023-11-26  4:01 ` sww1235
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-26  4:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sww1235/void-packages backblaze-fixes
https://github.com/void-linux/void-packages/pull/47400

Backblaze-b2: Patch TQDM version
Allows package to build with newer version of tqdm in void-packages. Upstream has a dependabot pull that passed all their tests, but is not merged yet.

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64 glibc)

Closes #47348 


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

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

From cbc34d0d7b6be1d325f5ff1ca48273af5726ee72 Mon Sep 17 00:00:00 2001
From: Stephen Walker-Weinshenker <sww1235@sww1235.net>
Date: Sat, 25 Nov 2023 11:55:27 -0700
Subject: [PATCH] backblaze-b2: relax version restrictions

---
 srcpkgs/backblaze-b2/patches/tqdm_ver.patch | 10 ++++++++++
 srcpkgs/backblaze-b2/template               |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/backblaze-b2/patches/tqdm_ver.patch

diff --git a/srcpkgs/backblaze-b2/patches/tqdm_ver.patch b/srcpkgs/backblaze-b2/patches/tqdm_ver.patch
new file mode 100644
index 0000000000000..35e7701c9eef2
--- /dev/null
+++ b/srcpkgs/backblaze-b2/patches/tqdm_ver.patch
@@ -0,0 +1,10 @@
+Upstream builds with the newer version of tqdm, but upstream hasn't updated their requirements.txt
+
+--- a/requirements.txt
++++ b/requirements.txt
+@@ -7,4 +7,4 @@
+ phx-class-registry~=4.0
+ rst2ansi==0.1.5
+ tabulate==0.9.0
+-tqdm~=4.65.0
++tqdm>=4.65.0
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index aa42641f0f336..ddb5895545c37 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -1,7 +1,7 @@
 # Template file for 'backblaze-b2'
 pkgname=backblaze-b2
 version=3.11.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-Arrow python3-b2sdk python3-docutils

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

* Re: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (6 preceding siblings ...)
  2023-11-26  4:01 ` [PR PATCH] [Updated] " sww1235
@ 2023-11-26  4:01 ` sww1235
  2023-11-26  4:03 ` sww1235
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-26  4:01 UTC (permalink / raw)
  To: ml

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

New comment by sww1235 on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#issuecomment-1826482786

Comment:
Done

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

* Re: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (7 preceding siblings ...)
  2023-11-26  4:01 ` sww1235
@ 2023-11-26  4:03 ` sww1235
  2023-11-26  4:07 ` [PR PATCH] [Merged]: " ahesford
  2023-11-26  4:09 ` sww1235
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-26  4:03 UTC (permalink / raw)
  To: ml

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

New comment by sww1235 on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#issuecomment-1826482786

Comment:
Done. I missed that the commit message needed to match up with the pull request naming format as well.

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

* Re: [PR PATCH] [Merged]: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (8 preceding siblings ...)
  2023-11-26  4:03 ` sww1235
@ 2023-11-26  4:07 ` ahesford
  2023-11-26  4:09 ` sww1235
  10 siblings, 0 replies; 12+ messages in thread
From: ahesford @ 2023-11-26  4:07 UTC (permalink / raw)
  To: ml

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

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

Backblaze-b2: Patch TQDM version
https://github.com/void-linux/void-packages/pull/47400

Description:
Allows package to build with newer version of tqdm in void-packages. Upstream has a dependabot pull that passed all their tests, but is not merged yet.

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64 glibc)

Closes #47348 


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

* Re: Backblaze-b2: Patch TQDM version
  2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
                   ` (9 preceding siblings ...)
  2023-11-26  4:07 ` [PR PATCH] [Merged]: " ahesford
@ 2023-11-26  4:09 ` sww1235
  10 siblings, 0 replies; 12+ messages in thread
From: sww1235 @ 2023-11-26  4:09 UTC (permalink / raw)
  To: ml

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

New comment by sww1235 on void-packages repository

https://github.com/void-linux/void-packages/pull/47400#issuecomment-1826484033

Comment:
Thanks!

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

end of thread, other threads:[~2023-11-26  4:09 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-25 19:00 [PR PATCH] Backblaze-b2: Patch TQDM version sww1235
2023-11-25 19:03 ` sww1235
2023-11-25 19:12 ` sww1235
2023-11-25 21:43 ` [PR REVIEW] " ahesford
2023-11-25 22:10 ` sww1235
2023-11-25 22:11 ` [PR PATCH] [Updated] " sww1235
2023-11-25 23:41 ` ahesford
2023-11-26  4:01 ` [PR PATCH] [Updated] " sww1235
2023-11-26  4:01 ` sww1235
2023-11-26  4:03 ` sww1235
2023-11-26  4:07 ` [PR PATCH] [Merged]: " ahesford
2023-11-26  4:09 ` sww1235

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