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/luaposix/
Date: Wed, 27 Jan 2021 19:48:22
Message-Id: 1611776430.12943ee10ae692a8876803439cdceb8cd38198e0.conikost@gentoo
1 commit: 12943ee10ae692a8876803439cdceb8cd38198e0
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 24 18:49:22 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 19:40:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12943ee1
7
8 dev-lua/luaposix: drop old version
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-lua/luaposix/luaposix-35.0.ebuild | 43 -----------------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/dev-lua/luaposix/luaposix-35.0.ebuild b/dev-lua/luaposix/luaposix-35.0.ebuild
17 deleted file mode 100644
18 index efcbfd7161c..00000000000
19 --- a/dev-lua/luaposix/luaposix-35.0.ebuild
20 +++ /dev/null
21 @@ -1,43 +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 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Bindings for POSIX APIs"
30 -HOMEPAGE="https://luaposix.github.io/luaposix/ https://github.com/luaposix/luaposix"
31 -SRC_URI="https://github.com/luaposix/luaposix/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -SLOT="0"
33 -LICENSE="MIT"
34 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
35 -
36 -DEPEND="dev-lang/lua:0="
37 -RDEPEND="${DEPEND}
38 - dev-lua/lua-bit32"
39 -BDEPEND="virtual/pkgconfig"
40 -
41 -src_prepare() {
42 - default
43 - # Temporary fix for respect LDFLAGS (#739050)
44 - # Fixed in luke 0.2.1
45 - sed -i -e "s:c_module,libdirs:c_module,'\$LDFLAGS',libdirs:g" \
46 - build-aux/luke || die
47 -}
48 -
49 -src_compile() {
50 - ./build-aux/luke package="${PN}" version="${PV}" \
51 - PREFIX="${ED}/usr" \
52 - INST_LIBDIR="${ED}/$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" \
53 - INST_LUADIR="${ED}/$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" \
54 - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die
55 -}
56 -
57 -src_install() {
58 - ./build-aux/luke install \
59 - PREFIX="${ED}/usr" \
60 - INST_LIBDIR="${ED}/$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" \
61 - INST_LUADIR="${ED}/$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" \
62 - || die
63 - dodoc -r doc NEWS.md README.md
64 -}