diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-11-23 19:43:22 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-11-23 19:43:22 +0100 |
commit | 39141f85adae3d64aeab05ae8c9ee45c2ec05b0d (patch) | |
tree | 580289fb77198ea340eca545f6a2adea38231a8c /dev-lua/luaexpat | |
parent | dev-lua/luaexpat: drop hppa to testing (diff) | |
download | gentoo-39141f85adae3d64aeab05ae8c9ee45c2ec05b0d.tar.gz gentoo-39141f85adae3d64aeab05ae8c9ee45c2ec05b0d.tar.bz2 gentoo-39141f85adae3d64aeab05ae8c9ee45c2ec05b0d.zip |
dev-lua/luaexpat: drop old version
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/luaexpat')
-rw-r--r-- | dev-lua/luaexpat/luaexpat-1.3.3-r1.ebuild | 48 |
1 files changed, 0 insertions, 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 72168a4d5329..000000000000 --- 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/* -} |