unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Jonathan <rostranjj@gmail.com>
To: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Cc: 45011@debbugs.gnu.org
Subject: [bug#45011] [PATCH] add emacs-project and dependency
Date: Wed, 16 Dec 2020 10:53:52 -0600	[thread overview]
Message-ID: <CANwJfzht+4d4c-j40ta5h6ie2qgWJ6jFoHQ9beUQmq0YLryJrA@mail.gmail.com> (raw)
In-Reply-To: <CANwJfzjiukRWC0TU=N4WkipqyNvbb6s910pBwOJ3HNtPrVuG8Q@mail.gmail.com>

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

hello??

On Tue, Dec 8, 2020 at 11:34 AM Jonathan <rostranjj@gmail.com> wrote:

> From fb50c9d2de0e4896dc679b217f3cf66c3214e044 Mon Sep 17 00:00:00 2001
> From: wario <rostranjj@gmail.com>
> Date: Tue, 8 Dec 2020 11:33:49 -0600
> Subject: [PATCH] gnu: Add emacs-project *gnu/packages/emacs-xyz.scm
>  (emacs-project): New variable.
>
> ---
>  gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 6999265a0e..e15c7650e2 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -342,6 +342,31 @@ for those who may want transient periods of
> unbalanced parentheses, such as
>  when typing parentheses directly or commenting out code line by line.")
>      (license license:gpl3+)))
>
> +(define-public emacs-project
> +  (package
> +  (name "emacs-project")
> +  (version "0.5.2")
> +  (source
> +   (origin
> +     (method url-fetch)
> +     (uri (string-append
> +           "https://elpa.gnu.org/packages/project-"
> +           version
> +           ".el"))
> +     (sha256
> +      (base32
> +       "181hls4phhj8kgpfcky6h0mgzpl9xj616abvcvx8mrn4nmpyh655"))))
> +  (build-system emacs-build-system)
> +  (propagated-inputs `(("emacs-xref" ,emacs-xref)))
> +  (home-page
> +   "http://elpa.gnu.org/packages/project.html")
> +  (synopsis "Operations on the current project")
> +  (description
> +   "This file contains generic infrastructure for dealing with
> +projects, some utility functions, and commands using that
> +infrastructure.")
> +  (license license:gpl3+)))
> +
>  (define-public git-modes
>    (package
>      (name "emacs-git-modes")
> --
> 2.29.2
>
>
>
> On Tue, Dec 8, 2020 at 11:31 AM Jonathan <rostranjj@gmail.com> wrote:
>
>> From 1e2a8d0eefd02bbec2ad6366c312dab3c635cba1 Mon Sep 17 00:00:00 2001
>> From: wario <rostranjj@gmail.com>
>> Date: Tue, 8 Dec 2020 11:29:55 -0600
>> Subject: [PATCH] gnu: Add emacs-xref. *gnu/packages/emacs-xyz.scm
>>  (emacs-xref): New variable.
>>
>> ---
>>  gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
>>  1 file changed, 23 insertions(+)
>>
>> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
>> index e2658b4547..6999265a0e 100644
>> --- a/gnu/packages/emacs-xyz.scm
>> +++ b/gnu/packages/emacs-xyz.scm
>> @@ -87,6 +87,7 @@
>>  ;;; Copyright © 2020 Noah Landis <noahlandis@posteo.net>
>>  ;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
>>  ;;; Copyright © 2020 André A. Gomes <andremegafone@gmail.com>
>> +;;; Copyright © 2020 Jonathan Rostran <rostranjj@gmail.com>
>>  ;;;
>>  ;;; This file is part of GNU Guix.
>>  ;;;
>> @@ -25768,3 +25769,25 @@ anymore.  In this way, it's like a lightweight
>> \"workspace\" manager, allowing
>>  you to easily restore one or more frames, including their windows, the
>>  windows' layout, and their buffers.")
>>      (license license:gpl3+)))
>> +
>> +(define-public emacs-xref
>> +  (package
>> +  (name "emacs-xref")
>> +  (version "1.0.3")
>> +  (source
>> +    (origin
>> +      (method url-fetch)
>> +      (uri (string-append
>> +             "https://elpa.gnu.org/packages/xref-"
>> +             version
>> +             ".el"))
>> +      (sha256
>> +        (base32
>> +          "1r531gl73y1br8g4n77gxbyj26yiaw7snjad21fgs5m80cka8fi3"))))
>> +  (build-system emacs-build-system)
>> +  (home-page
>> +    "http://elpa.gnu.org/packages/xref.html")
>> +  (synopsis "Cross-referencing commands")
>> +  (description "This file provides a somewhat generic infrastructure for
>> cross
>> +referencing commands, in particular \"find-definition\".")
>> +  (license license:gpl3+)))
>> --
>> 2.29.2
>>
>>
>>
>> On Tue, Dec 8, 2020 at 1:26 AM Nicolas Goaziou <mail@nicolasgoaziou.fr>
>> wrote:
>>
>>> Hello,
>>>
>>> Jonathan <rostranjj@gmail.com> writes:
>>>
>>> > It does for me but as an email, with the subject filled in with the
>>> > commit message. I only copied the body. Should I send the entire file?
>>>
>>> I think so.
>>>
>>> Regards,
>>> --
>>> Nicolas Goaziou
>>>
>>

[-- Attachment #2: Type: text/html, Size: 6056 bytes --]

  reply	other threads:[~2020-12-16 17:16 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-02 16:29 [bug#45011] [PATCH] add emacs-project and dependency Jonathan
2020-12-04 20:12 ` Nicolas Goaziou
2020-12-05 18:18   ` Jonathan
2020-12-06 14:53     ` Nicolas Goaziou
2020-12-06 19:22       ` Jonathan
2020-12-06 20:36         ` Nicolas Goaziou
2020-12-06 23:55           ` Jonathan
2020-12-08  7:26             ` Nicolas Goaziou
2020-12-08 17:31               ` Jonathan
2020-12-08 17:34                 ` Jonathan
2020-12-16 16:53                   ` Jonathan [this message]
2020-12-16 17:33                     ` bug#45011: " Nicolas Goaziou
2020-12-05 19:41   ` [bug#45011] " Jonathan
2020-12-05 19:42   ` Jonathan

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=CANwJfzht+4d4c-j40ta5h6ie2qgWJ6jFoHQ9beUQmq0YLryJrA@mail.gmail.com \
    --to=rostranjj@gmail.com \
    --cc=45011@debbugs.gnu.org \
    --cc=mail@nicolasgoaziou.fr \
    /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).