Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ell/
Date: Wed, 05 Sep 2018 12:58:51
Message-Id: 1536152319.4c4edb8dc755ae78138255caf74d65e3b4a01eb5.polynomial-c@gentoo
1 commit: 4c4edb8dc755ae78138255caf74d65e3b4a01eb5
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 5 12:58:23 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 5 12:58:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4edb8d
7
8 dev-libs/ell: Removed old.
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-libs/ell/ell-0.6.ebuild | 32 --------------------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-libs/ell/ell-0.6.ebuild b/dev-libs/ell/ell-0.6.ebuild
16 deleted file mode 100644
17 index 5c7f1002ae5..00000000000
18 --- a/dev-libs/ell/ell-0.6.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit multilib-minimal
27 -
28 -DESCRIPTION="Embedded Linux Library provides core, low-level functionality for system daemons"
29 -HOMEPAGE="https://01.org/ell"
30 -SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz"
31 -LICENSE="LGPL-2.1"
32 -SLOT="0"
33 -
34 -KEYWORDS="~amd64 ~ppc64 ~x86"
35 -IUSE="glib pie"
36 -
37 -RDEPEND="
38 - glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )
39 -"
40 -DEPEND="${RDEPEND}"
41 -
42 -multilib_src_configure() {
43 - local myeconfargs=(
44 - $(use_enable glib)
45 - $(use_enable pie)
46 - )
47 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
48 -}
49 -
50 -multilib_src_install_all() {
51 - find "${ED}" -name "*.la" -delete || die
52 -}