commit: e2fcdd6f4d718c55b2570d718456a7e027c01a0d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 18:07:58 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 19:40:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2fcdd6f
dev-lua/luafilesystem: drop old version
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../luafilesystem/luafilesystem-1.8.0-r1.ebuild | 47 ----------------------
1 file changed, 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 0366ccae895..00000000000
--- 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
-}