Diff mu-1.12.15 with a mu-1.14.1

/usr/portage/net-mail/mu/mu-1.14.1.ebuild 2026-05-01 00:17:35.154790962 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit elisp-common meson readme.gentoo-r1
6
PYTHON_COMPAT=( python3_{11..14} )
7
inherit elisp-common meson readme.gentoo-r1 python-any-r1
7 8

  
8 9
DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
9 10
HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
......
14 15
# + variant-lite: Boost-1.0
15 16
LICENSE="BSD Boost-1.0 CC0-1.0 GPL-3+ MIT"
16 17
SLOT="0"
17
KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
18
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos"
18 19
IUSE="emacs readline test"
19 20
RESTRICT="!test? ( test )"
20 21

  
21 22
DEPEND="
22 23
	>=dev-cpp/cli11-2.4
23
	dev-libs/glib:2
24
	>=dev-libs/gmime-3.2:3.0
24
	>=dev-libs/glib-2.80:2
25
	>=dev-libs/gmime-3.2.13:3.0
25 26
	>=dev-libs/libfmt-11.1:=
26
	>=dev-libs/xapian-1.4:=
27
	emacs? ( >=app-editors/emacs-25.3:* )
27
	>=dev-libs/xapian-1.4.22:=
28
	emacs? ( >=app-editors/emacs-28.1:* )
28 29
	readline? ( sys-libs/readline:= )
29 30
"
30 31
RDEPEND="${DEPEND}"
31 32
BDEPEND="
33
	${PYTHON_DEPS}
34
	>=dev-build/meson-1.3.2
32 35
	sys-apps/texinfo
33 36
	virtual/pkgconfig
34 37
"
35 38

  
36
PATCHES=(
37
	# https://bugs.gentoo.org/925503
38
	"${FILESDIR}"/${PN}-1.12.0-no-python.patch
39
)
40

  
41 39
DOC_CONTENTS="
42 40
	To use mu4e you need to configure it in your .emacs file.
43 41
	See the manual for more information:
Thank you!