From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 927A2138359 for ; Sat, 10 Oct 2020 15:31:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCAC9E0880; Sat, 10 Oct 2020 15:31:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3A50E0880 for ; Sat, 10 Oct 2020 15:31:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D58F335D94 for ; Sat, 10 Oct 2020 15:31:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0575391 for ; Sat, 10 Oct 2020 15:31:29 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1602343646.e8422e6bafceb04372c23a80d8ae636dfc588ec3.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-bit32/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lua-bit32/lua-bit32-5.3.5.ebuild X-VCS-Directories: dev-lua/lua-bit32/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: e8422e6bafceb04372c23a80d8ae636dfc588ec3 X-VCS-Branch: master Date: Sat, 10 Oct 2020 15:31:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 72208489-8399-46e4-b5f8-254f15e12012 X-Archives-Hash: cb58a282c840ec4d55f14e37d9986e61 commit: e8422e6bafceb04372c23a80d8ae636dfc588ec3 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Oct 10 15:27:26 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Oct 10 15:27:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8422e6b dev-lua/lua-bit32: drop old version Closes: https://bugs.gentoo.org/746836 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/lua-bit32/lua-bit32-5.3.5.ebuild | 48 -------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-lua/lua-bit32/lua-bit32-5.3.5.ebuild b/dev-lua/lua-bit32/lua-bit32-5.3.5.ebuild deleted file mode 100644 index 43d5f0cee55..00000000000 --- a/dev-lua/lua-bit32/lua-bit32-5.3.5.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Backported Lua bit manipulation library" -HOMEPAGE="https://github.com/keplerproject/lua-compat-5.3" -# Wierd upstream version descisions... -# Result tarball may be reused for future lua-compat53 package -LUA_COMPAT_V=0.9 -SRC_URI="https://github.com/keplerproject/lua-compat-5.3/archive/v${LUA_COMPAT_V}.tar.gz -> lua-compat53-${LUA_COMPAT_V}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" - -RESTRICT="!test? ( test )" - -# Strictly for lua 5.1 -DEPEND="dev-lang/lua:0=" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/lua-compat-5.3-${LUA_COMPAT_V}" - -src_compile() { - # TODO maybe sometime there will be luarocks eclass... - compile="$(tc-getCC) ${CFLAGS} ${LDFLAGS} -fPIC -I/usr/include -c lbitlib.c -o lbitlib.o -DLUA_COMPAT_BITLIB -Ic-api" - einfo "${compile}" - eval "${compile}" || die - - link="$(tc-getCC) -shared ${LDFLAGS} -o bit32.so lbitlib.o" - einfo "${link}" - eval "${link}" || die -} - -src_test() { - LUA_CPATH=./?.so lua tests/test-bit32.lua || die -} - -src_install() { - exeinto $($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua) - doexe bit32.so - dodoc README.md -}