From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37749) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dLqWo-0006R2-OT for guix-patches@gnu.org; Fri, 16 Jun 2017 08:39:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dLqWl-0004pO-Ct for guix-patches@gnu.org; Fri, 16 Jun 2017 08:39:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47723) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dLqWl-0004p6-8a for guix-patches@gnu.org; Fri, 16 Jun 2017 08:39:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dLqWk-00068l-VU for guix-patches@gnu.org; Fri, 16 Jun 2017 08:39:02 -0400 Subject: [bug#27302] [PATCH 1/3] gnu: emacs-dired-hacks-utils: Change origin to melpa Resent-Message-ID: From: Alex Kost References: <20170610010532.27495-1-go.wigust@gmail.com> <20170610020225.14698-1-go.wigust@gmail.com> Date: Fri, 16 Jun 2017 15:38:51 +0300 In-Reply-To: <20170610020225.14698-1-go.wigust@gmail.com> (Oleg Pykhalov's message of "Sat, 10 Jun 2017 05:02:23 +0300") Message-ID: <87zid8nm3o.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: Oleg Pykhalov Cc: 27302@debbugs.gnu.org Oleg Pykhalov (2017-06-10 05:02 +0300) wrote: > --- > gnu/packages/emacs.scm | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 5f00a7ad5..d2b1056b6 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -4882,11 +4882,12 @@ displays results pretty-printed in XML or JSON with @code{restclient-mode}") > (origin > (method url-fetch) > (uri (string-append > - "https://github.com/Fuco1/dired-hacks/archive/master" > - ".tar.gz")) > + "http://melpa.org/packages/dired-hacks-utils-" > + version > + ".el")) Unfortunately, we can't use sources from MELPA. The problem is: when a repository get a new commit, the old tarball is *REPLACED* with the new one on MELPA, so the package could never be built anymore, since the source disappeared. That's why we use tarballs directly from source. > (sha256 > (base32 > - "180qfjjps3mg26zxwczj174qvbwivgn2h7haz1i8js9h1srl183r")))) > + "1378prbbvvdfi83ln1pwxanawynif6jmb3i5xd16igkjy6ads5qp")))) > (build-system emacs-build-system) > (propagated-inputs `(("emacs-dash" ,emacs-dash))) > (home-page "https://github.com/Fuco1/dired-hacks") -- Alex