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 33C7513835A for ; Wed, 27 Jan 2021 19:48:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BD5EE0C3D; Wed, 27 Jan 2021 19:48:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E4CBCE0C3D for ; Wed, 27 Jan 2021 19:48:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C6FA334104A for ; Wed, 27 Jan 2021 19:48:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 024084B5 for ; Wed, 27 Jan 2021 19:48:13 +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: <1611776425.2f908f745a152f9d303ae03bd1624a5ede3c518f.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasec/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/luasec/luasec-0.9.ebuild X-VCS-Directories: dev-lua/luasec/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 2f908f745a152f9d303ae03bd1624a5ede3c518f X-VCS-Branch: master Date: Wed, 27 Jan 2021 19:48:13 +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: cb1e04c8-16ac-4f57-ab0d-b96d63553ed4 X-Archives-Hash: e1fab4413260df5bfe3875cb50bf4ea8 commit: 2f908f745a152f9d303ae03bd1624a5ede3c518f Author: Conrad Kostecki gentoo org> AuthorDate: Sun Jan 24 18:11:16 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Jan 27 19:40:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f908f74 dev-lua/luasec: drop old version Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/luasec/luasec-0.9.ebuild | 42 ---------------------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-lua/luasec/luasec-0.9.ebuild b/dev-lua/luasec/luasec-0.9.ebuild deleted file mode 100644 index 49603d3ef4c..00000000000 --- a/dev-lua/luasec/luasec-0.9.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib toolchain-funcs - -DESCRIPTION="Lua binding for OpenSSL library to provide TLS/SSL communication" -HOMEPAGE="https://github.com/brunoos/luasec" -SRC_URI="https://github.com/brunoos/luasec/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="amd64 arm arm64 x86" - -LICENSE="MIT" -SLOT="0" -IUSE="libressl" - -RDEPEND=" - >=dev-lang/lua-5.1:0[deprecated] - dev-lua/luasocket - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - sed -i -e "s/-O2//" src/Makefile || die - lua src/options.lua -g /usr/include/openssl/ssl.h > src/options.c || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" LD="$(tc-getCC)" LIB_PATH="" \ - linux -} - -src_install() { - emake \ - LUAPATH="${D}/$(pkg-config --variable INSTALL_LMOD lua)" \ - LUACPATH="${D}/$(pkg-config --variable INSTALL_CMOD lua)" \ - install -}