From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF696138206 for ; Mon, 1 Jan 2018 20:00:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C617FE07F1; Mon, 1 Jan 2018 20:00:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A0932E07F1 for ; Mon, 1 Jan 2018 20:00:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5883F335C37 for ; Mon, 1 Jan 2018 20:00:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7700186 for ; Mon, 1 Jan 2018 20:00:12 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1514836698.660d273f56e614c8d601d001dcfc72527b7a530f.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/mailx/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild X-VCS-Directories: mail-client/mailx/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 660d273f56e614c8d601d001dcfc72527b7a530f X-VCS-Branch: master Date: Mon, 1 Jan 2018 20:00:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0f5b251f-92f6-448a-b838-401b5baff67b X-Archives-Hash: e4208e9671e78b6a7dfa704211aa1d41 commit: 660d273f56e614c8d601d001dcfc72527b7a530f Author: Matthias Maier gentoo org> AuthorDate: Mon Jan 1 18:49:00 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Jan 1 19:58:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660d273f mail-client/mailx: drop vulnerable Bug: https://bugs.gentoo.org/533208 Package-Manager: Portage-2.3.19, Repoman-2.3.6 mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild | 58 ------------------------ 1 file changed, 58 deletions(-) diff --git a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild b/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild deleted file mode 100644 index 073036d05b6..00000000000 --- a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils - -MX_MAJ_VER=${PV%.*} -MX_MIN_VER=${PV##*.} -MY_PV=${MX_MAJ_VER}-0.${MX_MIN_VER}cvs -S=${WORKDIR}/${PN}-${MY_PV}.orig -debian_patch=${PN}_${MY_PV}-1.diff.gz - -DESCRIPTION="The /bin/mail program, which is used to send mail via shell scripts" -HOMEPAGE="http://www.debian.org/" -SRC_URI="mirror://gentoo/mailx_${MY_PV}.orig.tar.gz - mirror://gentoo/${debian_patch}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" - -DEPEND=">=net-libs/liblockfile-1.03 - virtual/mta - mail-client/mailx-support" - -RDEPEND="${DEPEND} - !mail-client/nail - !net-mail/mailutils" - -src_prepare() { - epatch "${DISTDIR}/${debian_patch}" - epatch "${FILESDIR}/${P}-musl.patch" - epatch "${FILESDIR}/${P}-nostrip.patch" - sed -i -e "s: -O2: \$(EXTRAFLAGS):g" Makefile || die - epatch "${FILESDIR}/${P}-offsetof.patch" - eapply_user -} - -src_compile() { - emake CC=$(tc-getCC) EXTRAFLAGS="${CFLAGS}" -} - -src_install() { - dobin mail - - doman mail.1 - - dosym mail /usr/bin/Mail - dosym mail /usr/bin/mailx - dosym mail.1 /usr/share/man/man1/Mail.1 - - insinto /usr/share/mailx/ - doins misc/mail.help misc/mail.tildehelp - insinto /etc - doins misc/mail.rc -}