Diff magit-3.3.0-r2 with a magit-3.3.0-r4
/usr/portage/app-emacs/magit/magit-3.3.0-r4.ebuild 2023-10-09 14:52:28.696368330 +0300 | ||
---|---|---|
15 | 15 |
else |
16 | 16 |
SRC_URI="https://github.com/magit/magit/archive/v${PV}.tar.gz |
17 | 17 |
-> ${P}.tar.gz" |
18 |
KEYWORDS="~amd64 ~arm ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" |
|
18 |
KEYWORDS="amd64 ~arm ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux" |
|
19 | 19 |
fi |
20 | 20 |
S="${WORKDIR}/${P}/lisp" |
21 | 21 | |
22 | 22 |
LICENSE="GPL-3+" |
23 | 23 |
SLOT="0" |
24 |
IUSE="+libgit" # drop the IUSE default for next upstream release |
|
24 |
IUSE="libgit" |
|
25 | 25 | |
26 |
PATCHES=( |
|
27 |
"${FILESDIR}"/${P}-inhibit-libgit.patch |
|
28 |
"${FILESDIR}"/${P}-libgit-unavail.patch |
|
29 |
) |
|
26 | 30 |
DOCS=( ../README.md ../Documentation/AUTHORS.md ../Documentation/RelNotes ) |
27 | 31 |
ELISP_TEXINFO="../Documentation/*.texi" |
28 | 32 |
SITEFILE="50${PN}-gentoo.el" |
... | ... | |
50 | 54 |
pkg_postinst() { |
51 | 55 |
elisp_pkg_postinst |
52 | 56 | |
53 |
einfo "magit version 3.3.0 dropped necessity of the app-emacs/libegit2 package" |
|
54 |
einfo "magit after 3.3.0 can now use the git executable directly," |
|
55 |
einfo "if you need the libegit backend, then please add app-emacs/libegit2 to @world" |
|
57 |
if ! use libgit; then |
|
58 |
einfo "The dependency on app-emacs/libegit2 is optional" |
|
59 |
einfo "since magit version 3.3.0. Enable the \"libgit\" flag" |
|
60 |
einfo "if you need the libgit backend." |
|
61 |
fi |
|
56 | 62 |
} |