Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/gnuplot-mode/
Date: Mon, 29 Mar 2021 12:04:37
Message-Id: 1617019465.4088f90e6658fad3b713a8def2e04b61204e2966.ulm@gentoo
1 commit: 4088f90e6658fad3b713a8def2e04b61204e2966
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 29 12:04:07 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 29 12:04:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4088f90e
7
8 app-emacs/gnuplot-mode: Version bump to 0.8.0
9
10 Closes: https://bugs.gentoo.org/778782
11 Package-Manager: Portage-3.0.17, Repoman-3.0.2
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 app-emacs/gnuplot-mode/Manifest | 1 +
15 app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild | 36 ++++++++++++++++++++++++
16 2 files changed, 37 insertions(+)
17
18 diff --git a/app-emacs/gnuplot-mode/Manifest b/app-emacs/gnuplot-mode/Manifest
19 index 0205ca392cd..015a994b783 100644
20 --- a/app-emacs/gnuplot-mode/Manifest
21 +++ b/app-emacs/gnuplot-mode/Manifest
22 @@ -1 +1,2 @@
23 DIST gnuplot-mode-0.7.0.tar.gz 373475 BLAKE2B 6aa547b90922fa445de10825ae8f0c05249a335a1cc531118200bc49c4b62f610e07a7c5bd694a3c6bf6605b937a520a8008d67263d2e83cabf009fb855e7a97 SHA512 fdf04a3a32755892d422de8a535682ff44d1b635ecdc814738564376f5c7027a82c23807439835f2b7bf959f4f8b7a7d38d07a643f84ab2056ba187f3558e596
24 +DIST gnuplot-mode-0.8.0.tar.gz 352106 BLAKE2B 5408cc682b205ee712d2e0ff94b57a585d4040a62d1c61b3248cac63c16c76899b4ebe9b8e6ff091216beac3c9c79ea1425e018b275145d8ed5aff3b64e524bf SHA512 d1f93f0a28036ed66869ce228ff7c7007cdd463006d29930f01a6c5fa31c0487f603f0394f423fb8831b054e8d465f669f11ec2c3f8115ef1c84d828f77056cf
25
26 diff --git a/app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild b/app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild
27 new file mode 100644
28 index 00000000000..2bdd0e917ea
29 --- /dev/null
30 +++ b/app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit elisp readme.gentoo-r1
38 +
39 +DESCRIPTION="Gnuplot mode for Emacs"
40 +HOMEPAGE="https://github.com/emacsorphanage/gnuplot"
41 +SRC_URI="https://github.com/emacsorphanage/${PN%-mode}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +S="${WORKDIR}/${PN%-mode}-${PV}"
44 +
45 +LICENSE="GPL-3+ gnuplot"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
48 +IUSE="doc"
49 +
50 +BDEPEND="doc? ( virtual/latex-base )"
51 +RDEPEND="sci-visualization/gnuplot[-emacs(-)]"
52 +
53 +SITEFILE="50${PN}-gentoo.el"
54 +DOCS=(CHANGELOG.org README.org)
55 +DOC_CONTENTS="Please see ${SITELISP}/${PN}/gnuplot.el for the complete
56 + documentation."
57 +
58 +src_compile() {
59 + elisp_src_compile
60 + use doc && { pdflatex gpelcard || die; }
61 +}
62 +
63 +src_install() {
64 + elisp_src_install
65 + doinfo gnuplot.info
66 + use doc && dodoc gpelcard.pdf
67 +}