all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: rdes via Guix-patches via <guix-patches@gnu.org>
To: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Cc: 41181@debbugs.gnu.org
Subject: [bug#41181] adds emacs-interleave
Date: Sun, 17 May 2020 13:18:23 +0000	[thread overview]
Message-ID: <6rxX0vh7GxY4H7d6jXP10G8cqsh8_bs8V4e2JxatbfkiLwsC685g0wInwQSxzRpwsOfhm5aVovpD5lOd55GcNAXVlNGfXu1CYq4ym84-M5c=@protonmail.com> (raw)
In-Reply-To: <-nBsa1KQJSwbENQmZILkCluHwqx_QyjF3PQxKtoNHoOeqeFc1FHy95KjjodciPwOSIH5XOxKIhoHv0Hzb87JVOVy3D1fEb1nD9fDidbeMiU=@protonmail.com>

[-- Attachment #1: Type: text/plain, Size: 3024 bytes --]

Hello,

Attached is the copyright line that should have been in the previous patch.

Ryan


Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Friday, May 15, 2020 4:56 PM, rdes <rdes@protonmail.com> wrote:

> Hello Nicolas,
>
> Thanks for the pointers. Attached is an updated patch.
>
> Ryan
>
> Sent with ProtonMail Secure Email.
>
> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> On Monday, May 11, 2020 3:10 AM, Nicolas Goaziou mail@nicolasgoaziou.fr wrote:
>
> > Hello,
> > rdes via Guix-patches via guix-patches@gnu.org writes:
> >
> > > The attached patch adds the emacs-interleave package.
> >
> > Thank you! Some comments follow.
> >
> > > Subject: [PATCH] gnu: Add emacs-interleave
> >
> > Your commit message should conform to Guix rules. Here, you need to add
> >
> > -   gnu/packages/emacs-xyz.scm (emacs-interleave): New variable.
> >
> > > +(define-public emacs-interleave
> > > +(package
> >
> > Indentation seems wrong.
> >
> > > -   (name "emacs-interleave")
> > >
> > > -   (version "20191129.958")
> > >
> > > -   (source
> > >
> > > -   (origin
> > >
> > > -          (method url-fetch)
> > >
> > >
> > > -          (uri (string-append
> > >
> > >
> > > -                 "https://melpa.org/packages/interleave-"
> > >
> > >
> > > -                 version
> > >
> > >
> > > -                 ".el"))
> > >
> > >
> >
> > We do not use MELPA sources. Instead, you could use `git-fetch' and
> > extract the latest stable release from here:
> > https://github.com/rudolfochrist/interleave/releases
> >
> > > -          (sha256
> > >
> > >
> > > -            (base32
> > >
> > >
> > > -              "0y183ggfmkjjywbcqgyinmr21hsg2vaw4d52bg1gsxbp673za2m8"))))
> > >
> > >
> >
> > Nitpick: could you move the string on the same line as `base32'?
> >
> > > -   (build-system emacs-build-system)
> > > -   (home-page
> > > -   "https://github.com/rudolfochrist/interleave")
> >
> > Ditto. Could you move the string on the line above?
> >
> > > -   (synopsis "Interleaving text books since 2015")
> >
> > I think this synopsis needs to be reworded. As it is, it may not be
> > useful.
> >
> > > -   (description
> > > -   "Interleave presents your PDF side by side to an [[http://orgmode.org][Org Mode]]
> >
> > Description uses Texinfo syntax, not Org syntax. In this case, however,
> > I think "side by side to an Org buffer" is sufficient.
> >
> > > +buffer with your notes, narrowing down to just those passages that are relevant to
> > > +the particular page in the document viewer.
> > > +")
> >
> > You don't need to end the description with a final newline. It would be
> > nice to expound it a bit. For example, it could be interesting to know
> > this is a minor mode.
> > Don't forget to add a copyright line with your name at the top of the file.
> > Could you send an updated patch?
> > Regards,
> >
> > Nicolas Goaziou



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-packages-emacs-xyz.scm-Add-copyright.patch --]
[-- Type: text/x-patch; name="0001-gnu-packages-emacs-xyz.scm-Add-copyright.patch", Size: 785 bytes --]

From 7cc8535fb92e5d39276ec5cdd5bc078d3d8c55b6 Mon Sep 17 00:00:00 2001
From: Ryan Desfosses <ryan@desfo.org>
Date: Sun, 17 May 2020 09:15:46 -0400
Subject: [PATCH] * gnu/packages/emacs-xyz.scm: Add copyright.

---
 gnu/packages/emacs-xyz.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b70b9fffb8..5d0beeb2d9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -70,6 +70,7 @@
 ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero <barbanegra+guix@posteo.mx>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
 ;;; Copyright © 2020 pinoaffe <pinoaffe@airmail.cc>
+;;; Copyright © 2020 Ryan Desfosses <rdes@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
-- 
2.26.2


  reply	other threads:[~2020-05-17 13:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-10 19:35 [bug#41181] adds emacs-interleave rdes via Guix-patches via
2020-05-11  7:10 ` Nicolas Goaziou
2020-05-15 20:56   ` rdes via Guix-patches via
2020-05-17 13:18     ` rdes via Guix-patches via [this message]
2020-05-17 23:00     ` Nicolas Goaziou
2020-05-22  1:42       ` rdes via Guix-patches via
2020-05-25 11:43         ` Nicolas Goaziou

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='6rxX0vh7GxY4H7d6jXP10G8cqsh8_bs8V4e2JxatbfkiLwsC685g0wInwQSxzRpwsOfhm5aVovpD5lOd55GcNAXVlNGfXu1CYq4ym84-M5c=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=41181@debbugs.gnu.org \
    --cc=mail@nicolasgoaziou.fr \
    --cc=rdes@protonmail.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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.