From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43050) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iP6IS-0003Sx-3U for guix-patches@gnu.org; Mon, 28 Oct 2019 10:47:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iP6IQ-0006PP-P7 for guix-patches@gnu.org; Mon, 28 Oct 2019 10:47:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37312) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iP6IQ-0006PC-Lq for guix-patches@gnu.org; Mon, 28 Oct 2019 10:47:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iP6IQ-00037E-Ek for guix-patches@gnu.org; Mon, 28 Oct 2019 10:47:02 -0400 Subject: [bug#37863] [PATCH] gnu: emacs-helm-projectile: Apply patch. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42870) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iP6HR-0002Sr-Gb for guix-patches@gnu.org; Mon, 28 Oct 2019 10:46:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iP6HQ-0005qh-3q for guix-patches@gnu.org; Mon, 28 Oct 2019 10:46:01 -0400 Received: from mail-wm1-x343.google.com ([2a00:1450:4864:20::343]:54810) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iP6HP-0005qE-Pz for guix-patches@gnu.org; Mon, 28 Oct 2019 10:45:59 -0400 Received: by mail-wm1-x343.google.com with SMTP id g7so9766395wmk.4 for ; Mon, 28 Oct 2019 07:45:59 -0700 (PDT) References: <20191022031639.9207-1-montokapro@gmail.com> From: Mathieu Othacehe In-reply-to: <20191022031639.9207-1-montokapro@gmail.com> Date: Mon, 28 Oct 2019 15:45:55 +0100 Message-ID: <87r22xj5cs.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain 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: 37863@debbugs.gnu.org Cc: montokapro@gmail.com Hello Stephen, As this project seems unmaintained and the last release was in 2016, I think the best option would be to package a 0.14.0-1 based on helm-projectile last commit. Thanks, Mathieu Stephen Webber writes: > * gnu/packages/emacs-xyz.scm (emacs-helm-projectile): Apply patch. > * gnu/packages/patches/emacs-helm-projectile-require-dash.patch: New file. > --- > gnu/packages/emacs-xyz.scm | 4 +++- > .../emacs-helm-projectile-require-dash.patch | 13 +++++++++++++ > 2 files changed, 16 insertions(+), 1 deletion(-) > create mode 100644 gnu/packages/patches/emacs-helm-projectile-require-dash.patch > > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm > index 8c3c50efdc..5ed2cf67bc 100644 > --- a/gnu/packages/emacs-xyz.scm > +++ b/gnu/packages/emacs-xyz.scm > @@ -6967,7 +6967,9 @@ as well as features for editing search results.") > (commit (string-append "v" version)))) > (file-name (git-file-name name version)) > (sha256 > - (base32 "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4")))) > + (base32 "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4")) > + (patches > + (search-patches "emacs-helm-projectile-require-dash.patch")))) > (build-system emacs-build-system) > (propagated-inputs > `(("emacs-dash" ,emacs-dash) > diff --git a/gnu/packages/patches/emacs-helm-projectile-require-dash.patch b/gnu/packages/patches/emacs-helm-projectile-require-dash.patch > new file mode 100644 > index 0000000000..9da3deff50 > --- /dev/null > +++ b/gnu/packages/patches/emacs-helm-projectile-require-dash.patch > @@ -0,0 +1,13 @@ > +Make dash dependency explicit - this issue is resolved in master and is > +documented at https://github.com/bbatsov/helm-projectile/issues/120 > + > +--- a/helm-projectile.el > ++++ b/helm-projectile.el > +@@ -41,6 +41,7 @@ > + > + (require 'projectile) > + (require 'cl-lib) > ++(require 'dash) > + (require 'grep) > + (require 'helm) > + (require 'helm-types)