From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Cl=C3=A9ment=20Lassieur?= Subject: [PATCH] gnu: prosody: Update to 0.9.12. Date: Wed, 22 Feb 2017 20:51:59 +0100 Message-ID: <20170222195159.5467-1-clement@lassieur.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50403) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cgcxZ-0000cV-73 for guix-devel@gnu.org; Wed, 22 Feb 2017 14:52:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cgcxV-0001i6-4C for guix-devel@gnu.org; Wed, 22 Feb 2017 14:52:21 -0500 Received: from mail.lassieur.org ([83.152.10.219]:34306) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cgcxU-0001hv-QD for guix-devel@gnu.org; Wed, 22 Feb 2017 14:52:17 -0500 Received: from localhost.localdomain (unknown [88.191.118.83]) by mail.lassieur.org (Postfix) with ESMTPSA id 1409F640116 for ; Wed, 22 Feb 2017 20:52:12 +0100 (CET) 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/messaging.scm (prosody): Update to 0.9.12. [inputs]: Change lua5.1-sec-0.5 to lua5.1-sec. * gnu/packages/lua.scm (lua5.1-sec-0.5): Remove it. --- gnu/packages/lua.scm | 13 ------------- gnu/packages/messaging.scm | 7 +++---- 2 files changed, 3 insertions(+), 17 deletions(-) diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 5016732b7..35efaa496 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -6,7 +6,6 @@ ;;; Copyright =C2=A9 2016 Efraim Flashner ;;; Copyright =C2=A9 2016 Ricardo Wurmus ;;; Copyright =C2=A9 2016 doncatnip -;;; Copyright =C2=A9 2016 Cl=C3=A9ment Lassieur ;;; Copyright =C2=A9 2016 Jos=C3=A9 Miguel S=C3=A1nchez Garc=C3=ADa ;;; ;;; This file is part of GNU Guix. @@ -283,18 +282,6 @@ communication. It takes an already established TCP = connection and creates a secure session between the peers.") (license (package-license lua-5.1)))) =20 -(define-public lua5.1-sec-0.5 - (package - (inherit lua5.1-sec) - (version "0.5.1") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/brunoos/luasec/arc= hive/" - "luasec-" version ".tar.gz")) - (sha256 - (base32 - "01llf5bcrjmqqy6m65avqkajz7h79rvkka6rd131kwr10n75yp3d"))= )))) - (define-public lua-lgi (package (name "lua-lgi") diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 9345e2426..0ffc031c8 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -495,14 +495,14 @@ end-to-end encryption support; XML console.") (define-public prosody (package (name "prosody") - (version "0.9.10") + (version "0.9.12") (source (origin (method url-fetch) (uri (string-append "https://prosody.im/downloads/source/" "prosody-" version ".tar.gz")) (sha256 (base32 - "0bv6s5c0iizz015hh1lxlwlw1iwvisywajm2rcrbdfyrskzfwdj8"))= )) + "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))= )) (build-system gnu-build-system) (arguments `(#:tests? #f ; no "check" target @@ -572,8 +572,7 @@ end-to-end encryption support; XML console.") ("lua5.1-expat" ,lua5.1-expat) ("lua5.1-socket" ,lua5.1-socket) ("lua5.1-filesystem" ,lua5.1-filesystem) - ;; See . - ("lua5.1-sec" ,lua5.1-sec-0.5))) + ("lua5.1-sec" ,lua5.1-sec))) (home-page "https://prosody.im/") (synopsis "Jabber (XMPP) server") (description "Prosody is a modern XMPP communication server. It aim= s to --=20 2.11.1