From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37042) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOrE7-0007kX-40 for guix-patches@gnu.org; Mon, 19 Nov 2018 16:37:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOrE6-0003xT-FC for guix-patches@gnu.org; Mon, 19 Nov 2018 16:37:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57080) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gOrE6-0003xN-CA for guix-patches@gnu.org; Mon, 19 Nov 2018 16:37:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gOrE6-00073Q-3o for guix-patches@gnu.org; Mon, 19 Nov 2018 16:37:02 -0500 Subject: [bug#33338] [PATCH] gnu: Add emacs-webpaste Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20181110210451.16202-1-brettg@posteo.net> Date: Mon, 19 Nov 2018 22:36:00 +0100 In-Reply-To: <20181110210451.16202-1-brettg@posteo.net> (Brett Gilio's message of "Sat, 10 Nov 2018 15:04:51 -0600") Message-ID: <875zwsvjgf.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Brett Gilio Cc: 33338@debbugs.gnu.org Hi Brett, and sorry for the delay! Brett Gilio skribis: > --- > gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) Could you add a commit log along the lines of what we usually do? (See =E2=80=98git log=E2=80=99 to get an idea.) > + (package > + (name "emacs-webpaste") > + (version "20180815.1855") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://melpa.org/packages/webpaste-" > + version > + ".el")) Since files on MELPA disappear or are modified in place, it=E2=80=99s safer= to take them from upstream repositories. Could you send an updated patch that fetches code from the github.com repo? Thank you! Ludo=E2=80=99.