From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36169) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcXiR-0004Sc-4I for guix-patches@gnu.org; Tue, 01 Aug 2017 10:00:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcXiN-0004Xl-0C for guix-patches@gnu.org; Tue, 01 Aug 2017 10:00:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34356) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dcXiM-0004XP-Th for guix-patches@gnu.org; Tue, 01 Aug 2017 10:00:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dcXiM-0006OI-Mv for guix-patches@gnu.org; Tue, 01 Aug 2017 10:00:02 -0400 Subject: [bug#27906] [PATCH] r-foreign: Update hash and remove duplicate recipe. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcXhZ-00044p-Ol for guix-patches@gnu.org; Tue, 01 Aug 2017 09:59:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcXhX-0003l1-4j for guix-patches@gnu.org; Tue, 01 Aug 2017 09:59:13 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:55796) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcXhX-0003kl-0P for guix-patches@gnu.org; Tue, 01 Aug 2017 09:59:11 -0400 Received: from [143.121.198.177] (port=43924 helo=cog147) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dcXhW-0000oo-GF for guix-patches@gnu.org; Tue, 01 Aug 2017 09:59:10 -0400 From: Roel Janssen Date: Tue, 01 Aug 2017 15:58:59 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27906@debbugs.gnu.org --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-r-foreign-Update-hash-and-remove-duplicate-recipe.patch >From 8f53dba37fbb34740801bb684e9ddb4f5d22c607 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Tue, 1 Aug 2017 15:51:16 +0200 Subject: [PATCH] r-foreign: Update hash and remove duplicate recipe. * gnu/packages/statistics.scm (r-foreign): Update hash and remove duplicate recipe. --- gnu/packages/statistics.scm | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e9bda5c..99fd2e8 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -373,7 +373,7 @@ Hubert, based on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".") (uri (cran-uri "foreign" version)) (sha256 (base32 - "1mcrm2pydimbyjhkrw5h380bifj1jhwzifph1xgh90asf3lvd1xd")))) + "0j0z815zyp8n97rk6hlk68d1r8b26vls39s03viq0pnx3cbpwyga")))) (build-system r-build-system) (home-page "http://cran.r-project.org/web/packages/foreign") (synopsis "Read data stored by other statistics software") @@ -1602,26 +1602,6 @@ It is based on the methods described in Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".") (license license:gpl2+))) -(define-public r-foreign - (package - (name "r-foreign") - (version "0.8-67") - (source - (origin - (method url-fetch) - (uri (cran-uri "foreign" version)) - (sha256 - (base32 - "1mcrm2pydimbyjhkrw5h380bifj1jhwzifph1xgh90asf3lvd1xd")))) - (build-system r-build-system) - (home-page "http://cran.r-project.org/web/packages/foreign") - (synopsis "Read data stored by other statistics software in R") - (description - "This package provides functions for reading and writing data stored by -some versions of Epi Info, Minitab, S, SAS, SPSS, Stata, Systat and Weka, and -for reading and writing some dBase files.") - (license license:gpl2+))) - (define-public r-formula (package (name "r-formula") -- 2.7.4 --=-=-= Content-Type: text/plain Dear Guix, It seems we have two (almost identical) package recipes for r-foreign. This patch removes one of them. Also, the upstream tarball seems to have changed, so I updated the SHA256 hash. If someone has the old tarball, we could look at what exactly has changed. Kind regards, Roel Janssen --=-=-=--