From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51985) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iAc1t-0007cC-75 for guix-patches@gnu.org; Wed, 18 Sep 2019 11:38:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iAc1r-0005Gb-Hm for guix-patches@gnu.org; Wed, 18 Sep 2019 11:38:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45906) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iAc1r-0005GT-EM for guix-patches@gnu.org; Wed, 18 Sep 2019 11:38:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iAc1r-000756-Bf for guix-patches@gnu.org; Wed, 18 Sep 2019 11:38:03 -0400 Subject: [bug#37444] [PATCH v2 3/4] updated go-github-com-mitchellh-go-homedir to version 1.1.0 Resent-Message-ID: From: Martin Becze Date: Wed, 18 Sep 2019 11:36:26 -0400 Message-Id: <20190918153626.7825-3-mjbecze@riseup.net> In-Reply-To: <20190918153626.7825-1-mjbecze@riseup.net> References: <20190918153626.7825-1-mjbecze@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 37444@debbugs.gnu.org Cc: Martin Becze --- gnu/packages/golang.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 86ee362b70..e17630017c 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2971,28 +2971,27 @@ statistics for wrapped connections.") (license license:expat)))) (define-public go-github-com-mitchellh-go-homedir - (let ((commit "ae18d6b8b3205b561c79e8e5f69bff09736185f4") - (revision "0")) (package (name "go-github-com-mitchellh-go-homedir") - (version (git-version "1.0.0" revision commit)) + (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mitchellh/go-homedir.git") - (commit commit))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) + "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) (build-system go-build-system) (arguments (quote (#:import-path "github.com/mitchellh/go-homedir" ;; TODO: Tests fail because it tries to access home. #:tests? #f))) (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "Go library for detecting and expanding the user's home directory without cgo") + (synopsis "Go library for detecting and expanding the user's home +directory without cgo") (description "This is a Go library for detecting the user's home directory without the use of @command{cgo}, so the library can be used in cross-compilation environments. @@ -3007,7 +3006,7 @@ package cannot cross compile. But 99% of the time the use for @command{os/user} is just to retrieve the home directory, which we can do for the current user without cgo. This library does that, enabling cross-compilation.") - (license license:expat)))) + (license license:expat))) (define-public go-github-com-multiformats-go-multiaddr (let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb") -- 2.23.0