public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/alembic/
Date: Tue, 15 Jun 2021 14:42:33 +0000 (UTC)	[thread overview]
Message-ID: <1623768022.5306f30b1597a6ee8afa33aeecdee3b0671afc0a.sam@gentoo> (raw)

commit:     5306f30b1597a6ee8afa33aeecdee3b0671afc0a
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Mon Jun 14 20:51:46 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 14:40:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5306f30b

media-gfx/alembic: bump to 1.8.2

Closes: https://bugs.gentoo.org/796002
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/21243
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/alembic/Manifest             |  1 +
 media-gfx/alembic/alembic-1.8.2.ebuild | 54 ++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/alembic/Manifest b/media-gfx/alembic/Manifest
index 2ac6f7b5dac..8ebc2beb436 100644
--- a/media-gfx/alembic/Manifest
+++ b/media-gfx/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.8.0.tar.gz 860886 BLAKE2B eccb1c74e90094a9b473ecb66260714a519110c20b18248c4fc5ecff5edf2b424b303764f80ee76333e588e85a92499d75a8104b972ccd142cc26532fd89df30 SHA512 23fc881863741f7fd081342f5c53c1ec3d00ab300ba8cd10e4a659ee820a9ed1244cf7cf2fd40482f6be32b9d7df44128363246e942bd03c802f3a2a81533b57
 DIST alembic-1.8.1.tar.gz 861482 BLAKE2B fd23e6b080dbfd689fe0d63e1cf815cd26dda0624181b4b536e81a59c497d4f22481db1206d8fb140734d90a24f06f2892b6fbd9c57cb81c5fa2d700f3bd4aab SHA512 895493f36c895aef0675e1300ee3bbbf1b8819b4978b842c48810078e51219423500f74014eafe357a318a755ffa8c5c17c2c806b4216bab6cd334908bf684a4
+DIST alembic-1.8.2.tar.gz 861796 BLAKE2B 9ea2dea33b3116331dd02802055e8db7faa736bc2674e6b30209a9e178877523d9f14516b35729eaf6fc348b89367e9830ca1b998a8c7d10766b9b2f265b97d8 SHA512 23fec3d51cfd8ac8bc02749550de53a7b699ebe67654336864a8208a6a1d4f69e8e1a2c8e07832665c203788cbabbb65f346582741bac10ceb0d56c16d6b4217

diff --git a/media-gfx/alembic/alembic-1.8.2.ebuild b/media-gfx/alembic/alembic-1.8.2.ebuild
new file mode 100644
index 00000000000..d6553f86e84
--- /dev/null
+++ b/media-gfx/alembic/alembic-1.8.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Open framework for storing and sharing scene data"
+HOMEPAGE="https://www.alembic.io/"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+# either pyilmbase or imath need to be keyworded for arm{,64} to re-add
+# python / pyalembic support
+IUSE="examples hdf5 test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	|| (
+		>=dev-libs/imath-3.0.1
+		>=media-libs/ilmbase-2.5.5
+	)
+	hdf5? (
+		>=sci-libs/hdf5-1.10.2:=[zlib(+)]
+		>=sys-libs/zlib-1.2.11-r1
+	)
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-1.8.0-0001-set-correct-libdir.patch" )
+
+DOCS=( ACKNOWLEDGEMENTS.txt FEEDBACK.txt NEWS.txt README.txt )
+
+src_configure() {
+	local mycmakeargs=(
+		-DALEMBIC_BUILD_LIBS=ON
+		-DALEMBIC_SHARED_LIBS=ON
+		# currently does nothing but require doxygen
+		-DDOCS_PATH=OFF
+		-DUSE_ARNOLD=OFF
+		-DUSE_BINARIES=ON
+		-DUSE_EXAMPLES=$(usex examples)
+		-DUSE_HDF5=$(usex hdf5)
+		-DUSE_MAYA=OFF
+		-DUSE_PRMAN=OFF
+		# TODO: needs imath keyworded for arm{,64}
+		-DUSE_PYALEMBIC=OFF
+		-DUSE_TESTS=$(usex test)
+	)
+
+	cmake_src_configure
+}


             reply	other threads:[~2021-06-15 14:42 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-15 14:42 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-01 16:59 [gentoo-commits] repo/gentoo:master commit in: media-gfx/alembic/ Sam James
2025-02-19 20:22 Michał Górny
2025-01-06  1:00 Sam James
2025-01-05 20:35 Sam James
2025-01-05 20:35 Sam James
2024-06-11 20:35 Sam James
2024-06-04  7:13 Sam James
2024-04-09 15:54 Arthur Zamarin
2024-01-10 12:33 Sam James
2024-01-10 12:33 Sam James
2023-05-26 14:38 Sam James
2023-04-11  5:38 Viorel Munteanu
2023-03-05 11:19 Sam James
2023-01-11  7:55 Sam James
2022-11-25  8:23 Joonas Niilola
2022-03-16 15:54 Joonas Niilola
2022-03-16 15:54 Joonas Niilola
2022-02-28  5:21 Sam James
2022-02-12 15:01 Sam James
2021-11-21  7:07 Jakov Smolić
2021-10-20  2:42 Sam James
2021-07-20 19:01 Ionen Wolkens
2021-07-19 18:36 Sam James
2021-07-19  7:47 Joonas Niilola
2021-06-09 21:08 Sam James
2021-06-09  6:18 Joonas Niilola
2021-06-09  6:08 Joonas Niilola
2021-06-09  6:08 Joonas Niilola
2021-03-05 18:39 Sam James
2021-02-22  7:12 Sam James
2021-02-07 17:07 Conrad Kostecki
2021-02-01 13:33 Sam James
2021-01-24 22:14 Sam James
2020-11-25  7:50 Joonas Niilola
2020-11-24 13:26 Joonas Niilola
2020-11-24 13:26 Joonas Niilola
2020-11-08 10:29 Sam James
2020-08-22  9:15 Michał Górny
2020-08-22  8:04 Michał Górny
2020-06-08 16:47 Joonas Niilola
2020-06-08 16:47 Joonas Niilola
2020-02-09 16:29 Michał Górny
2020-01-03 19:08 Andreas Sturmlechner
2018-05-20  0:29 Aaron Bauman
2018-01-26 21:22 Patrice Clement

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1623768022.5306f30b1597a6ee8afa33aeecdee3b0671afc0a.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox