From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] Add tintin. Date: Mon, 08 Aug 2016 21:13:37 +0000 Message-ID: <878tw7otfi.fsf@we.make.ritual.n0.is> References: <87r39z81zo.fsf@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]:44271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWrrh-0003Wu-R2 for guix-devel@gnu.org; Mon, 08 Aug 2016 17:13:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWrrg-0007cU-EZ for guix-devel@gnu.org; Mon, 08 Aug 2016 17:13:41 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:53465 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWrrg-0007bf-0q for guix-devel@gnu.org; Mon, 08 Aug 2016 17:13:40 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id c7be66e8 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Mon, 8 Aug 2016 21:13:37 +0000 (UTC) In-Reply-To: <87r39z81zo.fsf@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 Damn. I just realized this is called TinTin++ and that the "++" is part of the name, as there were other tintin*. Updated patch coming soon. ng0 writes: > This patch adds tintin. Functionality was tried with > just connecting to the psyced.org chatserver, connection > successful, interaction not possible due to unsupported or > old tls on client side. I have to investigate that. > > From f132b8022ec0068d5b96a85a4038a8279d9a3596 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Mon, 8 Aug 2016 19:54:50 +0000 > Subject: [PATCH] gnu: Add tintin. > > * gnu/packages/games.scm (tintin): New variable. > --- > gnu/packages/games.scm | 38 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 38 insertions(+) > > diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm > index e467dbe..25445ab 100644 > --- a/gnu/packages/games.scm > +++ b/gnu/packages/games.scm > @@ -99,6 +99,8 @@ > #:use-module (gnu packages xml) > #:use-module (gnu packages tcl) > #:use-module (gnu packages xdisorg) > + #:use-module (gnu packages tls) > + #:use-module (gnu packages pcre) > #:use-module (guix build-system gnu) > #:use-module (guix build-system haskell) > #:use-module (guix build-system cmake) > @@ -2731,3 +2733,39 @@ in a style similar to the original Super Mario games covered under > the GNU GPL.") > (home-page "https://supertuxproject.org/") > (license license:gpl3+))) > + > +(define-public tintin > + (package > + (name "tintin") > + (version "2.01.1") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://sourceforge.net/projects/" name > + "/files" "/TinTin++ Source Code/" > + version "/" name "-" version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "195wrfcys8yy953gdrl1gxryhjnx9lg1vqgxm3dyzm8bi18aa2yc")))) > + (inputs > + `(("gnutls" ,gnutls) > + ("readline" ,readline) > + ("zlib" ,zlib) > + ("pcre" ,pcre))) > + (arguments > + '(#:tests? #f > + #:phases > + (modify-phases %standard-phases > + ;; The source is in tt/src. > + (add-before 'configure 'chdir-to-tt-src > + (lambda _ > + (chdir "src")))))) > + (build-system gnu-build-system) > + (home-page "http://tintin.sourceforge.net/") > + (synopsis "MUD client") > + (description > + "TinTin++ is a MUD client which supports MCCP (Mud Client Compression Protocol), > +MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET options used by MUDs, > +as well as those required to login via telnet on Linux / Mac OS X servers, and an > +auto mapper with a VT100 map display.") > + (license license:gpl2+))) > -- > 2.9.2 > > > -- > ♥Ⓐ ng0 > Current Keys: https://we.make.ritual.n0.is/ng0.txt > For non-prism friendly talk find me on http://www.psyced.org -- ♥Ⓐ ng0 Current Keys: https://we.make.ritual.n0.is/ng0.txt For non-prism friendly talk find me on http://www.psyced.org