* [bug#74138] [PATCH v1] gnu: yt-dlp: Update to 2024.10.22.
@ 2024-10-31 16:25 Jakob Kirsch via Guix-patches via
2024-10-30 22:14 ` Doğan Çeçen
2024-11-01 21:41 ` [bug#74138] [PATCH v2 0/2] " Sharlatan Hellseher
0 siblings, 2 replies; 5+ messages in thread
From: Jakob Kirsch via Guix-patches via @ 2024-10-31 16:25 UTC (permalink / raw)
To: 74138
[-- Attachment #1: Type: text/plain, Size: 48 bytes --]
yt-dlp broke with Youtube videos so here we go.
[-- Attachment #2: v1-0001-gnu-python-websockets-Update-to-13.0.patch --]
[-- Type: text/plain, Size: 1378 bytes --]
From 21874c9432b9f942e45db71561ac8ea5c05c50b4 Mon Sep 17 00:00:00 2001
Message-ID: <21874c9432b9f942e45db71561ac8ea5c05c50b4.1730391804.git.jakob.kirsch@web.de>
From: Jakob Kirsch <jakob.kirsch@web.de>
Date: Thu, 31 Oct 2024 17:18:08 +0100
Subject: [PATCH v1 1/2] gnu: python-websockets: Update to 13.0.
* gnu/packages/python-web.scm (python-websockets): Update to 13.0.
Change-Id: I242cc257c779d1dba992e814ba4da68c99daff6e
---
gnu/packages/python-web.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d892e03c9d..b92ce4533a 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6845,7 +6845,7 @@ (define-public python-warcio
(define-public python-websockets
(package
(name "python-websockets")
- (version "12.0")
+ (version "13.0")
(source
(origin
(method git-fetch)
@@ -6855,7 +6855,7 @@ (define-public python-websockets
(file-name (git-file-name name version))
(sha256
(base32
- "1a587a1knjsy9zmgab9v2yncx0803pg2hfcvf7kz6vs8ixaggqmh"))))
+ "1brnaf1c4r9377p2npxpkik9ggqzmymvnnazdhw6s2wzfhlln8vv"))))
(build-system python-build-system)
(arguments
(list #:phases
base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
--
2.46.0
[-- Attachment #3: v1-0002-gnu-yt-dlp-Update-to-2024.10.22.patch --]
[-- Type: text/plain, Size: 1731 bytes --]
From e9144eee3312ed896e47f4f9274fd241348d3fac Mon Sep 17 00:00:00 2001
Message-ID: <e9144eee3312ed896e47f4f9274fd241348d3fac.1730391804.git.jakob.kirsch@web.de>
In-Reply-To: <21874c9432b9f942e45db71561ac8ea5c05c50b4.1730391804.git.jakob.kirsch@web.de>
References: <21874c9432b9f942e45db71561ac8ea5c05c50b4.1730391804.git.jakob.kirsch@web.de>
From: Jakob Kirsch <jakob.kirsch@web.de>
Date: Thu, 31 Oct 2024 17:18:08 +0100
Subject: [PATCH v1 2/2] gnu: yt-dlp: Update to 2024.10.22.
* gnu/packages/video.scm (yt-dlp): Update to 2024.10.22.
Change-Id: Ifd83fd76ffdb2d2ddab0c9577278a308a3f03cb5
---
gnu/packages/video.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 92c0acef3c..600f1f481d 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3170,7 +3170,7 @@ (define-public youtube-dl
(define-public yt-dlp
(package
(name "yt-dlp")
- (version "2024.08.06")
+ (version "2024.10.22")
(source
(origin
(method git-fetch)
@@ -3178,8 +3178,11 @@ (define-public yt-dlp
(url "https://github.com/yt-dlp/yt-dlp/")
(commit version)))
(file-name (git-file-name name version))
+ (modules '((guix build utils)))
+ (snippet '(substitute* "pyproject.toml"
+ (("^.*Programming Language :: Python :: 3\\.13.*$") "")))
(sha256
- (base32 "0k44p1a9nckj7m6gxz7zggci0iihflivxvkh9l8wwbnsfvqhyfrn"))))
+ (base32 "1gw19f4h71vlchljg08g5l8sd60gmflbdpxz2vsinxzkmqvrqnra"))))
(build-system pyproject-build-system)
(arguments
`(#:tests? ,(not (%current-target-system))
--
2.46.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#74138] [PATCH v1] gnu: yt-dlp: Update to 2024.10.22.
2024-10-31 16:25 [bug#74138] [PATCH v1] gnu: yt-dlp: Update to 2024.10.22 Jakob Kirsch via Guix-patches via
@ 2024-10-30 22:14 ` Doğan Çeçen
2024-11-01 21:41 ` [bug#74138] [PATCH v2 0/2] " Sharlatan Hellseher
1 sibling, 0 replies; 5+ messages in thread
From: Doğan Çeçen @ 2024-10-30 22:14 UTC (permalink / raw)
To: Jakob Kirsch, 74138
LGTM.
I was able to use the new version successfully with a Youtube link, and the following command returns success!
$ ./pre-inst-env guix build yt-dlp --check --no-grafts
...
successfully built /gnu/store/sms5b0iplja1mjj96r1k6phm3lvc6wjk-yt-dlp-2024.10.22.drv
successfully built /gnu/store/sms5b0iplja1mjj96r1k6phm3lvc6wjk-yt-dlp-2024.10.22.drv
/gnu/store/y0pisbj9z5f35phj0nnf0zsavimjr9m2-yt-dlp-2024.10.22
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#74138] [PATCH v2 0/2] gnu: yt-dlp: Update to 2024.10.22.
2024-10-31 16:25 [bug#74138] [PATCH v1] gnu: yt-dlp: Update to 2024.10.22 Jakob Kirsch via Guix-patches via
2024-10-30 22:14 ` Doğan Çeçen
@ 2024-11-01 21:41 ` Sharlatan Hellseher
2024-11-01 21:41 ` [bug#74138] [PATCH v2 1/2] gnu: python-websockets: Update to 13.0 Sharlatan Hellseher
2024-11-01 21:41 ` [bug#74138] [PATCH v2 2/2] gnu: yt-dlp: Update to 2024.10.22 Sharlatan Hellseher
1 sibling, 2 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-11-01 21:41 UTC (permalink / raw)
To: 74138; +Cc: Sharlatan Hellseher
Hi,
I've rebased and create them again to fix QA issue with apply.
Bare in mind:
> > ./pre-inst-env guix refresh --list-dependent python-websockets
> Building the following 227 packages would ensure 486 dependent packages are rebuilt:
> ...
Let's see what QA says in a while.
Thanks,
Oleg
Jakob Kirsch (2):
gnu: python-websockets: Update to 13.0.
gnu: yt-dlp: Update to 2024.10.22.
gnu/packages/python-web.scm | 4 ++--
gnu/packages/video.scm | 7 +++++--
2 files changed, 7 insertions(+), 4 deletions(-)
base-commit: a9abf9a7b30f6801e122cae759df87b44c458773
--
2.46.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#74138] [PATCH v2 1/2] gnu: python-websockets: Update to 13.0.
2024-11-01 21:41 ` [bug#74138] [PATCH v2 0/2] " Sharlatan Hellseher
@ 2024-11-01 21:41 ` Sharlatan Hellseher
2024-11-01 21:41 ` [bug#74138] [PATCH v2 2/2] gnu: yt-dlp: Update to 2024.10.22 Sharlatan Hellseher
1 sibling, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-11-01 21:41 UTC (permalink / raw)
To: 74138
Cc: Jakob Kirsch, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
Sharlatan Hellseher, Tanguy Le Carrour, jgart
From: Jakob Kirsch <jakob.kirsch@web.de>
* gnu/packages/python-web.scm (python-websockets): Update to 13.0.
Change-Id: I242cc257c779d1dba992e814ba4da68c99daff6e
---
gnu/packages/python-web.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d892e03c9d..b92ce4533a 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6845,7 +6845,7 @@ (define-public python-warcio
(define-public python-websockets
(package
(name "python-websockets")
- (version "12.0")
+ (version "13.0")
(source
(origin
(method git-fetch)
@@ -6855,7 +6855,7 @@ (define-public python-websockets
(file-name (git-file-name name version))
(sha256
(base32
- "1a587a1knjsy9zmgab9v2yncx0803pg2hfcvf7kz6vs8ixaggqmh"))))
+ "1brnaf1c4r9377p2npxpkik9ggqzmymvnnazdhw6s2wzfhlln8vv"))))
(build-system python-build-system)
(arguments
(list #:phases
--
2.46.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#74138] [PATCH v2 2/2] gnu: yt-dlp: Update to 2024.10.22.
2024-11-01 21:41 ` [bug#74138] [PATCH v2 0/2] " Sharlatan Hellseher
2024-11-01 21:41 ` [bug#74138] [PATCH v2 1/2] gnu: python-websockets: Update to 13.0 Sharlatan Hellseher
@ 2024-11-01 21:41 ` Sharlatan Hellseher
1 sibling, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-11-01 21:41 UTC (permalink / raw)
To: 74138; +Cc: Jakob Kirsch
From: Jakob Kirsch <jakob.kirsch@web.de>
* gnu/packages/video.scm (yt-dlp): Update to 2024.10.22.
Change-Id: Ifd83fd76ffdb2d2ddab0c9577278a308a3f03cb5
---
gnu/packages/video.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index ff5dcd8daa..12e321e96c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3171,7 +3171,7 @@ (define-public youtube-dl
(define-public yt-dlp
(package
(name "yt-dlp")
- (version "2024.08.06")
+ (version "2024.10.22")
(source
(origin
(method git-fetch)
@@ -3179,8 +3179,11 @@ (define-public yt-dlp
(url "https://github.com/yt-dlp/yt-dlp/")
(commit version)))
(file-name (git-file-name name version))
+ (modules '((guix build utils)))
+ (snippet '(substitute* "pyproject.toml"
+ (("^.*Programming Language :: Python :: 3\\.13.*$") "")))
(sha256
- (base32 "0k44p1a9nckj7m6gxz7zggci0iihflivxvkh9l8wwbnsfvqhyfrn"))))
+ (base32 "1gw19f4h71vlchljg08g5l8sd60gmflbdpxz2vsinxzkmqvrqnra"))))
(build-system pyproject-build-system)
(arguments
`(#:tests? ,(not (%current-target-system))
--
2.46.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-11-01 21:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-31 16:25 [bug#74138] [PATCH v1] gnu: yt-dlp: Update to 2024.10.22 Jakob Kirsch via Guix-patches via
2024-10-30 22:14 ` Doğan Çeçen
2024-11-01 21:41 ` [bug#74138] [PATCH v2 0/2] " Sharlatan Hellseher
2024-11-01 21:41 ` [bug#74138] [PATCH v2 1/2] gnu: python-websockets: Update to 13.0 Sharlatan Hellseher
2024-11-01 21:41 ` [bug#74138] [PATCH v2 2/2] gnu: yt-dlp: Update to 2024.10.22 Sharlatan Hellseher
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.