Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/uae/, app-emulation/uae/files/, profiles/
Date: Tue, 28 May 2019 13:28:25
Message-Id: 1559050083.0b897d78aa2c887fbc70f3b17259119b0c853ec4.mgorny@gentoo
1 commit: 0b897d78aa2c887fbc70f3b17259119b0c853ec4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 28 13:21:52 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 28 13:28:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b897d78
7
8 app-emulation/uae: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/432092
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-emulation/uae/Manifest | 1 -
14 app-emulation/uae/files/sdlgfx.h | 38 ----------
15 .../uae-0.8.25-allow_spaces_in_zip_filenames.diff | 18 -----
16 .../uae-0.8.25-struct_uae_wrong_fields_name.diff | 18 -----
17 .../uae/files/uae-0.8.26-uae_reset_args.diff | 86 ----------------------
18 .../uae/files/uae-0.8.26-underlinking.patch | 19 -----
19 app-emulation/uae/metadata.xml | 16 ----
20 app-emulation/uae/uae-0.8.29-r2.ebuild | 70 ------------------
21 profiles/package.mask | 5 --
22 9 files changed, 271 deletions(-)
23
24 diff --git a/app-emulation/uae/Manifest b/app-emulation/uae/Manifest
25 deleted file mode 100644
26 index 70007bff34c..00000000000
27 --- a/app-emulation/uae/Manifest
28 +++ /dev/null
29 @@ -1 +0,0 @@
30 -DIST uae-0.8.29.tar.bz2 925508 BLAKE2B 8e3c9d719ecfee863b299214837834715ab660d0ef32d99ae78125d6dc4e062d20f37b380fb2daa06019c8a6f9f176c3a2d9239dd85bc2597f253decc98192f8 SHA512 2b8f362f9ba7171cf9ce71938b0a4f22c5d90d518524d50023792f4dc9f75a1b1e17e55966926e1138801b4d9ffbc2f1ae4c4b5dfa42e98a8e6ec688adb84064
31
32 diff --git a/app-emulation/uae/files/sdlgfx.h b/app-emulation/uae/files/sdlgfx.h
33 deleted file mode 100644
34 index 30bee2ee402..00000000000
35 --- a/app-emulation/uae/files/sdlgfx.h
36 +++ /dev/null
37 @@ -1,38 +0,0 @@
38 -/*
39 - * UAE - The Un*x Amiga Emulator
40 - *
41 - * SDL graphics support
42 - *
43 - * Copyright 2004 Richard Drummond
44 - */
45 -
46 -/*
47 - * What graphics platform are we running on . . .?
48 - *
49 - * Yes, SDL is supposed to abstract away from the underlying
50 - * platform, but we need to know this to be able to map raw keys
51 - * and to work around any platform-specific quirks . . .
52 - */
53 -enum {
54 - SDLGFX_DRIVER_UNKNOWN,
55 - SDLGFX_DRIVER_X11,
56 - SDLGFX_DRIVER_DGA,
57 - SDLGFX_DRIVER_SVGALIB,
58 - SDLGFX_DRIVER_FBCON,
59 - SDLGFX_DRIVER_DIRECTFB,
60 - SDLGFX_DRIVER_QUARTZ,
61 - SDLGFX_DRIVER_BWINDOW,
62 - SDLGFX_DRIVER_CYBERGFX,
63 - SDLGFX_DRIVER_AMIGAOS4
64 -};
65 -
66 -extern int get_sdlgfx_type (void);
67 -
68 -/* keyboard support */
69 -struct uae_input_device_kbr_default *get_default_raw_keymap (int type);
70 -extern int keysym2amiga (int keycode);
71 -int modifier_hack (int *scancode, int *pressed);
72 -
73 -/* hotkey support */
74 -struct uae_hotkeyseq *get_default_cooked_hotkeys (void);
75 -struct uae_hotkeyseq *get_default_raw_hotkeys (void);
76
77 diff --git a/app-emulation/uae/files/uae-0.8.25-allow_spaces_in_zip_filenames.diff b/app-emulation/uae/files/uae-0.8.25-allow_spaces_in_zip_filenames.diff
78 deleted file mode 100644
79 index 629ae702c52..00000000000
80 --- a/app-emulation/uae/files/uae-0.8.25-allow_spaces_in_zip_filenames.diff
81 +++ /dev/null
82 @@ -1,18 +0,0 @@
83 -## 03_allow_spaces_in_zip_filenames.dpatch by Florian Ernst <florian@××××××.org>
84 -##
85 -## All lines beginning with `## DP:' are a description of the patch.
86 -## DP: Allow spaces in filenames for zipped files, bug#238678
87 -
88 -@DPATCH@
89 -diff -urNad uae-0.8.25~/src/zfile.c uae-0.8.25/src/zfile.c
90 ---- uae-0.8.25~/src/zfile.c 2005-07-01 17:53:26.000000000 +0200
91 -+++ uae-0.8.25/src/zfile.c 2005-11-08 01:17:59.000000000 +0100
92 -@@ -126,7 +126,7 @@
93 - if (!dst)
94 - return 1;
95 - #if defined AMIGA || defined __unix
96 -- sprintf (cmd, "unzip -p %s '*.adf' >%s", src, dst);
97 -+ sprintf (cmd, "unzip -p \"%s\" '*.adf' >%s", src, dst);
98 - return !system (cmd);
99 - #endif
100 - }
101
102 diff --git a/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff b/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff
103 deleted file mode 100644
104 index cd8d7e00cd8..00000000000
105 --- a/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff
106 +++ /dev/null
107 @@ -1,18 +0,0 @@
108 -Somewhere wrong (old) names are used in accessing the preferences structure.
109 -
110 -This is just a remainder for the upstream!!
111 -
112 -Antonio Ospite <ospite@××××××××××××××.it>
113 -
114 -diff -pruN uae-0.8.25/src/tui.c uae-0.8.25_patched/src/tui.c
115 ---- uae-0.8.25/src/tui.c 2006-06-07 17:45:55.000000000 +0200
116 -+++ uae-0.8.25_patched/src/tui.c 2006-06-07 17:55:39.000000000 +0200
117 -@@ -606,7 +606,7 @@ static void SoundOptions (void)
118 - currprefs.sound_freq = atoi (tmp);
119 - break;
120 - case 5:
121 -- currprefs.stereo = (currprefs.stereo + 1) % 3;
122 -+ currprefs.sound_stereo = (currprefs.sound_stereo + 1) % 3;
123 - break;
124 - }
125 - }
126
127 diff --git a/app-emulation/uae/files/uae-0.8.26-uae_reset_args.diff b/app-emulation/uae/files/uae-0.8.26-uae_reset_args.diff
128 deleted file mode 100644
129 index 3df99e4d2a4..00000000000
130 --- a/app-emulation/uae/files/uae-0.8.26-uae_reset_args.diff
131 +++ /dev/null
132 @@ -1,86 +0,0 @@
133 -diff -Naur uae-0.8.26.orig/src/ncurses.c uae-0.8.26/src/ncurses.c
134 ---- uae-0.8.26.orig/src/ncurses.c 2007-08-05 20:01:58.000000000 +0400
135 -+++ uae-0.8.26/src/ncurses.c 2007-08-12 18:36:33.000000000 +0400
136 -@@ -595,7 +595,7 @@
137 - if (ch == 16) --lastmy; /* ^P */
138 - if (ch == 11) {buttonstate[0] = keydelay;ch = 0;} /* ^K */
139 - if (ch == 25) {buttonstate[2] = keydelay;ch = 0;} /* ^Y */
140 -- if (ch == 15) uae_reset (); /* ^O */
141 -+ if (ch == 15) uae_reset (0); /* ^O */
142 - if (ch == 17) uae_quit (); /* ^Q */
143 - if (ch == KEY_F(1)) {
144 - curses_insert_disk();
145 -diff -Naur uae-0.8.26.orig/src/NeXTwin.m uae-0.8.26/src/NeXTwin.m
146 ---- uae-0.8.26.orig/src/NeXTwin.m 1997-10-18 17:39:04.000000000 +0400
147 -+++ uae-0.8.26/src/NeXTwin.m 2007-08-12 18:36:33.000000000 +0400
148 -@@ -86,7 +86,7 @@
149 - @implementation AmigaView
150 - -reset:sender
151 - {
152 -- uae_reset();
153 -+ uae_reset(0);
154 - //m68k_reset();
155 - return self;
156 - }
157 -diff -Naur uae-0.8.26.orig/src/od-beos/beos.cpp uae-0.8.26/src/od-beos/beos.cpp
158 ---- uae-0.8.26.orig/src/od-beos/beos.cpp 2001-02-19 23:59:11.000000000 +0300
159 -+++ uae-0.8.26/src/od-beos/beos.cpp 2007-08-12 18:36:33.000000000 +0400
160 -@@ -719,7 +719,7 @@
161 - uint32 mouse_buttons;
162 -
163 - if (reset_thyself) {
164 -- uae_reset();
165 -+ uae_reset(0);
166 - reset_thyself = false;
167 - }
168 -
169 -diff -Naur uae-0.8.26.orig/src/od-win32/keyboard.c uae-0.8.26/src/od-win32/keyboard.c
170 ---- uae-0.8.26.orig/src/od-win32/keyboard.c 2007-08-06 00:23:08.000000000 +0400
171 -+++ uae-0.8.26/src/od-win32/keyboard.c 2007-08-12 18:36:33.000000000 +0400
172 -@@ -488,8 +488,8 @@
173 - record_key ((akey << 1) + 1);
174 -
175 - /* "Affengriff" */
176 -- if( (keystate[AK_CTRL] || keystate[AK_RCTRL] ) && keystate[AK_LAMI] && keystate[AK_RAMI])uae_reset();
177 -- //if( (keystate[AK_CTRL] || keystate[AK_RCTRL] ) && keystate[AK_RAMI])uae_reset();
178 -+ if( (keystate[AK_CTRL] || keystate[AK_RCTRL] ) && keystate[AK_LAMI] && keystate[AK_RAMI])uae_reset(0);
179 -+ //if( (keystate[AK_CTRL] || keystate[AK_RCTRL] ) && keystate[AK_RAMI])uae_reset(0);
180 -
181 - return 0;
182 - }
183 -diff -Naur uae-0.8.26.orig/src/od-win32/win32gui.c uae-0.8.26/src/od-win32/win32gui.c
184 ---- uae-0.8.26.orig/src/od-win32/win32gui.c 2007-08-06 00:23:08.000000000 +0400
185 -+++ uae-0.8.26/src/od-win32/win32gui.c 2007-08-12 18:36:33.000000000 +0400
186 -@@ -2260,7 +2260,7 @@
187 - }
188 - break;
189 - case IDC_RESETAMIGA:
190 -- uae_reset();
191 -+ uae_reset(0);
192 - break;
193 - case IDC_QUITEMU:
194 - uae_quit();
195 -diff -Naur uae-0.8.26.orig/src/svga.c uae-0.8.26/src/svga.c
196 ---- uae-0.8.26.orig/src/svga.c 2007-08-05 20:01:58.000000000 +0400
197 -+++ uae-0.8.26/src/svga.c 2007-08-12 18:36:33.000000000 +0400
198 -@@ -438,7 +438,7 @@
199 -
200 - /* "Affengriff" */
201 - if ((keystate[AK_CTRL] || keystate[AK_RCTRL]) && keystate[AK_LAMI] && keystate[AK_RAMI])
202 -- uae_reset ();
203 -+ uae_reset (0);
204 - }
205 -
206 - static void leave_graphics_mode (void)
207 -diff -Naur uae-0.8.26.orig/src/tui.c uae-0.8.26/src/tui.c
208 ---- uae-0.8.26.orig/src/tui.c 2007-08-12 18:35:41.000000000 +0400
209 -+++ uae-0.8.26/src/tui.c 2007-08-12 18:36:33.000000000 +0400
210 -@@ -683,7 +683,7 @@
211 - case 0: DiskOptions (); break;
212 - case 1: OtherOptions (); break;
213 - case 2: save_settings (); break;
214 -- case 3: uae_reset (); break;
215 -+ case 3: uae_reset (0); break;
216 - case 4: uae_quit (); break;
217 - }
218 - }
219
220 diff --git a/app-emulation/uae/files/uae-0.8.26-underlinking.patch b/app-emulation/uae/files/uae-0.8.26-underlinking.patch
221 deleted file mode 100644
222 index 16bf5744826..00000000000
223 --- a/app-emulation/uae/files/uae-0.8.26-underlinking.patch
224 +++ /dev/null
225 @@ -1,19 +0,0 @@
226 ---- configure.in
227 -+++ configure.in
228 -@@ -81,6 +81,16 @@
229 - AC_CHECK_LIB(audio, alOpenPort, HAVE_SGIAUDIO_LIB=yes, HAVE_SGIAUDIO_LIB=no)
230 - AC_CHECK_LIB(asound, snd_pcm_open, HAVE_ALSA=yes, HAVE_ALSA=no)
231 -
232 -+dnl Check for libm for cos()
233 -+AC_SEARCH_LIBS([cos], [m], [], [
234 -+ AC_MSG_ERROR([unable to find the cos() function])
235 -+])
236 -+
237 -+dnl Check for libm for floor()
238 -+AC_SEARCH_LIBS([floor], [m], [], [
239 -+ AC_MSG_ERROR([unable to find the floor() function])
240 -+])
241 -+
242 - AC_PATH_XTRA
243 - AC_CONFIG_HEADER(src/sysconfig.h)
244 -
245
246 diff --git a/app-emulation/uae/metadata.xml b/app-emulation/uae/metadata.xml
247 deleted file mode 100644
248 index 86f65e79702..00000000000
249 --- a/app-emulation/uae/metadata.xml
250 +++ /dev/null
251 @@ -1,16 +0,0 @@
252 -<?xml version="1.0" encoding="UTF-8"?>
253 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
254 -<pkgmetadata>
255 - <!-- maintainer-needed -->
256 - <longdescription>
257 - UAE is a mostly complete software emulation of the hardware of the
258 - Commodore Amiga 500/1000/2000. A Commodore Amiga is a 16/32 bit computer
259 - system based on the Motorola 680x0 CPU and a few specially designed
260 - custom chips that provide very good graphics and sound capabilities. It's
261 - first incarnation, the A1000, appeared in 1985, followed by the highly
262 - successful A500 and A2000 models.
263 - </longdescription>
264 - <use>
265 - <flag name="scsi">Enable the uaescsi.device</flag>
266 - </use>
267 -</pkgmetadata>
268
269 diff --git a/app-emulation/uae/uae-0.8.29-r2.ebuild b/app-emulation/uae/uae-0.8.29-r2.ebuild
270 deleted file mode 100644
271 index 98485c01745..00000000000
272 --- a/app-emulation/uae/uae-0.8.29-r2.ebuild
273 +++ /dev/null
274 @@ -1,70 +0,0 @@
275 -# Copyright 1999-2015 Gentoo Foundation
276 -# Distributed under the terms of the GNU General Public License v2
277 -
278 -EAPI="5"
279 -
280 -inherit eutils autotools
281 -
282 -DESCRIPTION="The Umiquious Amiga Emulator"
283 -HOMEPAGE="http://www.amigaemulator.org/"
284 -SRC_URI="ftp://ftp.amigaemulator.org/pub/uae/sources/develop/${P}.tar.bz2"
285 -
286 -LICENSE="GPL-2"
287 -SLOT="0"
288 -KEYWORDS="~amd64 ~ppc ~x86"
289 -IUSE="sdl alsa scsi"
290 -
291 -DEPEND="sdl? ( media-libs/libsdl
292 - media-libs/sdl-gfx
293 - x11-libs/gtk+:2
294 - alsa? ( media-libs/alsa-lib )
295 - )
296 - !sdl? ( x11-libs/libXext
297 - x11-libs/gtk+:2
298 - )
299 - alsa? ( media-libs/alsa-lib )
300 - scsi? ( app-cdr/cdrtools )"
301 -RDEPEND="${DEPEND}"
302 -
303 -src_prepare() {
304 - epatch "${FILESDIR}"/${PN}-0.8.25-allow_spaces_in_zip_filenames.diff
305 - epatch "${FILESDIR}"/${PN}-0.8.25-struct_uae_wrong_fields_name.diff
306 - epatch "${FILESDIR}"/${PN}-0.8.26-uae_reset_args.diff
307 - epatch "${FILESDIR}"/${PN}-0.8.26-underlinking.patch
308 -
309 - cp "${FILESDIR}"/sdlgfx.h "${S}"/src || die
310 -
311 - eautoreconf
312 -}
313 -
314 -src_configure() {
315 - # disabling lots of options, cause many code-paths are broken, these should compile,
316 - # if you want/need other options, please test if they work with other combinations
317 - # before opening a bug
318 - econf --enable-ui --with-x --without-svgalib \
319 - --without-asciiart --without-sdl-sound --enable-threads \
320 - $(use_with sdl) $(use_with sdl sdl-gfx) \
321 - $(use_with alsa) \
322 - $(use_enable scsi scsi-device)
323 -}
324 -
325 -src_compile() {
326 - emake -j1
327 -}
328 -
329 -src_install() {
330 - dobin uae readdisk
331 - cp docs/unix/README docs/README.unix || die
332 - rm -r docs/{AmigaOS,BeOS,pOS,translated,unix} || die
333 - dodoc docs/*
334 -
335 - insinto /usr/share/uae/amiga-tools
336 - doins amiga/{*hack,trans*,uae*}
337 -}
338 -
339 -pkg_postinst() {
340 - elog
341 - elog "Upstream recommends using SDL graphics (with an environment variable)"
342 - elog "SDL_VIDEO_X11_XRANDR=1 for fullscreen support."
343 - echo
344 -}
345
346 diff --git a/profiles/package.mask b/profiles/package.mask
347 index 2f8a3f11082..d00171a09e9 100644
348 --- a/profiles/package.mask
349 +++ b/profiles/package.mask
350 @@ -410,11 +410,6 @@ dev-python/python-rethinkdb
351 # Removal in 30 days. Bug #650256, #673672.
352 sys-cluster/moosefs
353
354 -# James Le Cuirot <chewi@g.o> (20 Apr 2019)
355 -# Ancient and long dead upstream. Use app-emulation/fs-uae
356 -# instead. Removal in 30 days. Bug #432092.
357 -app-emulation/uae
358 -
359 # Miroslav Šulc <fordfrog@g.o> (19 Apr 2019)
360 # Depends on >=virtual/{jdk,jre}-11 which is masked
361 =www-servers/tomcat-9.0.19