Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/glfw/
Date: Tue, 28 Dec 2021 17:10:39
Message-Id: 1640710811.f1e18668da015cede524cdee28e7b092e1c12917.ionen@gentoo
1 commit: f1e18668da015cede524cdee28e7b092e1c12917
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 28 14:33:08 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 28 17:00:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1e18668
7
8 media-libs/glfw: drop 3.3.4-r3
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 media-libs/glfw/Manifest | 1 -
13 media-libs/glfw/glfw-3.3.4-r3.ebuild | 52 ------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/media-libs/glfw/Manifest b/media-libs/glfw/Manifest
17 index f72333373d44..ea810533070b 100644
18 --- a/media-libs/glfw/Manifest
19 +++ b/media-libs/glfw/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST glfw-3.3.4.tar.gz 762885 BLAKE2B b88f80ec8cfb1607a8c5ce5e6eabfe5c9813235c6225629ef8001ba5f46cdbed1d726aeed170a8749bbd048f1517cb614f9fc5ad7604ae1698b83b5e995b8cd6 SHA512 2b45ab72da7a2c007c0f42ccd56205f9684cfb980e2b1df127850cd057bb2b02ce02c7c64acd54cd433778e7017148f214afedf09badff9d2edf5f9b8d9d2701
22 DIST glfw-3.3.5.tar.gz 776593 BLAKE2B ce92a42ef7361ae2580c9d6722d340106f9ca26e7fb436b9a4be2f25bf4a15d2b08d82ff71ad4ce4cd6a59e31d934d0fe6ab0e546474a3e7de38e229795ee0e8 SHA512 cbb8ebf25d3d826eb1daeff3ad2e0e965ce9def3352955f297743d918f625d96bc05bf87c90f7b57ec53376a0f2f6ce62f80b57fac4e81e023400de275e97beb
23 DIST glfw-3.3.6.tar.gz 776716 BLAKE2B 6bd3ef60e637e96dc71013ce8caada2ad0aba47eb72fd35a7b3060344f604f497ea87d17689723f4bd968098f9b3828c258f35cb3a6128d1a8b649c523dd3287 SHA512 4c295c5f4c02f6ede125fce67c52a97450f552f3985b664745bd8a836c1d6d69c04727c956fd26ec61f1e5fd9c074a28dcf6b1d1800f118444eef066f048b201
24
25 diff --git a/media-libs/glfw/glfw-3.3.4-r3.ebuild b/media-libs/glfw/glfw-3.3.4-r3.ebuild
26 deleted file mode 100644
27 index 73e3566ec70b..000000000000
28 --- a/media-libs/glfw/glfw-3.3.4-r3.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -CMAKE_ECLASS=cmake
37 -inherit cmake-multilib
38 -
39 -DESCRIPTION="Portable OpenGL FrameWork"
40 -HOMEPAGE="https://www.glfw.org/"
41 -SRC_URI="https://github.com/glfw/glfw/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="ZLIB"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc64 x86"
46 -IUSE="wayland-only"
47 -
48 -# note: libglfw uses dlopen() for most of these at runtime
49 -RDEPEND="
50 - x11-libs/libxkbcommon[${MULTILIB_USEDEP}]
51 - wayland-only? (
52 - dev-libs/wayland[${MULTILIB_USEDEP}]
53 - media-libs/mesa[egl(+),wayland,${MULTILIB_USEDEP}]
54 - )
55 - !wayland-only? (
56 - virtual/opengl[${MULTILIB_USEDEP}]
57 - x11-libs/libX11[${MULTILIB_USEDEP}]
58 - x11-libs/libXcursor[${MULTILIB_USEDEP}]
59 - x11-libs/libXinerama[${MULTILIB_USEDEP}]
60 - x11-libs/libXrandr[${MULTILIB_USEDEP}]
61 - x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
62 - )"
63 -DEPEND="
64 - ${RDEPEND}
65 - wayland-only? ( dev-libs/wayland-protocols )
66 - !wayland-only? (
67 - x11-base/xorg-proto
68 - x11-libs/libXi[${MULTILIB_USEDEP}]
69 - )"
70 -BDEPEND="
71 - wayland-only? (
72 - dev-util/wayland-scanner
73 - kde-frameworks/extra-cmake-modules
74 - )"
75 -
76 -src_configure() {
77 - local mycmakeargs=(
78 - -DGLFW_BUILD_EXAMPLES=no
79 - -DGLFW_USE_WAYLAND=$(usex wayland-only)
80 - )
81 - cmake-multilib_src_configure
82 -}