all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12.
@ 2022-05-02  2:31 jgart via Guix-patches via
  2022-05-06  8:23 ` Ludovic Courtès
  2022-07-07 20:30 ` bug#55215: " Maxim Cournoyer
  0 siblings, 2 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-05-02  2:31 UTC (permalink / raw)
  To: 55215; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-circe): Update to 2.12.
---
 gnu/packages/emacs-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d0851a480e..0723639b8f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16227,11 +16227,11 @@ (define-public emacs-auth-source-xoauth2
 (define-public emacs-circe
   ;; The latest stable release is two years old, and some important fixes have
   ;; landed since then.
-  (let ((commit "d6f1fa18646f6ed2a1c0f06a4888130bd694ff19")
-        (revision "0"))
+  (let ((commit "710f057fedae6e9b820cce9336fef24b7d057e4c")
+        (revision "1"))
     (package
       (name "emacs-circe")
-      (version (git-version "2.11" revision commit))
+      (version (git-version "2.12" revision commit))
       (source
        (origin
          (method git-fetch)
-- 
2.35.1





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

* [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12.
  2022-05-02  2:31 [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12 jgart via Guix-patches via
@ 2022-05-06  8:23 ` Ludovic Courtès
  2022-05-06 16:30   ` jgart via Guix-patches via
  2022-07-07 20:30 ` bug#55215: " Maxim Cournoyer
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2022-05-06  8:23 UTC (permalink / raw)
  To: jgart; +Cc: 55215

jgart <jgart@dismail.de> skribis:

> * gnu/packages/emacs-xyz.scm (emacs-circe): Update to 2.12.
> ---
>  gnu/packages/emacs-xyz.scm | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index d0851a480e..0723639b8f 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -16227,11 +16227,11 @@ (define-public emacs-auth-source-xoauth2
>  (define-public emacs-circe
>    ;; The latest stable release is two years old, and some important fixes have
>    ;; landed since then.
> -  (let ((commit "d6f1fa18646f6ed2a1c0f06a4888130bd694ff19")
> -        (revision "0"))
> +  (let ((commit "710f057fedae6e9b820cce9336fef24b7d057e4c")
> +        (revision "1"))
>      (package
>        (name "emacs-circe")
> -      (version (git-version "2.11" revision commit))
> +      (version (git-version "2.12" revision commit))

Looks like you forgot to update the hash.  Could you send an updated
patch?

TIA!

Ludo’.




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

* [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12.
  2022-05-06  8:23 ` Ludovic Courtès
@ 2022-05-06 16:30   ` jgart via Guix-patches via
  2022-05-09  8:29     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-05-06 16:30 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 55215

On Fri, 06 May 2022 10:23:45 +0200 Ludovic Courtès <ludo@gnu.org> wrote:
> jgart <jgart@dismail.de> skribis:
> 
> > * gnu/packages/emacs-xyz.scm (emacs-circe): Update to 2.12.
> > ---
> >  gnu/packages/emacs-xyz.scm | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> > index d0851a480e..0723639b8f 100644
> > --- a/gnu/packages/emacs-xyz.scm
> > +++ b/gnu/packages/emacs-xyz.scm
> > @@ -16227,11 +16227,11 @@ (define-public emacs-auth-source-xoauth2
> >  (define-public emacs-circe
> >    ;; The latest stable release is two years old, and some important fixes have
> >    ;; landed since then.
> > -  (let ((commit "d6f1fa18646f6ed2a1c0f06a4888130bd694ff19")
> > -        (revision "0"))
> > +  (let ((commit "710f057fedae6e9b820cce9336fef24b7d057e4c")
> > +        (revision "1"))
> >      (package
> >        (name "emacs-circe")
> > -      (version (git-version "2.11" revision commit))
> > +      (version (git-version "2.12" revision commit))
> 
> Looks like you forgot to update the hash.  Could you send an updated
> patch?

Hi Ludo,

Thanks for the review.

I've run into this issue before that no matter what I do to try to get
guix to detect the faulty hash it happily builds the package in question
successfully without failing.

For example, I tried changing the first character of the hash to 1
if 0 in order to cause it to fail but guix does not complain and builds
it nonetheless.

Is this because of some caching going on? What should I do?

all best,

jgart




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

* [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12.
  2022-05-06 16:30   ` jgart via Guix-patches via
@ 2022-05-09  8:29     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2022-05-09  8:29 UTC (permalink / raw)
  To: jgart; +Cc: 55215

Hi,

jgart <jgart@dismail.de> skribis:

> I've run into this issue before that no matter what I do to try to get
> guix to detect the faulty hash it happily builds the package in question
> successfully without failing.

Since ‘origin’ has a ‘file-name’ field that is a function of the version
string, Guix will try to redownload the source if you change the version
string, and at that point it should fail with a wrong hash error, as it
did for me.

Let me know if you observe something different.

HTH,
Ludo’.




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

* bug#55215: [PATCH] gnu: emacs-circe: Update to 2.12.
  2022-05-02  2:31 [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12 jgart via Guix-patches via
  2022-05-06  8:23 ` Ludovic Courtès
@ 2022-07-07 20:30 ` Maxim Cournoyer
  1 sibling, 0 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2022-07-07 20:30 UTC (permalink / raw)
  To: jgart; +Cc: 55215-done

Hello,

jgart <jgart@dismail.de> writes:

> * gnu/packages/emacs-xyz.scm (emacs-circe): Update to 2.12.
> ---
>  gnu/packages/emacs-xyz.scm | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index d0851a480e..0723639b8f 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -16227,11 +16227,11 @@ (define-public emacs-auth-source-xoauth2
>  (define-public emacs-circe
>    ;; The latest stable release is two years old, and some important fixes have
>    ;; landed since then.
> -  (let ((commit "d6f1fa18646f6ed2a1c0f06a4888130bd694ff19")
> -        (revision "0"))
> +  (let ((commit "710f057fedae6e9b820cce9336fef24b7d057e4c")
> +        (revision "1"))
>      (package
>        (name "emacs-circe")
> -      (version (git-version "2.11" revision commit))
> +      (version (git-version "2.12" revision commit))
>        (source
>         (origin
>           (method git-fetch)

Obsoleted by commit 96eb2337b5, which updated emacs-circe to 2.12.

Thanks,

Maxim




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

end of thread, other threads:[~2022-07-07 20:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-02  2:31 [bug#55215] [PATCH] gnu: emacs-circe: Update to 2.12 jgart via Guix-patches via
2022-05-06  8:23 ` Ludovic Courtès
2022-05-06 16:30   ` jgart via Guix-patches via
2022-05-09  8:29     ` Ludovic Courtès
2022-07-07 20:30 ` bug#55215: " Maxim Cournoyer

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.