From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42280) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hroiC-0003Vl-QQ for guix-patches@gnu.org; Sun, 28 Jul 2019 15:20:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hroiB-0002oS-JM for guix-patches@gnu.org; Sun, 28 Jul 2019 15:20:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38369) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hroiB-0002oK-Fu for guix-patches@gnu.org; Sun, 28 Jul 2019 15:20:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hroiB-0007Fu-76 for guix-patches@gnu.org; Sun, 28 Jul 2019 15:20:03 -0400 Subject: [bug#36713] [PATCH 6/6] Add emacs-mastodon. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42257) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hrohz-0003Tr-UG for guix-patches@gnu.org; Sun, 28 Jul 2019 15:19:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hrohy-0002kn-3h for guix-patches@gnu.org; Sun, 28 Jul 2019 15:19:51 -0400 Received: from mout02.posteo.de ([185.67.36.66]:40843) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hrohx-0002k4-GN for guix-patches@gnu.org; Sun, 28 Jul 2019 15:19:50 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 634DA2400E6 for ; Sun, 28 Jul 2019 21:19:46 +0200 (CEST) References: <87a7dbu4r1.fsf@zete.tk> <87sgr3snsc.fsf@zete.tk> From: Brett Gilio In-reply-to: <87sgr3snsc.fsf@zete.tk> Date: Sun, 28 Jul 2019 14:19:36 -0500 Message-ID: <87mugy6k6v.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36713@debbugs.gnu.org Jens M=C3=B8lgaard writes: > This adds emacs-mastodon, a mastodon client for emacs. > > From 7d26310aad9bcfff9f6962f80d2cea6980509677 Mon Sep 17 00:00:00 2001 > From: =3D?UTF-8?q?Jens=3D20M=3DC3=3DB8lgaard?=3D > Date: Thu, 18 Jul 2019 20:00:40 +1200 > Subject: [PATCH 6/6] gnu: Add emacs-mastodon. > > * gnu/packages/emacs-xyz.scm (emacs-mastodon): New variable. > --- > gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm > index cbec471a9d..6c63a3c479 100644 > --- a/gnu/packages/emacs-xyz.scm > +++ b/gnu/packages/emacs-xyz.scm > @@ -16714,3 +16714,35 @@ deleting words. These goals were partly inspire= d by 750words.com where the > goal of the site is to encourage writing by setting a goal of 750 words = at a > time.") > (license license:gpl3+))) > + > +(define-public emacs-mastodon > + (package > + (name "emacs-mastodon") > + (version "0.9.0") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/jdenen/mastodon.el.git") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "0hwax6y9dghqwsbnb6f1bnc7gh8xsh5cvcnayk2sn49x8b0zi5h1"))= )) > + (build-system emacs-build-system) > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + ;; Move the source files to the top level, which is included in > + ;; the EMACSLOADPATH. > + (add-after 'unpack 'move-source-files > + (lambda _ > + (let ((el-files (find-files "./lisp" ".*\\.el$"))) > + (for-each (lambda (f) > + (rename-file f (basename f))) > + el-files)) > + #t))))) > + (home-page "https://github.com/jdenen/mastodon.el") > + (synopsis "Emacs client for Mastodon") > + (description "@code{mastodon.el} is an Emacs client for Mastodon, the > +federated microblogging social network.") > + (license license:gpl3+))) Hi Jens, Thank you for pushing this package to our repository. I am trying to use it, but I am getting an issue that I can not replicate with other means of acquiring the package. When I try to use M-x mastodon, it gives me an usual error. Directly Git cloning and loading it allows for it to work just fine. Here is the issue. https://github.com/jdenen/mastodon.el/issues/141 Because it is a known bug I dont know if it is something we can change in our configuration. I am really interested in seeing if other people can replicate the error using the Guix package Thanks, Brett Gilio