all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons.
@ 2018-09-27 19:47 Nicolas Goaziou
  2018-09-27 19:47 ` [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline Nicolas Goaziou
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Nicolas Goaziou @ 2018-09-27 19:47 UTC (permalink / raw)
  To: 32859

* gnu/packages/emacs.scm (emacs-all-the-icons): New variable.
---
 gnu/packages/emacs.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 8da5add88..fe229b650 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12262,3 +12262,38 @@ execute its commands and resize images.")
       (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
 backends, including the @command{wordnet} offline backend.")
       (license license:gpl3+))))
+
+(define-public emacs-all-the-icons
+  (package
+    (name "emacs-all-the-icons")
+    (version "3.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/domtronn/all-the-icons.el.git")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
+    (build-system emacs-build-system)
+    (arguments
+     `(#:include '("\\.el$" "^data/" "^fonts/")
+       ;; Compiling "test/" fails with "Symbol’s value as variable is void:
+       ;; all-the-icons--root-code".  Ignoring tests.
+       #:exclude '("^test/")
+       #:tests? #f))
+    (propagated-inputs
+     `(("f" ,emacs-f)
+       ("memoize" ,emacs-memoize)))
+    (home-page "https://github.com/dommtron/all-the-icons.el")
+    (synopsis "Collect icon fonts and propertize them within Emacs")
+    (description "All-the-icons is a utility package to collect various icon
+fonts and propertize them within Emacs.")
+    ;; Package is released under Expat license.  Fonts come with various
+    ;; licenses: Expat for "all-the-icons.ttf" and "file-icons.ttf", Apache
+    ;; License 2.0 for "material-design-icons.ttf", and SIL OFL 1.1 for
+    ;; "fontawesome.ttf", "ocitcons.ttf" and "weathericons.ttf".
+    (license (list license:expat license:silofl1.1 license:asl2.0))))
+
-- 
2.18.0

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

* [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline.
  2018-09-27 19:47 [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Nicolas Goaziou
@ 2018-09-27 19:47 ` Nicolas Goaziou
  2018-10-03 19:14   ` bug#32858: Closing bug Nicolas Goaziou
  2018-09-27 19:47 ` [bug#32857] [PATCH 3/3] gnu: Add emacs-spaceline Nicolas Goaziou
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Nicolas Goaziou @ 2018-09-27 19:47 UTC (permalink / raw)
  To: 32858

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index fe229b650..a7d8f186b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12297,3 +12297,24 @@ fonts and propertize them within Emacs.")
     ;; "fontawesome.ttf", "ocitcons.ttf" and "weathericons.ttf".
     (license (list license:expat license:silofl1.1 license:asl2.0))))
 
+(define-public emacs-powerline
+  (package
+    (name "emacs-powerline")
+    (version "2.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/milkypostman/powerline.git")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/milkypostman/powerline/")
+    (synopsis "Mode-line plugin for Emacs")
+    (description "Powerline is a utility plugin which allows you to create
+a better-looking, more functional Emacs mode-line.")
+    (license license:gpl3+)))
+
-- 
2.18.0

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

* [bug#32857] [PATCH 3/3] gnu: Add emacs-spaceline.
  2018-09-27 19:47 [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Nicolas Goaziou
  2018-09-27 19:47 ` [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline Nicolas Goaziou
@ 2018-09-27 19:47 ` Nicolas Goaziou
  2018-10-03 19:15   ` bug#32857: Close bug Nicolas Goaziou
  2018-09-28  2:11 ` [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Timothy Sample
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Nicolas Goaziou @ 2018-09-27 19:47 UTC (permalink / raw)
  To: 32857

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index a7d8f186b..e5a6a07c3 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12318,3 +12318,35 @@ fonts and propertize them within Emacs.")
 a better-looking, more functional Emacs mode-line.")
     (license license:gpl3+)))
 
+(define-public emacs-spaceline
+  (package
+    (name "emacs-spaceline")
+    (version "2.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/TheBB/spaceline.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("dash" ,emacs-dash)
+       ("powerline" ,emacs-powerline)
+       ("s" ,emacs-s)))
+    (home-page "https://github.com/TheBB/spaceline")
+    (synopsis "Powerline theme from Spacemacs")
+    (description "Spaceline provides Spacemacs' mode-line theme.
+This package provides features for three kinds of users.
+
+@itemize
+@item You just want to use the Spacemacs mode-line theme and forget about it.
+@item You want to use something similar to the Spacemacs mode-line theme, but
+with a handful of easy tweaks.
+@item You want an easy-to-use library for building your own mode-line from
+scratch, and you think the Spacemacs theme looks good.
+@end itemize")
+    (license license:gpl3+)))
-- 
2.18.0

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

* [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons.
  2018-09-27 19:47 [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Nicolas Goaziou
  2018-09-27 19:47 ` [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline Nicolas Goaziou
  2018-09-27 19:47 ` [bug#32857] [PATCH 3/3] gnu: Add emacs-spaceline Nicolas Goaziou
@ 2018-09-28  2:11 ` Timothy Sample
  2018-10-03 16:58   ` Nicolas Goaziou
  2018-09-29 21:59 ` Ludovic Courtès
  2018-09-30 13:54 ` [bug#32859] " Marius Bakke
  4 siblings, 1 reply; 11+ messages in thread
From: Timothy Sample @ 2018-09-28  2:11 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 32859

Hi,

There’s a little typo in the home-page below.

Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> * gnu/packages/emacs.scm (emacs-all-the-icons): New variable.
> ---
>  gnu/packages/emacs.scm | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 8da5add88..fe229b650 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -12262,3 +12262,38 @@ execute its commands and resize images.")
>        (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
>  backends, including the @command{wordnet} offline backend.")
>        (license license:gpl3+))))
> +
> +(define-public emacs-all-the-icons
> +  (package
> +    (name "emacs-all-the-icons")
> +    (version "3.2.0")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/domtronn/all-the-icons.el.git")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> +         "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
> +    (build-system emacs-build-system)
> +    (arguments
> +     `(#:include '("\\.el$" "^data/" "^fonts/")
> +       ;; Compiling "test/" fails with "Symbol’s value as variable is void:
> +       ;; all-the-icons--root-code".  Ignoring tests.
> +       #:exclude '("^test/")
> +       #:tests? #f))
> +    (propagated-inputs
> +     `(("f" ,emacs-f)
> +       ("memoize" ,emacs-memoize)))
> +    (home-page "https://github.com/dommtron/all-the-icons.el")

s/dommtron/domtronn/

> +    (synopsis "Collect icon fonts and propertize them within Emacs")
> +    (description "All-the-icons is a utility package to collect various icon
> +fonts and propertize them within Emacs.")
> +    ;; Package is released under Expat license.  Fonts come with various
> +    ;; licenses: Expat for "all-the-icons.ttf" and "file-icons.ttf", Apache
> +    ;; License 2.0 for "material-design-icons.ttf", and SIL OFL 1.1 for
> +    ;; "fontawesome.ttf", "ocitcons.ttf" and "weathericons.ttf".
> +    (license (list license:expat license:silofl1.1 license:asl2.0))))
> +

-- Tim

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

* [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons.
  2018-09-27 19:47 [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Nicolas Goaziou
                   ` (2 preceding siblings ...)
  2018-09-28  2:11 ` [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Timothy Sample
@ 2018-09-29 21:59 ` Ludovic Courtès
  2018-10-03 16:58   ` bug#32859: " Nicolas Goaziou
  2018-09-30 13:54 ` [bug#32859] " Marius Bakke
  4 siblings, 1 reply; 11+ messages in thread
From: Ludovic Courtès @ 2018-09-29 21:59 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 32859

Hello,

Apart from the typo Timothy reported, I think patches #1 and #2 could
have their descriptions expounded.

Otherwise LGTM, thanks!

Ludo’.

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

* [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons.
  2018-09-27 19:47 [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Nicolas Goaziou
                   ` (3 preceding siblings ...)
  2018-09-29 21:59 ` Ludovic Courtès
@ 2018-09-30 13:54 ` Marius Bakke
  2018-10-03 16:57   ` Nicolas Goaziou
  4 siblings, 1 reply; 11+ messages in thread
From: Marius Bakke @ 2018-09-30 13:54 UTC (permalink / raw)
  To: Nicolas Goaziou, 32859

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

Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> * gnu/packages/emacs.scm (emacs-all-the-icons): New variable.
> ---
>  gnu/packages/emacs.scm | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 8da5add88..fe229b650 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -12262,3 +12262,38 @@ execute its commands and resize images.")
>        (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
>  backends, including the @command{wordnet} offline backend.")
>        (license license:gpl3+))))
> +
> +(define-public emacs-all-the-icons
> +  (package
> +    (name "emacs-all-the-icons")
> +    (version "3.2.0")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/domtronn/all-the-icons.el.git")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> +         "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
> +    (build-system emacs-build-system)
> +    (arguments
> +     `(#:include '("\\.el$" "^data/" "^fonts/")
> +       ;; Compiling "test/" fails with "Symbol’s value as variable is void:
> +       ;; all-the-icons--root-code".  Ignoring tests.
> +       #:exclude '("^test/")
> +       #:tests? #f))
> +    (propagated-inputs
> +     `(("f" ,emacs-f)
> +       ("memoize" ,emacs-memoize)))
> +    (home-page "https://github.com/dommtron/all-the-icons.el")
                                    ^^^
                                    "domtronn"
> +    (synopsis "Collect icon fonts and propertize them within Emacs")
> +    (description "All-the-icons is a utility package to collect various icon
> +fonts and propertize them within Emacs.")
> +    ;; Package is released under Expat license.  Fonts come with various
> +    ;; licenses: Expat for "all-the-icons.ttf" and "file-icons.ttf", Apache
> +    ;; License 2.0 for "material-design-icons.ttf", and SIL OFL 1.1 for
> +    ;; "fontawesome.ttf", "ocitcons.ttf" and "weathericons.ttf".
> +    (license (list license:expat license:silofl1.1 license:asl2.0))))

Actually, while LICENSE says MIT; the source headers in all-the-icons.el
says GPL3+.  I guess Expat is for the files without explicit license
headers?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons.
  2018-09-30 13:54 ` [bug#32859] " Marius Bakke
@ 2018-10-03 16:57   ` Nicolas Goaziou
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Goaziou @ 2018-10-03 16:57 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 32859

Hello,

Marius Bakke <mbakke@fastmail.com> writes:

> Actually, while LICENSE says MIT; the source headers in all-the-icons.el
> says GPL3+.  I guess Expat is for the files without explicit license
> headers?

I guess so. I added GPL3+ in the list of licenses for Elisp files. Thank you.

Regards,

-- 
Nicolas Goaziou

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

* [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons.
  2018-09-28  2:11 ` [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Timothy Sample
@ 2018-10-03 16:58   ` Nicolas Goaziou
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Goaziou @ 2018-10-03 16:58 UTC (permalink / raw)
  To: Timothy Sample; +Cc: 32859

Hello,

Timothy Sample <samplet@ngyro.com> writes:

> There’s a little typo in the home-page below.

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou

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

* bug#32859: [PATCH 1/3] gnu: Add emacs-all-the-icons.
  2018-09-29 21:59 ` Ludovic Courtès
@ 2018-10-03 16:58   ` Nicolas Goaziou
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Goaziou @ 2018-10-03 16:58 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 32859-done

Hello,

ludo@gnu.org (Ludovic Courtès) writes:

> Apart from the typo Timothy reported, I think patches #1 and #2 could
> have their descriptions expounded.

I tried to expound the descriptions a bit and applied the patches. Let
me know if something is not right.

Thank you.

Regards,

-- 
Nicolas Goaziou

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

* bug#32858: Closing bug
  2018-09-27 19:47 ` [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline Nicolas Goaziou
@ 2018-10-03 19:14   ` Nicolas Goaziou
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Goaziou @ 2018-10-03 19:14 UTC (permalink / raw)
  To: 32858-done

Patch applied, with modifications.

Closing bug.

-- 
Nicolas Goaziou

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

* bug#32857: Close bug
  2018-09-27 19:47 ` [bug#32857] [PATCH 3/3] gnu: Add emacs-spaceline Nicolas Goaziou
@ 2018-10-03 19:15   ` Nicolas Goaziou
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Goaziou @ 2018-10-03 19:15 UTC (permalink / raw)
  To: 32857-done

Patch applied.

Closing bug.

-- 
Nicolas Goaziou

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

end of thread, other threads:[~2018-10-03 19:16 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-27 19:47 [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Nicolas Goaziou
2018-09-27 19:47 ` [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline Nicolas Goaziou
2018-10-03 19:14   ` bug#32858: Closing bug Nicolas Goaziou
2018-09-27 19:47 ` [bug#32857] [PATCH 3/3] gnu: Add emacs-spaceline Nicolas Goaziou
2018-10-03 19:15   ` bug#32857: Close bug Nicolas Goaziou
2018-09-28  2:11 ` [bug#32859] [PATCH 1/3] gnu: Add emacs-all-the-icons Timothy Sample
2018-10-03 16:58   ` Nicolas Goaziou
2018-09-29 21:59 ` Ludovic Courtès
2018-10-03 16:58   ` bug#32859: " Nicolas Goaziou
2018-09-30 13:54 ` [bug#32859] " Marius Bakke
2018-10-03 16:57   ` Nicolas Goaziou

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.