GNU bug report logs - #60837
[PATCH] gnu: Add emacs-auto-compile

Previous Next

Package: guix-patches;

Reported by: csantosb <at> inventati.org

Date: Sun, 15 Jan 2023 21:21:03 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 60837 in the body.
You can then email your comments to 60837 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#60837; Package guix-patches. (Sun, 15 Jan 2023 21:21:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to csantosb <at> inventati.org:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 15 Jan 2023 21:21:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: csantosb <at> inventati.org
To: guix-patches <at> gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH] gnu: Add emacs-auto-compile
Date: Sun, 15 Jan 2023 20:55:48 +0100
From: Cayetano Santos <csantosb <at> 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





Information forwarded to guix-patches <at> gnu.org:
bug#60837; Package guix-patches. (Mon, 16 Jan 2023 12:39:02 GMT) Full text and rfc822 format available.

Message #8 received at 60837 <at> debbugs.gnu.org (full text, mbox):

From: Cayetano Santos <csantosb <at> inventati.org>
To: 60837 <at> debbugs.gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH v2] gnu: Add emacs-auto-compile.
Date: Mon, 16 Jan 2023 13:38:20 +0100
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#60837; Package guix-patches. (Mon, 16 Jan 2023 14:32:01 GMT) Full text and rfc822 format available.

Message #11 received at 60837 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Cayetano Santos <csantosb <at> inventati.org>, 60837 <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add emacs-auto-compile.
Date: Mon, 16 Jan 2023 15:31:14 +0100
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




Information forwarded to guix-patches <at> gnu.org:
bug#60837; Package guix-patches. (Mon, 16 Jan 2023 15:04:02 GMT) Full text and rfc822 format available.

Message #14 received at 60837 <at> debbugs.gnu.org (full text, mbox):

From: Cayetano Santos <csantosb <at> inventati.org>
To: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Cc: 60837 <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add emacs-auto-compile.
Date: Mon, 16 Jan 2023 16:02:00 +0100

>lun. 16 janv. 2023 at 15:31, Liliana Marie Prikler 
><liliana.prikler <at> 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,




Information forwarded to guix-patches <at> gnu.org:
bug#60837; Package guix-patches. (Mon, 16 Jan 2023 16:48:01 GMT) Full text and rfc822 format available.

Message #17 received at 60837 <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Cc: 60837 <at> debbugs.gnu.org, Cayetano Santos <csantosb <at> inventati.org>
Subject: Re: bug#60837: [PATCH] gnu: Add emacs-auto-compile
Date: Mon, 16 Jan 2023 11:47:15 -0500
Hi,

Liliana Marie Prikler <liliana.prikler <at> 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




Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sun, 29 Jan 2023 07:37:02 GMT) Full text and rfc822 format available.

Notification sent to csantosb <at> inventati.org:
bug acknowledged by developer. (Sun, 29 Jan 2023 07:37:02 GMT) Full text and rfc822 format available.

Message #22 received at 60837-done <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Cc: Cayetano Santos <csantosb <at> inventati.org>, 60837-done <at> debbugs.gnu.org
Subject: Re: bug#60837: [PATCH] gnu: Add emacs-auto-compile
Date: Sun, 29 Jan 2023 08:35:52 +0100
Am Montag, dem 16.01.2023 um 11:47 -0500 schrieb Maxim Cournoyer:
> Hi,
> 
> Liliana Marie Prikler <liliana.prikler <at> 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





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 26 Feb 2023 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 60 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.