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 5CCFB1382C5 for ; Wed, 27 Jan 2021 19:48:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3ED4E0C47; Wed, 27 Jan 2021 19:48:18 +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 DAD8FE0C48 for ; Wed, 27 Jan 2021 19:48:18 +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 1C057341044 for ; Wed, 27 Jan 2021 19:48:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1FF74BE 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: <1611776561.78031c3be3bc6e04cc365f79fdfa2f74943e909a.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luaevent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/luaevent/luaevent-0.4.6.ebuild X-VCS-Directories: dev-lua/luaevent/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 78031c3be3bc6e04cc365f79fdfa2f74943e909a 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: 402afb4f-d1b4-4a88-8288-421abe535f8e X-Archives-Hash: c74f0c8f4aad767080bdb04cb824f441 commit: 78031c3be3bc6e04cc365f79fdfa2f74943e909a Author: Conrad Kostecki gentoo org> AuthorDate: Wed Jan 27 19:42:41 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Jan 27 19:42:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78031c3b dev-lua/luaevent: drop old version Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/luaevent/luaevent-0.4.6.ebuild | 39 ---------------------------------- 1 file changed, 39 deletions(-) diff --git a/dev-lua/luaevent/luaevent-0.4.6.ebuild b/dev-lua/luaevent/luaevent-0.4.6.ebuild deleted file mode 100644 index 1e2debab47c..00000000000 --- a/dev-lua/luaevent/luaevent-0.4.6.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit toolchain-funcs - -DESCRIPTION="libevent bindings for Lua" -HOMEPAGE="http://luaforge.net/projects/luaevent" -SRC_URI="https://github.com/harningt/luaevent/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" - -RDEPEND="dev-lang/lua:0 - dev-libs/libevent:0=" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - sed -i "s:^CFLAGS =:CFLAGS +=:" "${S}/Makefile" \ - || die "sed failed" - sed -i "s:^LDFLAGS =:LDFLAGS +=:" "${S}/Makefile" \ - || die "sed failed" - sed -i "/^LDFLAGS/a CC = $(tc-getCC)" "${S}/Makefile" \ - || die "sed failed" - sed -i "s:^LUA_INC_DIR ?=.*:LUA_INC_DIR ?= $(pkg-config --variable INSTALL_INC lua):" "${S}/Makefile" \ - || die "sed failed" - sed -i "s:^INSTALL_DIR_LUA ?=.*:INSTALL_DIR_LUA ?= $(pkg-config --variable INSTALL_LMOD lua):" "${S}/Makefile" \ - || die "sed failed" - sed -i "s:^INSTALL_DIR_BIN ?=.*:INSTALL_DIR_BIN ?= $(pkg-config --variable INSTALL_CMOD lua):" "${S}/Makefile" \ - || die "sed failed" - eapply_user -} - -src_install() { - emake DESTDIR="${D}" install -}