From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: Add irctest. Date: Tue, 18 Oct 2016 13:42:24 +0000 Message-ID: <20161018134224.24053-2-ng0@we.make.ritual.n0.is> References: <20161018134224.24053-1-ng0@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59454) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwUfL-0008ST-IU for guix-devel@gnu.org; Tue, 18 Oct 2016 09:42:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwUfH-0000eE-CE for guix-devel@gnu.org; Tue, 18 Oct 2016 09:42:51 -0400 Received: from aibo.runbox.com ([91.220.196.211]:47515) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bwUfH-0000dr-6L for guix-devel@gnu.org; Tue, 18 Oct 2016 09:42:47 -0400 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1bwUfG-0008VJ-58 for guix-devel@gnu.org; Tue, 18 Oct 2016 15:42:46 +0200 In-Reply-To: <20161018134224.24053-1-ng0@we.make.ritual.n0.is> 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 * 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 ;;; Copyright © 2015 Ludovic Courtès ;;; Copyright © 2015, 2016 Efraim Flashner -;;; Copyright © 2016 ng0 +;;; Copyright © 2016 ng0 ;;; ;;; 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