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/lua-term/
Date: Wed, 27 Jan 2021 19:48:16
Message-Id: 1611776416.840ce114fbb9f44f1dccb4de23060b0f087a2583.conikost@gentoo
1 commit: 840ce114fbb9f44f1dccb4de23060b0f087a2583
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 24 17:59:52 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 19:40:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=840ce114
7
8 dev-lua/lua-term: 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/lua-term/lua-term-0.7.ebuild | 40 ------------------------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/dev-lua/lua-term/lua-term-0.7.ebuild b/dev-lua/lua-term/lua-term-0.7.ebuild
17 deleted file mode 100644
18 index 854d2a4e407..00000000000
19 --- a/dev-lua/lua-term/lua-term-0.7.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2021 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 -# Yes, upstream used different version numbers.
30 -# The rockspec version number is 0.7, but the version associated with
31 -# the tarball is 0.07.
32 -MY_PV=0.07
33 -
34 -DESCRIPTION="Terminal functions for Lua"
35 -HOMEPAGE="https://github.com/hoelzro/lua-term"
36 -SRC_URI="https://github.com/hoelzro/lua-term/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
37 -
38 -LICENSE="MIT"
39 -SLOT="0"
40 -KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
41 -IUSE=""
42 -
43 -BDEPEND="virtual/pkgconfig"
44 -RDEPEND=">=dev-lang/lua-5.1:0="
45 -DEPEND="${RDEPEND}"
46 -
47 -S="${WORKDIR}/${PN}-${MY_PV}"
48 -
49 -src_compile() {
50 - echo "$(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -fPIC -shared \
51 - -o core.so core.c"
52 - $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -fPIC -shared \
53 - -o core.so core.c || die
54 -}
55 -
56 -src_install() {
57 - exeinto "$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)"/term
58 - doexe core.so
59 - insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)"
60 - doins -r term
61 -}