From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 1/1] gnu: cryptsetup: Update to 1.7.2. Date: Mon, 3 Oct 2016 03:48:19 -0400 Message-ID: References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bqxzn-0008Fo-EM for guix-devel@gnu.org; Mon, 03 Oct 2016 03:49:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bqxzk-0002Ll-Aq for guix-devel@gnu.org; Mon, 03 Oct 2016 03:49:07 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:49258) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bqxzh-0002C6-W1 for guix-devel@gnu.org; Mon, 03 Oct 2016 03:49:04 -0400 Received: from localhost.localdomain (c-73-188-17-148.hsd1.pa.comcast.net [73.188.17.148]) by mail.messagingengine.com (Postfix) with ESMTPA id ABC29CC073 for ; Mon, 3 Oct 2016 03:48:53 -0400 (EDT) In-Reply-To: In-Reply-To: References: 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/cryptsetup.scm (cryptsetup): Update to 1.7.2. [source]: Use kernel mirror. [home-page]: Update URL. --- gnu/packages/cryptsetup.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/cryptsetup.scm b/gnu/packages/cryptsetup.scm index 725a397..0c8efce 100644 --- a/gnu/packages/cryptsetup.scm +++ b/gnu/packages/cryptsetup.scm @@ -21,6 +21,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages gnupg) #:use-module (gnu packages popt) @@ -30,14 +31,15 @@ (define-public cryptsetup (package (name "cryptsetup") - (version "1.6.1") + (version "1.7.2") (source (origin (method url-fetch) - (uri (string-append "http://cryptsetup.googlecode.com/files/cryptsetup-" - version ".tar.bz2")) + (uri (string-append "mirror://kernel.org/linux/utils/cryptsetup/v" + (version-major+minor version) + "/" name "-" version ".tar.xz")) (sha256 (base32 - "170lalkhh2fa316d12i6r7jprm0yss3c949d91069sq37ik6xwxs")))) + "0hikwkkj692c955k29c4zixj8wp8k3z17jc6ihb4j5qcbyzmvcyv")))) (build-system gnu-build-system) (inputs `(("libgcrypt" ,libgcrypt) @@ -55,4 +57,4 @@ passwords. In contrast to existing solutions, LUKS stores all setup necessary setup information in the partition header, enabling the users to transport or migrate their data seamlessly.") (license license:gpl2) - (home-page "http://code.google.com/p/cryptsetup/"))) + (home-page "https://gitlab.com/cryptsetup/cryptsetup"))) -- 2.10.0