From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 13 01:33:58 2017 Received: (at submit) by debbugs.gnu.org; 13 Oct 2017 05:33:58 +0000 Received: from localhost ([127.0.0.1]:36603 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e2sbe-0004Zg-L4 for submit@debbugs.gnu.org; Fri, 13 Oct 2017 01:33:58 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33364) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e2sbd-0004ZT-Na for submit@debbugs.gnu.org; Fri, 13 Oct 2017 01:33:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2sbX-00032p-LT for submit@debbugs.gnu.org; Fri, 13 Oct 2017 01:33:52 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_20 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:56054) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e2sbX-00032l-HU for submit@debbugs.gnu.org; Fri, 13 Oct 2017 01:33:51 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2sbW-0007Nb-8Y for guix-patches@gnu.org; Fri, 13 Oct 2017 01:33:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2sbR-0002xt-Gs for guix-patches@gnu.org; Fri, 13 Oct 2017 01:33:50 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:41051) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2sbR-0002xc-Ac for guix-patches@gnu.org; Fri, 13 Oct 2017 01:33:45 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id B2F2B154C77; Fri, 13 Oct 2017 06:33:43 +0100 (BST) Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 5A6AB154C76 for ; Fri, 13 Oct 2017 06:33:43 +0100 (BST) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id d17ca619 for ; Fri, 13 Oct 2017 05:33:43 +0000 (UTC) From: Christopher Baines To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-graphviz-dot-mode. Date: Fri, 13 Oct 2017 06:33:42 +0100 Message-Id: <20171013053342.31024-1-mail@cbaines.net> X-Mailer: git-send-email 2.14.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) * gnu/packages/emacs.scm (graphviz-dot-mode): New variable. --- gnu/packages/emacs.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b29436154..d3f87fdc4 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1245,6 +1245,55 @@ written in the Go programming language.") Maps directly inside Emacs.") (license license:gpl3+))) +(define-public emacs-graphviz-dot-mode + (let ((commit "fdaabbcc95d9156e3dadc84f81a4750c5b692580") + (revision "1")) + (package + (name "emacs-graphviz-dot-mode") + (version (string-append "0.3.10-" revision "." + (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ppareit/graphviz-dot-mode.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1s1qh5r0xp6hs0rl5yz5mkmjhpg04bh449c7vgjbb1pjsl1dl714")))) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'make-info + (lambda* (#:key inputs #:allow-other-keys) + (with-directory-excursion "texinfo" + (substitute* "Makefile" + (("\\/usr\\/bin\\/gzip") + (string-append (assoc-ref inputs "gzip") "/bin/gzip"))) + (zero? + (system* "make" + "clean" + "info" + (string-append "TEXINFODIR=" + (assoc-ref inputs "texinfo") + "/bin")))))) + (add-after 'install 'install-info + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (info (string-append out "/share/info"))) + (install-file "texinfo/graphviz-dot-mode.info.gz" info) + #t)))))) + (native-inputs + `(("texinfo" ,texinfo) + ("gzip" ,gzip))) + (home-page "http://ppareit.github.com/graphviz-dot-mode") + (synopsis "Major mode for editing Graphviz Dot files") + (description + "This Emacs packages helps you to create .dot or .gv files using the +dot syntax, and use Graphviz to convert these files to diagrams.") + (license license:gpl3+)))) + (define-public emacs-mmm-mode (package (name "emacs-mmm-mode") -- 2.14.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 13 02:01:27 2017 Received: (at 28804) by debbugs.gnu.org; 13 Oct 2017 06:01:27 +0000 Received: from localhost ([127.0.0.1]:36619 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e2t2F-0006kY-Bu for submit@debbugs.gnu.org; Fri, 13 Oct 2017 02:01:27 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:54583 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e2t2B-0006g7-1p for 28804@debbugs.gnu.org; Fri, 13 Oct 2017 02:01:24 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id 72D89154C78; Fri, 13 Oct 2017 07:01:21 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 2D851154C77 for <28804@debbugs.gnu.org>; Fri, 13 Oct 2017 07:01:21 +0100 (BST) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 6a6439cd for <28804@debbugs.gnu.org>; Fri, 13 Oct 2017 06:01:20 +0000 (UTC) From: Christopher Baines To: 28804@debbugs.gnu.org Subject: [PATCH] gnu: Add emacs-graphviz-dot-mode. Date: Fri, 13 Oct 2017 07:01:20 +0100 Message-Id: <20171013060120.3249-1-mail@cbaines.net> X-Mailer: git-send-email 2.14.2 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 28804 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/emacs.scm (graphviz-dot-mode): New variable. --- gnu/packages/emacs.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b29436154..71a7c09c9 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1245,6 +1245,55 @@ written in the Go programming language.") Maps directly inside Emacs.") (license license:gpl3+))) +(define-public emacs-graphviz-dot-mode + (let ((commit "fdaabbcc95d9156e3dadc84f81a4750c5b692580") + (revision "1")) + (package + (name "emacs-graphviz-dot-mode") + (version (string-append "0.3.10-" revision "." + (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ppareit/graphviz-dot-mode.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1s1qh5r0xp6hs0rl5yz5mkmjhpg04bh449c7vgjbb1pjsl1dl714")))) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'make-info + (lambda* (#:key inputs #:allow-other-keys) + (with-directory-excursion "texinfo" + (substitute* "Makefile" + (("\\/usr\\/bin\\/gzip") + (string-append (assoc-ref inputs "gzip") "/bin/gzip"))) + (zero? + (system* "make" + "clean" + "info" + (string-append "TEXINFODIR=" + (assoc-ref inputs "texinfo") + "/bin")))))) + (add-after 'install 'install-info + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (info (string-append out "/share/info"))) + (install-file "texinfo/graphviz-dot-mode.info.gz" info) + #t)))))) + (native-inputs + `(("texinfo" ,texinfo) + ("gzip" ,gzip))) + (home-page "http://ppareit.github.com/graphviz-dot-mode") + (synopsis "Major mode for editing Graphviz Dot files") + (description + "This Emacs packages helps you to create .dot or .gv files using the +dot syntax, and use Graphviz to convert these files to diagrams.") + (license license:gpl2+)))) + (define-public emacs-mmm-mode (package (name "emacs-mmm-mode") -- 2.14.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 13 04:52:08 2017 Received: (at 28804) by debbugs.gnu.org; 13 Oct 2017 08:52:08 +0000 Received: from localhost ([127.0.0.1]:36849 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e2vhQ-00078y-AU for submit@debbugs.gnu.org; Fri, 13 Oct 2017 04:52:08 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:52572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e2vhP-00078q-02 for 28804@debbugs.gnu.org; Fri, 13 Oct 2017 04:52:07 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 7DE02DFE6; Fri, 13 Oct 2017 10:52:07 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YUKoCjRSK7B4; Fri, 13 Oct 2017 10:52:06 +0200 (CEST) Received: from ribbon (unknown [193.50.110.214]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 9B329DFB3; Fri, 13 Oct 2017 10:52:06 +0200 (CEST) From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Christopher Baines Subject: Re: [bug#28804] [PATCH] gnu: Add emacs-graphviz-dot-mode. References: <20171013053342.31024-1-mail@cbaines.net> <20171013060120.3249-1-mail@cbaines.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 22 =?utf-8?Q?Vend=C3=A9miaire?= an 226 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 13 Oct 2017 10:52:05 +0200 In-Reply-To: <20171013060120.3249-1-mail@cbaines.net> (Christopher Baines's message of "Fri, 13 Oct 2017 07:01:20 +0100") Message-ID: <874lr3qvka.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 28804 Cc: 28804@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Christopher Baines skribis: > * gnu/packages/emacs.scm (graphviz-dot-mode): New variable. [...] > + (synopsis "Major mode for editing Graphviz Dot files") > + (description > + "This Emacs packages helps you to create .dot or .gv files using = the ^ ^ I=E2=80=99d use @file here but otherwise LGTM. Thank you, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 13 15:42:47 2017 Received: (at 28804-done) by debbugs.gnu.org; 13 Oct 2017 19:42:47 +0000 Received: from localhost ([127.0.0.1]:38429 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e35r4-0002fC-P1 for submit@debbugs.gnu.org; Fri, 13 Oct 2017 15:42:46 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:55098 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1e35r3-0002f5-TN for 28804-done@debbugs.gnu.org; Fri, 13 Oct 2017 15:42:46 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id 305BF147650; Fri, 13 Oct 2017 20:42:45 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 75F4514764E; Fri, 13 Oct 2017 20:42:43 +0100 (BST) Date: Fri, 13 Oct 2017 20:42:42 +0100 From: Christopher Baines To: ludo@gnu.org (Ludovic =?UTF-8?B?Q291cnTDqHM=?=) Subject: Re: [bug#28804] [PATCH] gnu: Add emacs-graphviz-dot-mode. Message-ID: <20171013204242.7d5423b1@cbaines.net> In-Reply-To: <874lr3qvka.fsf@gnu.org> References: <20171013053342.31024-1-mail@cbaines.net> <20171013060120.3249-1-mail@cbaines.net> <874lr3qvka.fsf@gnu.org> X-Mailer: Claws Mail 3.15.1-dirty (GTK+ 2.24.31; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/CkIHDOgXgA2QA0+R5HS9.90"; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 28804-done Cc: 28804-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) --Sig_/CkIHDOgXgA2QA0+R5HS9.90 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Fri, 13 Oct 2017 10:52:05 +0200 ludo@gnu.org (Ludovic Court=C3=A8s) wrote: > Christopher Baines skribis: >=20 > > * gnu/packages/emacs.scm (graphviz-dot-mode): New variable. =20 >=20 > [...] >=20 > > + (synopsis "Major mode for editing Graphviz Dot files") > > + (description > > + "This Emacs packages helps you to create .dot or .gv files > > using the =20 > ^ ^ > I=E2=80=99d use @file here but otherwise LGTM. Awesome, I've updated and pushed. Thanks for the prompt review Ludo :D --Sig_/CkIHDOgXgA2QA0+R5HS9.90 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAlnhFzJfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9XcK+g//b6K84NCq9yW8hE0XtBlLzm11z+UApTc4PTri5E8UkIaFl1RaLzQtzWZF ocNbMobkliagQSqm/FBs4cnhEMZJA1mbITSMvGatrTxHD2PRHgErp8y/yhxvzf1F w4k2UKQewM9Xjatif4q3sC9ra7aBJu9M6PrsoMPHcWvjjGHmdIVTjQW20Xy9FR/H GnftFZ7VJbHnJlnxajzs82Om5XrSmcenBnvISBezGTglDwXTz062M6VrRArrUcqL r909/fbI6ULa+1gtW81jp505Ne9aaVovUjNTMphT2nnMSt+uVtQ89At4jfk08QRD x1pqEOIOzhgrhZ7G0F33mQ0Zh59xD5c5wpxgQVhpENC8tJw2PrtoYWewUFBVKXlV /09WAVBdBlNmoBYYjDwIcqf0Yq82ThyDRsHJnQ7ER/viy/cN4jgMjPfh3CAFIKDK SG/Xp33MlHfgCjwqTAfBEyZRTpCdHKXLWAg1EHZ4cas+QskkZc9UbDKTZs+B60xM 7Xx+Dm7SYH1NrX9QKoYSIHvArmcBJLjM7euzO37PTR9IrSA5BAUzfpS/NhxkJ+Iy D5WMVQ2sEnT4hqrDYBWLn4Sti0L25TuP+pc01uBHcP6qtwBb48khJvKDuhVtgtWR s19iP2z2ftxRWYZFG4HmkJhNEO/l4mSaRE73IfK2cwMS0vr5ZCc= =m++W -----END PGP SIGNATURE----- --Sig_/CkIHDOgXgA2QA0+R5HS9.90-- From unknown Mon Aug 18 14:25:11 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 11 Nov 2017 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator