Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mu/
Date: Sat, 30 Apr 2022 06:59:14
Message-Id: 1651301918.21a4bcafc73985b90f3afcef578effdac2f685fb.matthew@gentoo
1 commit: 21a4bcafc73985b90f3afcef578effdac2f685fb
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 06:58:38 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 06:58:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a4bcaf
7
8 net-mail/mu: add 1.7.13
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 net-mail/mu/Manifest | 1 +
13 net-mail/mu/mu-1.7.13.ebuild | 86 ++++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 87 insertions(+)
15
16 diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest
17 index 8b5188322ef3..660c1bb17ab2 100644
18 --- a/net-mail/mu/Manifest
19 +++ b/net-mail/mu/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mu-1.6.10.tar.xz 867008 BLAKE2B 6cce22f18691c3ad6dda1ec012d72c398df2ba4d1beca70fc6f88d87aa9b749e2aa4c03f5c0e0d70f4f9978e2beb60ea02642b8ff71e86e0668df726e5923b52 SHA512 a51847b338afeff9c9fa88c4698df4b85289d017063cb5e3410eb967c605d8779618dcbd988e2d923a92291c1e0738ec84afecf017c76a63776149619d134887
22 DIST mu-1.7.12.tar.xz 2129072 BLAKE2B 3518a361bc06b632899f9296ec211dc926a07973433247bf6f9ecfb069dcfd8b762f358aa32418276bf7dcba40bad768dd4599534613a1fae285cef9c6ceedd0 SHA512 fe0f41520959df7f78525317bf5caad4ae7f7468ac6291b84c48805e133883192458a8f79a929c0ebda2e45ec2014db1aa72650d0a6e176d7678449be36fc4f2
23 +DIST mu-1.7.13.tar.xz 2139140 BLAKE2B c5eea94df8640e0362fd7bd18da78cc53023e7c85c3b4a653df7ae52e57dc64433572bfb2bc41494ce60a1b26abdd75ee07cb945a282754a12f65835a4545e6d SHA512 c5c447cdcf6fd2a3c3dfb8c7cffc9c50e147de2779db04fedaf59897fd135a76b309576f2c9473919221f0dcd6b8793732af3483d86dbe0f073a66d2559fe315
24
25 diff --git a/net-mail/mu/mu-1.7.13.ebuild b/net-mail/mu/mu-1.7.13.ebuild
26 new file mode 100644
27 index 000000000000..902c7c8d9e4b
28 --- /dev/null
29 +++ b/net-mail/mu/mu-1.7.13.ebuild
30 @@ -0,0 +1,86 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit elisp-common meson
37 +
38 +DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
39 +HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
40 +SRC_URI="https://dev.gentoo.org/~matthew/distfiles/${P}.tar.xz"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
45 +IUSE="emacs readline"
46 +
47 +DEPEND="
48 + dev-libs/glib:2
49 + dev-libs/gmime:3.0
50 + >=dev-libs/xapian-1.4:=
51 + emacs? ( >=app-editors/emacs-25.3:* )
52 + readline? ( sys-libs/readline:= )"
53 +RDEPEND="${DEPEND}"
54 +BDEPEND="
55 + sys-apps/texinfo
56 + virtual/pkgconfig
57 +"
58 +
59 +PATCHES=(
60 + "${FILESDIR}"/${PN}-1.7.12-optional-mu4e.patch
61 + "${FILESDIR}"/${PN}-1.7.12-gcc12.patch
62 +)
63 +
64 +SITEFILE="70mu-gentoo-autoload.el"
65 +
66 +src_prepare() {
67 + default
68 +
69 + # Don't install NEWS.org into /usr/share/doc.
70 + sed -i '/NEWS.org/,+1 d' meson.build || die
71 +
72 + # Instead, put it in /usr/share/doc/${PF}.
73 + sed -i "/MU_DOC_DIR/s/mu/${PF}/" mu4e/meson.build || die
74 +}
75 +
76 +src_configure() {
77 + local emesonargs=(
78 + $(meson_feature emacs)
79 + $(meson_feature readline)
80 + # NOTE: Guile interface is deprecated to be removed shortly.
81 + -Dguile=disabled
82 + -Dtoys=disabled
83 + )
84 + meson_src_configure
85 +}
86 +
87 +src_install() {
88 + meson_src_install
89 +
90 + # Since meson no longer installs NEWS.org, install it with dodoc.
91 + # Also, it must be uncompressed so that it can be viewed with
92 + # mu4e-info.
93 + docompress -x /usr/share/doc/${PF}/NEWS.org
94 + dodoc NEWS.org
95 +}
96 +
97 +pkg_preinst() {
98 + if [[ -n ${REPLACING_VERSIONS} ]]; then
99 + elog "After upgrading from an old major version, you should"
100 + elog "rebuild your mail index."
101 + fi
102 +}
103 +
104 +pkg_postinst() {
105 + if use emacs; then
106 + einfo "To use mu4e you need to configure it in your .emacs file"
107 + einfo "See the manual for more information:"
108 + einfo "https://www.djcbsoftware.nl/code/mu/mu4e/"
109 +
110 + elisp-site-regen
111 + fi
112 +}
113 +
114 +pkg_postrm() {
115 + use emacs && elisp-site-regen
116 +}