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: Sun, 26 Jun 2022 12:54:58
Message-Id: 1656248041.9a15e0efed04fe7510f3582a3e8fae6947af92cf.matthew@gentoo
1 commit: 9a15e0efed04fe7510f3582a3e8fae6947af92cf
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 12:35:35 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 12:54:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a15e0ef
7
8 net-mail/mu: add 1.8.1
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 net-mail/mu/Manifest | 1 +
13 net-mail/mu/mu-1.8.1.ebuild | 89 +++++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 90 insertions(+)
15
16 diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest
17 index 91bc485d6b1c..928feb8f4afd 100644
18 --- a/net-mail/mu/Manifest
19 +++ b/net-mail/mu/Manifest
20 @@ -1,3 +1,4 @@
21 DIST mu-1.6.10.tar.xz 867008 BLAKE2B 6cce22f18691c3ad6dda1ec012d72c398df2ba4d1beca70fc6f88d87aa9b749e2aa4c03f5c0e0d70f4f9978e2beb60ea02642b8ff71e86e0668df726e5923b52 SHA512 a51847b338afeff9c9fa88c4698df4b85289d017063cb5e3410eb967c605d8779618dcbd988e2d923a92291c1e0738ec84afecf017c76a63776149619d134887
22 DIST mu-1.6.11.tar.xz 870188 BLAKE2B ec2ab4312800e8357b4fc902251708e27968cdde389e2403fca9ad6b1ef5e00154aa018d5a7751ec5372b5ca2be2eb030a9148c0d53f35040f420877d51ca3f3 SHA512 78faa4f9b34827676203ab305797deb96c0c0f9b0e8158e627c9a992bccd9c5708d4a1f5cc93c0b9c7f9a224b047800bd389bf3fceb163aa139ecff0cfa19274
23 DIST mu-1.7.23.tar.xz 2136016 BLAKE2B 9b0a27fc07072e52c06d8d4b807a77491d314d4c531799a83b1281ce935b79f5eab3510dc94be98ee0effe86c69379331172cfea3db330b8302d03582f7bf364 SHA512 412789146e4962f670c356576906e5eabc5783dd0fc7d04440146f064877f53b4e948713ed557e97b114a96d7a41b3087a8e3c528b48bb363e68fd0eabfe42fc
24 +DIST mu-1.8.1.tar.xz 537892 BLAKE2B dda0cdd3a45572000861557b04d8c92c0d61c283c6ace69a034ce209d22dc7e26ea4ac77c6493c505e0c7bcbf47ace82cd82ab20295170b2a986fcccaa0c5df9 SHA512 01b4c349aecf4134c700b6e4b1bc58d1e1360a74feec3f3ee56d1f350c7640b7447bdc35f158ce892427b7b7fbe15cfb00ab28d5aa05b9eaba1d4b4f32e5ed26
25
26 diff --git a/net-mail/mu/mu-1.8.1.ebuild b/net-mail/mu/mu-1.8.1.ebuild
27 new file mode 100644
28 index 000000000000..ef60bb7e559f
29 --- /dev/null
30 +++ b/net-mail/mu/mu-1.8.1.ebuild
31 @@ -0,0 +1,89 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit elisp-common meson
38 +
39 +DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
40 +HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
41 +SRC_URI="https://github.com/djcb/mu/releases/download/v${PV}/${P}.tar.xz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
46 +IUSE="emacs readline"
47 +
48 +DEPEND="
49 + dev-libs/glib:2
50 + dev-libs/gmime:3.0
51 + >=dev-libs/xapian-1.4:=
52 + emacs? ( >=app-editors/emacs-25.3:* )
53 + readline? ( sys-libs/readline:= )"
54 +RDEPEND="${DEPEND}"
55 +BDEPEND="
56 + sys-apps/texinfo
57 + virtual/pkgconfig
58 +"
59 +
60 +PATCHES=(
61 + "${FILESDIR}"/${PN}-1.7.12-optional-mu4e.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 + sed -i '/mu4e-about.org/d' mu4e/meson.build || die
72 +
73 + # Instead, put it in /usr/share/doc/${PF}.
74 + sed -i "/MU_DOC_DIR/s/mu/${PF}/" mu4e/meson.build || die
75 +}
76 +
77 +src_configure() {
78 + local emesonargs=(
79 + $(meson_feature emacs)
80 + $(meson_feature readline)
81 + # NOTE: Guile interface is deprecated to be removed shortly.
82 + -Dguile=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 + # Same as above.
97 + docompress -x /usr/share/doc/${PF}/mu4e-about.org
98 + dodoc mu4e/mu4e-about.org
99 +}
100 +
101 +pkg_preinst() {
102 + if [[ -n ${REPLACING_VERSIONS} ]]; then
103 + elog "After upgrading from an old major version, you should"
104 + elog "rebuild your mail index."
105 + fi
106 +}
107 +
108 +pkg_postinst() {
109 + if use emacs; then
110 + einfo "To use mu4e you need to configure it in your .emacs file"
111 + einfo "See the manual for more information:"
112 + einfo "https://www.djcbsoftware.nl/code/mu/mu4e/"
113 +
114 + elisp-site-regen
115 + fi
116 +}
117 +
118 +pkg_postrm() {
119 + use emacs && elisp-site-regen
120 +}