mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-mail/mu: add 1.12.5
Signed-off-by: Matthew Smith <matthew@gentoo.org>
This commit is contained in:
@@ -2,3 +2,4 @@ DIST mu-1.10.8.tar.xz 570792 BLAKE2B 6e65e77544011d0f6b8fb1a5ac4dfe074fe6af3504e
|
||||
DIST mu-1.12.2.tar.xz 708852 BLAKE2B 72b9a0f8acad114d37a6dc7c214df5c6b2f3691f0f35dfe8408b3420e6d06d7e6345cd3db7bc32047c970367ac9d0374551fbbdff3616bcf9c96ebb7f9efcec5 SHA512 8733bdc6bed6e76278f052db8f270178f4ac269d610cd6f2ad44577be9b6fc8daeb85cd650b7ef2a21d141262065ecacdc9177fabd4bbe971d917943a2669b07
|
||||
DIST mu-1.12.3.tar.xz 714488 BLAKE2B 2f5ded323d94a028c33c447e877ec3cea3677bf69076893dd6751f69c47764eee2d779c13e8b5c601d0bd04beca4b8cef705a7fd2587fe1f81d22c381debee7a SHA512 27998f65636b42f7933cc39878d8900552aa1c94c90ea54f81d789c01eec5ddfdb93eb508b78a6416497c7c109193e1457b1ff2bafe98aa82ec88a4b5fc03832
|
||||
DIST mu-1.12.4.tar.xz 715232 BLAKE2B 5886f07ad6fb12d8a538de80c4681cd2ba416da82839519a70676eabd2d2eef1fa1a53d004ab1524966682a4d6c2eef7e67cc4efc6f5e7c380e732b7614de854 SHA512 ddc0430fe41db3639433f60105a67bb184e611d8438a49e51fb9ea4b5b404c270bb78c9165cb3136a3b402a91a65735d917c0868ca4d134f13b4971b028da5b5
|
||||
DIST mu-1.12.5.tar.xz 717480 BLAKE2B f67b2231124b48271f3aff27cafa602aa8d6129a1ade7f241c92e28c5d9886b7b4deeeb6473ad5f9d228ae6a3059c915286b42ff60ccb364411a2dd4ee69a195 SHA512 25bdf9898b5058a934618dfd49dbbae56ce9629a10de425f91f7c9c145713d58d3668f09c64bbc854efe7c87e30b09aa080405cbb14d9b6df087d2ed8b3122c5
|
||||
|
||||
97
net-mail/mu/mu-1.12.5.ebuild
Normal file
97
net-mail/mu/mu-1.12.5.ebuild
Normal file
@@ -0,0 +1,97 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit elisp-common meson readme.gentoo-r1
|
||||
|
||||
DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
|
||||
HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
|
||||
SRC_URI="https://github.com/djcb/mu/releases/download/v${PV}/${P}.tar.xz"
|
||||
|
||||
# mu: GPL-3+
|
||||
# + cli11: BSD
|
||||
# + fmt: MIT
|
||||
# + tl: CC0-1.0
|
||||
# + variant-lite: Boost-1.0
|
||||
LICENSE="BSD Boost-1.0 CC0-1.0 GPL-3+ MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos"
|
||||
IUSE="emacs readline"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/glib:2
|
||||
dev-libs/gmime:3.0
|
||||
>=dev-libs/xapian-1.4:=
|
||||
emacs? ( >=app-editors/emacs-25.3:* )
|
||||
readline? ( sys-libs/readline:= )"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
sys-apps/texinfo
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
# https://bugs.gentoo.org/925503
|
||||
"${FILESDIR}"/${PN}-1.12.0-no-python.patch
|
||||
)
|
||||
|
||||
DOC_CONTENTS="
|
||||
To use mu4e you need to configure it in your .emacs file.
|
||||
See the manual for more information:
|
||||
https://www.djcbsoftware.nl/code/mu/mu4e/
|
||||
"
|
||||
SITEFILE="70mu-gentoo-autoload.el"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Don't install NEWS.org into /usr/share/doc.
|
||||
sed -i '/NEWS.org/,+1 d' meson.build || die
|
||||
sed -i '/mu4e-about.org/d' mu4e/meson.build || die
|
||||
|
||||
# Don't compress the info file.
|
||||
sed -i '/gzip/d' build-aux/meson-install-info.sh || die
|
||||
|
||||
# Instead, put it in /usr/share/doc/${PF}.
|
||||
sed -i "/MU_DOC_DIR/s/mu/${PF}/" mu4e/meson.build || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_feature readline)
|
||||
-Dcld2=disabled
|
||||
-Demacs="$(usex emacs "${EMACS}" emacs-not-enabled)"
|
||||
# TODO: revisit this, it's not actually deprecated, just been reworked
|
||||
-Dguile=disabled
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
|
||||
# Since meson no longer installs NEWS.org, install it with dodoc.
|
||||
# Also, it must be uncompressed so that it can be viewed with
|
||||
# mu4e-info.
|
||||
docompress -x /usr/share/doc/${PF}/NEWS.org
|
||||
dodoc NEWS.org
|
||||
|
||||
if use emacs; then
|
||||
# Same as above.
|
||||
docompress -x /usr/share/doc/${PF}/mu4e-about.org
|
||||
dodoc mu4e/mu4e-about.org
|
||||
|
||||
elisp-site-file-install "${FILESDIR}"/${SITEFILE}
|
||||
|
||||
readme.gentoo_create_doc
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use emacs && readme.gentoo_create_doc
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
||||
Reference in New Issue
Block a user