unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Jean SIMARD <woshilapin@tuziwo.info>
To: 71780@debbugs.gnu.org
Cc: Jean SIMARD <woshilapin@tuziwo.info>, sharlatanus@gmail.com
Subject: [bug#71780] [PATCH v2 5/7] gnu: Add go-github-com-emersion-go-vcard.
Date: Sat, 29 Jun 2024 21:37:15 +0000	[thread overview]
Message-ID: <922a2e3512557f36bf6146651132e6446c150f06.1719696984.git.woshilapin@tuziwo.info> (raw)
In-Reply-To: <fa9d84750144788e4757aba949592f9475657bf9.1719696984.git.woshilapin@tuziwo.info>

* gnu/packages/golang.scm (go-github-com-emersion-go-vcard): New variable.

Change-Id: I455fda8050424e7263ceb23e0d55520336b73223
---
 gnu/packages/golang.scm | 93 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 93 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3daf97ec92..72bd64f7cd 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5985,6 +5985,99 @@ (define-public go-github-com-emersion-go-mbox
 @code{mbox} files.")
     (license license:expat)))
 
+(define-public go-github-com-emersion-go-vcard
+  (package
+    (name "go-github-com-emersion-go-vcard")
+    (version "0.0.0-20230815062825-8fda7d206ec9")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emersion/go-vcard")
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "12n5jinj5xzdfl9jhqvjbzxvj32bw310mdw4q5rjv35pk566zixl"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/emersion/go-vcard"))
+    (home-page "https://github.com/emersion/go-vcard")
+    (synopsis "Go library to parse and format vCard")
+    (description "A Go library to parse and format vCard.")
+    (license license:expat)))
+
+(define-public go-github-com-teambition-rrule-go
+  (package
+    (name "go-github-com-teambition-rrule-go")
+    (version "1.8.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/teambition/rrule-go")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1fnbava35w9z60carny5b7whd4nkv6hrf9g43wwg8d88gfij9zj2"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/teambition/rrule-go"))
+    (home-page "https://github.com/teambition/rrule-go")
+    (synopsis
+     "Go library for working with recurrence rules for calendar dates")
+    (description
+     "A go library for working with recurrence rules for calendar dates.")
+    (license license:expat)))
+
+(define-public go-github-com-emersion-go-ical
+  (package
+    (name "go-github-com-emersion-go-ical")
+    (version "0.0.0-20240127095438-fc1c9d8fb2b6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emersion/go-ical")
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "01cn9kggkdalb6xp2nrka01gs40zs8v6h5bq8d2m8wrdcsy5b36v"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/emersion/go-ical"))
+    (propagated-inputs (list go-github-com-teambition-rrule-go))
+    (home-page "https://github.com/emersion/go-ical")
+    (synopsis "Go library for iCalendar")
+    (description "An iCalendar library for Go.")
+    (license license:expat)))
+
+(define-public go-github-com-emersion-go-webdav
+  (package
+    (name "go-github-com-emersion-go-webdav")
+    (version "v0.3.2-0.20220524091811-5d845721d8f7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emersion/go-webdav")
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vxf9k7m4lxsyry374bm4y34d2sb2ssy0c45mb1vchdfhffgyj9i"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/emersion/go-webdav"))
+    (propagated-inputs (list go-github-com-emersion-go-ical
+                             go-github-com-emersion-go-vcard))
+    (home-page "https://github.com/emersion/go-webdav")
+    (synopsis "Go library for WebDAV, CalDAV and CardDAV")
+    (description "A Go library for WebDAV, CalDAV and CardDAV.")
+    (license license:expat)))
+
 (define-public go-github-com-google-go-cmp-cmp
   (package
     (name "go-github-com-google-go-cmp-cmp")
-- 
2.41.0






  parent reply	other threads:[~2024-06-29 21:38 UTC|newest]

Thread overview: 15+ 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   ` Jean SIMARD [this message]
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

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=922a2e3512557f36bf6146651132e6446c150f06.1719696984.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).