guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add irctest.


From: ng0
Subject: [PATCH] gnu: Add irctest.
Date: Tue, 18 Oct 2016 13:42:24 +0000

* gnu/packages/irc.scm (irctest): New variable.
---
 gnu/packages/irc.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index db398de..fd5be13 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2014 Kevin Lemonnier <address@hidden>
 ;;; Copyright © 2015 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2015, 2016 Efraim Flashner <address@hidden>
-;;; Copyright © 2016 ng0 <address@hidden>
+;;; Copyright © 2016 ng0 <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23,6 +23,7 @@
 (define-module (gnu packages irc)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix packages)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
@@ -329,3 +330,37 @@ and extensible with plugins and scripts.")
 embedded web server, translations (fr, fi, it, hu, de), and many
 other enhancements and bug fixes.")
     (license license:bsd-3)))
+
+;; No release tarball so far
+(define-public irctest
+  (let ((commit "548ddb57b08584004a07d8e07f409341e7f4c321")
+        (revision "1"))
+    (package
+      (name "irctest")
+      (version (string-append "0.1-" revision "." (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/ProgVal/irctest";)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "1g3xmdiwcb5pjhll2gp7bcbnxc8h0g3hmis3xnvbcvbkrqm75r4w"))))
+      (build-system python-build-system)
+      (inputs
+       `(("python-ecdsa" ,python-ecdsa)
+         ("python-psutil" ,python-psutil)
+         ("limnoria" ,limnoria)))
+      (arguments
+       `(#:tests? #f)) ; No tests
+      (home-page "https://github.com/ProgVal/irctest";)
+      (synopsis "IRC (1459/2812/v3.1/v3.2) software conformance testing tool")
+      (description
+       "Irctest aims at testing interoperability of software using the
+IRC protocol, by running them against test suites and making different
+software communicate with each other.  It contains IRC protocol test
+cases and small wrappers around existing software to run tests on them.
+Wrappers run software in temporary directories.")
+      (license license:expat))))
-- 
2.10.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]