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 520CE13835A for ; Mon, 23 Nov 2020 18:48:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F0C9E0831; Mon, 23 Nov 2020 18:48:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 46375E082D for ; Mon, 23 Nov 2020 18:48:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 01382340CD2 for ; Mon, 23 Nov 2020 18:48:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CFEA456 for ; Mon, 23 Nov 2020 18:48:04 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1606157002.39141f85adae3d64aeab05ae8c9ee45c2ec05b0d.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/luaexpat/luaexpat-1.3.3-r1.ebuild X-VCS-Directories: dev-lua/luaexpat/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 39141f85adae3d64aeab05ae8c9ee45c2ec05b0d X-VCS-Branch: master Date: Mon, 23 Nov 2020 18:48:04 +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: 1e41ce80-f563-4569-b26d-bacaa91cb25c X-Archives-Hash: 989e36a58d4814bd54423a9badf9a24b commit: 39141f85adae3d64aeab05ae8c9ee45c2ec05b0d Author: Conrad Kostecki gentoo org> AuthorDate: Mon Nov 23 18:43:22 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Nov 23 18:43:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39141f85 dev-lua/luaexpat: drop old version Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/luaexpat/luaexpat-1.3.3-r1.ebuild | 48 ------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-lua/luaexpat/luaexpat-1.3.3-r1.ebuild b/dev-lua/luaexpat/luaexpat-1.3.3-r1.ebuild deleted file mode 100644 index 72168a4d532..00000000000 --- a/dev-lua/luaexpat/luaexpat-1.3.3-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib-minimal toolchain-funcs - -DESCRIPTION="LuaExpat is a SAX XML parser based on the Expat library" -HOMEPAGE="https://matthewwild.co.uk/projects/luaexpat/ https://github.com/tomasguisasola/luaexpat" -SRC_URI="https://github.com/tomasguisasola/luaexpat/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" - -RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}] - >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}_makefile.patch" - "${FILESDIR}/${P}_getcurrentbytecount.patch" -) - -src_prepare() { - default - multilib_copy_sources -} - -multilib_src_compile() { - emake \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - CC="$(tc-getCC)" \ - LUA_INC="$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)" -} - -multilib_src_install() { - emake \ - LUA_DIR="${D}/$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" \ - LUA_LIBDIR="${D}/$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" \ - install -} - -multilib_src_install_all() { - dodoc -r README.md doc/* -}