From unknown Mon Aug 18 18:02:13 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#59287] Adding svtplay-dl Resent-From: Jessica Tallon Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 15 Nov 2022 21:07:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 59287 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: To: 59287@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16685463728378 (code B ref -1); Tue, 15 Nov 2022 21:07:02 +0000 Received: (at submit) by debbugs.gnu.org; 15 Nov 2022 21:06:12 +0000 Received: from localhost ([127.0.0.1]:55377 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ov38F-0002B4-Pv for submit@debbugs.gnu.org; Tue, 15 Nov 2022 16:06:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:49288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ov38A-0002Au-Q8 for submit@debbugs.gnu.org; Tue, 15 Nov 2022 16:06:10 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ov38A-0004ml-Ja for guix-patches@gnu.org; Tue, 15 Nov 2022 16:06:06 -0500 Received: from mout-p-202.mailbox.org ([2001:67c:2050:0:465::202]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1ov386-0004bd-KO for guix-patches@gnu.org; Tue, 15 Nov 2022 16:06:06 -0500 Received: from smtp202.mailbox.org (smtp202.mailbox.org [IPv6:2001:67c:2050:b231:465::202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-202.mailbox.org (Postfix) with ESMTPS id 4NBdxr4J30z9srs for ; Tue, 15 Nov 2022 22:05:52 +0100 (CET) From: Jessica Tallon Date: Tue, 15 Nov 2022 22:02:33 +0100 Message-ID: <87pmdoexn4.fsf@tsyesika.se> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Rspamd-Queue-Id: 4NBdxr4J30z9srs Received-SPF: pass client-ip=2001:67c:2050:0:465::202; envelope-from=tsyesika@tsyesika.se; helo=mout-p-202.mailbox.org X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) --=-=-= Content-Type: text/plain Hello, I've packaged svtplay-dl, a program to download content from the Swedish TV broadcaster among others. -- Thanks, Jessica. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Add-svtplay-dl.patch Content-Description: svtplay-dl >From e38e635f459aa7740459b40943af88b6ee2624fd Mon Sep 17 00:00:00 2001 Message-Id: From: Jessica Tallon Date: Tue, 15 Nov 2022 22:00:01 +0100 Subject: [PATCH] Add svtplay-dl * gnu/packages/video.scm (svtplay-dl): New variable. --- gnu/packages/video.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index c8f3c6f8a5..aabbe1fc8b 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5605,3 +5605,27 @@ (define-public video-contact-sheet for details on how to change this.") (home-page "http://p.outlyer.net/vcs/") (license license:lgpl2.1+))) + +(define-public svtplay-dl + (package + (name "svtplay-dl") + (version "4.14") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spaam/svtplay-dl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wdrdszalvhv80m5jizbvjz4jc08acmbpxcsslyfb5cwh842in8m")))) + (build-system python-build-system) + (inputs (list ffmpeg python-pyaml python-requests python-pysocks + python-cryptography)) + (home-page "https://svtplay-dl.se/") + (synopsis "Download or stream SVT Play's (and others) TV programmes") + (description + "@code{svtplay-dl} allows downloading TV programmes from various swedish +broadcasters including SVT Play, Sveriges Radio, TV4 Play, among with many +others.") + (license license:expat))) -- 2.38.1 --=-=-=-- From unknown Mon Aug 18 18:02:13 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Jessica Tallon Subject: bug#59287: closed (Re: bug#59287: Adding svtplay-dl) Message-ID: References: <87v8my7lqj.fsf@gnu.org> <87pmdoexn4.fsf@tsyesika.se> X-Gnu-PR-Message: they-closed 59287 X-Gnu-PR-Package: guix-patches Reply-To: 59287@debbugs.gnu.org Date: Mon, 28 Nov 2022 22:34:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1669674842-21417-1" This is a multi-part message in MIME format... ------------=_1669674842-21417-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #59287: Adding svtplay-dl which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 59287@debbugs.gnu.org. --=20 59287: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D59287 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1669674842-21417-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 59287-done) by debbugs.gnu.org; 28 Nov 2022 22:33:34 +0000 Received: from localhost ([127.0.0.1]:51329 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ozmgw-0005ZA-7x for submit@debbugs.gnu.org; Mon, 28 Nov 2022 17:33:34 -0500 Received: from eggs.gnu.org ([209.51.188.92]:40928) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ozmgu-0005Z4-52 for 59287-done@debbugs.gnu.org; Mon, 28 Nov 2022 17:33:32 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ozmgo-00070V-9t; Mon, 28 Nov 2022 17:33:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=2C8fjMDznMCjdomMbxEVUy/ckYXHADTFkJEUKHn6GQg=; b=lRvXhSDgROKX6xfUyTP8 DK5cDIyjJOQ+lcXmpdtCBpn1E/fh+FpsfqGTO+MsqN2Zlbbohd+0ZjMih2CSPlFRdqy+CJJeDMqb+ E8Rklbh2veXO8zEDZ7i1TiT71nLT12RerVr8sX1atnPmwJMiOLKeqq06o5INt1ggKo4r57S3SJYhd xZ8soICCWJmxXLbxJkWJO9iu930tN3DRbZUK/t3BKfQ3Huh0j0y6h/7064ahf1G17xHo710rCRGj2 9EYd3+EjZ7gQ1t3UfiG/AkjEG19hAxcnYgyIR+JOFS3Iw57Vod7YQk6jppnMGi9WnPa88dXBBrSzL MKQoVgl9/H6N/w==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ozmgn-0006L0-Ne; Mon, 28 Nov 2022 17:33:25 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Jessica Tallon Subject: Re: bug#59287: Adding svtplay-dl References: <87pmdoexn4.fsf@tsyesika.se> Date: Mon, 28 Nov 2022 23:33:24 +0100 In-Reply-To: <87pmdoexn4.fsf@tsyesika.se> (Jessica Tallon's message of "Tue, 15 Nov 2022 22:02:33 +0100") Message-ID: <87v8my7lqj.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 59287-done Cc: 59287-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Jessica, Jessica Tallon skribis: >>>From e38e635f459aa7740459b40943af88b6ee2624fd Mon Sep 17 00:00:00 2001 > Message-Id: > From: Jessica Tallon > Date: Tue, 15 Nov 2022 22:00:01 +0100 > Subject: [PATCH] Add svtplay-dl > > * gnu/packages/video.scm (svtplay-dl): New variable. Fixed a couple of typos (see below) and applied it. Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index b443ad5d8d..297252d1ae 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5626,7 +5626,7 @@ (define-public svtplay-dl (home-page "https://svtplay-dl.se/") (synopsis "Download or stream SVT Play's (and others) TV programmes") (description - "@code{svtplay-dl} allows downloading TV programmes from various swedish -broadcasters including SVT Play, Sveriges Radio, TV4 Play, among with many + "@code{svtplay-dl} allows downloading TV programmes from various Swedish +broadcasters including SVT Play, Sveriges Radio, TV4 Play, along with many others.") (license license:expat))) --=-=-=-- ------------=_1669674842-21417-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Nov 2022 21:06:12 +0000 Received: from localhost ([127.0.0.1]:55377 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ov38F-0002B4-Pv for submit@debbugs.gnu.org; Tue, 15 Nov 2022 16:06:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:49288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ov38A-0002Au-Q8 for submit@debbugs.gnu.org; Tue, 15 Nov 2022 16:06:10 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ov38A-0004ml-Ja for guix-patches@gnu.org; Tue, 15 Nov 2022 16:06:06 -0500 Received: from mout-p-202.mailbox.org ([2001:67c:2050:0:465::202]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1ov386-0004bd-KO for guix-patches@gnu.org; Tue, 15 Nov 2022 16:06:06 -0500 Received: from smtp202.mailbox.org (smtp202.mailbox.org [IPv6:2001:67c:2050:b231:465::202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-202.mailbox.org (Postfix) with ESMTPS id 4NBdxr4J30z9srs for ; Tue, 15 Nov 2022 22:05:52 +0100 (CET) From: Jessica Tallon To: guix-patches@gnu.org Subject: Adding svtplay-dl Date: Tue, 15 Nov 2022 22:02:33 +0100 Message-ID: <87pmdoexn4.fsf@tsyesika.se> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Rspamd-Queue-Id: 4NBdxr4J30z9srs Received-SPF: pass client-ip=2001:67c:2050:0:465::202; envelope-from=tsyesika@tsyesika.se; helo=mout-p-202.mailbox.org X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) --=-=-= Content-Type: text/plain Hello, I've packaged svtplay-dl, a program to download content from the Swedish TV broadcaster among others. -- Thanks, Jessica. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Add-svtplay-dl.patch Content-Description: svtplay-dl >From e38e635f459aa7740459b40943af88b6ee2624fd Mon Sep 17 00:00:00 2001 Message-Id: From: Jessica Tallon Date: Tue, 15 Nov 2022 22:00:01 +0100 Subject: [PATCH] Add svtplay-dl * gnu/packages/video.scm (svtplay-dl): New variable. --- gnu/packages/video.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index c8f3c6f8a5..aabbe1fc8b 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5605,3 +5605,27 @@ (define-public video-contact-sheet for details on how to change this.") (home-page "http://p.outlyer.net/vcs/") (license license:lgpl2.1+))) + +(define-public svtplay-dl + (package + (name "svtplay-dl") + (version "4.14") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spaam/svtplay-dl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wdrdszalvhv80m5jizbvjz4jc08acmbpxcsslyfb5cwh842in8m")))) + (build-system python-build-system) + (inputs (list ffmpeg python-pyaml python-requests python-pysocks + python-cryptography)) + (home-page "https://svtplay-dl.se/") + (synopsis "Download or stream SVT Play's (and others) TV programmes") + (description + "@code{svtplay-dl} allows downloading TV programmes from various swedish +broadcasters including SVT Play, Sveriges Radio, TV4 Play, among with many +others.") + (license license:expat))) -- 2.38.1 --=-=-=-- ------------=_1669674842-21417-1--