unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* emacs-pretty-mode.
@ 2017-02-01 18:08 contact.ng0
  2017-02-01 18:08 ` [PATCH] gnu: Add emacs-pretty-mode contact.ng0
  0 siblings, 1 reply; 6+ messages in thread
From: contact.ng0 @ 2017-02-01 18:08 UTC (permalink / raw)
  To: guix-devel

This adds pretty-mode for emacs, a minor mode to redisplay parts of the buffer with pretty unicode.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] gnu: Add emacs-pretty-mode.
  2017-02-01 18:08 emacs-pretty-mode contact.ng0
@ 2017-02-01 18:08 ` contact.ng0
  2017-02-02  9:16   ` Alex Kost
  0 siblings, 1 reply; 6+ messages in thread
From: contact.ng0 @ 2017-02-01 18:08 UTC (permalink / raw)
  To: guix-devel

From: ng0 <contact.ng0@cryptolab.net>

* gnu/packages/emacs.scm (emacs-pretty-mode): New variable.
---
 gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index df7f7869d..a51b5de1d 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3778,3 +3778,26 @@ customizable by the user.")
 Additionally it can display the number of unread emails in the
 mode-line.")
     (license license:gpl3+)))
+
+(define-public emacs-pretty-mode
+  (let ((commit "500085206e25b98d00b9ec996f91c87ba569c4ce")
+        (revision "1"))
+  (package
+    (name "emacs-pretty-mode")
+    (version (string-append "2.0.3-" revision "." (string-take commit 7)))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/akatov/pretty-mode")
+             (commit commit)))
+       (file-name (string-append name "-" version "-checkout"))
+       (sha256
+        (base32
+         "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/akatov/pretty-mode")
+    (synopsis "Redisplay parts of the buffer as pretty Unicode symbols.")
+    (description
+     "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
+    (license license:gpl3+))))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: Add emacs-pretty-mode.
  2017-02-01 18:08 ` [PATCH] gnu: Add emacs-pretty-mode contact.ng0
@ 2017-02-02  9:16   ` Alex Kost
  2017-02-02 10:08     ` ng0
  2017-02-14 18:40     ` ng0
  0 siblings, 2 replies; 6+ messages in thread
From: Alex Kost @ 2017-02-02  9:16 UTC (permalink / raw)
  To: contact.ng0; +Cc: guix-devel

contact.ng0@cryptolab.net (2017-02-01 18:08 +0000) wrote:

> From: ng0 <contact.ng0@cryptolab.net>
>
> * gnu/packages/emacs.scm (emacs-pretty-mode): New variable.
> ---
>  gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index df7f7869d..a51b5de1d 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -3778,3 +3778,26 @@ customizable by the user.")
>  Additionally it can display the number of unread emails in the
>  mode-line.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-pretty-mode
> +  (let ((commit "500085206e25b98d00b9ec996f91c87ba569c4ce")
> +        (revision "1"))
> +  (package
> +    (name "emacs-pretty-mode")
> +    (version (string-append "2.0.3-" revision "." (string-take commit 7)))
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/akatov/pretty-mode")
> +             (commit commit)))

Why git commit, and not the latest snapshot?

https://github.com/akatov/pretty-mode/archive/2.0.3.tar.gz

> +       (file-name (string-append name "-" version "-checkout"))
> +       (sha256
> +        (base32
> +         "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/akatov/pretty-mode")
> +    (synopsis "Redisplay parts of the buffer as pretty Unicode symbols.")
> +    (description
> +     "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
> +    (license license:gpl3+))))


-- 
Alex

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: Add emacs-pretty-mode.
  2017-02-02  9:16   ` Alex Kost
@ 2017-02-02 10:08     ` ng0
  2017-02-03  8:15       ` Alex Kost
  2017-02-14 18:40     ` ng0
  1 sibling, 1 reply; 6+ messages in thread
From: ng0 @ 2017-02-02 10:08 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel


Alex Kost writes:

> contact.ng0@cryptolab.net (2017-02-01 18:08 +0000) wrote:
>
>> From: ng0 <contact.ng0@cryptolab.net>
>>
>> * gnu/packages/emacs.scm (emacs-pretty-mode): New variable.
>> ---
>>  gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
>>  1 file changed, 23 insertions(+)
>>
>> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
>> index df7f7869d..a51b5de1d 100644
>> --- a/gnu/packages/emacs.scm
>> +++ b/gnu/packages/emacs.scm
>> @@ -3778,3 +3778,26 @@ customizable by the user.")
>>  Additionally it can display the number of unread emails in the
>>  mode-line.")
>>      (license license:gpl3+)))
>> +
>> +(define-public emacs-pretty-mode
>> +  (let ((commit "500085206e25b98d00b9ec996f91c87ba569c4ce")
>> +        (revision "1"))
>> +  (package
>> +    (name "emacs-pretty-mode")
>> +    (version (string-append "2.0.3-" revision "." (string-take commit 7)))
>> +    (source
>> +     (origin
>> +       (method git-fetch)
>> +       (uri (git-reference
>> +             (url "https://github.com/akatov/pretty-mode")
>> +             (commit commit)))
>
> Why git commit, and not the latest snapshot?
>
> https://github.com/akatov/pretty-mode/archive/2.0.3.tar.gz

I wasn't sure. Melpa uses a git commit (I think) and the last
release is very old. I picked the commit because I thought it
would be incompatible to current emacs.

>> +       (file-name (string-append name "-" version "-checkout"))
>> +       (sha256
>> +        (base32
>> +         "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs"))))
>> +    (build-system emacs-build-system)
>> +    (home-page "https://github.com/akatov/pretty-mode")
>> +    (synopsis "Redisplay parts of the buffer as pretty Unicode symbols.")
>> +    (description
>> +     "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
>> +    (license license:gpl3+))))


-- 
ng0 . https://www.inventati.org/patternsinthechaos/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: Add emacs-pretty-mode.
  2017-02-02 10:08     ` ng0
