unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64273] [PATCH 0/2] Update qbittorrent
@ 2023-06-24 19:26 Timotej Lazar
  2023-06-24 19:27 ` [bug#64273] [PATCH 1/2] gnu: qbittorrent: Update to 4.5.4 Timotej Lazar
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-06-24 19:26 UTC (permalink / raw)
  To: 64273; +Cc: Timotej Lazar

This updates qbittorrent and simplifes the package definition by using
qt-build-system.

Thanks!

Timotej Lazar (2):
  gnu: qbittorrent: Update to 4.5.4.
  gnu: qbittorrent{,-nox}: Use qt-build-system.

 gnu/packages/bittorrent.scm | 48 +++++++++++--------------------------
 1 file changed, 14 insertions(+), 34 deletions(-)


base-commit: 42a48a11b7a085c7df74941e0cf48f521c961a7f
-- 
2.40.1





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

* [bug#64273] [PATCH 1/2] gnu: qbittorrent: Update to 4.5.4.
  2023-06-24 19:26 [bug#64273] [PATCH 0/2] Update qbittorrent Timotej Lazar
@ 2023-06-24 19:27 ` Timotej Lazar
  2023-06-24 19:27 ` [bug#64273] [PATCH 2/2] gnu: qbittorrent{, -nox}: Use qt-build-system Timotej Lazar
  2023-07-11 14:06 ` bug#64273: [PATCH 0/2] Update qbittorrent Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-06-24 19:27 UTC (permalink / raw)
  To: 64273; +Cc: Timotej Lazar

* gnu/packages/bittorrent.scm (qbittorrent): Update to 4.5.4.
---
 gnu/packages/bittorrent.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 38e959b884..3e40720730 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -451,7 +451,7 @@ (define-public libtorrent-rasterbar
 (define-public qbittorrent
   (package
     (name "qbittorrent")
-    (version "4.5.2")
+    (version "4.5.4")
     (source
      (origin
        (method git-fetch)
@@ -460,7 +460,7 @@ (define-public qbittorrent
              (commit (string-append "release-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "07s0ypkd1zzkw9qhfwxxx7s6zizjz0448al17xmc1b48phn46hjk"))))
+        (base32 "1r4vqlwmvg7b0ibq53m7ascyykv3v66qxlwfi0zmmi1ig7rlkxkk"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags
-- 
2.40.1





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

* [bug#64273] [PATCH 2/2] gnu: qbittorrent{, -nox}: Use qt-build-system.
  2023-06-24 19:26 [bug#64273] [PATCH 0/2] Update qbittorrent Timotej Lazar
  2023-06-24 19:27 ` [bug#64273] [PATCH 1/2] gnu: qbittorrent: Update to 4.5.4 Timotej Lazar
@ 2023-06-24 19:27 ` Timotej Lazar
  2023-07-11 14:06 ` bug#64273: [PATCH 0/2] Update qbittorrent Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-06-24 19:27 UTC (permalink / raw)
  To: 64273; +Cc: Timotej Lazar

CMake is now upstream’s preferred build system.

* gnu/packages/bittorrent.scm (qbittorrent)[build-system]: Use qt-build-system.
[arguments]: Drop custom wrap phase. (Re-)enable tests.
[inputs]: Remove input labels. Drop qtbase-5.
[native-inputs]: Drop pkg-config.
(qbittorrent-nox)[arguments]: Adjust configure-flags. Keep the wrap-qt phase
since the non-GUI version is also a QT program.
---
 gnu/packages/bittorrent.scm | 44 ++++++++++---------------------------
 1 file changed, 12 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 3e40720730..0495d2dc6a 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -40,6 +40,7 @@ (define-module (gnu packages bittorrent)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system qt)
   #:use-module (guix build-system glib-or-gtk)
   #:use-module ((guix licenses) #:prefix l:)
   #:use-module (guix gexp)
@@ -461,36 +462,19 @@ (define-public qbittorrent
        (file-name (git-file-name name version))
        (sha256
         (base32 "1r4vqlwmvg7b0ibq53m7ascyykv3v66qxlwfi0zmmi1ig7rlkxkk"))))
-    (build-system gnu-build-system)
+    (build-system qt-build-system)
     (arguments
-     `(#:configure-flags
-       (list (string-append "--with-boost-libdir="
-                            (assoc-ref %build-inputs "boost")
-                            "/lib")
-             "--enable-debug"
-             "QMAKE_LRELEASE=lrelease")
-       #:modules ((guix build gnu-build-system)
-                  (guix build qt-utils)
-                  (guix build utils))
-       #:imported-modules (,@%gnu-build-system-modules
-                           (guix build qt-utils))
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'install 'wrap-qt
-           (lambda* (#:key outputs inputs #:allow-other-keys)
-             (let ((out (assoc-ref outputs "out")))
-               (wrap-qt-program "qbittorrent" #:output out #:inputs inputs))
-             #t)))))
+     (list #:configure-flags #~(list "-DTESTING=ON")
+           #:test-target "check"))
     (native-inputs
-     (list pkg-config qttools-5))
+     (list qttools-5))
     (inputs
-     `(("boost" ,boost)
-       ("libtorrent-rasterbar" ,libtorrent-rasterbar)
-       ("openssl" ,openssl)
-       ("python" ,python-wrapper)
-       ("qtbase" ,qtbase-5)
-       ("qtsvg-5" ,qtsvg-5)
-       ("zlib" ,zlib)))
+     (list boost
+           libtorrent-rasterbar
+           openssl
+           python-wrapper
+           qtsvg-5
+           zlib))
     (home-page "https://www.qbittorrent.org/")
     (synopsis "Graphical BitTorrent client")
     (description
@@ -510,11 +494,7 @@ (define-public 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)))))
+          #~(cons "-DGUI=OFF" #$configure-flags))))
       (inputs
        (modify-inputs (package-inputs base)
          (delete "qtsvg-5"))))))
-- 
2.40.1





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

* bug#64273: [PATCH 0/2] Update qbittorrent
  2023-06-24 19:26 [bug#64273] [PATCH 0/2] Update qbittorrent Timotej Lazar
  2023-06-24 19:27 ` [bug#64273] [PATCH 1/2] gnu: qbittorrent: Update to 4.5.4 Timotej Lazar
  2023-06-24 19:27 ` [bug#64273] [PATCH 2/2] gnu: qbittorrent{, -nox}: Use qt-build-system Timotej Lazar
@ 2023-07-11 14:06 ` Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-07-11 14:06 UTC (permalink / raw)
  To: Timotej Lazar; +Cc: 64273-done

Timotej Lazar <timotej.lazar@araneo.si> skribis:

>   gnu: qbittorrent: Update to 4.5.4.
>   gnu: qbittorrent{,-nox}: Use qt-build-system.

Hi!  Applied, thanks!

Ludo’.




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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-24 19:26 [bug#64273] [PATCH 0/2] Update qbittorrent Timotej Lazar
2023-06-24 19:27 ` [bug#64273] [PATCH 1/2] gnu: qbittorrent: Update to 4.5.4 Timotej Lazar
2023-06-24 19:27 ` [bug#64273] [PATCH 2/2] gnu: qbittorrent{, -nox}: Use qt-build-system Timotej Lazar
2023-07-11 14:06 ` bug#64273: [PATCH 0/2] Update qbittorrent Ludovic Courtès

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