Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luaexpat/
Date: Mon, 05 Oct 2020 21:34:59
Message-Id: 1601933471.5db0e756a36d3cd79db225964bf71f144e57951c.conikost@gentoo
1 commit: 5db0e756a36d3cd79db225964bf71f144e57951c
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Sun Oct 4 20:15:46 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 5 21:31:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db0e756
7
8 dev-lua/luaexpat: remove old version
9
10 Closes: https://github.com/gentoo/gentoo/pull/17770
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 dev-lua/luaexpat/luaexpat-1.3.3.ebuild | 47 ----------------------------------
16 1 file changed, 47 deletions(-)
17
18 diff --git a/dev-lua/luaexpat/luaexpat-1.3.3.ebuild b/dev-lua/luaexpat/luaexpat-1.3.3.ebuild
19 deleted file mode 100644
20 index 9c6db1a5eef..00000000000
21 --- a/dev-lua/luaexpat/luaexpat-1.3.3.ebuild
22 +++ /dev/null
23 @@ -1,47 +0,0 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -inherit multilib-minimal toolchain-funcs
30 -
31 -DESCRIPTION="LuaExpat is a SAX XML parser based on the Expat library"
32 -HOMEPAGE="https://matthewwild.co.uk/projects/luaexpat/ https://github.com/tomasguisasola/luaexpat"
33 -SRC_URI="https://github.com/tomasguisasola/luaexpat/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
38 -
39 -RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]
40 - >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"
41 -DEPEND="${RDEPEND}"
42 -BDEPEND="virtual/pkgconfig"
43 -
44 -PATCHES=(
45 - "${FILESDIR}/${P}_makefile.patch"
46 -)
47 -
48 -src_prepare() {
49 - default
50 - multilib_copy_sources
51 -}
52 -
53 -multilib_src_compile() {
54 - emake \
55 - CFLAGS="${CFLAGS}" \
56 - LDFLAGS="${LDFLAGS}" \
57 - CC="$(tc-getCC)" \
58 - LUA_INC="$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)"
59 -}
60 -
61 -multilib_src_install() {
62 - emake \
63 - LUA_DIR="${D}/$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" \
64 - LUA_LIBDIR="${D}/$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" \
65 - install
66 -}
67 -
68 -multilib_src_install_all() {
69 - dodoc -r README.md doc/*
70 -}