From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52848) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ilM3v-0007tA-Q2 for guix-patches@gnu.org; Sat, 28 Dec 2019 19:04:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ilM3u-0005D8-IB for guix-patches@gnu.org; Sat, 28 Dec 2019 19:04:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:53119) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ilM3u-0005C4-D6 for guix-patches@gnu.org; Sat, 28 Dec 2019 19:04:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ilM3u-0006kM-8R for guix-patches@gnu.org; Sat, 28 Dec 2019 19:04:02 -0500 Subject: [bug#38786] [PATCH] gnu: emacs-auth-source-pass: Use upstream URL. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50471) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ilM3I-0007jP-6W for guix-patches@gnu.org; Sat, 28 Dec 2019 19:03:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ilM3G-0001HW-Aq for guix-patches@gnu.org; Sat, 28 Dec 2019 19:03:23 -0500 Received: from mx.kolabnow.com ([95.128.36.40]:50526) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ilM3F-00015D-Op for guix-patches@gnu.org; Sat, 28 Dec 2019 19:03:22 -0500 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out003.mykolab.com (Postfix) with ESMTP id 8600740D73 for ; Sun, 29 Dec 2019 01:03:18 +0100 (CET) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out003.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id q4UJV3lPUZKm for ; Sun, 29 Dec 2019 01:03:18 +0100 (CET) Received: from int-mx002.mykolab.com (unknown [10.9.13.2]) by ext-mx-out003.mykolab.com (Postfix) with ESMTPS id D699340B62 for ; Sun, 29 Dec 2019 01:03:17 +0100 (CET) Received: from ext-subm003.mykolab.com (unknown [10.9.6.3]) by int-mx002.mykolab.com (Postfix) with ESMTPS id 946A425C2 for ; Sun, 29 Dec 2019 01:03:17 +0100 (CET) From: "LaFreniere\, Joseph" Date: Sat, 28 Dec 2019 18:03:12 -0600 Message-ID: <875zi0q9q7.fsf@lafreniere.xyz> 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: 38786@debbugs.gnu.org --=-=-= Content-Type: text/plain; format=flowed Patch file is attached. -- Joseph LaFreniere --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-emacs-auth-source-pass-Use-upstream-URL.patch >From 3b09b43f3746ae7239b3ee9a955c7d8bcb75453f Mon Sep 17 00:00:00 2001 From: Joseph LaFreniere Date: Sat, 28 Dec 2019 17:22:47 -0600 Subject: [PATCH] gnu: emacs-auth-source-pass: Use upstream URL. * gnu/packages/emacs-xyz.scm (emacs-auth-source-pass): Use URL of upstream (rather than forked) repository. --- gnu/packages/emacs-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 06c8dc2016..be7bec8df6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -11786,7 +11786,7 @@ standard Unix password manager\").") (define-public emacs-auth-source-pass (let ((commit "847a1f54ed48856b4dfaaa184583ef2c84173edf") - (revision "1")) + (revision "2")) (package (name "emacs-auth-source-pass") (version (git-version "5.0.0" revision commit)) @@ -11794,7 +11794,7 @@ standard Unix password manager\").") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/NicolasPetton/auth-password-store.git") + (url "https://github.com/DamienCassou/auth-password-store.git") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -11806,7 +11806,7 @@ standard Unix password manager\").") "-L" "." "-l" "test/auth-source-pass-tests.el" "-f" "ert-run-tests-batch-and-exit"))) - (home-page "https://github.com/NicolasPetton/auth-password-store") + (home-page "https://github.com/DamienCassou/auth-password-store") (synopsis "Integrate @code{auth-source} with @code{password-store}") (description "This package helps Emacs integrate with the Unix @code{password-store} application.") -- 2.24.1 --=-=-=--