emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#33406: closed ([PATCH] gnu: package: Add guile-mas


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#33406: closed ([PATCH] gnu: package: Add guile-mastodon.)
Date: Thu, 27 Dec 2018 11:08:01 +0000

Your message dated Thu, 27 Dec 2018 12:07:01 +0100
with message-id <address@hidden>
and subject line Re: [bug#33406] [PATCH] gnu: package: Add guile-mastodon.
has caused the debbugs.gnu.org bug report #33406,
regarding [PATCH] gnu: package: Add guile-mastodon.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
33406: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33406
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: package: Add guile-mastodon. Date: Fri, 16 Nov 2018 11:48:26 +0100
* gnu/packages/guile.scm (guile-mastodon): New variable.
---
 gnu/packages/guile.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index f95641ab1..9f1492e1c 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -2362,4 +2362,32 @@ Scheme by using Guile’s foreign function interface.")
       (home-page "https://gitlab.com/mothacehe/guile-newt";)
       (license license:gpl3+))))
 
+(define-public guile-mastodon
+  (package
+    (name "guile-mastodon")
+    (version "0.0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://framagit.org/prouby/guile-mastodon.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1vblf3d1bbwna3l09p2ap5y8ycvl549bz6whgk78imyfmn28ygry"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     `(("guile" ,guile-2.2)
+       ("guile-json" ,guile-json)
+       ("gnutls" ,gnutls)))
+    (home-page "https://framagit.org/prouby/guile-mastodon";)
+    (synopsis "Guile Mastodon REST API module")
+    (description "This package provides Guile module for Mastodon REST API
address@hidden://docs.joinmastodon.org/api/}.")
+    (license license:gpl3+)))
+
 ;;; guile.scm ends here
-- 
2.19.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#33406] [PATCH] gnu: package: Add guile-mastodon. Date: Thu, 27 Dec 2018 12:07:01 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)
Hi Pierre-Antoine!

Pierre-Antoine Rouby <address@hidden> skribis:

> * gnu/packages/guile.scm (guile-mastodon): New variable.

Looks like this had fallen through the cracks…  Applied with the
cosmetic changes below.  Thank you, and sorry for the delay!

Ludo’.

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 21ec257021..07b568ee7c 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -2353,8 +2353,9 @@ Scheme by using Guile’s foreign function interface.")
        ("guile-json" ,guile-json)))
     (home-page "https://framagit.org/prouby/guile-mastodon";)
     (synopsis "Guile Mastodon REST API module")
-    (description "This package provides Guile module for Mastodon REST API
address@hidden://docs.joinmastodon.org/api/}.")
+    (description "This package provides Guile modules to access the
address@hidden://docs.joinmastodon.org/api/, REST API of Mastodon}, a federated
+microblogging service.")
     (license license:gpl3+)))
 
 ;;; guile.scm ends here

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]