all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] import: elpa default to tls for elpa-archives.
@ 2016-08-30 12:45 ng0
  2016-08-30 13:04 ` ng0
  2016-08-30 13:12 ` ng0
  0 siblings, 2 replies; 3+ messages in thread
From: ng0 @ 2016-08-30 12:45 UTC (permalink / raw)
  To: guix-devel

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

Same reason and changes as written in
http://lists.gnu.org/archive/html/guix-devel/2016-08/msg01993.html
(hackage http->https change).


[-- Attachment #2: 0001-import-elpa-default-to-tls-for-elpa-archives.patch --]
[-- Type: text/x-patch, Size: 1376 bytes --]

From a89549bc9e794201b3f2673a08d4322ad0832a0e Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Tue, 30 Aug 2016 12:37:20 +0000
Subject: [PATCH 1/2] import: elpa: default to tls for elpa-archives.

* guix/import/elpa.scm (elpa-url)[elpa-archives]: Use tls.
---
 guix/import/elpa.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
index 320a09e..c241aef 100644
--- a/guix/import/elpa.scm
+++ b/guix/import/elpa.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
 ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -70,9 +71,9 @@ NAMES (strings)."
 (define* (elpa-url #:optional (repo 'gnu))
   "Retrun the URL of REPO."
   (let ((elpa-archives
-         '((gnu . "http://elpa.gnu.org/packages")
-           (melpa-stable . "http://stable.melpa.org/packages")
-           (melpa . "http://melpa.org/packages"))))
+         '((gnu . "https://elpa.gnu.org/packages")
+           (melpa-stable . "https://stable.melpa.org/packages")
+           (melpa . "https://melpa.org/packages"))))
     (assq-ref elpa-archives repo)))
 
 (define* (elpa-fetch-archive #:optional (repo 'gnu))
-- 
2.9.3


[-- Attachment #3: Type: text/plain, Size: 35 bytes --]


Hello world package using melpa.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: 0002-gnu-Add-emacs-abyss-theme.patch --]
[-- Type: text/x-patch, Size: 1568 bytes --]

From 63ebd92798d389bd1687e716dd86d179d895c654 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Tue, 30 Aug 2016 12:42:08 +0000
Subject: [PATCH 2/2] gnu: Add emacs-abyss-theme.

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 4fe9a8a..8589fe8 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3002,3 +3002,25 @@ lists, and project planning with a fast and effective plain-text system.  It
 also is an authoring system with unique support for literate programming and
 reproducible research.")
     (license license:gpl3+)))
+
+(define-public emacs-abyss-theme
+  (package
+    (name "emacs-abyss-theme")
+    (version "20160420.512")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://melpa.org/packages/abyss-theme-"
+                           version ".el"))
+       (sha256
+        (base32
+         "089cjqfcmi5w7ihxhxad7x82wknm47vcxfd979xxar1zvsg4qmzr"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/mgrbyte/emacs-abyss-theme")
+    (synopsis "A dark theme with contrasting colours.")
+    (description
+     "A dark theme with contrasting colours for Emacs24 based on the
+``Lush`` theme by Andre Richter, using the same colours palette
+as the the built-in `dichromacy' theme; intended to be suitable
+for red/green colour blind users.")
+    (license license:gpl3+)))
-- 
2.9.3


[-- Attachment #5: Type: text/plain, Size: 70 bytes --]


-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] import: elpa default to tls for elpa-archives.
  2016-08-30 12:45 [PATCH] import: elpa default to tls for elpa-archives ng0
@ 2016-08-30 13:04 ` ng0
  2016-08-30 13:12 ` ng0
  1 sibling, 0 replies; 3+ messages in thread
From: ng0 @ 2016-08-30 13:04 UTC (permalink / raw)
  To: guix-devel

ng0 <ng0@we.make.ritual.n0.is> writes:

> Same reason and changes as written in
> http://lists.gnu.org/archive/html/guix-devel/2016-08/msg01993.html
> (hackage http->https change).
>
> From a89549bc9e794201b3f2673a08d4322ad0832a0e Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Tue, 30 Aug 2016 12:37:20 +0000
> Subject: [PATCH 1/2] import: elpa: default to tls for elpa-archives.
>
> * guix/import/elpa.scm (elpa-url)[elpa-archives]: Use tls.

Commit message needs a fix, it should read: "Default to…"

> ---
>  guix/import/elpa.scm | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
> index 320a09e..c241aef 100644
> --- a/guix/import/elpa.scm
> +++ b/guix/import/elpa.scm
> @@ -1,6 +1,7 @@
>  ;;; GNU Guix --- Functional package management for GNU
>  ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
>  ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
> +;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -70,9 +71,9 @@ NAMES (strings)."
>  (define* (elpa-url #:optional (repo 'gnu))
>    "Retrun the URL of REPO."
>    (let ((elpa-archives
> -         '((gnu . "http://elpa.gnu.org/packages")
> -           (melpa-stable . "http://stable.melpa.org/packages")
> -           (melpa . "http://melpa.org/packages"))))
> +         '((gnu . "https://elpa.gnu.org/packages")
> +           (melpa-stable . "https://stable.melpa.org/packages")
> +           (melpa . "https://melpa.org/packages"))))
>      (assq-ref elpa-archives repo)))
>  
>  (define* (elpa-fetch-archive #:optional (repo 'gnu))
> -- 
> 2.9.3
>
>
> Hello world package using melpa.
>
> From 63ebd92798d389bd1687e716dd86d179d895c654 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Tue, 30 Aug 2016 12:42:08 +0000
> Subject: [PATCH 2/2] gnu: Add emacs-abyss-theme.
>
> * gnu/packages/emacs.scm (emacs-abyss-theme): New variable.
> ---
>  gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 4fe9a8a..8589fe8 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -3002,3 +3002,25 @@ lists, and project planning with a fast and effective plain-text system.  It
>  also is an authoring system with unique support for literate programming and
>  reproducible research.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-abyss-theme
> +  (package
> +    (name "emacs-abyss-theme")
> +    (version "20160420.512")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://melpa.org/packages/abyss-theme-"
> +                           version ".el"))
> +       (sha256
> +        (base32
> +         "089cjqfcmi5w7ihxhxad7x82wknm47vcxfd979xxar1zvsg4qmzr"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/mgrbyte/emacs-abyss-theme")
> +    (synopsis "A dark theme with contrasting colours.")
> +    (description
> +     "A dark theme with contrasting colours for Emacs24 based on the
> +``Lush`` theme by Andre Richter, using the same colours palette
> +as the the built-in `dichromacy' theme; intended to be suitable
> +for red/green colour blind users.")
> +    (license license:gpl3+)))
> -- 
> 2.9.3
>
>
> -- 
> ng0
> For non-prism friendly talk find me on http://www.psyced.org

-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] import: elpa default to tls for elpa-archives.
  2016-08-30 12:45 [PATCH] import: elpa default to tls for elpa-archives ng0
  2016-08-30 13:04 ` ng0
@ 2016-08-30 13:12 ` ng0
  1 sibling, 0 replies; 3+ messages in thread
