unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#73078] [PATCH] qutebrowser: Update to 3.2.1.
@ 2024-09-06 17:23 Herman Rimm via Guix-patches via
  2024-09-07 16:04 ` [bug#73078] QA review for 73078 Rodion Goritskov
  2024-09-07 16:09 ` bug#73078: [PATCH] qutebrowser: Update to 3.2.1 Z572
  0 siblings, 2 replies; 3+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-09-06 17:23 UTC (permalink / raw)
  To: 73078

* gnu/packages/web-browser.scm (qutebrowser): Update to 3.2.1.
[source]: Use name instead of "qutebrowser" literal.
---
 gnu/packages/web-browsers.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index a8c51b503b..70a58132bb 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -464,15 +464,16 @@ (define-public kristall
 (define-public qutebrowser
   (package
     (name "qutebrowser")
-    (version "3.1.0")
+    (version "3.2.1")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://github.com/qutebrowser/"
-                           "qutebrowser/releases/download/v" version "/"
-                           "qutebrowser-" version ".tar.gz"))
+       (uri (string-append "https://github.com/" name "/" name
+                           "/releases/download/v" version "/" name "-"
+                           version ".tar.gz"))
        (sha256
-        (base32 "0prf9c7nx4aizfczjb0fpsn3alz210i6wc7s2jwb1mh8r8fcq3ah"))))
+         (base32
+           "0zc9736zpmzn7250wbgk6n1q7nc05i0vic15na3qvcsxdhmaz9q2"))))
     (build-system python-build-system)
     (native-inputs
      (list python-attrs))               ; for tests
-- 
2.45.2





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

* [bug#73078] QA review for 73078
  2024-09-06 17:23 [bug#73078] [PATCH] qutebrowser: Update to 3.2.1 Herman Rimm via Guix-patches via
@ 2024-09-07 16:04 ` Rodion Goritskov
  2024-09-07 16:09 ` bug#73078: [PATCH] qutebrowser: Update to 3.2.1 Z572
  1 sibling, 0 replies; 3+ messages in thread
From: Rodion Goritskov @ 2024-09-07 16:04 UTC (permalink / raw)
  To: control, 73078

user guix
usertag 73078 + reviewed-looks-good
thanks

Guix QA review form submission:
It successfully starts and loads a couple of pages

Items marked as checked: Lint warnings, Package builds, Commit messages




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

* bug#73078: [PATCH] qutebrowser: Update to 3.2.1.
  2024-09-06 17:23 [bug#73078] [PATCH] qutebrowser: Update to 3.2.1 Herman Rimm via Guix-patches via
  2024-09-07 16:04 ` [bug#73078] QA review for 73078 Rodion Goritskov
@ 2024-09-07 16:09 ` Z572
  1 sibling, 0 replies; 3+ messages in thread
From: Z572 @ 2024-09-07 16:09 UTC (permalink / raw)
  To: Herman Rimm via Guix-patches via; +Cc: Herman Rimm, 73078-done

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

Herman Rimm via Guix-patches via <guix-patches@gnu.org> writes:

should "gnu: qutebrowser: Update to 3.2.1."

> * gnu/packages/web-browser.scm (qutebrowser): Update to 3.2.1.
> [source]: Use name instead of "qutebrowser" literal.
> ---
>  gnu/packages/web-browsers.scm | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
> index a8c51b503b..70a58132bb 100644
> --- a/gnu/packages/web-browsers.scm
> +++ b/gnu/packages/web-browsers.scm
> @@ -464,15 +464,16 @@ (define-public kristall
>  (define-public qutebrowser
>    (package
>      (name "qutebrowser")
> -    (version "3.1.0")
> +    (version "3.2.1")
>      (source
>       (origin
>         (method url-fetch)
> -       (uri (string-append "https://github.com/qutebrowser/"
> -                           "qutebrowser/releases/download/v" version "/"
> -                           "qutebrowser-" version ".tar.gz"))
> +       (uri (string-append "https://github.com/" name "/" name
> +                           "/releases/download/v" version "/" name "-"
> +                           version ".tar.gz"))

Normally we shouldn't do this, if one day we rename this package
qutebrowser-minimal the link will be wrong.
And I switched to git-fetch, because this is a better option, you can
specify the branch/commit, including downloading the source code is a
directory, you can directly cd into the file.

>         (sha256
> -        (base32 "0prf9c7nx4aizfczjb0fpsn3alz210i6wc7s2jwb1mh8r8fcq3ah"))))
> +         (base32
> +           "0zc9736zpmzn7250wbgk6n1q7nc05i0vic15na3qvcsxdhmaz9q2"))))
>      (build-system python-build-system)
>      (native-inputs
>       (list python-attrs))               ; for tests

add asciidoc for fix build

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

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

end of thread, other threads:[~2024-09-07 16:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-06 17:23 [bug#73078] [PATCH] qutebrowser: Update to 3.2.1 Herman Rimm via Guix-patches via
2024-09-07 16:04 ` [bug#73078] QA review for 73078 Rodion Goritskov
2024-09-07 16:09 ` bug#73078: [PATCH] qutebrowser: Update to 3.2.1 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).