Diff pdf-tools-1.0.0 with a pdf-tools-1.1.0

/usr/portage/app-emacs/pdf-tools/pdf-tools-1.1.0.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
......
9 9

  
10 10
DESCRIPTION="Emacs Lisp support library for PDF documents"
11 11
HOMEPAGE="https://github.com/vedang/pdf-tools/"
12
SRC_URI="https://github.com/vedang/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
12

  
13
if [[ ${PV} == *9999* ]] ; then
14
	inherit git-r3
15
	EGIT_REPO_URI="https://github.com/vedang/${PN}.git"
16
else
17
	SRC_URI="https://github.com/vedang/${PN}/archive/v${PV}.tar.gz
18
		-> ${P}.tar.gz"
19
	KEYWORDS="~amd64 ~x86"
20
fi
13 21

  
14 22
LICENSE="GPL-3+"
15
KEYWORDS="~amd64 ~x86"
16 23
SLOT="0"
17 24

  
18 25
# Cask is a hard dependency for tests; it is ran by helper functions too.
Thank you!