From: ng0 @ 2016-08-30 13:12 UTC (permalink / raw)
  To: guix-devel

ng0 <ng0@we.make.ritual.n0.is> writes:

> Same reason and changes as written in
> http://lists.gnu.org/archive/html/guix-devel/2016-08/msg01993.html
> (hackage http->https change).
>
> From a89549bc9e794201b3f2673a08d4322ad0832a0e Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Tue, 30 Aug 2016 12:37:20 +0000
> Subject: [PATCH 1/2] import: elpa: default to tls for elpa-archives.
>
> * guix/import/elpa.scm (elpa-url)[elpa-archives]: Use tls.

For commiter, could you be so kind and fix
import: elpa: default to tls for elpa-archives.
to
import: elpa: Default to tls for elpa-archives.

? thanks.
> ---
>  guix/import/elpa.scm | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
> index 320a09e..c241aef 100644
> --- a/guix/import/elpa.scm
> +++ b/guix/import/elpa.scm
> @@ -1,6 +1,7 @@
>  ;;; GNU Guix --- Functional package management for GNU
>  ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
>  ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
> +;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -70,9 +71,9 @@ NAMES (strings)."
>  (define* (elpa-url #:optional (repo 'gnu))
>    "Retrun the URL of REPO."
>    (let ((elpa-archives
> -         '((gnu . "http://elpa.gnu.org/packages")
> -           (melpa-stable . "http://stable.melpa.org/packages")
> -           (melpa . "http://melpa.org/packages"))))
> +         '((gnu . "https://elpa.gnu.org/packages")
> +           (melpa-stable . "https://stable.melpa.org/packages")
> +           (melpa . "https://melpa.org/packages"))))
>      (assq-ref elpa-archives repo)))
>  
>  (define* (elpa-fetch-archive #:optional (repo 'gnu))
> -- 
> 2.9.3
>
>
> Hello world package using melpa.
>
> From 63ebd92798d389bd1687e716dd86d179d895c654 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Tue, 30 Aug 2016 12:42:08 +0000
> Subject: [PATCH 2/2] gnu: Add emacs-abyss-theme.
>
> * gnu/packages/emacs.scm (emacs-abyss-theme): New variable.
> ---
>  gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 4fe9a8a..8589fe8 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -3002,3 +3002,25 @@ lists, and project planning with a fast and effective plain-text system.  It
>  also is an authoring system with unique support for literate programming and
>  reproducible research.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-abyss-theme
> +  (package
> +    (name "emacs-abyss-theme")
> +    (version "20160420.512")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://melpa.org/packages/abyss-theme-"
> +                           version ".el"))
> +       (sha256
> +        (base32
> +         "089cjqfcmi5w7ihxhxad7x82wknm47vcxfd979xxar1zvsg4qmzr"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/mgrbyte/emacs-abyss-theme")
> +    (synopsis "A dark theme with contrasting colours.")
> +    (description
> +     "A dark theme with contrasting colours for Emacs24 based on the
> +``Lush`` theme by Andre Richter, using the same colours palette
> +as the the built-in `dichromacy' theme; intended to be suitable
> +for red/green colour blind users.")
> +    (license license:gpl3+)))
> -- 
> 2.9.3
>
>
> -- 
> ng0
> For non-prism friendly talk find me on http://www.psyced.org

-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

end of thread, other threads:[~2016-08-30 13:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 12:45 [PATCH] import: elpa default to tls for elpa-archives ng0
2016-08-30 13:04 ` ng0
2016-08-30 13:12 ` ng0

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.