From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51120) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIuoh-0006p6-V2 for guix-patches@gnu.org; Mon, 30 Mar 2020 09:51:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIuog-0002Kj-LG for guix-patches@gnu.org; Mon, 30 Mar 2020 09:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49727) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIuog-0002Jw-H1 for guix-patches@gnu.org; Mon, 30 Mar 2020 09:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIuog-0002Fm-Cx for guix-patches@gnu.org; Mon, 30 Mar 2020 09:51:02 -0400 Subject: [bug#40229] Acknowledgement ([PATCH] gnu: clipmenu: Update to 6.0.1.) Resent-Message-ID: From: Damien Cassou In-Reply-To: <874ku6x6eq.fsf@devup.no> References: <875zesuq3r.fsf@cassou.me> <87369wup7s.fsf@cassou.me> <874ku6x6eq.fsf@devup.no> Date: Mon, 30 Mar 2020 15:50:12 +0200 Message-ID: <87ftdqc5pn.fsf@cassou.me> 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: Marius Bakke , 40229@debbugs.gnu.org --=-=-= Content-Type: text/plain Marius Bakke writes: > Thanks! Can you submit the indentation change as a separate commit? changing indentation was only necessary because of the switch to the tarball. It's not necessary anymore. > The GitHub /archive/ URL's are not stable: the tarballs they generate > may get regenerated in the future with different timestamps and break > the checksum. So please continue using git-fetch here. > > Can you send an updated patch? TIA! here it is. -- Damien Cassou "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-clipnotify-Update-to-6.0.1.patch >From 67876912ccc40dcbe539e0a1e8523d021a1e4b5c Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 30 Mar 2020 13:59:34 +0200 Subject: [PATCH] gnu: clipnotify: Update to 6.0.1. * gnu/packages/xdisorg.scm (clipnotify): Update to 6.0.1. --- gnu/packages/xdisorg.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 22c8adc6fa..9335b48976 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -2169,17 +2169,17 @@ (define-public clipnotify (license license:public-domain))) (define-public clipmenu - (let ((commit "a495bcc7a4ab125182a661c5808364f66938a87c") + (let ((commit "bcbe7b144598db4a103f14e8408c4b7327d6d5e1") (revision "1")) (package (name "clipmenu") - (version (string-append "5.6.0-" + (version (string-append "6.0.1-" revision "." (string-take commit 7))) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cdown/clipnotify.git") + (url "https://github.com/cdown/clipmenu.git") (commit commit))) (file-name (git-file-name name version)) (sha256 -- 2.25.1 --=-=-=--