From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37104) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gQf50-0000de-WF for guix-patches@gnu.org; Sat, 24 Nov 2018 16:03:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gQf4w-0000mv-26 for guix-patches@gnu.org; Sat, 24 Nov 2018 16:03:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:41578) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gQf4v-0000mf-VI for guix-patches@gnu.org; Sat, 24 Nov 2018 16:03:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gQf4v-0003J8-Lk for guix-patches@gnu.org; Sat, 24 Nov 2018 16:03:01 -0500 Subject: [bug#33338] [PATCH] gnu: Add emacs-webpaste Resent-Message-ID: References: <20181110210451.16202-1-brettg@posteo.net> <875zwsvjgf.fsf@gnu.org> From: Brett Gilio In-reply-to: <875zwsvjgf.fsf@gnu.org> Date: Sat, 24 Nov 2018 15:02:38 -0600 Message-ID: <87va4m5gup.fsf@posteo.net> 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 33338@debbugs.gnu.org Ludovic Court=C3=A8s writes: > 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 saf= er 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. Hi Ludo, When I run git format-patch -1 I suppose it isn't adding the commit log to the patch file? I think that is what you are trying to say. How then should I add it, because I am making commits before I generate the patch? Brett Gilio