@ 2017-02-03  8:15       ` Alex Kost
  0 siblings, 0 replies; 6+ messages in thread
From: Alex Kost @ 2017-02-03  8:15 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

ng0 (2017-02-02 10:08 +0000) wrote:

> Alex Kost writes:
>
>> contact.ng0@cryptolab.net (2017-02-01 18:08 +0000) wrote:
>>
>>> From: ng0 <contact.ng0@cryptolab.net>
>>>
>>> * gnu/packages/emacs.scm (emacs-pretty-mode): New variable.
>>> ---
>>>  gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
>>>  1 file changed, 23 insertions(+)
>>>
>>> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
>>> index df7f7869d..a51b5de1d 100644
>>> --- a/gnu/packages/emacs.scm
>>> +++ b/gnu/packages/emacs.scm
>>> @@ -3778,3 +3778,26 @@ customizable by the user.")
>>>  Additionally it can display the number of unread emails in the
>>>  mode-line.")
>>>      (license license:gpl3+)))
>>> +
>>> +(define-public emacs-pretty-mode
>>> +  (let ((commit "500085206e25b98d00b9ec996f91c87ba569c4ce")
>>> +        (revision "1"))
>>> +  (package
>>> +    (name "emacs-pretty-mode")
>>> +    (version (string-append "2.0.3-" revision "." (string-take commit 7)))
>>> +    (source
>>> +     (origin
>>> +       (method git-fetch)
>>> +       (uri (git-reference
>>> +             (url "https://github.com/akatov/pretty-mode")
>>> +             (commit commit)))
>>
>> Why git commit, and not the latest snapshot?
>>
>> https://github.com/akatov/pretty-mode/archive/2.0.3.tar.gz
>
> I wasn't sure. Melpa uses a git commit (I think) and the last
> release is very old. I picked the commit because I thought it
> would be incompatible to current emacs.

Of course it is compatible.  Melpa always uses the latest commit.  And
Melpa-Stable uses the latest tag (which is 2.0.3):

  http://stable.melpa.org/#/pretty-mode

My understanding of Guix packaging policy is that we try to package the
latest releases (or latest tag snapshots if there is no release
tarball), and to use git commits only if there are significant bug or
security fixes.  Otherwise, why don't we use git-fetch everywhere?

BTW it is not "very old", it is 10 commits behind master, and all these
commits are rather minor, as you can see:

  https://github.com/akatov/pretty-mode/compare/2.0.3...master

>>> +       (file-name (string-append name "-" version "-checkout"))
>>> +       (sha256
>>> +        (base32
>>> +         "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs"))))
>>> +    (build-system emacs-build-system)
>>> +    (home-page "https://github.com/akatov/pretty-mode")
>>> +    (synopsis "Redisplay parts of the buffer as pretty Unicode symbols.")
>>> +    (description
>>> +     "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
>>> +    (license license:gpl3+))))

-- 
Alex

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: Add emacs-pretty-mode.
  2017-02-02  9:16   ` Alex Kost
  2017-02-02 10:08     ` ng0
@ 2017-02-14 18:40     ` ng0
  1 sibling, 0 replies; 6+ messages in thread
From: ng0 @ 2017-02-14 18:40 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel

On 17-02-02 12:16:28, Alex Kost wrote:
> contact.ng0@cryptolab.net (2017-02-01 18:08 +0000) wrote:
> 
> > From: ng0 <contact.ng0@cryptolab.net>
> >
> > * gnu/packages/emacs.scm (emacs-pretty-mode): New variable.
> > ---
> >  gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
> >  1 file changed, 23 insertions(+)
> >
> > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> > index df7f7869d..a51b5de1d 100644
> > --- a/gnu/packages/emacs.scm
> > +++ b/gnu/packages/emacs.scm
> > @@ -3778,3 +3778,26 @@ customizable by the user.")
> >  Additionally it can display the number of unread emails in the
> >  mode-line.")
> >      (license license:gpl3+)))
> > +
> > +(define-public emacs-pretty-mode
> > +  (let ((commit "500085206e25b98d00b9ec996f91c87ba569c4ce")
> > +        (revision "1"))
> > +  (package
> > +    (name "emacs-pretty-mode")
> > +    (version (string-append "2.0.3-" revision "." (string-take commit 7)))
> > +    (source
> > +     (origin
> > +       (method git-fetch)
> > +       (uri (git-reference
> > +             (url "https://github.com/akatov/pretty-mode")
> > +             (commit commit)))
> 
> Why git commit, and not the latest snapshot?
> 
> https://github.com/akatov/pretty-mode/archive/2.0.3.tar.gz

Okay. Addressed in the updated patch which I've just sent to
guix-patches@.
 
> > +       (file-name (string-append name "-" version "-checkout"))
> > +       (sha256
> > +        (base32
> > +         "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs"))))
> > +    (build-system emacs-build-system)
> > +    (home-page "https://github.com/akatov/pretty-mode")
> > +    (synopsis "Redisplay parts of the buffer as pretty Unicode symbols.")
> > +    (description
> > +     "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
> > +    (license license:gpl3+))))
> 
> 
> -- 
> Alex

-- 
ng0 -- https://www.inventati.org/patternsinthechaos/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-02-14 18:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-01 18:08 emacs-pretty-mode contact.ng0
2017-02-01 18:08 ` [PATCH] gnu: Add emacs-pretty-mode contact.ng0
2017-02-02  9:16   ` Alex Kost
2017-02-02 10:08     ` ng0
2017-02-03  8:15       ` Alex Kost
2017-02-14 18:40     ` ng0

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).