Diff rpm-spec-mode-0.15 with a rpm-spec-mode-0.16

/usr/portage/app-emacs/rpm-spec-mode/rpm-spec-mode-0.16.ebuild 2023-10-09 14:52:28.708368330 +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
EAPI=7
4
EAPI=8
5

  
6
[[ ${PV} == 0.16 ]] && COMMIT=7d06d19a31e888b932da6c8202ff2c73f42703a1
5 7

  
6 8
inherit elisp
7 9

  
8 10
DESCRIPTION="Emacs mode to ease editing of RPM spec files"
9
HOMEPAGE="https://www.emacswiki.org/emacs/RpmSpecMode"
10
# taken from http://www.tihlde.org/~stigb/${PN}.el
11
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.el.xz"
11
HOMEPAGE="https://www.emacswiki.org/emacs/RpmSpecMode
12
	https://github.com/stigbjorlykke/rpm-spec-mode/"
13
SRC_URI="https://github.com/stigbjorlykke/${PN}/archive/${COMMIT}.tar.gz
14
	-> ${P}.tar.gz"
15
S="${WORKDIR}"/${PN}-${COMMIT}
12 16

  
13 17
LICENSE="GPL-2+"
14 18
SLOT="0"
15 19
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
16 20

  
17
PATCHES=( "${FILESDIR}"/${P}-emacs-28.patch )
21
PATCHES=( "${FILESDIR}"/${PN}-0.15-emacs-28.patch )
22

  
23
DOCS=( README.md )
18 24
SITEFILE="50${PN}-gentoo.el"
Thank you!