From unknown Sun Jun 22 00:54:24 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61446] [PATCH] gnu: Add qbittorrent-nox. Resent-From: Hilton Chain Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 12 Feb 2023 05:10:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61446@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16761785867580 (code B ref -1); Sun, 12 Feb 2023 05:10:02 +0000 Received: (at submit) by debbugs.gnu.org; 12 Feb 2023 05:09:46 +0000 Received: from localhost ([127.0.0.1]:43809 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pR4cT-0001yA-Or for submit@debbugs.gnu.org; Sun, 12 Feb 2023 00:09:46 -0500 Received: from lists.gnu.org ([209.51.188.17]:35822) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pR4cR-0001y0-Qc for submit@debbugs.gnu.org; Sun, 12 Feb 2023 00:09:44 -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 1pR4cR-000123-Iy for guix-patches@gnu.org; Sun, 12 Feb 2023 00:09:43 -0500 Received: from mail.boiledscript.com ([144.168.59.46]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pR4cQ-0007wr-53 for guix-patches@gnu.org; Sun, 12 Feb 2023 00:09:43 -0500 Date: Sun, 12 Feb 2023 13:08:57 +0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1676178580; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=YPlsi61emBP18Fyb0dQaAMNBFS7hT78csublIWqYoRk=; b=aRAB6g1CRx5pyMWb4Pii3uMY2Guazo7DkTG3HyIHDpMe4LP7LjXsSqkx1oFvTJhUCZ8aNr YibSxX67DkV4BbS5jzLGL7exoFjVCO/QcV3Ax0DjwI57dKYWu5/lg0PfBtX6MsEFygPpx9 zM1PyBquCaOHsdvB5IDHO/tfFEdpCb3O3Q84uYCNb1a/D1AW89LcaLWExuvFX7Q1z1UIIu K67iEBs3qaGIKhoHtlkmOWuIf3UBVbesAPqhxNA9H5/1zsObqsuxrBdeg5cfSRkiEaI+lD BsldJ1kCVsFuLGgGogio9AXjZepPIKgtP/UVS4ctbHiN7sdX6i8Re10M3Yizpg== Message-ID: <87a61jjwra.wl-hako@ultrarare.space> From: Hilton Chain MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space X-Spamd-Bar: / Received-SPF: pass client-ip=144.168.59.46; envelope-from=hako@ultrarare.space; helo=mail.boiledscript.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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.3 (--) * gnu/packages/bittorrent.scm (qbittorrent-nox): New variable. --- gnu/packages/bittorrent.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index c3257cf2bf..ab4091009d 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -491,6 +491,23 @@ (define-public qbittorrent features.") (license l:gpl2+))) +(define-public qbittorrent-nox + (let ((base qbittorrent)) + (package + (inherit base) + (name "qbittorrent-nox") + (arguments + (substitute-keyword-arguments (package-arguments base) + ((#:configure-flags configure-flags) + #~(append #$configure-flags + (list "--disable-gui"))) + ((#:phases phases) + #~(modify-phases #$phases + (delete 'wrap-qt))))) + (inputs + (modify-inputs (package-inputs base) + (delete "qtsvg-5")))))) + (define-public deluge (package (name "deluge") base-commit: 4a6f64ab2afff761eb233e7ca6110d9e8acf8f32 -- 2.39.1 From unknown Sun Jun 22 00:54:24 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61446] [PATCH] gnu: Add qbittorrent-nox. Resent-From: Josselin Poiret Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 17 May 2023 21:27:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Hilton Chain , 61446@debbugs.gnu.org Received: via spool by 61446-submit@debbugs.gnu.org id=B61446.16843587756568 (code B ref 61446); Wed, 17 May 2023 21:27:01 +0000 Received: (at 61446) by debbugs.gnu.org; 17 May 2023 21:26:15 +0000 Received: from localhost ([127.0.0.1]:51253 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pzOf0-0001hs-N0 for submit@debbugs.gnu.org; Wed, 17 May 2023 17:26:14 -0400 Received: from jpoiret.xyz ([206.189.101.64]:50830) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pzOey-0001hh-F2 for 61446@debbugs.gnu.org; Wed, 17 May 2023 17:26:13 -0400 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id 038D8184F2B; Wed, 17 May 2023 21:26:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1684358771; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=dFbARaNwJNJOxcl17o5OuEoinjTUPDthI20xHgF8nJk=; b=ZbA3k0R2jiE1wahfLyAYU+U9JmAtp1LTlWeiC9KIbFXAixftsH0FTI1b9T0imBVcDw+YdE R+oRDRj2rKPg1kYkfsXOSas1GW3nQwMTgTgX5oRDjXfnUYtDCs17iMTP6DXMcyDfPAzD1r wj+jrDM/PyjXbH+H/Sh5bvMHoAsF40KWk4R2wcsFZBehWY6skVZ1a5p3TrGPT6us9Oc4Uj grXR0J8AlboIbCyEYpclFf5v6PTIY5ed42KsJu6aNVqN7t5A4HgW21k4JrhHHb9UJfgk5B lpyLn0+Ut9mXUzOKTXm1yHtQ2ZBzN36n+/EBZmPPx4YxzadTpDzTDBVbA0VrJQ== From: Josselin Poiret In-Reply-To: <87a61jjwra.wl-hako@ultrarare.space> References: <87a61jjwra.wl-hako@ultrarare.space> Date: Wed, 17 May 2023 23:26:08 +0200 Message-ID: <87ilcq1wgf.fsf@jpoiret.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spamd-Bar: / Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spam-Score: 0.0 (/) 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: 0.0 (/) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi Hilton, Hilton Chain via Guix-patches via writes: > * gnu/packages/bittorrent.scm (qbittorrent-nox): New variable. LGTM, applied as d845202d357057b586ec2075a8b8ec492210c005. Pro-tip: I guess because your mail domain has a strict DKIM policy, your mail's subject being rewritten by debbugs causes it to fail, and so mailman then rewrites the From: header to the generic mailing list address. This causes your patches to have the mailing list's address when applying. You can remedy this by adding format.forceinbodyfrom=3Dtrue to your git config, which will always add a pristine From: in the body of the mail. Best, =2D-=20 Josselin Poiret --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHEBAEBCgAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmRlRnAQHGRldkBqcG9p cmV0Lnh5egAKCRBQXkC5FhcaisEZC/9P/mr+0K3DS5YzC/JMXax1EfiLlGyKpjtL aobWgIGSOzzRC1be2Dj4MHvysg5kd2CQvhce66jH4om8ygUHsFCRDiHHt5wgO/BU h81UKwT4kI5E+nsI9sMCeZw1UgSvEF+fdUpZFDqMheANnabZwYIIGvbzNezl6SaB ZONwGWehefsNsSBrHMk1fBjxMz0F4koGaWakqRi13M6yftqPK4/lJCbNKFd8O5Bv Xj4+sFXyHRN4gObs2jxc7QC+EBZTPDtu8MeumQz0rXtDIgvcFjttDHtBlK7treww 10CprJPDfg4zquA3ex5rueW+LlhqWycxH7RBB6Gwy3kFF3q/vSK1NZd+5ayatQQ4 khyzsi/Zdrj2ARwDn4auEfCyh6lZaYH1eQtBcaeJSqzWPNGC9V8QFHXYVjey/TUn dML2eH+ib6nhFLSrAPpI85bn6uXbXci+/bMEO3Dtf8LZkAGVvFT8a/fnOC9G1HkU nNjA1vQpHiuLU37BvoIiKD5S0879x0U= =uIMO -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed May 17 17:27:24 2023 Received: (at control) by debbugs.gnu.org; 17 May 2023 21:27:24 +0000 Received: from localhost ([127.0.0.1]:51266 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pzOg8-0001kJ-Bz for submit@debbugs.gnu.org; Wed, 17 May 2023 17:27:24 -0400 Received: from jpoiret.xyz ([206.189.101.64]:51100) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pzOg5-0001kB-Sz for control@debbugs.gnu.org; Wed, 17 May 2023 17:27:22 -0400 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id 64F81185192 for ; Wed, 17 May 2023 21:27:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1684358841; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=ibKL9rsm0IBmTfZlH+RggLqFqSHXTTExRlJteCLbLCY=; b=ZgsDsu83GX1Q91wxxFLtUuFCP56V+87LLKOFkzYnKpfsVW58HIbNQhiJw87mOuacoRsvSs 64PJ8qFa1WMtnOQF0DgAkn2rtxuZOu/thu5B2wy5bFtgfhzPXhRcKF4krxCF4H08ufSgNa T7uj7DoiAwKwGkmBgpqhCQ58K5NtsjvABEpxdL+isEla0DOlxSJuxxQuvW9C7nE4ppLYWu b84aya/8F3YEudIHGehp+uJLUBz4s9O1ZDN3RDvt6f5tKztlAK40Dfp8MurQzj6If3Gpfi Yc1dC/PXnv7bjZZMebKigbG2k93IETxdbJVhfsr2uCgTD+1zKMhP+CpgLrU2Ow== From: Josselin Poiret To: control@debbugs.gnu.org Subject: Date: Wed, 17 May 2023 23:27:19 +0200 Message-ID: <87cz2y1weg.fsf@jpoiret.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spamd-Bar: + Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spam-Level: * X-Spam-Score: 4.0 (++++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 61446 thankyou -- Josselin Poiret Content analysis details: (4.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 T_PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: jpoiret.xyz (xyz)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 FROM_SUSPICIOUS_NTLD_FP From abused NTLD 0.0 FROM_SUSPICIOUS_NTLD From abused NTLD 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control 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: 1.0 (+) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable close 61446 thankyou =2D-=20 Josselin Poiret --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHEBAEBCgAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmRlRrcQHGRldkBqcG9p cmV0Lnh5egAKCRBQXkC5FhcaisegDACJV28t948yAMHA6aGtJGMT9Ey63E/tOJHt UUnvssdC7E5yslj8XNSqANOb7QpaMrry9wyFIUl6+HV93x7bXscbvv+qSrz9zOtD FUwG02UJ0qo1izCLqe39JCz9q5NS32mO5/fprp3pDzo3bqdWL1TRnseVye6AIrb3 /oGC4dOVACuprXiwNjEa1ATq/QGXub1NBXqX561ZfNZLU/T9pQiDZWW4D3VQHCGf iB3OHlBULAsbWXB6ptO7PuqztySW6wsA8iyuckIdESSvKY6+5RTrr6r770NCs9jr rZyS4lO6eyRZYKX8CDuqnw+dFWYIkUPhE697HhyubzHiAz0Xv9tCWpPdyvx51VM5 kG2nMuquXf8rEsbVYKMPkq8bK/3n5RDxBjk5XXeMq9XaK8Ab8obzFeK6wCIcAC14 2cSdhtOKhnlnlGY4vQglTaN2qoBfALhwo3lqSLT4w3ekaLeIJW0uAahyRcZCjORc fmGAIAweOzl8000BJXF0Dnq4Dzojud8= =vwed -----END PGP SIGNATURE----- --=-=-=--