all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: yubico.scm: Rename to security-token.scm.
@ 2016-10-26  6:50 Marius Bakke
  2016-10-26  6:54 ` Marius Bakke
  2016-10-26  8:23 ` Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Marius Bakke @ 2016-10-26  6:50 UTC (permalink / raw)
  To: guix-devel

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

This is an attempt to make it generic enough for middleware and drivers
such as pcsc-lite and ccid, in addition to tools for other devices.

Other options include "authentication.scm", "auth-token.scm",
"security.scm" and a lot more..

What do you think?


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-yubico.scm-Rename-to-security-token.scm.patch --]
[-- Type: text/x-patch, Size: 1826 bytes --]

From 615733b5d0ea6af5cd858f7e258a64a9fb3bc394 Mon Sep 17 00:00:00 2001
From: Marius Bakke <mbakke@fastmail.com>
Date: Wed, 26 Oct 2016 07:33:24 +0100
Subject: [PATCH] gnu: yubico.scm: Rename to security-token.scm.

* gnu/packages/yubico.scm: Delete file.
* gnu/packages/security-token.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
---
 gnu/local.mk                                    | 2 +-
 gnu/packages/{yubico.scm => security-token.scm} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename gnu/packages/{yubico.scm => security-token.scm} (98%)

diff --git a/gnu/local.mk b/gnu/local.mk
index ff2d976..cd6c715 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -325,6 +325,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/scsi.scm				\
   %D%/packages/sdcc.scm				\
   %D%/packages/sdl.scm				\
+  %D%/packages/security-token.scm		\
   %D%/packages/search.scm			\
   %D%/packages/serialization.scm		\
   %D%/packages/serveez.scm			\
@@ -385,7 +386,6 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/xdisorg.scm			\
   %D%/packages/xorg.scm				\
   %D%/packages/xfce.scm				\
-  %D%/packages/yubico.scm			\
   %D%/packages/zile.scm				\
   %D%/packages/zip.scm				\
 						\
diff --git a/gnu/packages/yubico.scm b/gnu/packages/security-token.scm
similarity index 98%
rename from gnu/packages/yubico.scm
rename to gnu/packages/security-token.scm
index 469d93d..48a9346 100644
--- a/gnu/packages/yubico.scm
+++ b/gnu/packages/security-token.scm
@@ -17,7 +17,7 @@
 ;;; You should have received a copy of the GNU General Public License
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
-(define-module (gnu packages yubico)
+(define-module (gnu packages security-token)
   #:use-module (gnu packages)
   #:use-module (guix licenses)
   #:use-module (guix packages)
-- 
2.10.1


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

* Re: [PATCH] gnu: yubico.scm: Rename to security-token.scm.
  2016-10-26  6:50 [PATCH] gnu: yubico.scm: Rename to security-token.scm Marius Bakke
@ 2016-10-26  6:54 ` Marius Bakke
  2016-10-26  8:23 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Marius Bakke @ 2016-10-26  6:54 UTC (permalink / raw)
  To: guix-devel

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

Marius Bakke <mbakke@fastmail.com> writes:

> diff --git a/gnu/local.mk b/gnu/local.mk
> index ff2d976..cd6c715 100644
> --- a/gnu/local.mk
> +++ b/gnu/local.mk
> @@ -325,6 +325,7 @@ GNU_SYSTEM_MODULES =				\
>    %D%/packages/scsi.scm				\
>    %D%/packages/sdcc.scm				\
>    %D%/packages/sdl.scm				\
> +  %D%/packages/security-token.scm		\
>    %D%/packages/search.scm			\
>    %D%/packages/serialization.scm		\
>    %D%/packages/serveez.scm			\

Apparently I struggle with the alphabet today, this is fixed in my local
branch.

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

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

* Re: [PATCH] gnu: yubico.scm: Rename to security-token.scm.
  2016-10-26  6:50 [PATCH] gnu: yubico.scm: Rename to security-token.scm Marius Bakke
  2016-10-26  6:54 ` Marius Bakke
@ 2016-10-26  8:23 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2016-10-26  8:23 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

Marius Bakke <mbakke@fastmail.com> skribis:

> This is an attempt to make it generic enough for middleware and drivers
> such as pcsc-lite and ccid, in addition to tools for other devices.

Good idea.

> Other options include "authentication.scm", "auth-token.scm",
> "security.scm" and a lot more..
>
> What do you think?

“security-token” looks good to me.

Thanks!

Ludo’.

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

end of thread, other threads:[~2016-10-26  8:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-26  6:50 [PATCH] gnu: yubico.scm: Rename to security-token.scm Marius Bakke
2016-10-26  6:54 ` Marius Bakke
2016-10-26  8:23 ` Ludovic Courtès

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.