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: Sun, 31 Jul 2022 13:56:26
Message-Id: 1659275743.f15abe17a9576495c84ce9d6a23c646c18e4ad98.conikost@gentoo
1 commit: f15abe17a9576495c84ce9d6a23c646c18e4ad98
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 13:55:43 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 13:55:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15abe17
7
8 dev-lua/luasec: add 1.2.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.2.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 08fc73ad4f15..3ec2a2485bfd 100644
18 --- a/dev-lua/luasec/Manifest
19 +++ b/dev-lua/luasec/Manifest
20 @@ -1 +1,2 @@
21 DIST luasec-1.1.0.tar.gz 53060 BLAKE2B c89e8feea3cb66108ed72c81e1525397bd3c58a25372661b49cbc7bb0fa1f4ab81e39b6065d99fc3e376333f36f9290b136c31e654a30248a6a1d30beaa5d5b2 SHA512 ce08be2c62e97ebfab30e867790874030d404d195ce336b149d9501d652e9b8efe201cc2d0bcbb3be16214d7e4763b5871e45cbc22db758724baab9f7cd78568
22 +DIST luasec-1.2.0.tar.gz 53379 BLAKE2B dad93b341565b602fa02a5551a127bce42e76cee5abb0314f9cc4a98f162d23b0f8b4b9c0f16423095e4b54ec5ab260ee06bef5993ad46f559ad1295dcc28856 SHA512 5564f73495bef7c5683285ff7648c7b82a3a3dfdce96e88c77cc8835427b6595a694e5a2bf0a4f6332fe52b8aed3d94531607df81260d7597458a6fb0465d3fe
23
24 diff --git a/dev-lua/luasec/luasec-1.2.0.ebuild b/dev-lua/luasec/luasec-1.2.0.ebuild
25 new file mode 100644
26 index 000000000000..3e6906534f17
27 --- /dev/null
28 +++ b/dev-lua/luasec/luasec-1.2.0.ebuild
29 @@ -0,0 +1,89 @@
30 +# Copyright 1999-2022 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 +}