From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1372889-garchives=archives.gentoo.org@lists.gentoo.org> 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 4F7BD15808B for <garchives@archives.gentoo.org>; Sun, 6 Mar 2022 16:43:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80216E096B; Sun, 6 Mar 2022 16:43:38 +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 60DE6E096B for <gentoo-commits@lists.gentoo.org>; Sun, 6 Mar 2022 16:43:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 1B2F03432B9 for <gentoo-commits@lists.gentoo.org>; Sun, 6 Mar 2022 16:43:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A9EE1F1 for <gentoo-commits@lists.gentoo.org>; Sun, 6 Mar 2022 16:43:35 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1646585002.0bc6b3e9ca46a60773043372c78b19f2e13b9d8d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/wv2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/wv2/wv2-0.4.2-r2.ebuild X-VCS-Directories: app-text/wv2/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0bc6b3e9ca46a60773043372c78b19f2e13b9d8d X-VCS-Branch: master Date: Sun, 6 Mar 2022 16:43:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1e69ba50-d529-4ff6-a1c8-17adb8783a0f X-Archives-Hash: 15e2a8367b7e7cbcd1158cb356e5b421 commit: 0bc6b3e9ca46a60773043372c78b19f2e13b9d8d Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Mar 6 16:43:22 2022 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Mar 6 16:43:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bc6b3e9 app-text/wv2: Drop 0.4.2-r2, EAPI-6-- Closes: https://bugs.gentoo.org/834111 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-text/wv2/wv2-0.4.2-r2.ebuild | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/app-text/wv2/wv2-0.4.2-r2.ebuild b/app-text/wv2/wv2-0.4.2-r2.ebuild deleted file mode 100644 index 0bd111c40a1e..000000000000 --- a/app-text/wv2/wv2-0.4.2-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils flag-o-matic - -DESCRIPTION="Excellent MS Word filter lib, used in most Office suites" -HOMEPAGE="http://wvware.sourceforge.net" -SRC_URI="mirror://sourceforge/wvware/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86" -IUSE="zlib" - -RDEPEND=" - dev-libs/glib - >=gnome-extra/libgsf-1.8:= - virtual/libiconv - zlib? ( sys-libs/zlib )" -DEPEND=" - ${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-glib.patch - "${FILESDIR}"/${P}-libgsf.patch -) -DOCS=( AUTHORS ChangeLog README RELEASE THANKS TODO ) - -src_configure() { - # due to ICU 59 requiring C++11 now - append-cxxflags -std=c++11 - - local mycmakeargs=( - -DWITH_ZLIB=$(usex zlib) - ) - cmake-utils_src_configure -}