unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60606] [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest
@ 2023-01-06 20:24 Arun Isaac
  2023-01-06 20:26 ` [bug#60606] [PATCH] gnu: guile-email-latest: Remove package Arun Isaac
  2023-01-12 20:36 ` bug#60606: [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest Ricardo Wurmus
  0 siblings, 2 replies; 4+ messages in thread
From: Arun Isaac @ 2023-01-06 20:24 UTC (permalink / raw)
  To: rekado, 60606; +Cc: Arun Isaac

Hi Ricardo,

With the release of guile-email 0.3.0, I think we should remove
guile-email-latest and have mumi depend on guile-email instead. WDYT?

Regards,
Arun

Arun Isaac (1):
  gnu: guile-email-latest: Remove package.

 gnu/packages/guile-xyz.scm | 20 --------------------
 gnu/packages/mail.scm      |  4 ++--
 2 files changed, 2 insertions(+), 22 deletions(-)

-- 
2.38.1





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

* [bug#60606] [PATCH] gnu: guile-email-latest: Remove package.
  2023-01-06 20:24 [bug#60606] [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest Arun Isaac
@ 2023-01-06 20:26 ` Arun Isaac
  2023-01-12 14:17   ` Simon Tournier
  2023-01-12 20:36 ` bug#60606: [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest Ricardo Wurmus
  1 sibling, 1 reply; 4+ messages in thread
From: Arun Isaac @ 2023-01-06 20:26 UTC (permalink / raw)
  To: 60606; +Cc: Ricardo Wurmus, Arun Isaac

* gnu/packages/guile-xyz.scm (guile-email-latest): Delete variable.
* gnu/packages/mail.scm (mumi)[inputs]: Replace guile-email-latest with
guile-email.
---
 gnu/packages/guile-xyz.scm | 20 --------------------
 gnu/packages/mail.scm      |  4 ++--
 2 files changed, 2 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 1ed8290ba6..ca75305fac 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1503,26 +1503,6 @@ (define-public guile-email
 format.")
     (license license:agpl3+)))
 
-(define-public guile-email-latest
-  (let ((commit "ea60bb902d3677d5c653851c7aa6afbbf710140e")
-        (revision "2"))
-    (package
-      (inherit guile-email)
-      (name "guile-email-latest")
-      (version (git-version "0.2.2" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://git.systemreboot.net/guile-email")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32
-           "1g4rn7ai3nfxmpppc8qbpv8b18wnsld29y5xa58cv9b8pf3pbwnj"))))
-      (native-inputs
-       (list pkg-config autoconf automake texinfo)))))
-
 (define-public guile2.2-email
   (package
     (inherit guile-email)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index de868e948b..369f4dccd8 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2016, 2017 Troy Sankey <sankeytms@gmail.com>
 ;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is>
 ;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org>
-;;; Copyright © 2016–2022 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2016–2023 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
 ;;; Copyright © 2016, 2018 Marius Bakke <mbakke@fastmail.com>
 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
@@ -4072,7 +4072,7 @@ (define-public mumi
                     `("GUILE_LOAD_COMPILED_PATH" ":" prefix
                       (,go ,(getenv "GUILE_LOAD_COMPILED_PATH"))))))))))
       (inputs
-       (list guile-email-latest
+       (list guile-email
              guile-fibers
              guile-gcrypt
              guile-json-4
-- 
2.38.1





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

* [bug#60606] [PATCH] gnu: guile-email-latest: Remove package.
  2023-01-06 20:26 ` [bug#60606] [PATCH] gnu: guile-email-latest: Remove package Arun Isaac
@ 2023-01-12 14:17   ` Simon Tournier
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Tournier @ 2023-01-12 14:17 UTC (permalink / raw)
  To: Arun Isaac, 60606; +Cc: Ricardo Wurmus, Arun Isaac

Hi Arun,

On ven., 06 janv. 2023 at 20:26, Arun Isaac <arunisaac@systemreboot.net> wrote:
> * gnu/packages/guile-xyz.scm (guile-email-latest): Delete variable.
> * gnu/packages/mail.scm (mumi)[inputs]: Replace guile-email-latest with
> guile-email.
> ---
>  gnu/packages/guile-xyz.scm | 20 --------------------
>  gnu/packages/mail.scm      |  4 ++--
>  2 files changed, 2 insertions(+), 22 deletions(-)

LGTM.

Cheers,
simon




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

* bug#60606: [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest
  2023-01-06 20:24 [bug#60606] [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest Arun Isaac
  2023-01-06 20:26 ` [bug#60606] [PATCH] gnu: guile-email-latest: Remove package Arun Isaac
@ 2023-01-12 20:36 ` Ricardo Wurmus
  1 sibling, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2023-01-12 20:36 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 60606-done


Arun Isaac <arunisaac@systemreboot.net> writes:

> With the release of guile-email 0.3.0, I think we should remove
> guile-email-latest and have mumi depend on guile-email instead. WDYT?

Agreed.

I applied it.  Thanks!

-- 
Ricardo




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

end of thread, other threads:[~2023-01-12 20:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-06 20:24 [bug#60606] [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest Arun Isaac
2023-01-06 20:26 ` [bug#60606] [PATCH] gnu: guile-email-latest: Remove package Arun Isaac
2023-01-12 14:17   ` Simon Tournier
2023-01-12 20:36 ` bug#60606: [PATCH 0/1] mumi: Depend on guile-email, not guile-email-latest Ricardo Wurmus

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