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 8F2B5138359 for ; Wed, 25 Nov 2020 07:50:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0351E086E; Wed, 25 Nov 2020 07:50:35 +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 B8E44E086E for ; Wed, 25 Nov 2020 07:50:35 +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 7BD10341060 for ; Wed, 25 Nov 2020 07:50:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2314F46F for ; Wed, 25 Nov 2020 07:50:31 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1606290619.2062cce1af1666298546b8c6b8cc39817095bef1.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/alembic/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/alembic/alembic-1.7.16.ebuild X-VCS-Directories: media-gfx/alembic/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2062cce1af1666298546b8c6b8cc39817095bef1 X-VCS-Branch: master Date: Wed, 25 Nov 2020 07:50:31 +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: a5b296fd-3c19-4002-8f85-966a24660312 X-Archives-Hash: b19e6c3ae0752a1df089aa3ccdb10edd commit: 2062cce1af1666298546b8c6b8cc39817095bef1 Author: Bernd Waibel gmail com> AuthorDate: Tue Nov 24 17:56:38 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Nov 25 07:50:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2062cce1 media-gfx/alembic: cleanup Remove unnecessary doc and prman USE flags. Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: Bernd Waibel gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18390 Signed-off-by: Joonas Niilola gentoo.org> media-gfx/alembic/alembic-1.7.16.ebuild | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/media-gfx/alembic/alembic-1.7.16.ebuild b/media-gfx/alembic/alembic-1.7.16.ebuild index 4167640a9e5..e7b7b255e52 100644 --- a/media-gfx/alembic/alembic-1.7.16.ebuild +++ b/media-gfx/alembic/alembic-1.7.16.ebuild @@ -12,7 +12,7 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="examples hdf5 prman test zlib" +IUSE="hdf5 test zlib" RESTRICT="!test? ( test )" REQUIRED_USE="hdf5? ( zlib )" @@ -39,21 +39,13 @@ src_configure() { -DALEMBIC_LIB_USES_TR1=OFF -DUSE_ARNOLD=OFF -DUSE_BINARIES=ON - -DUSE_EXAMPLES=$(usex examples) + -DUSE_EXAMPLES=OFF -DUSE_HDF5=$(usex hdf5) -DUSE_MAYA=OFF - -DUSE_PRMAN=$(usex prman) + -DUSE_PRMAN=OFF -DUSE_PYALEMBIC=OFF -DUSE_TESTS=$(usex test) ) cmake_src_configure } - -pkg_postinst() { - if use prman; then - einfo "If you're looking for an ebuild for renderman, you may want to" - einfo "try the waebbl overlay: 'eselect repository enable waebbl'" - einfo "followed by 'emerge renderman'" - fi -}