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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3EC7715808B for ; Sun, 27 Feb 2022 23:17:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 880B2E086E; Sun, 27 Feb 2022 23:17:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6986DE086E for ; Sun, 27 Feb 2022 23:17:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34BBE343445 for ; Sun, 27 Feb 2022 23:17:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3ECED0 for ; Sun, 27 Feb 2022 23:17:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1646003782.11e6c664897b8a4304fd075280a54b61fc09b34e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/antiword/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/antiword/antiword-0.37-r1.ebuild X-VCS-Directories: app-text/antiword/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 11e6c664897b8a4304fd075280a54b61fc09b34e X-VCS-Branch: master Date: Sun, 27 Feb 2022 23:17:00 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 85143824-38e0-46e5-8f45-e21434e278a1 X-Archives-Hash: 5fea49c1a2121a3e50fcbecc812a6f87 commit: 11e6c664897b8a4304fd075280a54b61fc09b34e Author: Sam James gentoo org> AuthorDate: Sun Feb 27 23:16:22 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 27 23:16:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e6c664 app-text/antiword: drop 0.37-r1 Closes: https://bugs.gentoo.org/832261 Signed-off-by: Sam James gentoo.org> app-text/antiword/antiword-0.37-r1.ebuild | 50 ------------------------------- 1 file changed, 50 deletions(-) diff --git a/app-text/antiword/antiword-0.37-r1.ebuild b/app-text/antiword/antiword-0.37-r1.ebuild deleted file mode 100644 index b9ae5e10151d..000000000000 --- a/app-text/antiword/antiword-0.37-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit epatch toolchain-funcs - -IUSE="kde" -PATCHVER="r2" -DESCRIPTION="free MS Word reader" -HOMEPAGE="http://www.winfield.demon.nl" -SRC_URI="http://www.winfield.demon.nl/linux/${P}.tar.gz - https://dev.gentoo.org/~grobian/distfiles/${PN}-gentoo-patches-${PATCHVER}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" - -src_prepare() { - # Makefile is a symlink to Makefile.Linux, avoid that we patch it by - # accident using patch <2.7, see bug #435492 - rm Makefile || die - - EPATCH_SUFFIX="patch" epatch "${WORKDIR}/${PN}-gentoo-patches-${PATCHVER}" - - # Re-add convenience symlink, see above - ln -s Makefile.Linux Makefile - - epatch "${FILESDIR}"/${P}-CVE-2014-8123.patch -} - -src_configure() { :; } - -src_compile() { - emake PREFIX="${EPREFIX}" OPT="${CFLAGS}" CC="$(tc-getCC)" LD="$(tc-getCC)" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - emake -j1 PREFIX="${EPREFIX}" DESTDIR="${D}" global_install - - use kde || rm -f "${ED}"/usr/bin/kantiword - - insinto /usr/share/${PN}/examples - doins Docs/testdoc.doc Docs/antiword.php - - cd Docs - doman antiword.1 - dodoc ChangeLog Exmh Emacs FAQ History Netscape QandA ReadMe Mozilla Mutt -}