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 1D68013835A for ; Fri, 26 Mar 2021 19:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C81AE0869; Fri, 26 Mar 2021 19:46:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 52A37E0867 for ; Fri, 26 Mar 2021 19:46:05 +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 39806340E5A for ; Fri, 26 Mar 2021 19:46:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 737C8638 for ; Fri, 26 Mar 2021 19:46:01 +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: <1616787919.16c80013a85ac637a60c6512f62e9c1706bf5599.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lgi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lgi/lgi-0.9.2.ebuild X-VCS-Directories: dev-lua/lgi/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 16c80013a85ac637a60c6512f62e9c1706bf5599 X-VCS-Branch: master Date: Fri, 26 Mar 2021 19:46:01 +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: 848dc126-2a7f-4ce5-94e4-bc3bab507ee8 X-Archives-Hash: d5e9c3783e6b0fccb7a28e186935f9a0 commit: 16c80013a85ac637a60c6512f62e9c1706bf5599 Author: Conrad Kostecki gentoo org> AuthorDate: Fri Mar 26 18:58:22 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Mar 26 19:45:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16c80013 dev-lua/lgi: drop old version Dropping old version, which does not support slotted lua. Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/lgi/lgi-0.9.2.ebuild | 57 -------------------------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-lua/lgi/lgi-0.9.2.ebuild b/dev-lua/lgi/lgi-0.9.2.ebuild deleted file mode 100644 index aa535b2deae..00000000000 --- a/dev-lua/lgi/lgi-0.9.2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -VIRTUALX_REQUIRED="manual" - -inherit eutils toolchain-funcs flag-o-matic virtualx - -DESCRIPTION="Lua bindings using gobject-introspection" -HOMEPAGE="https://github.com/pavouk/lgi" -SRC_URI="https://github.com/pavouk/lgi/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 x86" -IUSE="examples test" -RESTRICT="!test? ( test )" - -BDEPEND="virtual/pkgconfig" -RDEPEND=">=dev-lang/lua-5.1:0= - dev-libs/gobject-introspection - dev-libs/glib - dev-libs/libffi:0=" -DEPEND="${RDEPEND} - test? ( - x11-libs/cairo[glib] - x11-libs/gtk+[introspection] - ${VIRTUALX_DEPEND} - )" - -src_prepare() { - default - - sed -i \ - -e "s:^LUA_LIBDIR.*$:LUA_LIBDIR = $($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua):" \ - -e "s:^LUA_SHAREDIR.*$:LUA_SHAREDIR = $($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua):" \ - "${S}"/lgi/Makefile || die "sed failed" -} - -src_compile() { - emake CC="$(tc-getCC)" COPTFLAGS="-Wall -Wextra ${CFLAGS}" LIBFLAG="-shared ${LDFLAGS}" -} - -src_test() { - virtx emake CC="$(tc-getCC)" COPTFLAGS="-Wall -Wextra ${CFLAGS}" LIBFLAG="-shared ${LDFLAGS}" check -} - -src_install() { - emake DESTDIR="${D}" install - docompress -x /usr/share/doc/${PF} - dodoc README.md - dodoc -r docs/* - if use examples; then - dodoc -r samples - fi -}