Diff graphql-0.1.1 with a graphql-0.1.2

/usr/portage/app-emacs/graphql/graphql-0.1.2.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

  
6
[[ "${PV}" == 0.1.2 ]] && COMMIT=67237f284f2dfb94f3cfba672ff64a37e1cb860f
5 7

  
6 8
inherit elisp
7 9

  
8 10
DESCRIPTION="GraphQL utilities"
9
HOMEPAGE="https://github.com/vermiculus/graphql.el"
10
SRC_URI="https://github.com/vermiculus/graphql.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
11
S="${WORKDIR}/${PN}.el-${PV}"
11
HOMEPAGE="https://github.com/vermiculus/graphql.el/"
12
SRC_URI="https://github.com/vermiculus/graphql.el/archive/${COMMIT}.tar.gz
13
	-> ${P}.tar.gz"
14
S="${WORKDIR}"/${PN}.el-${COMMIT}
12 15

  
13 16
LICENSE="GPL-3+"
14 17
SLOT="0"
......
22 25

  
23 26
src_prepare() {
24 27
	# Avoid examples which would require circular dependencies
25
	rm -f examples.el || die
28
	rm -f ${PN}-examples.el || die
26 29

  
27 30
	default
28 31
}
Thank you!