* [bug#60837] [PATCH] gnu: Add emacs-auto-compile
@ 2023-01-15 19:55 csantosb--- via Guix-patches via
2023-01-16 12:38 ` [bug#60837] [PATCH v2] " Cayetano Santos via Guix-patches via
0 siblings, 1 reply; 6+ messages in thread
From: csantosb--- via Guix-patches via @ 2023-01-15 19:55 UTC (permalink / raw)
To: 60837; +Cc: Cayetano Santos
From: Cayetano Santos <csantosb@inventati.org>
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5f60d82ad5..ea97cb09a2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -259,6 +259,28 @@ (define-module (gnu packages emacs-xyz)
;;; Emacs hacking.
;;;
+(define-public emacs-auto-compile
+ (package
+ (name "emacs-auto-compile")
+ (version "1.7.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacscollective/auto-compile.git")
+ (commit version)))
+ (sha256
+ (base32
+ "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-compat emacs-packed))
+ (home-page "https://github.com/emacscollective/auto-compile")
+ (synopsis "Automatically compile Emacs Lisp libraries")
+ (description
+ "This package provides two minor modes which automatically recompile Emacs Lisp
+source files. Together these modes guarantee that Emacs never loads outdated
+byte code files.")
+ (license license:gpl3+)))
+
(define-public emacs-geiser
(package
(name "emacs-geiser")
--
2.38.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#60837] [PATCH v2] gnu: Add emacs-auto-compile.
2023-01-15 19:55 [bug#60837] [PATCH] gnu: Add emacs-auto-compile csantosb--- via Guix-patches via
@ 2023-01-16 12:38 ` Cayetano Santos via Guix-patches via
2023-01-16 14:31 ` Liliana Marie Prikler
0 siblings, 1 reply; 6+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2023-01-16 12:38 UTC (permalink / raw)
To: 60837; +Cc: Cayetano Santos
* gnu/packages/emacs-xyz.scm (emacs-auto-compile): New variable.
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5f60d82ad5..ea97cb09a2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -259,6 +259,28 @@ (define-module (gnu packages emacs-xyz)
;;; Emacs hacking.
;;;
+(define-public emacs-auto-compile
+ (package
+ (name "emacs-auto-compile")
+ (version "1.7.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacscollective/auto-compile.git")
+ (commit version)))
+ (sha256
+ (base32
+ "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-compat emacs-packed))
+ (home-page "https://github.com/emacscollective/auto-compile")
+ (synopsis "Automatically compile Emacs Lisp libraries")
+ (description
+ "This package provides two minor modes which automatically recompile Emacs Lisp
+source files. Together these modes guarantee that Emacs never loads outdated
+byte code files.")
+ (license license:gpl3+)))
+
(define-public emacs-geiser
(package
(name "emacs-geiser")
base-commit: 238f965c331990459a69cbc713ca951ad40e6044
--
2.38.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#60837] [PATCH v2] gnu: Add emacs-auto-compile.
2023-01-16 12:38 ` [bug#60837] [PATCH v2] " Cayetano Santos via Guix-patches via
@ 2023-01-16 14:31 ` Liliana Marie Prikler
2023-01-16 15:02 ` Cayetano Santos via Guix-patches via
2023-01-16 16:47 ` [bug#60837] [PATCH] " Maxim Cournoyer
0 siblings, 2 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-01-16 14:31 UTC (permalink / raw)
To: Cayetano Santos, 60837
Am Montag, dem 16.01.2023 um 13:38 +0100 schrieb Cayetano Santos:
> * gnu/packages/emacs-xyz.scm (emacs-auto-compile): New variable.
> ---
> gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 5f60d82ad5..ea97cb09a2 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -259,6 +259,28 @@ (define-module (gnu packages emacs-xyz)
> ;;; Emacs hacking.
> ;;;
>
> +(define-public emacs-auto-compile
> + (package
> + (name "emacs-auto-compile")
> + (version "1.7.2")
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url
> "https://github.com/emacscollective/auto-compile.git")
> + (commit version)))
> + (sha256
> + (base32
> +
> "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
> + (build-system emacs-build-system)
> + (propagated-inputs (list emacs-compat emacs-packed))
> + (home-page "https://github.com/emacscollective/auto-compile")
> + (synopsis "Automatically compile Emacs Lisp libraries")
> + (description
> + "This package provides two minor modes which automatically
> recompile Emacs Lisp
Note how you're exceeding fill-column.
> +source files. Together these modes guarantee that Emacs never loads
Use two spaces at the end of sentences.
> outdated
> +byte code files.")
> + (license license:gpl3+)))
> +
I also moved this before emacs-auto-sudoedit. Placing packages
directly at the start or end f files makes it mildly harder to rebase.
The package appears to build fine with both emacs and emacs-minimal, so
if there's no objection, I'll push this (with some fixes re the above
points) on the 29th.
Cheers
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#60837] [PATCH v2] gnu: Add emacs-auto-compile.
2023-01-16 14:31 ` Liliana Marie Prikler
@ 2023-01-16 15:02 ` Cayetano Santos via Guix-patches via
2023-01-16 16:47 ` [bug#60837] [PATCH] " Maxim Cournoyer
1 sibling, 0 replies; 6+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2023-01-16 15:02 UTC (permalink / raw)
To: Liliana Marie Prikler; +Cc: 60837
>lun. 16 janv. 2023 at 15:31, Liliana Marie Prikler
><liliana.prikler@gmail.com> ...
> Am Montag, dem 16.01.2023 um 13:38 +0100 schrieb Cayetano
> Santos:
>> * gnu/packages/emacs-xyz.scm (emacs-auto-compile): New
>> variable.
>> ---
>> gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
>> 1 file changed, 22 insertions(+)
>>
>> diff --git a/gnu/packages/emacs-xyz.scm
>> b/gnu/packages/emacs-xyz.scm
>> index 5f60d82ad5..ea97cb09a2 100644
>> --- a/gnu/packages/emacs-xyz.scm
>> +++ b/gnu/packages/emacs-xyz.scm
>> @@ -259,6 +259,28 @@ (define-module (gnu packages emacs-xyz)
>> ;;; Emacs hacking.
>> ;;;
>>
>> +(define-public emacs-auto-compile
>> + (package
>> + (name "emacs-auto-compile")
>> + (version "1.7.2")
>> + (source (origin
>> + (method git-fetch)
>> + (uri (git-reference
>> + (url
>> "https://github.com/emacscollective/auto-compile.git")
>> + (commit version)))
>> + (sha256
>> + (base32
>> +
>> "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
>> + (build-system emacs-build-system)
>> + (propagated-inputs (list emacs-compat emacs-packed))
>> + (home-page
>> "https://github.com/emacscollective/auto-compile")
>> + (synopsis "Automatically compile Emacs Lisp libraries")
>> + (description
>> + "This package provides two minor modes which
>> automatically
>> recompile Emacs Lisp
> Note how you're exceeding fill-column.
>> +source files. Together these modes guarantee that Emacs never
>> loads
> Use two spaces at the end of sentences.
Sorry for that, won’t forget next time.
>> outdated
>> +byte code files.")
>> + (license license:gpl3+)))
> I also moved this before emacs-auto-sudoedit. Placing packages
> directly at the start or end f files makes it mildly harder to
> rebase.
>
> The package appears to build fine with both emacs and
> emacs-minimal, so
> if there's no objection, I'll push this (with some fixes re the
> above
> points) on the 29th.
Fine with me.
Cheers,
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#60837] [PATCH] gnu: Add emacs-auto-compile
2023-01-16 14:31 ` Liliana Marie Prikler
2023-01-16 15:02 ` Cayetano Santos via Guix-patches via
@ 2023-01-16 16:47 ` Maxim Cournoyer
2023-01-29 7:35 ` bug#60837: " Liliana Marie Prikler
1 sibling, 1 reply; 6+ messages in thread
From: Maxim Cournoyer @ 2023-01-16 16:47 UTC (permalink / raw)
To: Liliana Marie Prikler; +Cc: 60837, Cayetano Santos
Hi,
Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> Am Montag, dem 16.01.2023 um 13:38 +0100 schrieb Cayetano Santos:
>> * gnu/packages/emacs-xyz.scm (emacs-auto-compile): New variable.
>> ---
>> gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
>> 1 file changed, 22 insertions(+)
>>
>> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
>> index 5f60d82ad5..ea97cb09a2 100644
>> --- a/gnu/packages/emacs-xyz.scm
>> +++ b/gnu/packages/emacs-xyz.scm
>> @@ -259,6 +259,28 @@ (define-module (gnu packages emacs-xyz)
>> ;;; Emacs hacking.
>> ;;;
>>
>> +(define-public emacs-auto-compile
>> + (package
>> + (name "emacs-auto-compile")
>> + (version "1.7.2")
>> + (source (origin
>> + (method git-fetch)
>> + (uri (git-reference
>> + (url
>> "https://github.com/emacscollective/auto-compile.git")
>> + (commit version)))
>> + (sha256
>> + (base32
>> +
>> "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
>> + (build-system emacs-build-system)
>> + (propagated-inputs (list emacs-compat emacs-packed))
>> + (home-page "https://github.com/emacscollective/auto-compile")
>> + (synopsis "Automatically compile Emacs Lisp libraries")
>> + (description
>> + "This package provides two minor modes which automatically
>> recompile Emacs Lisp
> Note how you're exceeding fill-column.
>> +source files. Together these modes guarantee that Emacs never loads
> Use two spaces at the end of sentences.
>> outdated
>> +byte code files.")
>> + (license license:gpl3+)))
>> +
> I also moved this before emacs-auto-sudoedit. Placing packages
> directly at the start or end f files makes it mildly harder to rebase.
>
> The package appears to build fine with both emacs and emacs-minimal, so
> if there's no objection, I'll push this (with some fixes re the above
> points) on the 29th.
Make sure to use two spaces between sentences. Other than that, LGTM
too, so feel free to push it already.
--
Thanks,
Maxim
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#60837: [PATCH] gnu: Add emacs-auto-compile
2023-01-16 16:47 ` [bug#60837] [PATCH] " Maxim Cournoyer
@ 2023-01-29 7:35 ` Liliana Marie Prikler
0 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-01-29 7:35 UTC (permalink / raw)
To: Maxim Cournoyer; +Cc: Cayetano Santos, 60837-done
Am Montag, dem 16.01.2023 um 11:47 -0500 schrieb Maxim Cournoyer:
> Hi,
>
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
>
> > Am Montag, dem 16.01.2023 um 13:38 +0100 schrieb Cayetano Santos:
> > > * gnu/packages/emacs-xyz.scm (emacs-auto-compile): New variable.
> > > ---
> > > gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
> > > 1 file changed, 22 insertions(+)
> > >
> > > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-
> > > xyz.scm
> > > index 5f60d82ad5..ea97cb09a2 100644
> > > --- a/gnu/packages/emacs-xyz.scm
> > > +++ b/gnu/packages/emacs-xyz.scm
> > > @@ -259,6 +259,28 @@ (define-module (gnu packages emacs-xyz)
> > > ;;; Emacs hacking.
> > > ;;;
> > >
> > > +(define-public emacs-auto-compile
> > > + (package
> > > + (name "emacs-auto-compile")
> > > + (version "1.7.2")
> > > + (source (origin
> > > + (method git-fetch)
> > > + (uri (git-reference
> > > + (url
> > > "https://github.com/emacscollective/auto-compile.git")
> > > + (commit version)))
> > > + (sha256
> > > + (base32
> > > +
> > > "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31"))))
> > > + (build-system emacs-build-system)
> > > + (propagated-inputs (list emacs-compat emacs-packed))
> > > + (home-page
> > > "https://github.com/emacscollective/auto-compile")
> > > + (synopsis "Automatically compile Emacs Lisp libraries")
> > > + (description
> > > + "This package provides two minor modes which automatically
> > > recompile Emacs Lisp
> > Note how you're exceeding fill-column.
> > > +source files. Together these modes guarantee that Emacs never
> > > loads
> > Use two spaces at the end of sentences.
> > > outdated
> > > +byte code files.")
> > > + (license license:gpl3+)))
> > > +
> > I also moved this before emacs-auto-sudoedit. Placing packages
> > directly at the start or end f files makes it mildly harder to
> > rebase.
> >
> > The package appears to build fine with both emacs and emacs-
> > minimal, so if there's no objection, I'll push this (with some
> > fixes re the above points) on the 29th.
>
> Make sure to use two spaces between sentences. Other than that, LGTM
> too, so feel free to push it already.
Pushed with the spaces :)
Cheers
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-01-29 7:37 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-15 19:55 [bug#60837] [PATCH] gnu: Add emacs-auto-compile csantosb--- via Guix-patches via
2023-01-16 12:38 ` [bug#60837] [PATCH v2] " Cayetano Santos via Guix-patches via
2023-01-16 14:31 ` Liliana Marie Prikler
2023-01-16 15:02 ` Cayetano Santos via Guix-patches via
2023-01-16 16:47 ` [bug#60837] [PATCH] " Maxim Cournoyer
2023-01-29 7:35 ` bug#60837: " Liliana Marie Prikler
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.