diff options
author | Karel Kočí <cynerd@email.cz> | 2018-09-13 20:03:12 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-09-13 20:03:12 +0200 |
commit | de9fb85e62a675d601c753427c6eb9762c3d7585 (patch) | |
tree | 0c7af0ad830da8bd45e9a25fc8b87018f04107ac /dev-lua/luaposix | |
parent | 860ce12a9c5467897d46cc1cb8c0fbe4bf5a736a (diff) | |
download | gentoo-personal-overlay-de9fb85e62a675d601c753427c6eb9762c3d7585.tar.gz gentoo-personal-overlay-de9fb85e62a675d601c753427c6eb9762c3d7585.tar.bz2 gentoo-personal-overlay-de9fb85e62a675d601c753427c6eb9762c3d7585.zip |
lua packages try to fix
Diffstat (limited to 'dev-lua/luaposix')
-rw-r--r-- | dev-lua/luaposix/Manifest | 1 | ||||
-rw-r--r-- | dev-lua/luaposix/luaposix-33.4.0.ebuild | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/dev-lua/luaposix/Manifest b/dev-lua/luaposix/Manifest new file mode 100644 index 0000000..bf3cf9b --- /dev/null +++ b/dev-lua/luaposix/Manifest @@ -0,0 +1 @@ +DIST luaposix-33.4.0.tar.gz 643523 BLAKE2B e407363eb6410d2636024371a169eefe8d0bc633b9fcbad6c2e7edb413b4aa0fc681e94b35c9ea39a561ecdcf225af1033ded1c67d87cd57bed2ba3e0d795aab SHA512 3cb78ccb343a55e2bf5b182410e2050356379e8f7a86d42a79853db6198628cae85f9984854f99f41505cb7e4fbb5288e4a46633a6db459649837729af76044c diff --git a/dev-lua/luaposix/luaposix-33.4.0.ebuild b/dev-lua/luaposix/luaposix-33.4.0.ebuild new file mode 100644 index 0000000..305aadf --- /dev/null +++ b/dev-lua/luaposix/luaposix-33.4.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Bindings for POSIX APIs" +HOMEPAGE="https://luaposix.github.io/luaposix/ https://github.com/luaposix/luaposix" +SRC_URI="https://github.com/luaposix/luaposix/archive/release-v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="public-domain" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="dev-lang/lua:= + dev-lang/lua-compat" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${PN}-release-v${PV} |