GNU bug report logs - #51714
[PATCH] gnu: Add emacs-org-vcard

Previous Next

Package: guix-patches;

Reported by: pinoaffe <pinoaffe <at> gmail.com>

Date: Tue, 9 Nov 2021 12:07:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 51714 in the body.
You can then email your comments to 51714 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#51714; Package guix-patches. (Tue, 09 Nov 2021 12:07:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to pinoaffe <pinoaffe <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 09 Nov 2021 12:07:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: pinoaffe <pinoaffe <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add emacs-org-vcard
Date: Tue, 9 Nov 2021 10:34:21 +0100
* gnu/packages/emacs-xyz.scm (emacs-org-vcard): New variable.
---
 gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1c2ab1e92e..1ecfe7358a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12367,6 +12367,25 @@ (define-public emacs-org-contacts
 in your Org Agenda, and more.")
       (license license:gpl3+))))
 
+(define-public emacs-org-vcard
+  (package
+    (name "emacs-org-vcard")
+    (version "0.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/flexibeast/org-vcard")
+                    (commit "v0.2.0")))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 "14l3xqahqmnfl3sskqcr33xpcsic8dm9cr9wmbv5la3xv14n10k7"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/flexibeast/org-vcard")
+    (synopsis "org-mode support for vCard export and import.")
+    (description
+     "Export and import vCard files from within GNU Emacs' Org mode".)
+    (license license:gpl3+)))
+
 (define-public emacs-org-pretty-table
   ;; There is no release yet.
   (let ((commit "1331c600b83d95b28730b1bfcb48369ac1cf12ef")
-- 
2.33.1




Information forwarded to guix-patches <at> gnu.org:
bug#51714; Package guix-patches. (Tue, 09 Nov 2021 14:41:02 GMT) Full text and rfc822 format available.

Message #8 received at 51714 <at> debbugs.gnu.org (full text, mbox):

From: pinoaffe <pinoaffe <at> gmail.com>
To: 51714 <at> debbugs.gnu.org
Subject: [PATCH v2] gnu: Add emacs-org-vcard
Date: Tue, 9 Nov 2021 10:34:21 +0100
* gnu/packages/emacs-xyz.scm (emacs-org-vcard): New variable.
---
 gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1c2ab1e92e..df3851f65c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12367,6 +12367,25 @@ (define-public emacs-org-contacts
 in your Org Agenda, and more.")
       (license license:gpl3+))))
 
+(define-public emacs-org-vcard
+  (package
+    (name "emacs-org-vcard")
+    (version "0.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/flexibeast/org-vcard")
+                    (commit "v0.2.0")))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 "14l3xqahqmnfl3sskqcr33xpcsic8dm9cr9wmbv5la3xv14n10k7"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/flexibeast/org-vcard")
+    (synopsis "Org mode support for vCard export and import")
+    (description
+     "Export and import vCard files from within GNU Emacs' Org mode.")
+    (license license:gpl3+)))
+
 (define-public emacs-org-pretty-table
   ;; There is no release yet.
   (let ((commit "1331c600b83d95b28730b1bfcb48369ac1cf12ef")
-- 
2.33.1





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 15 Nov 2021 10:34:01 GMT) Full text and rfc822 format available.

Notification sent to pinoaffe <pinoaffe <at> gmail.com>:
bug acknowledged by developer. (Mon, 15 Nov 2021 10:34:01 GMT) Full text and rfc822 format available.

Message #13 received at 51714-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: pinoaffe <pinoaffe <at> gmail.com>
Cc: 51714-done <at> debbugs.gnu.org
Subject: Re: [bug#51714] [PATCH v2] gnu: Add emacs-org-vcard
Date: Mon, 15 Nov 2021 11:33:07 +0100
Hello,

pinoaffe <pinoaffe <at> gmail.com> writes:

> * gnu/packages/emacs-xyz.scm (emacs-org-vcard): New variable.

Thank you. Applied, with the modifications below:

> +    (version "0.2.0")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/flexibeast/org-vcard")
> +                    (commit "v0.2.0")))

-> (commit (string-append "v" version))

> +    (description
> +     "Export and import vCard files from within GNU Emacs' Org
> mode.")

This package exports…

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 13 Dec 2021 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 106 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.