Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasec/
Date: Tue, 14 Mar 2023 20:22:47
Message-Id: 1678825348.dccd8086cd0f7b62fd94a5cb9efafc31b85004a2.conikost@gentoo
1 commit: dccd8086cd0f7b62fd94a5cb9efafc31b85004a2
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 14 20:22:28 2023 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 14 20:22:28 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dccd8086
7
8 dev-lua/luasec: add 1.3.0
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 dev-lua/luasec/Manifest | 1 +
13 dev-lua/luasec/luasec-1.3.0.ebuild | 89 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 90 insertions(+)
15
16 diff --git a/dev-lua/luasec/Manifest b/dev-lua/luasec/Manifest
17 index f2802314e044..36577684fbd7 100644
18 --- a/dev-lua/luasec/Manifest
19 +++ b/dev-lua/luasec/Manifest
20 @@ -1 +1,2 @@
21 DIST luasec-1.2.0.tar.gz 53379 BLAKE2B dad93b341565b602fa02a5551a127bce42e76cee5abb0314f9cc4a98f162d23b0f8b4b9c0f16423095e4b54ec5ab260ee06bef5993ad46f559ad1295dcc28856 SHA512 5564f73495bef7c5683285ff7648c7b82a3a3dfdce96e88c77cc8835427b6595a694e5a2bf0a4f6332fe52b8aed3d94531607df81260d7597458a6fb0465d3fe
22 +DIST luasec-1.3.0.tar.gz 54704 BLAKE2B f16009922f9fcb60f8e1da99011e683ad6e51afa218b936909a2a6ab9814d892e6d11307b3bf562292d0acd4ad2fb8875e4cc53c21d07f43aa056e54a451a205 SHA512 5dcaca773ad6ee00ca33cfcc2060c763a8c75ad45753a4e5f11e6e76bdb2a49a8b46780efec12146f691f900326218e63c11af5abb709ca84c16bb77ce791943
23
24 diff --git a/dev-lua/luasec/luasec-1.3.0.ebuild b/dev-lua/luasec/luasec-1.3.0.ebuild
25 new file mode 100644
26 index 000000000000..56a3d8392158
27 --- /dev/null
28 +++ b/dev-lua/luasec/luasec-1.3.0.ebuild
29 @@ -0,0 +1,89 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +LUA_COMPAT=( lua5-{1..4} luajit )
36 +
37 +inherit lua toolchain-funcs
38 +
39 +DESCRIPTION="Lua binding for OpenSSL library to provide TLS/SSL communication"
40 +HOMEPAGE="https://github.com/brunoos/luasec"
41 +SRC_URI="https://github.com/brunoos/luasec/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +
47 +RDEPEND="
48 + >=dev-lua/luasocket-3.0_rc1_p20200328-r103[${LUA_USEDEP}]
49 + dev-libs/openssl:0=
50 + ${LUA_DEPS}
51 +"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="virtual/pkgconfig"
54 +
55 +lua_src_prepare() {
56 + pushd "${BUILD_DIR}" || die
57 +
58 + ${ELUA} src/options.lua -g /usr/include/openssl/ssl.h > src/options.c || die
59 +
60 + popd
61 +}
62 +
63 +src_prepare() {
64 + default
65 +
66 + # Respect users CFLAGS
67 + sed -e 's/-O2//g' -i src/Makefile || die
68 +
69 + # Allow to redefine libraries linking
70 + sed -e 's/LIBS=/LIBS?=/g' -i src/Makefile || die
71 +
72 + lua_copy_sources
73 +
74 + lua_foreach_impl lua_src_prepare
75 +}
76 +
77 +lua_src_compile() {
78 + pushd "${BUILD_DIR}" || die
79 +
80 + local myemakeargs=(
81 + "CC=$(tc-getCC)"
82 + "CCLD=$(tc-getCC)"
83 + "INC_PATH=-I$(lua_get_include_dir)"
84 + "LIB_PATH=-L$(lua_get_cmod_dir)/socket"
85 + "LIBS=$($(tc-getPKG_CONFIG) --libs openssl) $(lua_get_cmod_dir)/socket/core.so"
86 + "MYLDFLAGS=-Wl,-rpath,$(lua_get_cmod_dir)/socket -Wl,-soname=socket/core.so"
87 + "EXTRA="
88 + "DEFS="
89 + )
90 +
91 + emake "${myemakeargs[@]}" linux
92 +
93 + popd
94 +}
95 +
96 +src_compile() {
97 + lua_foreach_impl lua_src_compile
98 +}
99 +
100 +lua_src_install() {
101 + pushd "${BUILD_DIR}" || die
102 +
103 + local emakeargs=(
104 + "DESTDIR=${ED}"
105 + "LUAPATH=$(lua_get_lmod_dir)"
106 + "LUACPATH=$(lua_get_cmod_dir)"
107 + )
108 +
109 + emake "${emakeargs[@]}" install
110 +
111 + popd
112 +}
113 +
114 +src_install() {
115 + lua_foreach_impl lua_src_install
116 +
117 + einstalldocs
118 +}