From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fYVw3-0006oZ-N8 for guix-patches@gnu.org; Thu, 28 Jun 2018 08:22:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fYVw2-0003Vn-In for guix-patches@gnu.org; Thu, 28 Jun 2018 08:22:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58597) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fYVw2-0003Vd-Ez for guix-patches@gnu.org; Thu, 28 Jun 2018 08:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fYVw2-0006Jp-6R for guix-patches@gnu.org; Thu, 28 Jun 2018 08:22:02 -0400 Subject: [bug#31993] [PATCH] gnu: emacs-helm-system-packages: Update to 1.10.0. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36974) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fYVv6-00066Q-OM for guix-patches@gnu.org; Thu, 28 Jun 2018 08:21:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fYVv2-00025f-9l for guix-patches@gnu.org; Thu, 28 Jun 2018 08:21:01 -0400 Received: from mail-wm0-x236.google.com ([2a00:1450:400c:c09::236]:52949) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fYVv2-000242-2f for guix-patches@gnu.org; Thu, 28 Jun 2018 08:21:00 -0400 Received: by mail-wm0-x236.google.com with SMTP id e69-v6so6534925wme.2 for ; Thu, 28 Jun 2018 05:21:00 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id i6-v6sm8249190wrr.2.2018.06.28.05.20.57 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 28 Jun 2018 05:20:58 -0700 (PDT) From: Pierre Neidhardt Date: Thu, 28 Jun 2018 14:20:57 +0200 Message-Id: <20180628122057.9950-1-ambrevar@gmail.com> 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: 31993@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-system-packages): Update to 1.10.0. --- gnu/packages/emacs.scm | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 458c31dd0..0e1cea306 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5453,32 +5453,30 @@ Yasnippet.") (license license:gpl2+)))) (define-public emacs-helm-system-packages - (let ((commit "b41f8f251695cf236e9d1627070049a5b41aa38a") - (revision "2")) - (package - (name "emacs-helm-system-packages") - (version (git-version "1.9.0" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emacs-helm/helm-system-packages") - (commit commit))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "1wrsx1j86c9a74nsdndjv21slzl46idd3p6wqy5wnasawj0kfn8r")))) - (build-system emacs-build-system) - (propagated-inputs - `(("emacs-helm" ,emacs-helm))) - (home-page "https://github.com/emacs-helm/helm-system-packages") - (synopsis "Helm System Packages is an interface to your package manager") - (description "List all available packages in Helm (with installed + (package + (name "emacs-helm-system-packages") + (version "1.10.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-helm/helm-system-packages") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0y5wzvfycb1bvgdk782xyl744fih43vz14wmq6gcqjarw6xfniz5")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm))) + (home-page "https://github.com/emacs-helm/helm-system-packages") + (synopsis "Helm System Packages is an interface to your package manager") + (description "List all available packages in Helm (with installed packages displayed in their own respective face). Fuzzy-search, mark and execute the desired action over any selections of packages: Install, uninstall, display packages details (in Org Mode) or insert details at point, find files owned by packages... And much more, including performing all the above over the network.") - (license license:gpl3+)))) + (license license:gpl3+))) (define-public emacs-memoize (package -- 2.17.1