Diff gnuplot-mode-0.8.0 with a gnuplot-mode-0.8.1

/usr/portage/app-emacs/gnuplot-mode/gnuplot-mode-0.8.1.ebuild 2023-10-09 14:52:28.692368330 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit elisp readme.gentoo-r1
7 7

  
8 8
DESCRIPTION="Gnuplot mode for Emacs"
9
HOMEPAGE="https://github.com/emacsorphanage/gnuplot"
10
SRC_URI="https://github.com/emacsorphanage/${PN%-mode}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
11

  
9
HOMEPAGE="https://github.com/emacs-gnuplot/gnuplot"
10
SRC_URI="https://github.com/emacs-gnuplot/${PN%-mode}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
12 11
S="${WORKDIR}/${PN%-mode}-${PV}"
13 12

  
14
LICENSE="GPL-3+ gnuplot"
13
LICENSE="GPL-3+"
15 14
SLOT="0"
16 15
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
17 16
IUSE="doc"
18 17

  
19 18
BDEPEND="doc? ( virtual/latex-base )"
20
RDEPEND="sci-visualization/gnuplot[-emacs(-)]"
19
RDEPEND="sci-visualization/gnuplot"
21 20

  
22 21
PATCHES=( "${FILESDIR}"/${PN}-0.8.0-tests.patch )
23 22

  
......
40 39

  
41 40
src_install() {
42 41
	elisp_src_install
43
	doinfo gnuplot.info
44 42
	use doc && dodoc gpelcard.pdf
45 43
}
Thank you!