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: Wed, 31 Aug 2022 19:39:44
Message-Id: 1661974762.71cb28371f8b78d2b6dee2f8d56efc7da785fc18.conikost@gentoo
1 commit: 71cb28371f8b78d2b6dee2f8d56efc7da785fc18
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 19:39:22 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 19:39:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71cb2837
7
8 dev-lua/luasec: drop 1.1.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.1.0.ebuild | 89 --------------------------------------
14 2 files changed, 90 deletions(-)
15
16 diff --git a/dev-lua/luasec/Manifest b/dev-lua/luasec/Manifest
17 index 3ec2a2485bfd..f2802314e044 100644
18 --- a/dev-lua/luasec/Manifest
19 +++ b/dev-lua/luasec/Manifest
20 @@ -1,2 +1 @@
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.1.0.ebuild b/dev-lua/luasec/luasec-1.1.0.ebuild
25 deleted file mode 100644
26 index b96cb6076757..000000000000
27 --- a/dev-lua/luasec/luasec-1.1.0.ebuild
28 +++ /dev/null
29 @@ -1,89 +0,0 @@
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 -}