commit:     131cd8fd015bdd298ed707041951de81f99aea6b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 15 21:31:29 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jun 29 18:56:47 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=131cd8fd

x11-misc/spnavcfg: drop 1.1, 1.2, 1.2-r1

Closes: https://bugs.gentoo.org/947620
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 x11-misc/spnavcfg/Manifest                         |  2 -
 .../spnavcfg/files/spnavcfg-1.1-makefile.patch     | 23 ----------
 x11-misc/spnavcfg/spnavcfg-1.1.ebuild              | 48 --------------------
 x11-misc/spnavcfg/spnavcfg-1.2-r1.ebuild           | 51 ----------------------
 x11-misc/spnavcfg/spnavcfg-1.2.ebuild              | 43 ------------------
 5 files changed, 167 deletions(-)

diff --git a/x11-misc/spnavcfg/Manifest b/x11-misc/spnavcfg/Manifest
index 6cd28b5fe90e..7e816920ff23 100644
--- a/x11-misc/spnavcfg/Manifest
+++ b/x11-misc/spnavcfg/Manifest
@@ -1,3 +1 @@
-DIST spnavcfg-1.1.tar.gz 497896 BLAKE2B 
874489904970182f6f56d0a7bd63cc3847f101729b2c6866677fc0c17fab4bad42132ac0f93a39ef9a35654acde8ef6cd42a462756dd7f0c3914424a5fc54dd2
 SHA512 
4d5c9dc37d1906dbc99535a758554d9419e20ad773adcf2d2062795a8e194a88b68c360341a08e3ac236df08a2e389c4475f341b5bac662a4526dada0bb891a6
-DIST spnavcfg-1.2.tar.gz 499631 BLAKE2B 
226e1a1a871bea973b01b1119a69af9169fc6a5d381951646e47f99d5063f88ebbc57f456ff8e61f90037834aa61b4e4c7c9d8adfa9ec7d44bc8846101172ba0
 SHA512 
cbfce46db025385b675c999b17abefcf3ebd96cfcb95e940c3cd54f956d257f21e70d892c016e748bebedbd01317f2c737803625d24f5ec49253a29cab99cc19
 DIST spnavcfg-1.3.tar.gz 501293 BLAKE2B 
f4e69691d90fabf7ea7a0a18d88ceb5433419b24fd99dfeba963c7934f90e36693ad8a660673e7c393690d072cd14d2ee8c26018b24ea07664ae8076eeb8dc46
 SHA512 
be44c7df80da369b35783ea2a99873d8288305215d73928526597ef5b100da490e548b6d26b774198f558b36dea75cea5c945c682679a4b28ecc6478bbda4808

