commit:     f8f793322dd2074ffc429e43ae10e394b8b8d895
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Wed Jul 27 16:23:01 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 18:48:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8f79332

dev-lua/luasocket: add 3.1.0

Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26623
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/luasocket/Manifest               |  1 +
 dev-lua/luasocket/luasocket-3.1.0.ebuild | 84 ++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/dev-lua/luasocket/Manifest b/dev-lua/luasocket/Manifest
index 3a3d05df3569..072cf68d52db 100644
--- a/dev-lua/luasocket/Manifest
+++ b/dev-lua/luasocket/Manifest
@@ -1 +1,2 @@
 DIST luasocket-3.0.0.tar.gz 336231 BLAKE2B 
71b87041a1edb2616ba269160382ac5cea6ba9b623281e8069e8adf97b6898d7836add7eff949010a1bc890bff8d2e4797a2ff5c619b45f8ee3adee5d6633843
 SHA512 
4f93d6c0b602333df50ee4f939cd0419243f6de333472ffebf99334e301143e8cdee3bc1655c29f81608622d6e7850a9bcf6929a6d4748210a70cdb8218a1ec6
+DIST luasocket-3.1.0.tar.gz 336542 BLAKE2B 
64d3ab7028050a93a93db444a4d1757f579f111e79c2f84629d0eb9558fc594918614a48cd1cb522d573b84bb4096537fb7950834adeacfffb3e060721402f71
 SHA512 
1e9e98484740ec6538fe3d2b0dab74d31f052956ecf9ee3b60e229f2d0b13fcc6d4aaf74cd2a3e2ee330333dabb316fe6a43c60baaea26f0cc01069b6aa4519b

diff --git a/dev-lua/luasocket/luasocket-3.1.0.ebuild 
b/dev-lua/luasocket/luasocket-3.1.0.ebuild
new file mode 100644
index 000000000000..d46fffc97228
--- /dev/null
+++ b/dev-lua/luasocket/luasocket-3.1.0.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+
+inherit lua toolchain-funcs
+
+DESCRIPTION="Networking support for the Lua language"
+HOMEPAGE="
+       https://lunarmodules.github.io/luasocket/
+       https://github.com/lunarmodules/luasocket
+"
+SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RESTRICT="test"
+
+RDEPEND="${LUA_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+HTML_DOCS="docs/."
+
+PATCHES=(
+       "${FILESDIR}/${PN}-3.0_rc1_p20200328_publish_API.patch"
+       "${FILESDIR}/${PN}-3.0.0_makefile.patch"
+)
+
+src_prepare() {
+       default
+       lua_copy_sources
+}
+
+lua_src_compile() {
+       pushd "${BUILD_DIR}" || die
+
+       local myemakeargs=(
+               "CC=$(tc-getCC)"
+               "LD=$(tc-getCC)"
+               "LUAINC_linux=$(lua_get_include_dir)"
+               "LUAV=${ELUA}"
+               "MYCFLAGS=${CFLAGS}"
+               "MYLDFLAGS=${LDFLAGS}"
+       )
+
+       emake "${myemakeargs[@]}" all
+
+       popd
+}
+
+src_compile() {
+       lua_foreach_impl lua_src_compile
+}
+
+lua_src_install() {
+       pushd "${BUILD_DIR}" || die
+
+       local myemakeargs=(
+               "CDIR=$(lua_get_cmod_dir)"
+               "DESTDIR=${ED}"
+               "LDIR=$(lua_get_lmod_dir)"
+               "LUAPREFIX_linux="
+       )
+
+       emake "${myemakeargs[@]}" install
+       emake "${myemakeargs[@]}" install-unix
+
+       insinto "$(lua_get_include_dir)"/luasocket
+       doins src/*.h
+
+       popd
+}
+
+src_install() {
+       lua_foreach_impl lua_src_install
+
+       use doc && einstalldocs
+}

Reply via email to