Diff tuareg-mode-3.0.1 with a tuareg-mode-3.0.1_p20250911

/usr/portage/app-emacs/tuareg-mode/tuareg-mode-3.0.1_p20250911.ebuild 2026-04-04 11:46:07.550975775 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
[[ "${PV}" == *p20250911 ]] && COMMIT="f0cb55f2177f6fc978d98d018910fe5b1890fe0c"
7

  
6 8
inherit elisp
7 9

  
8 10
DESCRIPTION="An Objective Caml/Camllight mode for Emacs"
9
HOMEPAGE="http://forge.ocamlcore.org/projects/tuareg/"
10
SRC_URI="https://github.com/ocaml/tuareg/archive/${PV}.tar.gz -> ${P}.tar.gz"
11
HOMEPAGE="http://forge.ocamlcore.org/projects/tuareg/
12
	https://github.com/ocaml/tuareg/"
13

  
14
if [[ "${PV}" == *9999* ]] ; then
15
	inherit git-r3
16

  
17
	EGIT_REPO_URI="https://github.com/ocaml/tuareg"
18
else
19
	SRC_URI="https://github.com/ocaml/tuareg/archive/${COMMIT}.tar.gz
20
		-> ${P}.gh.tar.gz"
21
	S="${WORKDIR}/tuareg-${COMMIT}"
22

  
23
	KEYWORDS="amd64 ppc x86"
24
fi
11 25

  
12 26
LICENSE="GPL-2+ GPL-3+ ISC"
13 27
SLOT="0"
14
KEYWORDS="amd64 ppc x86"
15 28

  
16
S="${WORKDIR}/tuareg-${PV}"
17
ELISP_REMOVE="dot-emacs.el"
29
ELISP_REMOVE="
30
	Makefile
31
	dot-emacs.el
32
	tuareg-tests.el
33
"
18 34
SITEFILE="50${PN}-gentoo.el"
19 35
DOCS=( README.md CHANGES.md )
Thank you!