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 107F4138334 for ; Mon, 4 Jun 2018 09:18:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1DA4E0AA0; Mon, 4 Jun 2018 09:18:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9E919E0AA0 for ; Mon, 4 Jun 2018 09:18:24 +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 1952B335C84 for ; Mon, 4 Jun 2018 09:18:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D5B52BD for ; Mon, 4 Jun 2018 09:18:21 +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: <1528103895.1309bc3b222810a46db56b2a88a9d27ee5630d86.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/Manifest dev-libs/ell/ell-0.5.ebuild dev-libs/ell/metadata.xml X-VCS-Directories: dev-libs/ell/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 1309bc3b222810a46db56b2a88a9d27ee5630d86 X-VCS-Branch: master Date: Mon, 4 Jun 2018 09:18:21 +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: d0b70db8-ea02-4356-bbc9-d61562f37b3e X-Archives-Hash: 86d8825ce752c92b49fd6aa6cebd63f9 commit: 1309bc3b222810a46db56b2a88a9d27ee5630d86 Author: Lars Wendler gentoo org> AuthorDate: Mon Jun 4 09:16:30 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jun 4 09:18:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1309bc3b dev-libs/ell: Initial commit Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/ell/Manifest | 1 + dev-libs/ell/ell-0.5.ebuild | 32 ++++++++++++++++++++++++++++++++ dev-libs/ell/metadata.xml | 11 +++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-libs/ell/Manifest b/dev-libs/ell/Manifest new file mode 100644 index 00000000000..badfe29e04f --- /dev/null +++ b/dev-libs/ell/Manifest @@ -0,0 +1 @@ +DIST ell-0.5.tar.xz 393112 BLAKE2B c9b718a6b471ef428f563989843281b7b00c1ed382d68e241d9b1f624ef085c554ed46eefac544a8711fe2ec15428eb5b069f60d827e5a363e8c0a539e2fbf7f SHA512 aa84ce99980ada2bd80ac5a479d31c84784bc7b09afd0586ab1672a1227dbe14fdbc3788ccc812b22073e1e55b8902f81f86d9f1350c5c280886a8528d6979ce diff --git a/dev-libs/ell/ell-0.5.ebuild b/dev-libs/ell/ell-0.5.ebuild new file mode 100644 index 00000000000..1eb5d54cc95 --- /dev/null +++ b/dev-libs/ell/ell-0.5.ebuild @@ -0,0 +1,32 @@ +# 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 ~x86" +IUSE="glib pie" + +RDEPEND=" + glib? ( dev-libs/glib:2 ) +" +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 +} diff --git a/dev-libs/ell/metadata.xml b/dev-libs/ell/metadata.xml new file mode 100644 index 00000000000..75355cad9cc --- /dev/null +++ b/dev-libs/ell/metadata.xml @@ -0,0 +1,11 @@ + + + + + polynomial-c@gentoo.org + Lars Wendler + + + Enable dev-libs/glib support + +