From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH] gnu: yubico.scm: Rename to security-token.scm. Date: Wed, 26 Oct 2016 07:50:54 +0100 Message-ID: <87vawfd2nl.fsf@duckhunt.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39223) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzI39-0006rg-W3 for guix-devel@gnu.org; Wed, 26 Oct 2016 02:51:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bzI36-0003j2-G5 for guix-devel@gnu.org; Wed, 26 Oct 2016 02:51:00 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:33104) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bzI36-0003ix-Au for guix-devel@gnu.org; Wed, 26 Oct 2016 02:50:56 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 9B3C72054C for ; Wed, 26 Oct 2016 02:50:55 -0400 (EDT) Received: from localhost (169.243.187.81.in-addr.arpa [81.187.243.169]) by mail.messagingengine.com (Postfix) with ESMTPA id 3BD1ACC0BC for ; Wed, 26 Oct 2016 02:50:55 -0400 (EDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain 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? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-yubico.scm-Rename-to-security-token.scm.patch >From 615733b5d0ea6af5cd858f7e258a64a9fb3bc394 Mon Sep 17 00:00:00 2001 From: Marius Bakke 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 . -(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 --=-=-=--