unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#63782] [PATCH 1/2] gnu: Add qbittorrent-enhanced.
@ 2023-05-29  7:01 Hilton Chain via Guix-patches via
  2023-05-29  7:03 ` [bug#63782] [PATCH 2/2] gnu: Add qbittorrent-enhanced-nox Hilton Chain via Guix-patches via
  2023-07-01 10:09 ` bug#63782: [PATCH 1/2] gnu: Add qbittorrent-enhanced Nicolas Goaziou
  0 siblings, 2 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-05-29  7:01 UTC (permalink / raw)
  To: 63782; +Cc: Hilton Chain

* gnu/packages/bittorrent.scm (qbittorrent-enhanced): New variable.
---
 gnu/packages/bittorrent.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 38e959b884..acec7a48d9 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -519,6 +519,33 @@ (define-public qbittorrent-nox
        (modify-inputs (package-inputs base)
          (delete "qtsvg-5"))))))
 
+(define-public qbittorrent-enhanced
+  (package
+    (inherit qbittorrent)
+    (name "qbittorrent-enhanced")
+    (version "4.5.2.10")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/c0re100/qBittorrent-Enhanced-Edition")
+                    (commit (string-append "release-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "18z4panaqbmhbw5i1yn17wpqzslhy6w08zcc5bx2hhlg8slp1r9j"))))
+    (home-page "https://github.com/c0re100/qBittorrent-Enhanced-Edition")
+    (description
+     "qBittorrent Enhanced is a bittorrent client based on qBittorrent with
+the following features:
+
+@itemize
+@item Auto Ban Xunlei, QQ, Baidu, Xfplay, DLBT and Offline downloader
+@item Auto Ban Unknown Peer from China Option (Default: OFF)
+@item Auto Update Public Trackers List (Default: OFF)
+@item Auto Ban BitTorrent Media Player Peer Option (Default: OFF)
+@item Peer whitelist/blacklist
+@end itemize\n")))
+
 (define-public deluge
   (package
     (name "deluge")

base-commit: d64d6ea2cf5a1be801be355031fb2cfa5901a92a
-- 
2.40.1





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

* [bug#63782] [PATCH 2/2] gnu: Add qbittorrent-enhanced-nox.
  2023-05-29  7:01 [bug#63782] [PATCH 1/2] gnu: Add qbittorrent-enhanced Hilton Chain via Guix-patches via
@ 2023-05-29  7:03 ` Hilton Chain via Guix-patches via
  2023-07-01 10:09 ` bug#63782: [PATCH 1/2] gnu: Add qbittorrent-enhanced Nicolas Goaziou
  1 sibling, 0 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-05-29  7:03 UTC (permalink / raw)
  To: 63782; +Cc: Hilton Chain

* gnu/packages/bittorrent.scm (qbittorrent-enhanced-nox): New variable.
---
 gnu/packages/bittorrent.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index acec7a48d9..a55fb1e6c7 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -546,6 +546,13 @@ (define-public qbittorrent-enhanced
 @item Peer whitelist/blacklist
 @end itemize\n")))
 
+(define-public qbittorrent-enhanced-nox
+  (package
+    (inherit qbittorrent-enhanced)
+    (name "qbittorrent-enhanced-nox")
+    (arguments (package-arguments qbittorrent-nox))
+    (inputs (package-inputs qbittorrent-nox))))
+
 (define-public deluge
   (package
     (name "deluge")
-- 
2.40.1





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

* bug#63782: [PATCH 1/2] gnu: Add qbittorrent-enhanced.
  2023-05-29  7:01 [bug#63782] [PATCH 1/2] gnu: Add qbittorrent-enhanced Hilton Chain via Guix-patches via
  2023-05-29  7:03 ` [bug#63782] [PATCH 2/2] gnu: Add qbittorrent-enhanced-nox Hilton Chain via Guix-patches via
@ 2023-07-01 10:09 ` Nicolas Goaziou
  1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2023-07-01 10:09 UTC (permalink / raw)
  To: Hilton Chain via Guix-patches via; +Cc: Hilton Chain, 63782-done

Hello,

Hilton Chain via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/bittorrent.scm (qbittorrent-enhanced): New variable.

Applied. Thank you.

> +    (description
> +     "qBittorrent Enhanced is a bittorrent client based on qBittorrent with
> +the following features:
> +
> +@itemize
> +@item Auto Ban Xunlei, QQ, Baidu, Xfplay, DLBT and Offline downloader
> +@item Auto Ban Unknown Peer from China Option (Default: OFF)
> +@item Auto Update Public Trackers List (Default: OFF)
> +@item Auto Ban BitTorrent Media Player Peer Option (Default: OFF)
> +@item Peer whitelist/blacklist
> +@end itemize\n")))

Note the newline character is not necessary at the end of the
description. I removed it.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2023-07-01 10:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-29  7:01 [bug#63782] [PATCH 1/2] gnu: Add qbittorrent-enhanced Hilton Chain via Guix-patches via
2023-05-29  7:03 ` [bug#63782] [PATCH 2/2] gnu: Add qbittorrent-enhanced-nox Hilton Chain via Guix-patches via
2023-07-01 10:09 ` bug#63782: [PATCH 1/2] gnu: Add qbittorrent-enhanced Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).