commit:     33fe92d2784e1358e35ac07630b70aefb127c0d0
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 16 11:32:30 2025 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Apr 16 12:07:41 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33fe92d2

app-emulation/ruffle: drop 0_p20241129

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 app-emulation/ruffle/Manifest                  |   2 -
 app-emulation/ruffle/ruffle-0_p20241129.ebuild | 104 -------------------------
 2 files changed, 106 deletions(-)

diff --git a/app-emulation/ruffle/Manifest b/app-emulation/ruffle/Manifest
index 09467cbd5bc9..fc85aa8a37d7 100644
--- a/app-emulation/ruffle/Manifest
+++ b/app-emulation/ruffle/Manifest
@@ -1,4 +1,2 @@
-DIST ruffle-nightly-2024-11-29-vendor.tar.xz 67239116 BLAKE2B 
d2eaaf7c7528207a1fabc67cd52bab37442e4c09a740842840f3e44a0d79c826f17b1014e30fcbb07b9e6346c48d4a92439c209b7f54ddc1897cb4166546a295
 SHA512 
fbf8589d2c9b21b1cb6e93963e8350fad77854e351538ac8155f16bbc16f0ecb1680f7ac7066d14e7fffefa5ead217acc8b8a9319ded891abdeffd5890797776
-DIST ruffle-nightly-2024-11-29.tar.gz 94965476 BLAKE2B 
9440808ebc0f2db33df06f45eaf6b089b56b6ce604537c522ba57bb2e7e6ada4f334fa4e483547af9b203c4047566d88d88dbca93c6ab2dd8d1a5ced20bc6cdb
 SHA512 
380da319ee84bddc9f12d472516471a18177f748b4072d1853e3aa9d6311226230cf5e38ac4b30041507f836ff620c04aa69e6e45407571d752baf77ac7ea42a
 DIST ruffle-nightly-2025-01-24-vendor.tar.xz 67182584 BLAKE2B 
0927c7d181f86bb152ef1224efdebc88152b2966a24d11e7434a6b3aff472c8ea47164c9f61f3554561de78bb9a7a9c60648c994fc9feeb03903a72ccd3f8620
 SHA512 
9cbb5edb8bd7ba8d2a6dccbce20dd8026b3f6f7d47131292e7f55cc3fee7154189b9749b2142d32eaa879b18461c698317dd9b36f808482f656acb9f1dd8253f
 DIST ruffle-nightly-2025-01-24.tar.gz 95156736 BLAKE2B 
7d66931308ab93c0e5cb95727297fbbf03406840c4b793033d277ebfa0c5f8a28e627439736fed4bdc537b3363b691da8efc4b1b3f653a9aa31b741dc0746f56
 SHA512 
b958e9b685ae529a33253a536fb67030ff0cc1bd78967bbefc5146eced710650f277c32ad37d1f4cd6ce1c43b9be6ad28f51b46ce14afe0644137065a7ef0215

diff --git a/app-emulation/ruffle/ruffle-0_p20241129.ebuild 
b/app-emulation/ruffle/ruffle-0_p20241129.ebuild
deleted file mode 100644
index ea019d6c5b1a..000000000000
--- a/app-emulation/ruffle/ruffle-0_p20241129.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-RUST_MIN_VER=1.81.0
-inherit cargo desktop optfeature xdg
-
-MY_PV=nightly-${PV:3:4}-${PV:7:2}-${PV:9:2}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Flash Player emulator written in Rust"
-HOMEPAGE="https://ruffle.rs/";
-SRC_URI="
-       https://github.com/ruffle-rs/ruffle/archive/refs/tags/${MY_PV}.tar.gz
-               -> ${MY_P}.tar.gz
-       https://dev.gentoo.org/~ionen/distfiles/${MY_P}-vendor.tar.xz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="|| ( Apache-2.0 MIT )"
-LICENSE+="
-       Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC UbuntuFontLicense-1.0 MIT
-       MPL-2.0 OFL-1.1 openssl Unicode-3.0 Unicode-DFS-2016 ZLIB
-" # crates
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# dlopen: libX* (see winit+x11-dl crates -- TODO: need to recheck
-# if still correct and for the potential to be optional on wayland)
-RDEPEND="
-       media-libs/alsa-lib
-       virtual/libudev:=
-       x11-libs/libX11
-       x11-libs/libXcursor
-       x11-libs/libXrandr
-       x11-libs/libXrender
-"
-DEPEND="
-       ${RDEPEND}
-       x11-base/xorg-proto
-"
-BDEPEND="
-       virtual/jre:*
-       virtual/pkgconfig
-"
-
-QA_FLAGS_IGNORED="usr/bin/${PN}.*"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0_p20231216-skip-render-tests.patch
-)
-
-src_configure() {
-       local workspaces=(
-               ruffle_{desktop,scanner}
-               exporter
-               $(usev test tests)
-       )
-
-       cargo_src_configure "${workspaces[@]/#/--package=}"
-}
-
-src_test() {
-       local skip=(
-               # may need more investigation, strangely "pass" (xfail) when
-               # RUSTFLAGS is unset, skip for now (bug #915726)
-               --skip from_avmplus/as3/Types/Int/wraparound
-       )
-
-       cargo_src_test -- "${skip[@]}"
-}
-
-src_install() {
-       dodoc README.md
-
-       newicon web/packages/extension/assets/images/icon180.png ${PN}.png
-       make_desktop_entry ${PN} ${PN^} ${PN} "AudioVideo;Player;Emulator;" \
-               
"MimeType=application/x-shockwave-flash;application/vnd.adobe.flash.movie;"
-
-       cd "$(cargo_target_dir)" || die
-       newbin ${PN}_desktop ${PN}
-       newbin exporter ${PN}_exporter
-       dobin ${PN}_scanner
-}
-
-pkg_postinst() {
-       xdg_pkg_postinst
-
-       if [[ ! ${REPLACING_VERSIONS} ]]; then
-               elog "${PN} is experimental software that is still under heavy 
development"
-               elog "and only receiving nightly releases. Plans in Gentoo is 
to update"
-               elog "roughly every months if no known major regressions (feel 
free to"
-               elog "report if you feel a newer nightly is needed ahead of 
time)."
-               elog
-               elog "There is currently no plans to support wasm builds / 
browser"
-               elog "extensions, this provides the desktop viewer and other 
tools."
-       fi
-
-       optfeature "h264 video decoding" media-libs/openh264
-       optfeature "the in-application file picker" sys-apps/xdg-desktop-portal
-}

Reply via email to