Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mu/
Date: Fri, 21 Jan 2022 07:09:00
Message-Id: 1642746805.d65d9d5a4f92fdd730a4e312b8c8c118a28f11d1.juippis@gentoo
1 commit: d65d9d5a4f92fdd730a4e312b8c8c118a28f11d1
2 Author: Matthew Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Sat Jan 1 15:13:21 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 06:33:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d65d9d5a
7
8 net-mail/mu: drop 1.6.6, 1.6.7, 1.6.9
9
10 Signed-off-by: Matthew Smith <matt <AT> offtopica.uk>
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 net-mail/mu/Manifest | 3 ---
14 net-mail/mu/mu-1.6.6.ebuild | 60 -----------------------------------------
15 net-mail/mu/mu-1.6.7.ebuild | 60 -----------------------------------------
16 net-mail/mu/mu-1.6.9.ebuild | 65 ---------------------------------------------
17 4 files changed, 188 deletions(-)
18
19 diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest
20 index 1c0c20f747df..23706f595cfd 100644
21 --- a/net-mail/mu/Manifest
22 +++ b/net-mail/mu/Manifest
23 @@ -1,4 +1 @@
24 DIST mu-1.6.10.tar.xz 867008 BLAKE2B 6cce22f18691c3ad6dda1ec012d72c398df2ba4d1beca70fc6f88d87aa9b749e2aa4c03f5c0e0d70f4f9978e2beb60ea02642b8ff71e86e0668df726e5923b52 SHA512 a51847b338afeff9c9fa88c4698df4b85289d017063cb5e3410eb967c605d8779618dcbd988e2d923a92291c1e0738ec84afecf017c76a63776149619d134887
25 -DIST mu-1.6.6.tar.xz 866724 BLAKE2B 3417d4b3e5bfae943558fbc936ca0207be912f9548621b1599437484e94f3b49271aa1e97e7cc2b5b6027b8e0cf97d3b96d2052772f7783d897b4fa0dcf03184 SHA512 07daf9864bfd1ff4278aee98a0ae9c4fc3be94468e3b2022ae801f048f339b5becdb9ad8ebb2e12b9131e0e6dfcfb541bdca8288657dc19d47b0e510831f54eb
26 -DIST mu-1.6.7.tar.xz 867136 BLAKE2B 12b19d15c01a7101e3a936b12ee87fa5519c0e047e354f2fd1d481939dd5dffa34a94a5e7f3fda20e27771377e78524065cf5f93f7a2f818e202cdc93090ebff SHA512 ceae7b4508fc607dcda0fc20e9fb92b3533b1ba7ef94823cba2cd3a6ad3f18ccd3d2ea7da20e4c190e53f2d00ccdd3e1d25e12b89a08bf5233f5656be90b3c14
27 -DIST mu-1.6.9.tar.xz 867188 BLAKE2B 526f67acd505a1d02cc12841d7d5f99e4b91a8aa3923cc1bccf045faf3a89bef99827c7461e78d000aefa48634a38fcf263346c14f275e3053c9774e2f8219c9 SHA512 c0ba5fc984fa445c44f89b84f911952c4a3aebf9484c60df75bd6a144cad3e68e1b2de98d8bbf5faae51d81ed99adb85280e4c1a40e7b0d587a00e0d80937495
28
29 diff --git a/net-mail/mu/mu-1.6.6.ebuild b/net-mail/mu/mu-1.6.6.ebuild
30 deleted file mode 100644
31 index d61ad8bf9f92..000000000000
32 --- a/net-mail/mu/mu-1.6.6.ebuild
33 +++ /dev/null
34 @@ -1,60 +0,0 @@
35 -# Copyright 1999-2021 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=8
39 -
40 -inherit elisp-common
41 -
42 -DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
43 -HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
44 -SRC_URI="https://github.com/djcb/mu/releases/download/${PV}/mu-${PV}.tar.xz"
45 -
46 -LICENSE="GPL-3+"
47 -SLOT="0"
48 -KEYWORDS="amd64 arm arm64 x86 ~x64-macos"
49 -IUSE="emacs guile readline"
50 -
51 -DEPEND="
52 - dev-libs/glib:2
53 - dev-libs/gmime:3.0
54 - >=dev-libs/xapian-1.4:=
55 - emacs? ( >=app-editors/emacs-25.3:* )
56 - guile? ( >=dev-scheme/guile-2.2:* )
57 - readline? ( sys-libs/readline:= )"
58 -RDEPEND="${DEPEND}"
59 -BDEPEND="virtual/pkgconfig"
60 -
61 -SITEFILE="70mu-gentoo-autoload.el"
62 -
63 -src_configure() {
64 - local myeconfargs=(
65 - $(use_enable emacs mu4e)
66 - $(use_enable guile)
67 - $(use_enable readline)
68 - --disable-gtk
69 - --disable-webkit
70 - )
71 -
72 - econf "${myeconfargs[@]}"
73 -}
74 -
75 -pkg_preinst() {
76 - if [[ -n ${REPLACING_VERSIONS} ]]; then
77 - elog "After upgrading from an old major version, you should"
78 - elog "rebuild your mail index."
79 - fi
80 -}
81 -
82 -pkg_postinst() {
83 - if use emacs; then
84 - einfo "To use mu4e you need to configure it in your .emacs file"
85 - einfo "See the manual for more information:"
86 - einfo "https://www.djcbsoftware.nl/code/mu/mu4e/"
87 -
88 - elisp-site-regen
89 - fi
90 -}
91 -
92 -pkg_postrm() {
93 - use emacs && elisp-site-regen
94 -}
95
96 diff --git a/net-mail/mu/mu-1.6.7.ebuild b/net-mail/mu/mu-1.6.7.ebuild
97 deleted file mode 100644
98 index 94eaeb52fa23..000000000000
99 --- a/net-mail/mu/mu-1.6.7.ebuild
100 +++ /dev/null
101 @@ -1,60 +0,0 @@
102 -# Copyright 1999-2021 Gentoo Authors
103 -# Distributed under the terms of the GNU General Public License v2
104 -
105 -EAPI=8
106 -
107 -inherit elisp-common
108 -
109 -DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
110 -HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
111 -SRC_URI="https://github.com/djcb/mu/releases/download/${PV}/mu-${PV}.tar.xz"
112 -
113 -LICENSE="GPL-3+"
114 -SLOT="0"
115 -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
116 -IUSE="emacs guile readline"
117 -
118 -DEPEND="
119 - dev-libs/glib:2
120 - dev-libs/gmime:3.0
121 - >=dev-libs/xapian-1.4:=
122 - emacs? ( >=app-editors/emacs-25.3:* )
123 - guile? ( >=dev-scheme/guile-2.2:* )
124 - readline? ( sys-libs/readline:= )"
125 -RDEPEND="${DEPEND}"
126 -BDEPEND="virtual/pkgconfig"
127 -
128 -SITEFILE="70mu-gentoo-autoload.el"
129 -
130 -src_configure() {
131 - local myeconfargs=(
132 - $(use_enable emacs mu4e)
133 - $(use_enable guile)
134 - $(use_enable readline)
135 - --disable-gtk
136 - --disable-webkit
137 - )
138 -
139 - econf "${myeconfargs[@]}"
140 -}
141 -
142 -pkg_preinst() {
143 - if [[ -n ${REPLACING_VERSIONS} ]]; then
144 - elog "After upgrading from an old major version, you should"
145 - elog "rebuild your mail index."
146 - fi
147 -}
148 -
149 -pkg_postinst() {
150 - if use emacs; then
151 - einfo "To use mu4e you need to configure it in your .emacs file"
152 - einfo "See the manual for more information:"
153 - einfo "https://www.djcbsoftware.nl/code/mu/mu4e/"
154 -
155 - elisp-site-regen
156 - fi
157 -}
158 -
159 -pkg_postrm() {
160 - use emacs && elisp-site-regen
161 -}
162
163 diff --git a/net-mail/mu/mu-1.6.9.ebuild b/net-mail/mu/mu-1.6.9.ebuild
164 deleted file mode 100644
165 index 99c3950607fc..000000000000
166 --- a/net-mail/mu/mu-1.6.9.ebuild
167 +++ /dev/null
168 @@ -1,65 +0,0 @@
169 -# Copyright 1999-2021 Gentoo Authors
170 -# Distributed under the terms of the GNU General Public License v2
171 -
172 -EAPI=8
173 -
174 -inherit elisp-common
175 -
176 -DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
177 -HOMEPAGE="https://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu"
178 -SRC_URI="https://github.com/djcb/mu/releases/download/${PV}-signed/mu-${PV}.tar.xz"
179 -
180 -LICENSE="GPL-3+"
181 -SLOT="0"
182 -KEYWORDS="amd64 arm arm64 x86 ~x64-macos"
183 -IUSE="emacs guile readline"
184 -
185 -DEPEND="
186 - dev-libs/glib:2
187 - dev-libs/gmime:3.0
188 - >=dev-libs/xapian-1.4:=
189 - emacs? ( >=app-editors/emacs-25.3:* )
190 - guile? ( >=dev-scheme/guile-2.2:* )
191 - readline? ( sys-libs/readline:= )"
192 -RDEPEND="${DEPEND}"
193 -BDEPEND="virtual/pkgconfig"
194 -
195 -SITEFILE="70mu-gentoo-autoload.el"
196 -
197 -src_configure() {
198 - local myeconfargs=(
199 - $(use_enable emacs mu4e)
200 - $(use_enable guile)
201 - $(use_enable readline)
202 - --disable-gtk
203 - --disable-webkit
204 - )
205 -
206 - econf "${myeconfargs[@]}"
207 -}
208 -
209 -src_install() {
210 - default
211 - find "${ED}" -name '*.la' -type f -delete || die
212 -}
213 -
214 -pkg_preinst() {
215 - if [[ -n ${REPLACING_VERSIONS} ]]; then
216 - elog "After upgrading from an old major version, you should"
217 - elog "rebuild your mail index."
218 - fi
219 -}
220 -
221 -pkg_postinst() {
222 - if use emacs; then
223 - einfo "To use mu4e you need to configure it in your .emacs file"
224 - einfo "See the manual for more information:"
225 - einfo "https://www.djcbsoftware.nl/code/mu/mu4e/"
226 -
227 - elisp-site-regen
228 - fi
229 -}
230 -
231 -pkg_postrm() {
232 - use emacs && elisp-site-regen
233 -}