Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ilmbase/
Date: Sat, 27 Feb 2021 16:38:43
Message-Id: 1614443836.bd7c54d06cb7f8df3ffb67e2f50290f3cb3f70c9.sam@gentoo
1 commit: bd7c54d06cb7f8df3ffb67e2f50290f3cb3f70c9
2 Author: Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
3 AuthorDate: Sat Feb 27 14:27:06 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 16:37:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd7c54d0
7
8 media-libs/ilmbase: drop 2.5.4
9
10 Security cleanup. See #770229
11
12 Package-Manager: Portage-3.0.15, Repoman-3.0.2
13 Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
14 Closes: https://github.com/gentoo/gentoo/pull/19684
15 Signed-off-by: Sam James <sam <AT> gentoo.org>
16
17 media-libs/ilmbase/Manifest | 1 -
18 media-libs/ilmbase/ilmbase-2.5.4.ebuild | 42 ---------------------------------
19 2 files changed, 43 deletions(-)
20
21 diff --git a/media-libs/ilmbase/Manifest b/media-libs/ilmbase/Manifest
22 index 823211ab083..ea176ee0222 100644
23 --- a/media-libs/ilmbase/Manifest
24 +++ b/media-libs/ilmbase/Manifest
25 @@ -1,3 +1,2 @@
26 DIST ilmbase-2.3.0.tar.gz 595490 BLAKE2B db956fe7dbabf94632eb98635f4ebda8e937f26e26ed69f33743069fa2bf6d5ed3711f00eb33377c98b4f8ea367bbfc51b11d4cb884ce02238b537857cc19a9c SHA512 db0804a7c37c2a97f9dbf81b20f40f7fdea73242baa2759d9dc3728e6849e7ecae0e178fa1c710add980d050499151650675e4b2cda6cbbaa61aca406a1f929a
27 -DIST ilmbase-2.5.4.tar.gz 27535491 BLAKE2B 8951383d31ceea49202e3b77999d71c261bc9a17433fb65debd446aefd62cc1f6776a4b37fb1161196135a8883a397a94496a2295a2e0d22bc43c59e2ad0eaa5 SHA512 f0fe305987981e0c7e5a854367702585e4935ad37b0e8c10dcbc7468ae3a6d34bf963ec9ec75cc3abe4cf00e359644476b643978d0289dca46c9785a25d3f7f1
28 DIST ilmbase-2.5.5.tar.gz 27536865 BLAKE2B d0c0b2fd39b2cfafb60b6d0de3960063ff62341cf22be519f874c0c83f05cb604c5d503bb8b88514c71c5a54a79afa80a7fd00c2df15ec2193f6b3cffdc117c6 SHA512 e511af26a8fe2175a641fd25d2dcc6ef807e00bee2aff06a4784125f916ffd47fe376fe0621d385b604180a239bbfee063f8ceee3f7b731fde3c38558e9fdcdf
29
30 diff --git a/media-libs/ilmbase/ilmbase-2.5.4.ebuild b/media-libs/ilmbase/ilmbase-2.5.4.ebuild
31 deleted file mode 100644
32 index f840cd379ff..00000000000
33 --- a/media-libs/ilmbase/ilmbase-2.5.4.ebuild
34 +++ /dev/null
35 @@ -1,42 +0,0 @@
36 -# Copyright 1999-2021 Gentoo Authors
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=7
40 -
41 -CMAKE_ECLASS=cmake
42 -inherit cmake-multilib flag-o-matic
43 -
44 -DESCRIPTION="OpenEXR ILM Base libraries"
45 -HOMEPAGE="https://www.openexr.com/"
46 -SRC_URI="https://github.com/AcademySoftwareFoundation/openexr/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="BSD"
49 -SLOT="0/25" # based on SONAME
50 -KEYWORDS="~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
51 -IUSE="large-stack static-libs test"
52 -RESTRICT="!test? ( test )"
53 -
54 -BDEPEND="virtual/pkgconfig"
55 -
56 -S="${WORKDIR}/openexr-${PV}/IlmBase"
57 -
58 -DOCS=( README.md )
59 -
60 -src_prepare() {
61 - if use abi_x86_32; then
62 - eapply "${FILESDIR}"/${P}-0001-disable-failing-test-on-x86_32.patch
63 - fi
64 -
65 - multilib_foreach_abi cmake_src_prepare
66 -}
67 -
68 -multilib_src_configure() {
69 - local mycmakeargs=(
70 - -DBUILD_TESTING=$(usex test)
71 - -DILMBASE_BUILD_BOTH_STATIC_SHARED=$(usex static-libs)
72 - -DILMBASE_ENABLE_LARGE_STACK=$(usex large-stack)
73 - -DILMBASE_INSTALL_PKG_CONFIG=ON
74 - )
75 -
76 - cmake_src_configure
77 -}