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 AFC17158043 for ; Tue, 20 Feb 2024 20:49:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E67A2BC0E1; Tue, 20 Feb 2024 20:49:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id DCCFD2BC0E1 for ; Tue, 20 Feb 2024 20:49:08 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BA153431B6 for ; Tue, 20 Feb 2024 20:49:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A89E14D7 for ; Tue, 20 Feb 2024 20:49:05 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1708462097.e7a39964b22a00e4dd9f1c8f471456f5a6370a39.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libetonyek/libetonyek-0.1.10-r1.ebuild X-VCS-Directories: app-text/libetonyek/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e7a39964b22a00e4dd9f1c8f471456f5a6370a39 X-VCS-Branch: master Date: Tue, 20 Feb 2024 20:49:05 +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: 3886ee41-0b0c-453a-af9e-92e6acd1c7a8 X-Archives-Hash: f2f6f1dc6dc3d9702f5a531894a0cd90 commit: e7a39964b22a00e4dd9f1c8f471456f5a6370a39 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 20 19:31:59 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 20 20:48:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a39964 app-text/libetonyek: drop 0.1.10-r1 Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/libetonyek/libetonyek-0.1.10-r1.ebuild | 61 ------------------------- 1 file changed, 61 deletions(-) diff --git a/app-text/libetonyek/libetonyek-0.1.10-r1.ebuild b/app-text/libetonyek/libetonyek-0.1.10-r1.ebuild deleted file mode 100644 index 4b7b8e81b4db..000000000000 --- a/app-text/libetonyek/libetonyek-0.1.10-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} == *9999 ]]; then - MDDS_VER="9999" - EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git" - inherit autotools git-r3 -else - MDDS_VER="2.0" - SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz" - KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86" -fi -DESCRIPTION="Library parsing Apple Keynote presentations" -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" - -LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" -SLOT="0" -IUSE="doc static-libs test" -RESTRICT="!test? ( test )" - -BDEPEND=" - virtual/pkgconfig - doc? ( app-text/doxygen ) -" -RDEPEND=" - app-text/liblangtag - dev-libs/librevenge - dev-libs/libxml2 - >=dev-util/mdds-${MDDS_VER}:1= - sys-libs/zlib -" -DEPEND="${RDEPEND} - dev-libs/boost - media-libs/glm - dev-build/libtool - test? ( dev-util/cppunit ) -" - -src_prepare() { - default - [[ -d m4 ]] || mkdir "m4" - [[ ${PV} == *9999 ]] && eautoreconf -} - -src_configure() { - local myeconfargs=( - --disable-werror - --with-mdds="${MDDS_VER}" - $(use_with doc docs) - $(use_enable static-libs static) - $(use_enable test tests) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -type f -delete || die -}