diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-03-29 14:04:07 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-03-29 14:04:25 +0200 |
commit | 4088f90e6658fad3b713a8def2e04b61204e2966 (patch) | |
tree | 950b010e6d7cf04d207fd6499e2a12aea98e59f9 /app-emacs/gnuplot-mode | |
parent | sys-process/procps: x86 stable wrt bug #778935 (diff) | |
download | gentoo-4088f90e6658fad3b713a8def2e04b61204e2966.tar.gz gentoo-4088f90e6658fad3b713a8def2e04b61204e2966.tar.bz2 gentoo-4088f90e6658fad3b713a8def2e04b61204e2966.zip |
app-emacs/gnuplot-mode: Version bump to 0.8.0
Closes: https://bugs.gentoo.org/778782
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/gnuplot-mode')
-rw-r--r-- | app-emacs/gnuplot-mode/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-emacs/gnuplot-mode/Manifest b/app-emacs/gnuplot-mode/Manifest index 0205ca392cd5..015a994b7830 100644 --- a/app-emacs/gnuplot-mode/Manifest +++ b/app-emacs/gnuplot-mode/Manifest @@ -1 +1,2 @@ DIST gnuplot-mode-0.7.0.tar.gz 373475 BLAKE2B 6aa547b90922fa445de10825ae8f0c05249a335a1cc531118200bc49c4b62f610e07a7c5bd694a3c6bf6605b937a520a8008d67263d2e83cabf009fb855e7a97 SHA512 fdf04a3a32755892d422de8a535682ff44d1b635ecdc814738564376f5c7027a82c23807439835f2b7bf959f4f8b7a7d38d07a643f84ab2056ba187f3558e596 +DIST gnuplot-mode-0.8.0.tar.gz 352106 BLAKE2B 5408cc682b205ee712d2e0ff94b57a585d4040a62d1c61b3248cac63c16c76899b4ebe9b8e6ff091216beac3c9c79ea1425e018b275145d8ed5aff3b64e524bf SHA512 d1f93f0a28036ed66869ce228ff7c7007cdd463006d29930f01a6c5fa31c0487f603f0394f423fb8831b054e8d465f669f11ec2c3f8115ef1c84d828f77056cf diff --git a/app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild b/app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild new file mode 100644 index 000000000000..2bdd0e917ea0 --- /dev/null +++ b/app-emacs/gnuplot-mode/gnuplot-mode-0.8.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp readme.gentoo-r1 + +DESCRIPTION="Gnuplot mode for Emacs" +HOMEPAGE="https://github.com/emacsorphanage/gnuplot" +SRC_URI="https://github.com/emacsorphanage/${PN%-mode}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/${PN%-mode}-${PV}" + +LICENSE="GPL-3+ gnuplot" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="doc" + +BDEPEND="doc? ( virtual/latex-base )" +RDEPEND="sci-visualization/gnuplot[-emacs(-)]" + +SITEFILE="50${PN}-gentoo.el" +DOCS=(CHANGELOG.org README.org) +DOC_CONTENTS="Please see ${SITELISP}/${PN}/gnuplot.el for the complete + documentation." + +src_compile() { + elisp_src_compile + use doc && { pdflatex gpelcard || die; } +} + +src_install() { + elisp_src_install + doinfo gnuplot.info + use doc && dodoc gpelcard.pdf +} |