diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-01-24 19:07:58 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-27 20:40:22 +0100 |
commit | e2fcdd6f4d718c55b2570d718456a7e027c01a0d (patch) | |
tree | 58bd2fedd88c90b373f60d7d1a76d3ea2741bb4e /dev-lua/luafilesystem | |
parent | dev-lua/luaexpat: drop old version (diff) | |
download | gentoo-e2fcdd6f4d718c55b2570d718456a7e027c01a0d.tar.gz gentoo-e2fcdd6f4d718c55b2570d718456a7e027c01a0d.tar.bz2 gentoo-e2fcdd6f4d718c55b2570d718456a7e027c01a0d.zip |
dev-lua/luafilesystem: drop old version
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/luafilesystem')
-rw-r--r-- | dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild b/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild deleted file mode 100644 index 0366ccae8958..000000000000 --- a/dev-lua/luafilesystem/luafilesystem-1.8.0-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PV=${PV//./_} - -DESCRIPTION="File System Library for the Lua programming language" -HOMEPAGE="https://keplerproject.github.io/luafilesystem/" -SRC_URI="https://github.com/keplerproject/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 sparc x86" -IUSE="luajit test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-lang/lua-5.1:0 - luajit? ( dev-lang/luajit:2 ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - test? ( ${RDEPEND} ) -" - -HTML_DOCS=( "doc/us/." ) - -src_prepare() { - default - - cat > "config" <<-EOF - CC=$(tc-getCC) - CFLAGS=${CFLAGS} -I$($(tc-getPKG_CONFIG) --variable includedir $(usex luajit 'luajit' 'lua')) -fPIC - DESTDIR=${ED} - LIB_OPTION=${LDFLAGS} -shared - LUA_LIBDIR=$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD $(usex luajit 'luajit' 'lua')) - EOF -} - -src_test() { - LUA_CPATH="src/lfs.so" lua tests/test.lua || die -} |