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, 29 Nov 2020 15:38:00
Message-Id: 1606663476.663cc80ee5b49ec0e11a1d320b0a8eb7387b540f.conikost@gentoo
1 commit: 663cc80ee5b49ec0e11a1d320b0a8eb7387b540f
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 15:24:36 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 15:24:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663cc80e
7
8 dev-lua/luasec: drop old version
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-lua/luasec/luasec-0.9-r101.ebuild | 80 -----------------------------------
14 1 file changed, 80 deletions(-)
15
16 diff --git a/dev-lua/luasec/luasec-0.9-r101.ebuild b/dev-lua/luasec/luasec-0.9-r101.ebuild
17 deleted file mode 100644
18 index ee3f8ffb861..00000000000
19 --- a/dev-lua/luasec/luasec-0.9-r101.ebuild
20 +++ /dev/null
21 @@ -1,80 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -LUA_COMPAT=( lua5-{1..3} )
28 -LUA_REQ_USE="deprecated"
29 -
30 -inherit lua toolchain-funcs
31 -
32 -DESCRIPTION="Lua binding for OpenSSL library to provide TLS/SSL communication"
33 -HOMEPAGE="https://github.com/brunoos/luasec"
34 -SRC_URI="https://github.com/brunoos/luasec/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
39 -IUSE="libressl"
40 -REQUIRED_USE="${LUA_REQUIRED_USE}"
41 -
42 -RDEPEND="
43 - >=dev-lua/luasocket-3.0_rc1_p20200328-r100[${LUA_USEDEP}]
44 - libressl? ( dev-libs/libressl:= )
45 - !libressl? ( dev-libs/openssl:0= )
46 - ${LUA_DEPS}
47 -"
48 -DEPEND="${RDEPEND}"
49 -BDEPEND="virtual/pkgconfig"
50 -
51 -src_prepare() {
52 - default
53 -
54 - # Respect users CFLAGS
55 - sed -e 's/-O2//g' -i src/Makefile || die
56 -}
57 -
58 -lua_src_compile() {
59 - # Clean project, to compile it for every lua slot
60 - emake clean
61 -
62 - # Generate SSL options
63 - ${ELUA} src/options.lua -g /usr/include/openssl/ssl.h > src/options.c || die
64 -
65 - local myemakeargs=(
66 - "CC=$(tc-getCC)"
67 - "LD=$(tc-getCC)"
68 - "INC_PATH=-I$(lua_get_include_dir)"
69 - "LIB_PATH=$(lua_get_CFLAGS)"
70 - "MYCFLAGS=${CFLAGS}"
71 - "MYLDFLAGS=${LDFLAGS}"
72 - )
73 -
74 - emake "${myemakeargs[@]}" linux
75 -
76 - # Copy module to match the choosen LUA implementation
77 - cp "src/ssl.so" "src/ssl-${ELUA}.so" || die
78 -}
79 -
80 -src_compile() {
81 - lua_foreach_impl lua_src_compile
82 -}
83 -
84 -lua_src_install() {
85 - # Use correct module for the choosen LUA implementation
86 - cp "src/ssl-${ELUA}.so" "src/ssl.so" || die
87 -
88 - local emakeargs=(
89 - "DESTDIR=${ED}"
90 - "LUAPATH=$(lua_get_lmod_dir)"
91 - "LUACPATH=$(lua_get_cmod_dir)"
92 - )
93 -
94 - emake "${emakeargs[@]}" install
95 -}
96 -
97 -src_install() {
98 - lua_foreach_impl lua_src_install
99 -
100 - einstalldocs
101 -}