Diff popup-0.5.8 with a popup-0.5.9

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

  
4 4
EAPI=8
5 5

  
6
MY_P=${PN}-el-${PV}
7

  
6 8
inherit elisp
7 9

  
8
MY_P="${PN}-el-${PV}"
9 10
DESCRIPTION="Visual popup interface library for Emacs"
10
HOMEPAGE="https://github.com/auto-complete/popup-el"
11
SRC_URI="https://github.com/auto-complete/popup-el/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
12
S="${WORKDIR}/${MY_P}"
11
HOMEPAGE="https://github.com/auto-complete/popup-el/"
12
SRC_URI="https://github.com/auto-complete/popup-el/archive/v${PV}.tar.gz
13
	-> ${MY_P}.tar.gz"
14
S="${WORKDIR}"/${MY_P}
13 15

  
14 16
LICENSE="GPL-3+"
15 17
SLOT="0"
16 18
KEYWORDS="amd64 x86"
17 19
RESTRICT="test"
18 20

  
19
DOCS="README.md"
21
DOCS=( README.md )
Thank you!