Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, x11-libs/mx/files/, x11-libs/mx/
Date: Mon, 04 Oct 2021 11:05:46
Message-Id: 1633345530.ff85fca348b238de44cc3464e3536346e019bc1e.asturm@gentoo
1 commit: ff85fca348b238de44cc3464e3536346e019bc1e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 11:04:31 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 11:05:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff85fca3
7
8 x11-libs/mx: Remove last-rited package
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 profiles/package.mask | 4 ---
13 x11-libs/mx/Manifest | 1 -
14 x11-libs/mx/files/mx-1.4.7-gl-types.patch | 53 ----------------------------
15 x11-libs/mx/metadata.xml | 11 ------
16 x11-libs/mx/mx-1.4.7-r2.ebuild | 57 -------------------------------
17 5 files changed, 126 deletions(-)
18
19 diff --git a/profiles/package.mask b/profiles/package.mask
20 index 4222c0fc0c4..cce8b5bb87b 100644
21 --- a/profiles/package.mask
22 +++ b/profiles/package.mask
23 @@ -307,10 +307,6 @@ net-libs/gsnmp
24 # Bug 644344; Removal on 2021-10-07.
25 net-analyzer/scli
26
27 -# Andreas Sturmlechner <asturm@g.o> (2021-09-04)
28 -# EAPI-5, dead, unused, bug 808213; Removal on 2021-10-04.
29 -x11-libs/mx
30 -
31 # David Seifert <soap@g.o> (2021-09-04)
32 # Last upstream release over 2.5 years ago, removed by Fedora,
33 # unresponsive maintainer in Gentoo, broken with linux-headers-5.13,
34
35 diff --git a/x11-libs/mx/Manifest b/x11-libs/mx/Manifest
36 deleted file mode 100644
37 index 64d8ec2d3af..00000000000
38 --- a/x11-libs/mx/Manifest
39 +++ /dev/null
40 @@ -1 +0,0 @@
41 -DIST mx-1.4.7.tar.xz 939672 BLAKE2B 3f55018c6d282af95b80852748a6baa7a56ea1ea69e1b3740b6d936633818f3b18124f1bec2d5bc51596df75a5633d355362d1d22549c5a7e490e053fcca2bae SHA512 6870898548c947d43947ea6ded7c06d01d18aa721c81927fabf3ee0cfe20f65739e927d32277acce5c2e13968502828e29e043f9a8cf31af8f2bc20ec1ad0349
42
43 diff --git a/x11-libs/mx/files/mx-1.4.7-gl-types.patch b/x11-libs/mx/files/mx-1.4.7-gl-types.patch
44 deleted file mode 100644
45 index 85c691378d8..00000000000
46 --- a/x11-libs/mx/files/mx-1.4.7-gl-types.patch
47 +++ /dev/null
48 @@ -1,53 +0,0 @@
49 -From 297b654133436c6ee5146fce31529da4e52dfe74 Mon Sep 17 00:00:00 2001
50 -From: Brian Pepple <bpepple@×××××××××××××.org>
51 -Date: Sat, 25 Aug 2012 17:41:59 -0400
52 -Subject: [PATCH] Replace GL data types with equivalent glib types.
53 -
54 ----
55 - mx/mx-deform-texture.c | 8 ++++----
56 - mx/mx-texture-frame.c | 2 +-
57 - 2 files changed, 5 insertions(+), 5 deletions(-)
58 -
59 -diff --git a/mx/mx-deform-texture.c b/mx/mx-deform-texture.c
60 -index 93c54d7..466cc9f 100644
61 ---- a/mx/mx-deform-texture.c
62 -+++ b/mx/mx-deform-texture.c
63 -@@ -493,9 +493,9 @@ mx_deform_texture_class_init (MxDeformTextureClass *klass)
64 - static void
65 - mx_deform_texture_init_arrays (MxDeformTexture *self)
66 - {
67 -- GLushort *idx, *bf_idx;
68 -+ gushort *idx, *bf_idx;
69 - gint x, y, direction;
70 -- GLushort *static_indices, *static_bf_indices;
71 -+ gushort *static_indices, *static_bf_indices;
72 - MxDeformTexturePrivate *priv = self->priv;
73 -
74 - mx_deform_texture_free_arrays (self);
75 -@@ -503,8 +503,8 @@ mx_deform_texture_init_arrays (MxDeformTexture *self)
76 - priv->n_indices = (2 + 2 * priv->tiles_x) *
77 - priv->tiles_y +
78 - (priv->tiles_y - 1);
79 -- static_indices = g_new (GLushort, priv->n_indices);
80 -- static_bf_indices = g_new (GLushort, priv->n_indices);
81 -+ static_indices = g_new (gushort, priv->n_indices);
82 -+ static_bf_indices = g_new (gushort, priv->n_indices);
83 -
84 - #define MESH_INDEX(X, Y) (Y) * (priv->tiles_x + 1) + (X)
85 -
86 -diff --git a/mx/mx-texture-frame.c b/mx/mx-texture-frame.c
87 -index bde57ff..a88985f 100644
88 ---- a/mx/mx-texture-frame.c
89 -+++ b/mx/mx-texture-frame.c
90 -@@ -200,7 +200,7 @@ mx_texture_frame_paint (ClutterActor *self)
91 -
92 -
93 - {
94 -- GLfloat rectangles[] =
95 -+ gfloat rectangles[] =
96 - {
97 - /* top left corner */
98 - 0, 0,
99 ---
100 -1.7.12
101 -
102
103 diff --git a/x11-libs/mx/metadata.xml b/x11-libs/mx/metadata.xml
104 deleted file mode 100644
105 index 64496ad22c4..00000000000
106 --- a/x11-libs/mx/metadata.xml
107 +++ /dev/null
108 @@ -1,11 +0,0 @@
109 -<?xml version="1.0" encoding="UTF-8"?>
110 -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
111 -<pkgmetadata>
112 - <maintainer type="project">
113 - <email>gnome@g.o</email>
114 - <name>Gentoo GNOME Desktop</name>
115 - </maintainer>
116 - <upstream>
117 - <remote-id type="github">clutter-project/mx</remote-id>
118 - </upstream>
119 -</pkgmetadata>
120
121 diff --git a/x11-libs/mx/mx-1.4.7-r2.ebuild b/x11-libs/mx/mx-1.4.7-r2.ebuild
122 deleted file mode 100644
123 index 5a85ae7c71a..00000000000
124 --- a/x11-libs/mx/mx-1.4.7-r2.ebuild
125 +++ /dev/null
126 @@ -1,57 +0,0 @@
127 -# Copyright 1999-2021 Gentoo Authors
128 -# Distributed under the terms of the GNU General Public License v2
129 -
130 -EAPI=5
131 -GCONF_DEBUG="yes"
132 -
133 -inherit gnome2 epatch
134 -
135 -DESCRIPTION="A widget toolkit using Clutter"
136 -HOMEPAGE="http://clutter-project.org/"
137 -SRC_URI="https://github.com/downloads/clutter-project/${PN}/${P}.tar.xz"
138 -
139 -LICENSE="LGPL-2.1"
140 -SLOT="1.0"
141 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
142 -IUSE="dbus +gtk +introspection startup-notification"
143 -
144 -RDEPEND="
145 - >=dev-libs/glib-2.28.0:2
146 - >=media-libs/clutter-1.7.91:1.0
147 - media-libs/cogl:=
148 - >=x11-apps/xrandr-1.2.0
149 -
150 - x11-libs/gdk-pixbuf:2[introspection?]
151 -
152 - dbus? ( >=dev-libs/dbus-glib-0.82 )
153 - gtk? ( >=x11-libs/gtk+-2.20:2[introspection?] )
154 - introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
155 - startup-notification? ( >=x11-libs/startup-notification-0.9 )
156 -"
157 -DEPEND="${RDEPEND}
158 - dev-util/glib-utils
159 - >=dev-util/gtk-doc-am-1.14
160 - >=dev-util/intltool-0.35.0
161 - sys-devel/gettext
162 - virtual/pkgconfig
163 -"
164 -
165 -src_prepare() {
166 - # Tests are interactive, no use for us
167 - sed -e 's/^\(SUBDIRS .*\)tests\(.*\)/\1 \2/g' \
168 - -i Makefile.am -i Makefile.in || die
169 - # In 1.4.8
170 - epatch "${FILESDIR}/${P}-gl-types.patch"
171 -
172 - gnome2_src_prepare
173 -}
174 -
175 -src_configure() {
176 - gnome2_src_configure \
177 - --with-winsys=x11 \
178 - --without-glade \
179 - $(use_enable gtk gtk-widgets) \
180 - $(use_enable introspection) \
181 - $(use_with dbus) \
182 - $(use_with startup-notification)
183 -}