diff --git a/x11-misc/spnavcfg/files/spnavcfg-1.1-makefile.patch 
b/x11-misc/spnavcfg/files/spnavcfg-1.1-makefile.patch
deleted file mode 100644
index 0476d7a10152..000000000000
--- a/x11-misc/spnavcfg/files/spnavcfg-1.1-makefile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From fd9aa10fb8e19a257398757943b3d8e79906e583 Mon Sep 17 00:00:00 2001
-From: John Tsiombikas <[email protected]>
-Date: Sun, 8 Jan 2023 21:49:12 +0200
-Subject: [PATCH] Make sure there are no duplicate object files. Closes issue
- #29
-
----
- Makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index b760f4d..f66ba22 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -2,7 +2,7 @@ csrc = $(wildcard src/*.c)
- ccsrc = $(wildcard src/*.cc)
- mochdr = src/ui.h
- mocsrc = $(mochdr:.h=.moc.cc)
--obj = $(csrc:.c=.o) $(ccsrc:.cc=.o) $(mocsrc:.cc=.o) res.cc
-+obj = $(sort $(csrc:.c=.o) $(ccsrc:.cc=.o) $(mocsrc:.cc=.o)) res.cc
- dep = $(csrc:.c=.d) $(ccsrc:.cc=.d)
- bin = spnavcfg
- 

diff --git a/x11-misc/spnavcfg/spnavcfg-1.1.ebuild 
b/x11-misc/spnavcfg/spnavcfg-1.1.ebuild
deleted file mode 100644
index 55e90acf9512..000000000000
--- a/x11-misc/spnavcfg/spnavcfg-1.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs qmake-utils
-
-DESCRIPTION="Qt-based GUI to configure a space navigator device"
-HOMEPAGE="http://spacenav.sourceforge.net/";
-SRC_URI="https://downloads.sourceforge.net/project/spacenav/spacenavd%20config%20gui/${PN}%20${PV}/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-COMMON_DEPEND=">=dev-libs/libspnav-1[X]
-       dev-qt/qtcore
-       dev-qt/qtgui
-       dev-qt/qtwidgets
-       x11-libs/libX11"
-DEPEND="${COMMON_DEPEND}
-       virtual/pkgconfig"
-RDEPEND="${COMMON_DEPEND}
-       >=app-misc/spacenavd-1[X]"
-
-src_configure() {
-       # Note: Makefile uses $(add_cflags) inside $(CXXFLAGS)
-       CFLAGS="${CFLAGS}" \
-               LDFLAGS="${LDFLAGS}" \
-               econf --disable-debug --disable-opt
-}
-
-PATCHES=(
-       "${FILESDIR}"/${P}-makefile.patch
-)
-
-src_compile() {
-       local args=(
-               CC="$(tc-getCC)"
-               CXX="$(tc-getCXX)"
-               MOC="$(qt5_get_bindir)/moc"
-               RCC="$(qt5_get_bindir)/rcc"
-               UIC="$(qt5_get_bindir)/uic"
-               libpath="-L/usr/$(get_libdir)"
-       )
-       emake "${args[@]}"
-}

diff --git a/x11-misc/spnavcfg/spnavcfg-1.2-r1.ebuild 
b/x11-misc/spnavcfg/spnavcfg-1.2-r1.ebuild
deleted file mode 100644
index 2642bfa310fd..000000000000
--- a/x11-misc/spnavcfg/spnavcfg-1.2-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs qmake-utils xdg-utils
-
-DESCRIPTION="Qt-based GUI to configure a space navigator device"
-HOMEPAGE="http://spacenav.sourceforge.net/";
-SRC_URI="https://downloads.sourceforge.net/project/spacenav/spacenavd%20config%20gui/${PN}%20${PV}/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND=">=dev-libs/libspnav-1.2[X]
-       dev-qt/qtcore
-       dev-qt/qtgui
-       dev-qt/qtwidgets
-       x11-libs/libX11"
-DEPEND="${COMMON_DEPEND}
-       virtual/pkgconfig"
-RDEPEND="${COMMON_DEPEND}
-       >=app-misc/spacenavd-1[X]"
-
-src_configure() {
-       # Note: Makefile uses $(add_cflags) inside $(CXXFLAGS)
-       CFLAGS="${CFLAGS}" \
-               LDFLAGS="${LDFLAGS}" \
-               econf --disable-debug --disable-opt
-}
-
-src_compile() {
-       local args=(
-               CC="$(tc-getCC)"
-               CXX="$(tc-getCXX)"
-               MOC="$(qt5_get_bindir)/moc"
-               RCC="$(qt5_get_bindir)/rcc"
-               UIC="$(qt5_get_bindir)/uic"
-               libpath="-L/usr/$(get_libdir)"
-       )
-       emake "${args[@]}"
-}
-
-pkg_postinst() {
-       xdg_icon_cache_update
-}
-
-pkg_postrm() {
-       xdg_icon_cache_update
-}

diff --git a/x11-misc/spnavcfg/spnavcfg-1.2.ebuild 
b/x11-misc/spnavcfg/spnavcfg-1.2.ebuild
deleted file mode 100644
index 8055d584cddc..000000000000
--- a/x11-misc/spnavcfg/spnavcfg-1.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs qmake-utils
-
-DESCRIPTION="Qt-based GUI to configure a space navigator device"
-HOMEPAGE="http://spacenav.sourceforge.net/";
-SRC_URI="https://downloads.sourceforge.net/project/spacenav/spacenavd%20config%20gui/${PN}%20${PV}/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND=">=dev-libs/libspnav-1.2[X]
-       dev-qt/qtcore
-       dev-qt/qtgui
-       dev-qt/qtwidgets
-       x11-libs/libX11"
-DEPEND="${COMMON_DEPEND}
-       virtual/pkgconfig"
-RDEPEND="${COMMON_DEPEND}
-       >=app-misc/spacenavd-1[X]"
-
-src_configure() {
-       # Note: Makefile uses $(add_cflags) inside $(CXXFLAGS)
-       CFLAGS="${CFLAGS}" \
-               LDFLAGS="${LDFLAGS}" \
-               econf --disable-debug --disable-opt
-}
-
-src_compile() {
-       local args=(
-               CC="$(tc-getCC)"
-               CXX="$(tc-getCXX)"
-               MOC="$(qt5_get_bindir)/moc"
-               RCC="$(qt5_get_bindir)/rcc"
-               UIC="$(qt5_get_bindir)/uic"
-               libpath="-L/usr/$(get_libdir)"
-       )
-       emake "${args[@]}"
-}

Reply via email to