From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1640409-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 959C015817D for <garchives@archives.gentoo.org>; Sat, 8 Jun 2024 17:34:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEC1FE29EE; Sat, 8 Jun 2024 17:34:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A1C93E29EE for <gentoo-commits@lists.gentoo.org>; Sat, 8 Jun 2024 17:34:26 +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 A6817340815 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Jun 2024 17:34:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EDCF1A32 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Jun 2024 17:34:24 +0000 (UTC) From: "Arthur Zamarin" <arthurzam@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, "Arthur Zamarin" <arthurzam@gentoo.org> Message-ID: <1717868056.b082638a4d8686d5b61a302e8155470634f8e8be.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/liblingoteach/liblingoteach-0.2.3.ebuild X-VCS-Directories: media-libs/liblingoteach/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b082638a4d8686d5b61a302e8155470634f8e8be X-VCS-Branch: master Date: Sat, 8 Jun 2024 17:34:24 +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: 986dec09-018f-4cbf-93e5-4104e6e9706f X-Archives-Hash: f448aaddd18339fc54b797a02e3acc1d commit: b082638a4d8686d5b61a302e8155470634f8e8be Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Jun 8 17:34:02 2024 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Sat Jun 8 17:34:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b082638a media-libs/liblingoteach: drop 0.2.3 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> .../liblingoteach/liblingoteach-0.2.3.ebuild | 30 ---------------------- 1 file changed, 30 deletions(-) diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild deleted file mode 100644 index 8f3db928a6ee..000000000000 --- a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A library to support lingoteach-ui and for generic lesson development" -HOMEPAGE="http://lingoteach.sourceforge.net" -SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="debug zlib" - -RDEPEND="zlib? ( sys-libs/zlib ) - dev-libs/libxml2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_configure() { - econf \ - --disable-static \ - $(use_enable zlib compression) \ - $(use_enable debug) -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -}