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 4FCC1138334 for ; Wed, 5 Sep 2018 12:58:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4AAFE0801; Wed, 5 Sep 2018 12:58:48 +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 B7BC7E0801 for ; Wed, 5 Sep 2018 12:58:48 +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 406AD335CCB for ; Wed, 5 Sep 2018 12:58:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 134FA3C4 for ; Wed, 5 Sep 2018 12:58:45 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1536152319.4c4edb8dc755ae78138255caf74d65e3b4a01eb5.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ell/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ell/ell-0.6.ebuild X-VCS-Directories: dev-libs/ell/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 4c4edb8dc755ae78138255caf74d65e3b4a01eb5 X-VCS-Branch: master Date: Wed, 5 Sep 2018 12:58:45 +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-Archives-Salt: fe487f62-a078-4989-ba52-ecaa3f1c245c X-Archives-Hash: e7f5a1a51f62c3bbb05ec37233b6fbfb commit: 4c4edb8dc755ae78138255caf74d65e3b4a01eb5 Author: Lars Wendler gentoo org> AuthorDate: Wed Sep 5 12:58:23 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Sep 5 12:58:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4edb8d dev-libs/ell: Removed old. Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-libs/ell/ell-0.6.ebuild | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/dev-libs/ell/ell-0.6.ebuild b/dev-libs/ell/ell-0.6.ebuild deleted file mode 100644 index 5c7f1002ae5..00000000000 --- a/dev-libs/ell/ell-0.6.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib-minimal - -DESCRIPTION="Embedded Linux Library provides core, low-level functionality for system daemons" -HOMEPAGE="https://01.org/ell" -SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz" -LICENSE="LGPL-2.1" -SLOT="0" - -KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="glib pie" - -RDEPEND=" - glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND}" - -multilib_src_configure() { - local myeconfargs=( - $(use_enable glib) - $(use_enable pie) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - find "${ED}" -name "*.la" -delete || die -}