Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/vm/
Date: Thu, 28 May 2020 05:47:38
Message-Id: 1590644734.1072d5e9992ac753dbcbfff6541f6a6f6f7fc913.juippis@gentoo
1 commit: 1072d5e9992ac753dbcbfff6541f6a6f6f7fc913
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 28 05:45:34 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu May 28 05:45:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1072d5e9
7
8 app-emacs/vm: remove -9999 ebuild due to ::gentoo not havgin bzr
9
10 Bug: https://bugs.gentoo.org/719892
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 app-emacs/vm/vm-9999.ebuild | 58 ---------------------------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/app-emacs/vm/vm-9999.ebuild b/app-emacs/vm/vm-9999.ebuild
17 deleted file mode 100644
18 index 7834ef8f589..00000000000
19 --- a/app-emacs/vm/vm-9999.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit elisp bzr autotools
28 -
29 -DESCRIPTION="The VM mail reader for Emacs"
30 -HOMEPAGE="http://www.nongnu.org/viewmail/"
31 -EBZR_REPO_URI="lp:vm"
32 -
33 -LICENSE="GPL-2+"
34 -SLOT="0"
35 -IUSE="bbdb ssl"
36 -
37 -BDEPEND="bbdb? ( app-emacs/bbdb )"
38 -RDEPEND="${BDEPEND}
39 - ssl? ( net-misc/stunnel )"
40 -BDEPEND="${BDEPEND}
41 - sys-apps/texinfo"
42 -
43 -SITEFILE="50${PN}-gentoo.el"
44 -
45 -src_prepare() {
46 - eapply "${FILESDIR}"/vm-8.2.0_beta-texinfo-encoding.patch
47 - if ! use bbdb; then
48 - elog "Excluding vm-pcrisis.el since the \"bbdb\" USE flag is not set."
49 - eapply "${FILESDIR}/${PN}-8.0-no-pcrisis.patch"
50 - fi
51 - eapply_user
52 - eautoreconf
53 -}
54 -
55 -src_configure() {
56 - econf \
57 - --with-emacs="emacs" \
58 - --with-lispdir="${SITELISP}/${PN}" \
59 - --with-etcdir="${SITEETC}/${PN}" \
60 - --with-docdir="/usr/share/doc/${PF}" \
61 - $(use bbdb && echo "--with-other-dirs=${SITELISP}/bbdb")
62 -}
63 -
64 -src_compile() {
65 - emake -j1
66 -}
67 -
68 -src_install() {
69 - emake -j1 DESTDIR="${D}" install
70 - elisp-site-file-install "${FILESDIR}/${SITEFILE}"
71 -
72 - # delete duplicate documentation
73 - find "${D}/${SITEETC}/${PN}" -type d -name pixmaps -prune \
74 - -o -type f -exec rm '{}' '+' || die
75 -
76 - dodoc example.vm
77 - # NEWS is accessed from lisp and must not be compressed
78 - docompress -x /usr/share/doc/${PF}/NEWS
79 -}