commit: 8b7ca635312371229b0120cb666c811ee7d1697b Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Nov 10 21:38:19 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Mon Nov 10 21:43:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7ca635
sci-electronics/Stage: treeclean Closes: https://bugs.gentoo.org/958051 (pkgremoved) Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> profiles/package.mask | 5 --- sci-electronics/Stage/Manifest | 1 - sci-electronics/Stage/Stage-4.3.0-r2.ebuild | 30 -------------- sci-electronics/Stage/files/libdir.patch | 64 ----------------------------- sci-electronics/Stage/metadata.xml | 11 ----- 5 files changed, 111 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 9e090b02e840..5039b411bde3 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -81,11 +81,6 @@ media-radio/wsjtx # Bug #949899, #953384. Removal on 2025-11-11. games-puzzle/colorcode -# Andreas Sturmlechner <[email protected]> (2025-10-12) -# Dead upstream, broken with CMake-4, no one else packaging this anymore. -# Bug #958051. Removal on 2025-11-11. -sci-electronics/Stage - # Michał Górny <[email protected]> (2025-10-12) # Requires Rust with RUST_SYSROOTS=bpf, which isn't currently supported # by dev-lang/rust-bin. Also needs net-proxy/mitmproxy-linux updates. diff --git a/sci-electronics/Stage/Manifest b/sci-electronics/Stage/Manifest deleted file mode 100644 index 5c03e8484aa7..000000000000 --- a/sci-electronics/Stage/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST Stage-4.3.0.tar.gz 1039133 BLAKE2B 30a6083750b05f83884764ed5c56489df6e534af1ef4722212f3bd129180954321a111081e22916ec676d9e76e3f28cb6f5beb79d2290add76acef529d28d731 SHA512 37abf63c3a187dc2521c80d504aaef4b7eeef861cbbdce488a7d1c14e7e6eb6f84e010e014b1a3cb81f4ca9ccbebc564a32ffa7ba7b50458c50436216bd8250f diff --git a/sci-electronics/Stage/Stage-4.3.0-r2.ebuild b/sci-electronics/Stage/Stage-4.3.0-r2.ebuild deleted file mode 100644 index ebd4f211d37d..000000000000 --- a/sci-electronics/Stage/Stage-4.3.0-r2.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="The Stage Robot Simulator" -HOMEPAGE="http://rtv.github.io/Stage/" -SRC_URI="https://github.com/rtv/Stage/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/4.3" -KEYWORDS="~amd64" - -RDEPEND=" - dev-libs/libltdl:0 - media-libs/libpng:0= - virtual/zlib:= - x11-libs/fltk:1=[opengl] - virtual/glu - virtual/jpeg:0 - virtual/opengl -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/libdir.patch -) diff --git a/sci-electronics/Stage/files/libdir.patch b/sci-electronics/Stage/files/libdir.patch deleted file mode 100644 index c083a837b8b7..000000000000 --- a/sci-electronics/Stage/files/libdir.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 777430f083c4190fbc1beecfd4b619e63cf08dfb Mon Sep 17 00:00:00 2001 -From: Alexis Ballier <[email protected]> -Date: Tue, 2 May 2017 11:47:13 +0200 -Subject: [PATCH] Revert "Do not install to lib64, even on x86_64 machines" - -This reverts commit 9f6e9bae3c51480d7f4c1b329493bbe30bc21839. ---- - cmake/internal/FindOS.cmake | 36 ++++++++++++++++++------------------ - 1 file changed, 18 insertions(+), 18 deletions(-) - -diff --git a/cmake/internal/FindOS.cmake b/cmake/internal/FindOS.cmake -index 5666bbce..cec44912 100644 ---- a/cmake/internal/FindOS.cmake -+++ b/cmake/internal/FindOS.cmake -@@ -45,28 +45,28 @@ ELSE (PROJECT_OS_LINUX) - ENDIF (PROJECT_OS_LINUX) - - # 32 or 64 bit Linux --# IF (PROJECT_OS_LINUX) --# # Set the library directory suffix accordingly --# IF (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64") --# SET (PROJECT_PROC_64BIT TRUE BOOL INTERNAL) --# MESSAGE (STATUS "Linux x86_64 Detected") --# ELSEIF (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "ppc64") --# MESSAGE (STATUS "Linux ppc64 Detected") --# SET (PROJECT_PROC_64BIT TRUE BOOL INTERNAL) --# ELSEIF ($CMAKE_SYSTEM_PROCESSOR} STREQUAL "s390x") --# MESSAGE (STATEUS "Linux s390x Detected") --# SET (PROJECT_PROC_64BIT TRUE BOOL INTERNAL) --# ENDIF (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64") --# ENDIF (PROJECT_OS_LINUX) -+IF (PROJECT_OS_LINUX) -+ # Set the library directory suffix accordingly -+ IF (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64") -+ SET (PROJECT_PROC_64BIT TRUE BOOL INTERNAL) -+ MESSAGE (STATUS "Linux x86_64 Detected") -+ ELSEIF (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "ppc64") -+ MESSAGE (STATUS "Linux ppc64 Detected") -+ SET (PROJECT_PROC_64BIT TRUE BOOL INTERNAL) -+ ELSEIF ($CMAKE_SYSTEM_PROCESSOR} STREQUAL "s390x") -+ MESSAGE (STATEUS "Linux s390x Detected") -+ SET (PROJECT_PROC_64BIT TRUE BOOL INTERNAL) -+ ENDIF (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64") -+ENDIF (PROJECT_OS_LINUX) - --# IF(PROJECT_PROC_64BIT) -+IF(PROJECT_PROC_64BIT) - # Set the install path to lib64 -- # SET(PROJECT_LIB_DIR "lib64") -- # SET(PROJECT_PLUGIN_DIR "lib64/${PROJECT_NAME}-${APIVERSION}") --# ELSE (PROJECT_PROC_64BIT) -+ SET(PROJECT_LIB_DIR "lib64") -+ SET(PROJECT_PLUGIN_DIR "lib64/${PROJECT_NAME}-${APIVERSION}") -+ELSE (PROJECT_PROC_64BIT) - SET(PROJECT_LIB_DIR "lib") - SET(PROJECT_PLUGIN_DIR "lib/${PROJECT_NAME}-${APIVERSION}") --# ENDIF (PROJECT_PROC_64BIT) -+ENDIF (PROJECT_PROC_64BIT) - - MESSAGE(STATUS "Installing Libraries to ${CMAKE_INSTALL_PREFIX}/${PROJECT_LIB_DIR}") - MESSAGE(STATUS "Installing Plugins to ${CMAKE_INSTALL_PREFIX}/${PROJECT_PLUGIN_DIR}") --- -2.12.2 - diff --git a/sci-electronics/Stage/metadata.xml b/sci-electronics/Stage/metadata.xml deleted file mode 100644 index 7fb8497fed0a..000000000000 --- a/sci-electronics/Stage/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>[email protected]</email> - <name>Alexis Ballier</name> - </maintainer> - <upstream> - <remote-id type="github">rtv/Stage</remote-id> - </upstream> -</pkgmetadata>
