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/LuaBitOp/
Date: Sat, 28 Nov 2020 23:29:10
Message-Id: 1606606120.15fee9e739356e5c1248e2a932c105579e466c00.conikost@gentoo
1 commit: 15fee9e739356e5c1248e2a932c105579e466c00
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 23:28:40 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 23:28:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15fee9e7
7
8 dev-lua/LuaBitOp: 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/LuaBitOp/LuaBitOp-1.0.2-r1.ebuild | 44 -------------------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/dev-lua/LuaBitOp/LuaBitOp-1.0.2-r1.ebuild b/dev-lua/LuaBitOp/LuaBitOp-1.0.2-r1.ebuild
17 deleted file mode 100644
18 index e56c2587e41..00000000000
19 --- a/dev-lua/LuaBitOp/LuaBitOp-1.0.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -inherit toolchain-funcs multilib-minimal
27 -
28 -DESCRIPTION="Bit Operations Library for the Lua Programming Language"
29 -HOMEPAGE="http://bitop.luajit.org"
30 -SRC_URI="http://bitop.luajit.org/download/${P}.tar.gz"
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS="amd64 arm ~arm64 ~hppa ~mips ppc ppc64 sparc x86"
35 -IUSE=""
36 -
37 -RDEPEND=">=dev-lang/lua-5.1.5-r2:*[${MULTILIB_USEDEP}]"
38 -DEPEND="${RDEPEND}
39 - virtual/pkgconfig"
40 -
41 -src_prepare() {
42 - multilib_copy_sources
43 -}
44 -
45 -multilib_src_compile()
46 -{
47 - emake CC="$(tc-getCC)" INCLUDES= CCOPT=
48 -}
49 -
50 -multilib_src_test() {
51 - # tests use native lua interpreter
52 - multilib_is_native_abi && default
53 -}
54 -
55 -multilib_src_install()
56 -{
57 - local instdir="$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)"
58 - exeinto "${instdir#${EPREFIX}}"
59 - doexe bit.so
60 -}
61 -
62 -multilib_src_install_all() {
63 - dodoc README
64 - dohtml -r doc/.
65 -}