From: Jean SIMARD <woshilapin@tuziwo.info>
To: 71780@debbugs.gnu.org, sharlatanus@gmail.com
Cc: Jean SIMARD <woshilapin@tuziwo.info>
Subject: [bug#71780] [PATCH v3 6/7] gnu: Add go-github-com-emersion-go-smtp-v0.18.
Date: Sat, 27 Jul 2024 13:08:23 +0000 [thread overview]
Message-ID: <7b637a438e275a435a88ee5f5e6183856d4e92ae.1722085502.git.woshilapin@tuziwo.info> (raw)
In-Reply-To: <0251f377a8ad50632175cd2cbbd1b4025b798ea0.1722085502.git.woshilapin@tuziwo.info>
* gnu/packages/golang.scm (go-github-com-emersion-go-smtp-v0.18): New variable.
Change-Id: Ib6ea1885abba6b76d1935872b800dc7eed8ab303
---
gnu/packages/golang.scm | 57 +++++++++++++++++++++++++----------------
1 file changed, 35 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 046b5189db..1ab1e4e88f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5833,29 +5833,42 @@ (define-public go-github-com-emersion-go-smtp
defined by RFC 5321.")
(license license:expat)))
+(define-public go-github-com-emersion-go-smtp-v0.18
+ (package
+ (inherit go-github-com-emersion-go-smtp)
+ (name "go-github-com-emersion-go-smtp")
+ (version "0.18.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emersion/go-smtp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1d17gmz88cnfld8y1j2jsmldhvg8czbdmrjis0ls9zi7rfqlmnra"))))))
+
(define-public go-github-com-emersion-go-sasl
- (let ((commit "0b9dcfb154ac3d7515b08bc2691a0332800edfe9")
- (revision "1"))
- (package
- (name "go-github-com-emersion-go-sasl")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/emersion/go-sasl")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1cbf86wkqrdinfydndgdlnayg4a5mg3d4vqra377j2sfkg7wj0hs"))))
- (build-system go-build-system)
- (arguments
- (list #:import-path "github.com/emersion/go-sasl"))
- (home-page "https://github.com/emersion/go-sasl")
- (synopsis "SASL library written in Go")
- (description "This package provides a SASL library written in Go.")
- (license license:expat))))
+ (package
+ (name "go-github-com-emersion-go-sasl")
+ (version "0.0.0-20220912192320-0145f2c60ead")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emersion/go-sasl")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00bkl56zycs3pd1schkxx3swfjixz0lvnzdxkxx9piv99w91v2n4"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/emersion/go-sasl"))
+ (home-page "https://github.com/emersion/go-sasl")
+ (synopsis "SASL library written in Go")
+ (description "This package provides a SASL library written in Go.")
+ (license license:expat)))
(define-public go-github-com-emersion-go-imap-idle
(let ((commit "2704abd7050ed7f2143753554ee23affdf847bd9")
--
2.45.2
next prev parent reply other threads:[~2024-07-27 13:09 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 12:51 [bug#71780] [PATCH 0/3] add hydroxide package Jean SIMARD
2024-06-26 7:32 ` [bug#71780] [PATCH 1/3] gnu: update go-github-com-emersion-go-sasl Jean SIMARD
2024-06-26 7:33 ` [bug#71780] [PATCH 2/3] gnu: update go-github-com-protonmail-go-crypto Jean SIMARD
2024-06-26 7:33 ` [bug#71780] [PATCH 3/3] gnu: add hydroxide Jean SIMARD
2024-06-29 12:53 ` woshilapin
2024-06-29 13:47 ` Sharlatan Hellseher
2024-06-26 14:31 ` [bug#71780] [PATCH 0/3] add hydroxide package Sharlatan Hellseher
2024-06-29 21:36 ` [bug#71780] [PATCH v2 1/7] gnu: go-github-com-emersion-go-pgpmail: Update to 0.2.1 Jean SIMARD
2024-06-29 21:36 ` [bug#71780] [PATCH v2 2/7] gnu: go-github-com-protonmail-go-crypto: Update to 0.0.0-20230923063757-afb1ddc0824c Jean SIMARD
2024-06-29 21:36 ` [bug#71780] [PATCH v2 3/7] gnu: Add go-github-com-boltdb-bolt Jean SIMARD
2024-06-29 21:37 ` [bug#71780] [PATCH v2 4/7] gnu: Add go-github-com-emersion-go-bcrypt Jean SIMARD
2024-06-29 21:37 ` [bug#71780] [PATCH v2 5/7] gnu: Add go-github-com-emersion-go-vcard Jean SIMARD
2024-06-29 21:37 ` [bug#71780] [PATCH v2 6/7] gnu: Add go-github-com-emersion-go-smtp-v0.18 Jean SIMARD
2024-06-29 21:37 ` [bug#71780] [PATCH v2 7/7] gnu: Add hydroxide Jean SIMARD
2024-06-29 21:43 ` woshilapin
2024-07-27 13:10 ` woshilapin
2024-07-27 13:07 ` [bug#71780] [PATCH v3 1/7] gnu: go-github-com-emersion-go-pgpmail: Update to 0.2.1 Jean SIMARD
2024-07-27 13:07 ` [bug#71780] [PATCH v3 2/7] gnu: go-github-com-protonmail-go-crypto: Update to 0.0.0-20230923063757-afb1ddc0824c Jean SIMARD
2024-07-27 13:07 ` [bug#71780] [PATCH v3 3/7] gnu: Add go-github-com-boltdb-bolt Jean SIMARD
2024-07-27 13:08 ` [bug#71780] [PATCH v3 4/7] gnu: Add go-github-com-emersion-go-bcrypt Jean SIMARD
2024-07-27 13:08 ` [bug#71780] [PATCH v3 5/7] gnu: Add go-github-com-emersion-go-vcard Jean SIMARD
2024-07-27 13:08 ` Jean SIMARD [this message]
2024-07-27 13:08 ` [bug#71780] [PATCH v3 7/7] gnu: Add hydroxide Jean SIMARD
2024-07-28 9:46 ` [bug#71780] [PATCH 0/3] add hydroxide package Sharlatan Hellseher
2024-07-28 21:59 ` bug#71780: " Sharlatan Hellseher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7b637a438e275a435a88ee5f5e6183856d4e92ae.1722085502.git.woshilapin@tuziwo.info \
--to=woshilapin@tuziwo.info \
--cc=71780@debbugs.gnu.org \
--cc=sharlatanus@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).