unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#74417] [PATCH] gnu: qbittorrent: Update to 5.0.1.
@ 2024-11-18 12:53 Ron Nazarov via Guix-patches via
  2024-11-20 10:57 ` bug#74417: " Z572
  0 siblings, 1 reply; 2+ messages in thread
From: Ron Nazarov via Guix-patches via @ 2024-11-18 12:53 UTC (permalink / raw)
  To: 74417; +Cc: Ron Nazarov

* gnu/packages/bittorrent.scm (qbittorrent): Update to 5.0.1.
[native-inputs]: Replace qttools-5 with qttools.
[inputs]: Replace qtsvg-5 with qtsvg. Add qtbase.

Change-Id: I82dd5b65f1a812c989baa752313cd3daeaf0d8bf
---
 gnu/packages/bittorrent.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 2b38c7cb65..758202d70f 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2022 Jacob Hart <hartja1@yahoo.com>
 ;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
 ;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
+;;; Copyright © 2024 Noisytoot <ron@noisytoot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -510,7 +511,7 @@ (define-public libtorrent-rasterbar-1.2
 (define-public qbittorrent
   (package
     (name "qbittorrent")
-    (version "4.6.6")
+    (version "5.0.1")
     (source
      (origin
        (method git-fetch)
@@ -519,19 +520,20 @@ (define-public qbittorrent
              (commit (string-append "release-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0kv7dgnfy8m480kxc4na9v9cjq9f9m3il191w7yvj4i8lz6jcaq1"))))
+        (base32 "03kqir7jyrzblg4642gnf2pp8f0x68njgaalmq8qjh7dcx0d6rq6"))))
     (build-system qt-build-system)
     (arguments
      (list #:configure-flags #~(list "-DTESTING=ON")
            #:test-target "check"))
     (native-inputs
-     (list qttools-5))
+     (list qttools))
     (inputs
      (list boost
            libtorrent-rasterbar
            openssl
            python-wrapper
-           qtsvg-5
+           qtbase
+           qtsvg
            zlib))
     (home-page "https://www.qbittorrent.org/")
     (synopsis "Graphical BitTorrent client")
-- 
2.46.0





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

* bug#74417: [PATCH] gnu: qbittorrent: Update to 5.0.1.
  2024-11-18 12:53 [bug#74417] [PATCH] gnu: qbittorrent: Update to 5.0.1 Ron Nazarov via Guix-patches via
@ 2024-11-20 10:57 ` Z572
  0 siblings, 0 replies; 2+ messages in thread
From: Z572 @ 2024-11-20 10:57 UTC (permalink / raw)
  To: Ron Nazarov via Guix-patches via; +Cc: Ron Nazarov, 74417-done

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

Ron Nazarov via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/bittorrent.scm (qbittorrent): Update to 5.0.1.
> [native-inputs]: Replace qttools-5 with qttools.
> [inputs]: Replace qtsvg-5 with qtsvg. Add qtbase.
>
> Change-Id: I82dd5b65f1a812c989baa752313cd3daeaf0d8bf
> ---
>  gnu/packages/bittorrent.scm | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
> index 2b38c7cb65..758202d70f 100644
> --- a/gnu/packages/bittorrent.scm
> +++ b/gnu/packages/bittorrent.scm
> @@ -18,6 +18,7 @@
>  ;;; Copyright © 2022 Jacob Hart <hartja1@yahoo.com>
>  ;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
>  ;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
> +;;; Copyright © 2024 Noisytoot <ron@noisytoot.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -510,7 +511,7 @@ (define-public libtorrent-rasterbar-1.2
>  (define-public qbittorrent
>    (package
>      (name "qbittorrent")
> -    (version "4.6.6")
> +    (version "5.0.1")
>      (source
>       (origin
>         (method git-fetch)
> @@ -519,19 +520,20 @@ (define-public qbittorrent
>               (commit (string-append "release-" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "0kv7dgnfy8m480kxc4na9v9cjq9f9m3il191w7yvj4i8lz6jcaq1"))))
> +        (base32 "03kqir7jyrzblg4642gnf2pp8f0x68njgaalmq8qjh7dcx0d6rq6"))))
>      (build-system qt-build-system)
>      (arguments
>       (list #:configure-flags #~(list "-DTESTING=ON")
>             #:test-target "check"))
>      (native-inputs
> -     (list qttools-5))
> +     (list qttools))
>      (inputs
>       (list boost
>             libtorrent-rasterbar
>             openssl
>             python-wrapper
> -           qtsvg-5
> +           qtbase

should add qtbase to arguments's #:qtbase keyword, qt-build-system sets
different environment variables depending on the version of qtbase.

> +           qtsvg
>             zlib))
>      (home-page "https://www.qbittorrent.org/")
>      (synopsis "Graphical BitTorrent client")
and update qbittorrent to 5.0.2, qbittorrent-enhanced to 5.0.2.10.

pushed, closing.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2024-11-20 10:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-18 12:53 [bug#74417] [PATCH] gnu: qbittorrent: Update to 5.0.1 Ron Nazarov via Guix-patches via
2024-11-20 10:57 ` bug#74417: " Z572

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