all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#26754: Add pidentd
@ 2017-05-03 10:11 ng0
  2017-05-03 10:43 ` ng0
  2017-08-01 18:00 ` Efraim Flashner
  0 siblings, 2 replies; 3+ messages in thread
From: ng0 @ 2017-05-03 10:11 UTC (permalink / raw)
  To: 26754

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

The appended patch adds pidentd.

It will need a small service to function properly.
-- 
https://pragmatique.xyz
PGP: https://people.pragmatique.xyz/ng0/

[-- Attachment #2: 0001-gnu-Add-pidentd.patch --]
[-- Type: text/plain, Size: 2332 bytes --]

From da9ee90ed392cd9def9548427799115a42de427a Mon Sep 17 00:00:00 2001
From: ng0 <ng0@no-reply.pragmatique.xyz>
Date: Sun, 30 Apr 2017 19:09:00 +0000
Subject: [PATCH] gnu: Add pidentd.

* gnu/packages/networking.scm (pidentd): New variable.
---
 gnu/packages/networking.scm | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 3182443c1..11fe81dff 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -8,7 +8,7 @@
 ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
 ;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
-;;; Copyright © 2016, 2017 ng0 <ng0@libertad.pw>
+;;; Copyright © 2016, 2017 ng0 <ng0@no-reply.pragmatique.xyz>
 ;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2016 Benz Schenk <benz.schenk@uzh.ch>
 ;;; Copyright © 2016, 2017 Pjotr Prins <pjotr.guix@thebird.nl>
@@ -1185,3 +1185,29 @@ enabled due to license conflicts between the BSD advertising clause and the GPL.
     ;; others under a 4-clause BSD license. Refer to the files in the source
     ;; distribution for clarification.
     (license (list license:bsd-3 license:bsd-4))))
+
+(define-public pidentd
+  (package
+    (name "pidentd")
+    (version "3.0.19")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/ptrrkssn/pidentd/archive/"
+                           "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0y3kd1bkydqkpc1qdff24yswysamsqivvadjy0468qri5730izgc"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f)) ; No tests are included
+    (inputs
+     `(("openssl" ,openssl))) ; For the DES library
+    (home-page "https://www.lysator.liu.se/~pen/pidentd/")
+    (synopsis "Small Ident Daemon")
+    (description
+     "@dfn{Pidentd} (Peter's Ident Daemon) is a identd, which implements a
+identification server.  Pidentd looks up specific TCP/IP connections and
+returns the user name and other information about the connection.")
+    (license license:public-domain)))
-- 
2.12.2


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

* bug#26754: Add pidentd
  2017-05-03 10:11 bug#26754: Add pidentd ng0
@ 2017-05-03 10:43 ` ng0
  2017-08-01 18:00 ` Efraim Flashner
  1 sibling, 0 replies; 3+ messages in thread
From: ng0 @ 2017-05-03 10:43 UTC (permalink / raw)
  To: 26754

ng0 transcribed 2.7K bytes:
> The appended patch adds pidentd.
> 
> It will need a small service to function properly.
> -- 
> https://pragmatique.xyz
> PGP: https://people.pragmatique.xyz/ng0/

> From da9ee90ed392cd9def9548427799115a42de427a Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@no-reply.pragmatique.xyz>
> Date: Sun, 30 Apr 2017 19:09:00 +0000
> Subject: [PATCH] gnu: Add pidentd.
> 
> * gnu/packages/networking.scm (pidentd): New variable.
> ---
>  gnu/packages/networking.scm | 28 +++++++++++++++++++++++++++-
>  1 file changed, 27 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index 3182443c1..11fe81dff 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -8,7 +8,7 @@
>  ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
>  ;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
>  ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
> -;;; Copyright © 2016, 2017 ng0 <ng0@libertad.pw>
> +;;; Copyright © 2016, 2017 ng0 <ng0@no-reply.pragmatique.xyz>
>  ;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
>  ;;; Copyright © 2016 Benz Schenk <benz.schenk@uzh.ch>
>  ;;; Copyright © 2016, 2017 Pjotr Prins <pjotr.guix@thebird.nl>
> @@ -1185,3 +1185,29 @@ enabled due to license conflicts between the BSD advertising clause and the GPL.
>      ;; others under a 4-clause BSD license. Refer to the files in the source
>      ;; distribution for clarification.
>      (license (list license:bsd-3 license:bsd-4))))
> +
> +(define-public pidentd
> +  (package
> +    (name "pidentd")
> +    (version "3.0.19")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://github.com/ptrrkssn/pidentd/archive/"
> +                           "v" version ".tar.gz"))

This used to be hosted on the ftp of lysator.liu.se, but I didn't reach
a source there (directory deleted).

> +       (file-name (string-append name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "0y3kd1bkydqkpc1qdff24yswysamsqivvadjy0468qri5730izgc"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     `(#:tests? #f)) ; No tests are included
> +    (inputs
> +     `(("openssl" ,openssl))) ; For the DES library
> +    (home-page "https://www.lysator.liu.se/~pen/pidentd/")
> +    (synopsis "Small Ident Daemon")
> +    (description
> +     "@dfn{Pidentd} (Peter's Ident Daemon) is a identd, which implements a
> +identification server.  Pidentd looks up specific TCP/IP connections and
> +returns the user name and other information about the connection.")
> +    (license license:public-domain)))
> -- 
> 2.12.2
> 


-- 
https://pragmatique.xyz
PGP: https://people.pragmatique.xyz/ng0/

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

* bug#26754: Add pidentd
  2017-05-03 10:11 bug#26754: Add pidentd ng0
  2017-05-03 10:43 ` ng0
@ 2017-08-01 18:00 ` Efraim Flashner
  1 sibling, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2017-08-01 18:00 UTC (permalink / raw)
  To: 26754-done

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

Patch pushed, sorry it took so long

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

end of thread, other threads:[~2017-08-01 18:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-03 10:11 bug#26754: Add pidentd ng0
2017-05-03 10:43 ` ng0
2017-08-01 18:00 ` Efraim Flashner

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.