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 E6F5F139084 for ; Fri, 1 Dec 2017 21:35:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E2F4E0BC7; Fri, 1 Dec 2017 21:35:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EE594E0BC7 for ; Fri, 1 Dec 2017 21:35:02 +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 CB63233D3C7 for ; Fri, 1 Dec 2017 21:35:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CB9AAE55 for ; Fri, 1 Dec 2017 21:35:00 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1512164091.42984493572742b8d9fe50ff28f49f7f4786fa56.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmowgli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmowgli/libmowgli-9999.ebuild X-VCS-Directories: dev-libs/libmowgli/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 42984493572742b8d9fe50ff28f49f7f4786fa56 X-VCS-Branch: master Date: Fri, 1 Dec 2017 21:35:00 +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: 2c7f0310-2e07-49a9-8297-6ea5af06f159 X-Archives-Hash: 953ec0e76a6740bbfe91b5860463ebe2 commit: 42984493572742b8d9fe50ff28f49f7f4786fa56 Author: Wade Cline hotmail com> AuthorDate: Fri Dec 1 06:06:33 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Dec 1 21:34:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42984493 dev-libs/libmowgli: Update 9999 dev-libs/libmowgli/libmowgli-9999.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-libs/libmowgli/libmowgli-9999.ebuild b/dev-libs/libmowgli/libmowgli-9999.ebuild index 9a22f89057f..5450f37c16c 100644 --- a/dev-libs/libmowgli/libmowgli-9999.ebuild +++ b/dev-libs/libmowgli/libmowgli-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit git-2 +inherit git-r3 DESCRIPTION="Useful set of performance and usability-oriented extensions to C" HOMEPAGE="http://atheme.org/projects/libmowgli.html" @@ -18,10 +18,9 @@ RDEPEND="ssl? ( libressl? ( dev-libs/libressl:0= ) )" DEPEND="${RDEPEND}" -DOCS="AUTHORS README doc/BOOST doc/design-concepts.txt" +DOCS=( AUTHORS README doc/BOOST doc/design-concepts.txt ) src_configure() { - # disabling SSL is "broken" in 2.0.0 so we have to use this hack till 2.0.1 - use !ssl && myconf="--with-openssl=/dev/null" - econf ${myconf} + econf \ + $(use_with ssl openssl) }