Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/mailx/
Date: Mon, 01 Jan 2018 20:00:17
Message-Id: 1514836698.660d273f56e614c8d601d001dcfc72527b7a530f.blueness@gentoo
1 commit: 660d273f56e614c8d601d001dcfc72527b7a530f
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 18:49:00 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 1 19:58:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660d273f
7
8 mail-client/mailx: drop vulnerable
9
10 Bug: https://bugs.gentoo.org/533208
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild | 58 ------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild b/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
17 deleted file mode 100644
18 index 073036d05b6..00000000000
19 --- a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit eutils
28 -
29 -MX_MAJ_VER=${PV%.*}
30 -MX_MIN_VER=${PV##*.}
31 -MY_PV=${MX_MAJ_VER}-0.${MX_MIN_VER}cvs
32 -S=${WORKDIR}/${PN}-${MY_PV}.orig
33 -debian_patch=${PN}_${MY_PV}-1.diff.gz
34 -
35 -DESCRIPTION="The /bin/mail program, which is used to send mail via shell scripts"
36 -HOMEPAGE="http://www.debian.org/"
37 -SRC_URI="mirror://gentoo/mailx_${MY_PV}.orig.tar.gz
38 - mirror://gentoo/${debian_patch}"
39 -
40 -LICENSE="BSD"
41 -SLOT="0"
42 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
43 -IUSE=""
44 -
45 -DEPEND=">=net-libs/liblockfile-1.03
46 - virtual/mta
47 - mail-client/mailx-support"
48 -
49 -RDEPEND="${DEPEND}
50 - !mail-client/nail
51 - !net-mail/mailutils"
52 -
53 -src_prepare() {
54 - epatch "${DISTDIR}/${debian_patch}"
55 - epatch "${FILESDIR}/${P}-musl.patch"
56 - epatch "${FILESDIR}/${P}-nostrip.patch"
57 - sed -i -e "s: -O2: \$(EXTRAFLAGS):g" Makefile || die
58 - epatch "${FILESDIR}/${P}-offsetof.patch"
59 - eapply_user
60 -}
61 -
62 -src_compile() {
63 - emake CC=$(tc-getCC) EXTRAFLAGS="${CFLAGS}"
64 -}
65 -
66 -src_install() {
67 - dobin mail
68 -
69 - doman mail.1
70 -
71 - dosym mail /usr/bin/Mail
72 - dosym mail /usr/bin/mailx
73 - dosym mail.1 /usr/share/man/man1/Mail.1
74 -
75 - insinto /usr/share/mailx/
76 - doins misc/mail.help misc/mail.tildehelp
77 - insinto /etc
78 - doins misc/mail.rc
79 -}