From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d2L0T-0007Wn-BB for guix-patches@gnu.org; Sun, 23 Apr 2017 13:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d2L0Q-00019d-5s for guix-patches@gnu.org; Sun, 23 Apr 2017 13:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38473) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d2L0Q-00019V-0i for guix-patches@gnu.org; Sun, 23 Apr 2017 13:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d2L0P-0006hP-Lq for guix-patches@gnu.org; Sun, 23 Apr 2017 13:09:01 -0400 Subject: bug#26549: [PATCH] gnu: Add emacs-google-maps. Resent-Message-ID: References: <20170417230940.18226-1-va511e@yahoo.com> <87fuh3klgo.fsf@openmailbox.org> <87zif89ssv.fsf@gmail.com> From: Vasile Dumitrascu Message-ID: Date: Sun, 23 Apr 2017 17:08:00 +0000 MIME-Version: 1.0 In-Reply-To: <87zif89ssv.fsf@gmail.com> Content-Type: multipart/mixed; boundary="------------909DC6FB7E8AB39DB7CF8454" 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: Alex Kost , Kei Kebreau Cc: 26549@debbugs.gnu.org This is a multi-part message in MIME format. --------------909DC6FB7E8AB39DB7CF8454 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Hi You were correct. Please find attached the updated patch. Thank you, Vasile Alex Kost: > Kei Kebreau (2017-04-20 14:00 -0400) wrote: > >> Vasile Dumitrascu writes: >> >>> * gnu/packages/emacs.scm (emacs-google-maps): New variable. >>> --- >>> gnu/packages/emacs.scm | 19 +++++++++++++++++++ >>> 1 file changed, 19 insertions(+) >>> >>> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm >>> index 673bbdf89..95298a0fa 100644 >>> --- a/gnu/packages/emacs.scm >>> +++ b/gnu/packages/emacs.scm >>> @@ -1229,6 +1229,25 @@ or XEmacs.") >>> the Emacs buffer.") >>> (license license:gpl3+))) >>> >>> +(define-public emacs-google-maps >>> + (package >>> + (name "emacs-google-maps") >>> + (version "1.0.0") >>> + (source (origin >>> + (method url-fetch) >>> + (uri (string-append "https://github.com/jd/google-maps.el/" >>> + "archive/" version ".tar.gz")) >>> + (file-name (string-append name "-" version ".tar.gz")) >>> + (sha256 >>> + (base32 >>> + "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs")))) >>> + (build-system emacs-build-system) >>> + (home-page "https://github.com/jd/google-maps.el") >>> + (synopsis "Access Google Maps from Emacs") >>> + (description "The @code{google-maps} package allows to display Google >>> +Maps directly inside Emacs.") >>> + (license license:gpl1+))) >> >> I can't seem to find this license mentioned anywhere, but maybe I'm just >> missing it. Where can I find it mentioned? > > I think it should be gpl3+, as GPL3 or later is mentioned in the *.el files. > >>> + >>> (define-public emacs-mmm-mode >>> (package >>> (name "emacs-mmm-mode") >> >> Other than finding the license, this patch looks fine. > > I agree. Vasile, could you resend this patch please, I can't apply it > to the current master, not sure what the problem is. > --------------909DC6FB7E8AB39DB7CF8454 Content-Type: text/x-patch; name="0001-gnu-Add-emacs-google-maps.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-gnu-Add-emacs-google-maps.patch" =46rom 2c30acfe9f2cfbe53bbf5d98b174a61ad6490e0f Mon Sep 17 00:00:00 2001 From: Vasile Dumitrascu Date: Sun, 23 Apr 2017 18:53:57 +0200 Subject: [PATCH] gnu: Add emacs-google-maps. * gnu/packages/emacs.scm (emacs-google-maps): New variable. --- gnu/packages/emacs.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 47ea8d43a..14d851184 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1230,6 +1230,25 @@ or XEmacs.") the Emacs buffer.") (license license:gpl3+))) =20 +(define-public emacs-google-maps + (package + (name "emacs-google-maps") + (version "1.0.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/jd/google-maps.el/= " + "archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))= )) + (build-system emacs-build-system) + (home-page "https://github.com/jd/google-maps.el") + (synopsis "Access Google Maps from Emacs") + (description "The @code{google-maps} package allows to display Googl= e +Maps directly inside Emacs.") + (license license:gpl3+))) + (define-public emacs-mmm-mode (package (name "emacs-mmm-mode") --=20 2.11.0 --------------909DC6FB7E8AB39DB7CF8454--