Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/alembic/
Date: Fri, 03 Jan 2020 19:08:17
Message-Id: 1578077956.96a214b1fd9c4daeefadaadcd452b9741167a30c.asturm@gentoo
1 commit: 96a214b1fd9c4daeefadaadcd452b9741167a30c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 3 18:59:16 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 3 18:59:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a214b1
7
8 media-gfx/alembic: Switch to cmake.eclass
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-gfx/alembic/alembic-1.7.11.ebuild | 12 ++++++------
14 1 file changed, 6 insertions(+), 6 deletions(-)
15
16 diff --git a/media-gfx/alembic/alembic-1.7.11.ebuild b/media-gfx/alembic/alembic-1.7.11.ebuild
17 index a306c9ea3d7..eaf86523653 100644
18 --- a/media-gfx/alembic/alembic-1.7.11.ebuild
19 +++ b/media-gfx/alembic/alembic-1.7.11.ebuild
20 @@ -1,11 +1,11 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 PYTHON_COMPAT=( python2_7 )
28
29 -inherit cmake-utils multiprocessing python-single-r1
30 +inherit cmake multiprocessing python-single-r1
31
32 DESCRIPTION="Open framework for storing and sharing scene data"
33 HOMEPAGE="https://www.alembic.io/"
34 @@ -50,7 +50,7 @@ PATCHES=(
35 )
36
37 src_prepare() {
38 - cmake-utils_src_prepare
39 + cmake_src_prepare
40 if use doc; then
41 doxygen -u Doxyfile || die "Failed to update Doxyfile"
42 sed -i -e 's|DOT_NUM_THREADS[ \t]*= 0|DOT_NUM_THREADS = '$(makeopts_jobs)'|' Doxyfile || die "Failed to change dot threads"
43 @@ -73,11 +73,11 @@ src_configure() {
44 -DUSE_PYALEMBIC=$(usex python)
45 -DUSE_TESTS=$(usex test)
46 )
47 - cmake-utils_src_configure
48 + cmake_src_configure
49 }
50
51 src_compile() {
52 - cmake-utils_src_compile
53 + cmake_src_compile
54 if use doc; then
55 doxygen Doxyfile || die "Failed to build documentation"
56 fi
57 @@ -85,7 +85,7 @@ src_compile() {
58
59 src_install() {
60 use doc && local HTML_DOCS=( doc/html/. )
61 - cmake-utils_src_install
62 + cmake_src_install
63 }
64
65 pkg_postinst() {