From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48901) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLBsD-0004ZK-Gn for guix-patches@gnu.org; Sun, 05 Apr 2020 16:28:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLBsB-0000aZ-N4 for guix-patches@gnu.org; Sun, 05 Apr 2020 16:28:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35147) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLBsA-0000aA-EL for guix-patches@gnu.org; Sun, 05 Apr 2020 16:28:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jLBsA-0006zZ-B1 for guix-patches@gnu.org; Sun, 05 Apr 2020 16:28:02 -0400 Subject: [bug#40455] [PATCH] gnu: emacs-ace-window: Update to 0.10.0 Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:48822) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLBri-0004Xb-B3 for guix-patches@gnu.org; Sun, 05 Apr 2020 16:27:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLBrh-0000Qs-0r for guix-patches@gnu.org; Sun, 05 Apr 2020 16:27:34 -0400 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:59876) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLBrg-0000Q3-Qc for guix-patches@gnu.org; Sun, 05 Apr 2020 16:27:32 -0400 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with smtp (Exim 4.93) (envelope-from ) id 1jLBrc-0004JS-UW for guix-patches@gnu.org; Sun, 05 Apr 2020 22:27:30 +0200 From: Michael Rohleder Date: Sun, 05 Apr 2020 22:27:27 +0200 Message-ID: <878sj9vftc.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" 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: 40455@debbugs.gnu.org --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain * gnu/packages/emacs-xyz.scm (emacs-ace-window) Update to 0.10.0. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-packages-emacs-xyz.scm-emacs-ace-window-Update-t.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: emacs-ace-window: Update to 0.10.0 From=20c3dc065f9247c98ba90fbf3ec9c51abb06417269 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Sun, 5 Apr 2020 22:15:50 +0200 Subject: [PATCH] gnu: emacs-ace-window: Update to 0.10.0 * gnu/packages/emacs-xyz.scm (emacs-ace-window) Update to 0.10.0. =2D-- gnu/packages/emacs-xyz.scm | 45 ++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0b0e8e53eb..7ce81fcfe9 100644 =2D-- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5932,33 +5932,30 @@ windows.") (license license:gpl3+))) =20 (define-public emacs-ace-window =2D ;; last release version is from 2015 =2D (let ((commit "a5344925e399e1f015721cda6cf5db03c90ab87a") =2D (revision "1")) =2D (package =2D (name "emacs-ace-window") =2D (version (git-version "0.9.0" revision commit)) =2D (source =2D (origin =2D (method git-fetch) =2D (uri (git-reference =2D (url "https://github.com/abo-abo/ace-window.git") =2D (commit commit))) =2D (file-name (git-file-name name version)) =2D (sha256 =2D (base32 =2D "18jm8gfgnf6ja9aarws5650lw2zfi3wdwc5j8r5ijn5fcqhfy7rc")))) =2D (build-system emacs-build-system) =2D (propagated-inputs =2D `(("emacs-avy" ,emacs-avy))) =2D (home-page "https://github.com/abo-abo/ace-window") =2D (synopsis "Quickly switch windows in Emacs") =2D (description =2D "@code{ace-window} is meant to replace @code{other-window}. + (package + (name "emacs-ace-window") + (version "0.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/abo-abo/ace-window.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0f3r40d5yxp2pm2j0nn86s29nqj8py0jxjbj50v4ci3hsd92d8jl")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-avy" ,emacs-avy))) + (home-page "https://github.com/abo-abo/ace-window") + (synopsis "Quickly switch windows in Emacs") + (description + "@code{ace-window} is meant to replace @code{other-window}. In fact, when there are only two windows present, @code{other-window} is called. If there are more, each window will have its first character highlighted. Pressing that character will switch to that window.") =2D (license license:gpl3+)))) + (license license:gpl3+))) =20 (define-public emacs-iedit ;; Last release version was in 2016. =2D-=20 2.26.0 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 "If the future navigation system [for interactive networked services on the NII] looks like something from Microsoft, it will never work." (Chairman of Walt Disney Television & Telecommunications) --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAl6KPy8ACgkQfHr/vv7y yyUqpAf+NACqHI/WTzsT76+BCHlP2YLVRTqMQpt/s6mtQ/CA4AgFpoSfX33B9Ssq L7mPn03CHuwPAlDlgHFlrjegk0CU0F3MXKlOTIsIgoJiFfevVSJGyrLeheKAnPG5 jCzY1AS16Hp7zOneqZ7FBZaaiZBrMrpDUMbMkzlayXWHyfyKDwBlVLr/wS+9/10E RFpy19TYBUadnxx7plDjdi7EmD9pRoj2Q/5BOF0cBWkv9beRgi762LhO3JyDsoK7 wIsyd8jZ4LeQcmyB0GzQpPe5cdB41RfrYgqgXlEtjUNq7Q3XjTOWlvXr2gUVi5kU K4VirMkTm/gIgN3kHTfvJX+pSzCNeA== =9lhi -----END PGP SIGNATURE----- --==-=-=--