diff options
author | 2022-08-12 17:39:27 +0100 | |
---|---|---|
committer | 2022-08-12 18:57:00 +0100 | |
commit | 10cd4a349464e1ac396ca0ce58d0344c11e90d42 (patch) | |
tree | 1cd2936ba87e3630fd81b48b804b377e2160f296 /net-mail | |
parent | app-admin/consul: add 1.12.4 (diff) | |
download | gentoo-10cd4a349464e1ac396ca0ce58d0344c11e90d42.tar.gz gentoo-10cd4a349464e1ac396ca0ce58d0344c11e90d42.tar.bz2 gentoo-10cd4a349464e1ac396ca0ce58d0344c11e90d42.zip |
net-mail/mu: drop 1.6.10
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mu/Manifest | 1 | ||||
-rw-r--r-- | net-mail/mu/mu-1.6.10.ebuild | 71 |
2 files changed, 0 insertions, 72 deletions
diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest index 61ba2e97e4de..1c72228c0d85 100644 --- a/net-mail/mu/Manifest +++ b/net-mail/mu/Manifest @@ -1,4 +1,3 @@ -DIST mu-1.6.10.tar.xz 867008 BLAKE2B 6cce22f18691c3ad6dda1ec012d72c398df2ba4d1beca70fc6f88d87aa9b749e2aa4c03f5c0e0d70f4f9978e2beb60ea02642b8ff71e86e0668df726e5923b52 SHA512 a51847b338afeff9c9fa88c4698df4b85289d017063cb5e3410eb967c605d8779618dcbd988e2d923a92291c1e0738ec84afecf017c76a63776149619d134887 DIST mu-1.8.5.tar.xz 539368 BLAKE2B 6efc12f82aab2beee86475ee49492ce59cb70e8b4fa63f2099a6071ec3275e7f0f308a868133ab3be4646d2280f720a4f6bb5673563a4437d2135e149b1cdfac SHA512 f43afb9484937077f32a38f347352b1ec8fb74c85be74f3afdd53ff75b965f42ab88daa58433fd9292a10c69ed2f2daf3ddbaf3d8d5d5595b0b29b81629a846f DIST mu-1.8.6.tar.xz 539684 BLAKE2B ea220a1a6f1fafab54574aa79638232aac4108d32c1e84cb3a1bc910dabbc0dcd1092b18ab62bc5dc57eef4118e023b729d279f9cb84b1fa061d72d60bfa5a91 SHA512 09ac9732e9c18ccdf85b2e2ed64f21f8b87d1484b773ae5ce6edea37f46711ec8709ccceb76f500f8ac02ad5cb54c2bbbc86f75185682ef73bd05a9b467c254c DIST mu-1.8.7.tar.xz 539664 BLAKE2B 2f0081f350c0d6da4b7920c0380a02aab42eda12062011bd03a46ceb925c179089b794b501df53b4fc84daa38e6e977a3510801685aa7c91c1c0be58c9c78929 SHA512 04c2027acec80c7569f055c8324f947862721aa36b093dba07ac80b9051229a51225e5371af7cd48fae71c9d5148bd3dc2081f591b9f733bccb5650b4853df67 diff --git a/net-mail/mu/mu-1.6.10.ebuild b/net-mail/mu/mu-1.6.10.ebuild deleted file mode 100644 index 7900e1384200..000000000000 --- a/net-mail/mu/mu-1.6.10.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit elisp-common - -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/${PV}/mu-${PV}.tar.xz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86 ~x64-macos" -IUSE="emacs guile readline" - -DEPEND=" - dev-libs/glib:2 - dev-libs/gmime:3.0 - >=dev-libs/xapian-1.4:= - emacs? ( >=app-editors/emacs-25.3:* ) - guile? ( >=dev-scheme/guile-2.2:* ) - readline? ( sys-libs/readline:= )" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -SITEFILE="70mu-gentoo-autoload.el" - -src_configure() { - local myeconfargs=( - $(use_enable emacs mu4e) - $(use_enable guile) - $(use_enable readline) - --disable-gtk - --disable-webkit - ) - - econf "${myeconfargs[@]}" -} - -src_test() { - # On some systems make -n errors out so the default src_test - # implementation does not call the tests. Bug #836782 - emake test -} - -src_install() { - default - find "${ED}" -name '*.la' -type f -delete || die -} - -pkg_preinst() { - if [[ -n ${REPLACING_VERSIONS} ]]; then - elog "After upgrading from an old major version, you should" - elog "rebuild your mail index." - fi -} - -pkg_postinst() { - if use emacs; then - einfo "To use mu4e you need to configure it in your .emacs file" - einfo "See the manual for more information:" - einfo "https://www.djcbsoftware.nl/code/mu/mu4e/" - - elisp-site-regen - fi -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |