GNU bug report logs - #32052
[PATCH] gnu: Add oath-toolkit.

Previous Next

Package: guix-patches;

Reported by: Tobias Geerinckx-Rice <me <at> tobias.gr>

Date: Wed, 4 Jul 2018 16:35:01 UTC

Severity: normal

Tags: patch

Done: Tobias Geerinckx-Rice <me <at> tobias.gr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 32052 in the body.
You can then email your comments to 32052 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#32052; Package guix-patches. (Wed, 04 Jul 2018 16:35:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Tobias Geerinckx-Rice <me <at> tobias.gr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 04 Jul 2018 16:35:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tobias Geerinckx-Rice <me <at> tobias.gr>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add oath-toolkit.
Date: Wed,  4 Jul 2018 18:33:46 +0200
* gnu/packages/authentication.scm: New file.
(oath-toolkit): New public variable.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add the new file.
---

2FA, AF.

 gnu/local.mk                    |  1 +
 gnu/packages/authentication.scm | 69 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)
 create mode 100644 gnu/packages/authentication.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index dad664ca1..fe5e40b89 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -67,6 +67,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/attr.scm				\
   %D%/packages/audio.scm			\
   %D%/packages/augeas.scm			\
+  %D%/packages/authentication.scm		\
   %D%/packages/autogen.scm			\
   %D%/packages/autotools.scm			\
   %D%/packages/avahi.scm			\
diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm
new file mode 100644
index 000000000..1d3e1ec1a
--- /dev/null
+++ b/gnu/packages/authentication.scm
@@ -0,0 +1,69 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2018 Tobias Geerinckx-Rice <me <at> tobias.gr>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; 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 authentication)
+  #:use-module (gnu packages linux)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix download)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages))
+
+(define-public oath-toolkit
+  ;; If gcc <at> 7 breaks this package before its next release, try patching it:
+  ;; <https://gitlab.com/oath-toolkit/oath-toolkit/issues/2#note_52958748>.
+  (package
+    (name "oath-toolkit")
+    (version "2.6.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://download.savannah.nongnu.org/releases/"
+                           name "/" name "-" version ".tar.gz"))
+       (sha256
+        (base32 "182ah8vfbg0yhv6mh1b6ap944d0na6x7lpfkwkmzb6jl9gx4cd5h"))))
+    (build-system gnu-build-system)
+    (arguments
+     ;; TODO ‘--enable-pskc’ causes xmlsec-related test suite failures.
+     `(#:configure-flags
+       (list "--enable-pam")))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("linux-pam" ,linux-pam)))       ; for --enable-pam
+    (home-page "https://www.nongnu.org/oath-toolkit/")
+    (synopsis "One-time password (OTP) components")
+    ;; TODO Add the following items after they've been enabled.
+    ;; @item @command{pskctool}, a command-line tool for manipulating secret key
+    ;; files in the Portable Symmetric Key Container (@dfn{PSKC}) format
+    ;; described in RFC6030.
+    ;; @item @code{libpskc}, a shared and static C library for PSKC handling.
+    (description
+     "The @dfn{OATH} (Open AuTHentication) Toolkit provides various components
+for building one-time password (@dfn{OTP}) authentication systems:
+
+@itemize
+@item @command{oathtool}, a command-line tool for generating & validating OTPs.
+@item @code{liboath}, a shared and static C library for OATH handling.
+@item @code{pam_oath}, a PAM module for pluggable login authentication.
+@end itemize
+
+Supported technologies include the event-based @dfn{HOTP} algorithm (RFC4226)
+and the time-based @dfn{TOTP} algorithm (RFC6238).")
+    (license (list license:lgpl2.1+     ; the libraries (liboath/ & libpskc/)
+                   license:gpl3+))))    ; the tools (everything else)
-- 
2.16.2





Information forwarded to guix-patches <at> gnu.org:
bug#32052; Package guix-patches. (Wed, 04 Jul 2018 17:35:02 GMT) Full text and rfc822 format available.

Message #8 received at 32052 <at> debbugs.gnu.org (full text, mbox):

From: Tobias Geerinckx-Rice <me <at> tobias.gr>
To: 32052 <at> debbugs.gnu.org
Subject: Re: [bug#32052] [PATCH] gnu: Add oath-toolkit.
Date: Wed, 04 Jul 2018 19:33:57 +0200
Tobias Geerinckx-Rice wrote:
> +@item @code{liboath}, a shared and static C library for OATH 
> handling.

Actually, I'd like to manually delete the static (.a) 
libraries. Objections?

Kind regards,

T G-R




Information forwarded to guix-patches <at> gnu.org:
bug#32052; Package guix-patches. (Thu, 12 Jul 2018 19:54:01 GMT) Full text and rfc822 format available.

Message #11 received at 32052 <at> debbugs.gnu.org (full text, mbox):

From: Marius Bakke <mbakke <at> fastmail.com>
To: Tobias Geerinckx-Rice <me <at> tobias.gr>, 32052 <at> debbugs.gnu.org
Subject: Re: [bug#32052] [PATCH] gnu: Add oath-toolkit.
Date: Thu, 12 Jul 2018 21:53:13 +0200
[Message part 1 (text/plain, inline)]
Tobias Geerinckx-Rice <me <at> tobias.gr> writes:

> Tobias Geerinckx-Rice wrote:
>> +@item @code{liboath}, a shared and static C library for OATH 
>> handling.
>
> Actually, I'd like to manually delete the static (.a) 
> libraries. Objections?

No objections.  Although if it's well behaved, you may be able to simply
add (outputs ("out" "static")) to move them out of the way.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#32052; Package guix-patches. (Tue, 24 Jul 2018 08:33:02 GMT) Full text and rfc822 format available.

Message #14 received at 32052 <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Marius Bakke <mbakke <at> fastmail.com>
Cc: Tobias Geerinckx-Rice <me <at> tobias.gr>, 32052 <at> debbugs.gnu.org
Subject: Re: [bug#32052] [PATCH] gnu: Add oath-toolkit.
Date: Tue, 24 Jul 2018 10:32:45 +0200
Marius Bakke <mbakke <at> fastmail.com> skribis:

> Tobias Geerinckx-Rice <me <at> tobias.gr> writes:
>
>> Tobias Geerinckx-Rice wrote:
>>> +@item @code{liboath}, a shared and static C library for OATH 
>>> handling.
>>
>> Actually, I'd like to manually delete the static (.a) 
>> libraries. Objections?
>
> No objections.  Although if it's well behaved, you may be able to simply
> add (outputs ("out" "static")) to move them out of the way.

Note that the “static” output is not handled automatically; you need to
manually move files around.

But I think it’s OK to just delete them in this case.

Ludo’.




Reply sent to Tobias Geerinckx-Rice <me <at> tobias.gr>:
You have taken responsibility. (Sat, 11 Aug 2018 00:14:01 GMT) Full text and rfc822 format available.

Notification sent to Tobias Geerinckx-Rice <me <at> tobias.gr>:
bug acknowledged by developer. (Sat, 11 Aug 2018 00:14:02 GMT) Full text and rfc822 format available.

Message #19 received at 32052-done <at> debbugs.gnu.org (full text, mbox):

From: Tobias Geerinckx-Rice <me <at> tobias.gr>
To: Ludovic Courtès <ludo <at> gnu.org>, Marius Bakke
 <mbakke <at> fastmail.com>
Cc: 32052-done <at> debbugs.gnu.org
Subject: Re: [bug#32052] [PATCH] gnu: Add oath-toolkit.
Date: Sat, 11 Aug 2018 02:13:20 +0200
Ludo', Marius,

Ludovic Courtès wrote:
> Marius Bakke <mbakke <at> fastmail.com> skribis:
>
>> Tobias Geerinckx-Rice <me <at> tobias.gr> writes:
>>> Actually, I'd like to manually delete the static (.a) 
>>> libraries. Objections?
>>
>> No objections.  Although if it's well behaved, you may be able 
>> to simply
>> add (outputs ("out" "static")) to move them out of the way.
>
> Note that the “static” output is not handled automatically; you 
> need to
> manually move files around.
>
> But I think it’s OK to just delete them in this case.

Done in commit b3543e6c79d547434c231eadc5089c720755ff73.

Thanks to you both!

T G-R




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 08 Sep 2018 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 347 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.