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-zlib/
Date: Wed, 27 Jan 2021 19:48:16
Message-Id: 1611776417.92afc2181d8746fa9d687957de2d55754e2fdbc7.conikost@gentoo
1 commit: 92afc2181d8746fa9d687957de2d55754e2fdbc7
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 24 18:01:51 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 19:40:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92afc218
7
8 dev-lua/lua-zlib: 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-zlib/lua-zlib-1.2.ebuild | 28 ----------------------------
14 1 file changed, 28 deletions(-)
15
16 diff --git a/dev-lua/lua-zlib/lua-zlib-1.2.ebuild b/dev-lua/lua-zlib/lua-zlib-1.2.ebuild
17 deleted file mode 100644
18 index 6c5c6083b3a..00000000000
19 --- a/dev-lua/lua-zlib/lua-zlib-1.2.ebuild
20 +++ /dev/null
21 @@ -1,28 +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 cmake
28 -
29 -DESCRIPTION="Lua bindings to zlib"
30 -HOMEPAGE="https://github.com/brimworks/lua-zlib"
31 -SRC_URI="https://github.com/brimworks/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 arm arm64 x86"
36 -
37 -RDEPEND="dev-lang/lua:0
38 - sys-libs/zlib"
39 -DEPEND="${RDEPEND}"
40 -BDEPEND="virtual/pkgconfig"
41 -
42 -src_configure() {
43 - local lua_version="$(pkg-config --modversion lua)"
44 - local mycmakeargs=(
45 - -DINSTALL_CMOD="$(pkg-config --variable INSTALL_CMOD lua)"
46 - -DUSE_LUA_VERSION="$(ver_cut 1-2 ${lua_version})"
47 - )
48 - cmake_src_configure
49 -}