summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-01-03 22:35:31 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-01-04 08:26:22 +0100
commitf42ee57ede1473998992d114d7c637d6b16944e7 (patch)
tree5cb397821b32a6eeeee5a5bbbc8642ad71bd6807 /games-board
parentgames-board/chessx: add 1.6.2 (diff)
downloadgentoo-f42ee57ede1473998992d114d7c637d6b16944e7.tar.gz
gentoo-f42ee57ede1473998992d114d7c637d6b16944e7.tar.bz2
gentoo-f42ee57ede1473998992d114d7c637d6b16944e7.zip
games-board/chessx: drop 1.5.4-r4
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-board')
-rw-r--r--games-board/chessx/Manifest1
-rw-r--r--games-board/chessx/chessx-1.5.4-r4.ebuild57
-rw-r--r--games-board/chessx/files/chessx-1.5.4-install.patch27
-rw-r--r--games-board/chessx/files/chessx-1.5.4-missing-translations.patch24
-rw-r--r--games-board/chessx/files/chessx-1.5.4-system-quazip.patch73
5 files changed, 0 insertions, 182 deletions
diff --git a/games-board/chessx/Manifest b/games-board/chessx/Manifest
index 5e0056a71331..bbae7a2229c7 100644
--- a/games-board/chessx/Manifest
+++ b/games-board/chessx/Manifest
@@ -1,2 +1 @@
-DIST chessx-1.5.4.tgz 3663299 BLAKE2B 3a0f222d2c122e70f66600f15a2b9a9606e56407db364a616515ebc1b7f333e260c131e61e22f59fb3cbd340555bb8c238bfd560fbc23f4c173288cd4b7e7369 SHA512 9f112b185ed8af3690cb50eafead7dfbd7896d3baebc9b10c3d32103a51cc49834703c232c159dffe24fd09601f2b41db02598c435ca56fc1031195fb9762a42
DIST chessx-1.6.2.tgz 11024855 BLAKE2B cdb836491f0567e885425f12230f4da69b5c03f6a4f02370064ae3bf8455c5ef035f8e177732602d3eaf865f0e16e8661243f42daa3aa3dd2166860fc25d771d SHA512 d9d92c9a36998497696ad84dd60f3dc5243fbcd29ee78a3c05d7812bc90be103349042f794060c3ef803199cc5b315d055b2a5e10c0b355a89b55dbc4a6c5241
diff --git a/games-board/chessx/chessx-1.5.4-r4.ebuild b/games-board/chessx/chessx-1.5.4-r4.ebuild
deleted file mode 100644
index 09e2228aa3c3..000000000000
--- a/games-board/chessx/chessx-1.5.4-r4.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils xdg
-
-DESCRIPTION="Qt5-based Chess Database Utility"
-HOMEPAGE="https://chessx.sourceforge.net/"
-SRC_URI="https://sourceforge.net/projects/chessx/files/chessx/${PV}/${P}.tgz"
-
-LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
- >=dev-libs/quazip-0.9.1:0=[qt5(+)]
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtmultimedia:5
- dev-qt/qtnetwork:5
- dev-qt/qtprintsupport:5
- dev-qt/qtspeech:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- sys-libs/zlib
-"
-DEPEND="${RDEPEND}
- dev-qt/qtconcurrent:5
-"
-BDEPEND="
- dev-qt/linguist-tools:5
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-system-quazip.patch
- "${FILESDIR}"/${P}-missing-translations.patch
- "${FILESDIR}"/${P}-install.patch
-)
-
-src_prepare() {
- xdg_src_prepare
- if has_version "<dev-libs/quazip-1.0"; then
- sed -e "/^PKGCONFIG/s/quazip1-qt5/quazip/" -i chessx.pro || die
- fi
-}
-
-src_configure() {
- eqmake5
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
- einstalldocs
-}
diff --git a/games-board/chessx/files/chessx-1.5.4-install.patch b/games-board/chessx/files/chessx-1.5.4-install.patch
deleted file mode 100644
index c017b3ea1535..000000000000
--- a/games-board/chessx/files/chessx-1.5.4-install.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Index: chessx-1.5.4/chessx.pro
-===================================================================
---- chessx-1.5.4.orig/chessx.pro
-+++ chessx-1.5.4/chessx.pro
-@@ -546,6 +546,22 @@ macx {
- data/timeseal/mac/timeseal
- }
-
-+unix:!macx {
-+ isEmpty(PREFIX) {
-+ PREFIX = /usr
-+ }
-+ target.path = $$PREFIX/bin
-+ desktop.path = $$PREFIX/share/applications
-+ desktop.files = unix/chessx.desktop
-+ icon.path = $$PREFIX/share/pixmaps
-+ icon.files = data/images/chessx.png
-+ data.path = $$PREFIX/share/chessx
-+ data.files = data
-+ lang.path = $$PREFIX/share/chessx/data/lang
-+ lang.files = i18n/*.qm
-+ INSTALLS += target desktop icon data lang
-+}
-+
- win32 {
- OTHER_FILES += \
- src/chessx.rc \
diff --git a/games-board/chessx/files/chessx-1.5.4-missing-translations.patch b/games-board/chessx/files/chessx-1.5.4-missing-translations.patch
deleted file mode 100644
index 7c874e16508b..000000000000
--- a/games-board/chessx/files/chessx-1.5.4-missing-translations.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: resources.qrc
-===================================================================
---- a/resources.qrc
-+++ b/resources.qrc
-@@ -12,11 +12,7 @@
- <file alias="help/about4.html">data/help/about4.html</file>
- <file alias="help/about5.html">data/help/about5.html</file>
- <file alias="help/about6.html">data/help/about6.html</file>
-- <file alias="i18n/chessx_da.qm">i18n/chessx_da.qm</file>
- <file alias="i18n/chessx_de.qm">i18n/chessx_de.qm</file>
-- <file alias="i18n/chessx_fr.qm">i18n/chessx_fr.qm</file>
-- <file alias="i18n/chessx_it.qm">i18n/chessx_it.qm</file>
-- <file alias="i18n/chessx_cz.qm">i18n/chessx_cz.qm</file>
- <file alias="images/accept.png">data/images/accept.png</file>
- <file alias="images/annotate.png">data/images/annotate.png</file>
- <file alias="images/arrow_green.png">data/images/arrow_green.png</file>
-@@ -180,7 +176,6 @@
- <file alias="themes/shadow/leipzig.png">data/themes/shadow/leipzig.png</file>
- <file alias="themes/shadow/merida.png">data/themes/shadow/merida.png</file>
- <file alias="themes/shadow/spatial.png">data/themes/shadow/spatial.png</file>
-- <file alias="i18n/chessx_ru.qm">i18n/chessx_ru.qm</file>
- <file alias="images/threat_black.png">data/images/threat_black.png</file>
- <file alias="images/threat_white.png">data/images/threat_white.png</file>
- <file alias="images/black_wall.png">data/images/black_wall.png</file>
diff --git a/games-board/chessx/files/chessx-1.5.4-system-quazip.patch b/games-board/chessx/files/chessx-1.5.4-system-quazip.patch
deleted file mode 100644
index 6610d3c8e420..000000000000
--- a/games-board/chessx/files/chessx-1.5.4-system-quazip.patch
+++ /dev/null
@@ -1,73 +0,0 @@
-Index: chessx.pro
-===================================================================
---- a/chessx.pro
-+++ b/chessx.pro
-@@ -39,7 +39,6 @@ static { # Everything below takes effect
- message("Static build.")
- }
-
--DEFINES += QUAZIP_STATIC
- DEFINES += QT_NO_CAST_TO_ASCII
- DEFINES *= QT_USE_QSTRINGBUILDER
-
-@@ -156,22 +155,6 @@ HEADERS += src/database/board.h \
- src/gui/engineoptionlist.h \
- src/gui/helpbrowser.h \
- src/database/downloadmanager.h \
-- src/quazip/zip.h \
-- src/quazip/unzip.h \
-- src/quazip/quazipnewinfo.h \
-- src/quazip/quazipfileinfo.h \
-- src/quazip/quazipfile.h \
-- src/quazip/quazipdir.h \
-- src/quazip/quazip.h \
-- src/quazip/quazip_global.h \
-- src/quazip/quaziodevice.h \
-- src/quazip/quagzipfile.h \
-- src/quazip/quacrc32.h \
-- src/quazip/quachecksum32.h \
-- src/quazip/quaadler32.h \
-- src/quazip/JlCompress.h \
-- src/quazip/ioapi.h \
-- src/quazip/crypt.h \
- src/gui/toolmainwindow.h \
- src/gui/playerlistwidget.h \
- src/gui/qled.h \
-@@ -321,16 +304,6 @@ SOURCES += src/database/board.cpp \
- src/gui/engineoptionlist.cpp \
- src/gui/helpbrowser.cpp \
- src/database/downloadmanager.cpp \
-- src/quazip/quazipnewinfo.cpp \
-- src/quazip/quazipfile.cpp \
-- src/quazip/quazipdir.cpp \
-- src/quazip/quazip.cpp \
-- src/quazip/quaziodevice.cpp \
-- src/quazip/quagzipfile.cpp \
-- src/quazip/quacrc32.cpp \
-- src/quazip/quaadler32.cpp \
-- src/quazip/qioapi.cpp \
-- src/quazip/JlCompress.cpp \
- src/gui/toolmainwindow.cpp \
- src/gui/playerlistwidget.cpp \
- src/gui/qled.cpp \
-@@ -401,8 +374,6 @@ SOURCES += src/database/board.cpp \
- src/gui/historylabel.cpp \
- src/database/streamdatabase.cpp \
- src/database/refcount.cpp \
-- src/quazip/unzip.cpp \
-- src/quazip/zip.cpp \
- src/database/arenabook.cpp \
- src/gui/gamelistsortmodel.cpp \
- src/gui/listwidgetex.cpp
-@@ -412,8 +383,9 @@ INCLUDEPATH += src/database
- INCLUDEPATH += src/guess
- INCLUDEPATH += src/gui
- INCLUDEPATH += src/dialogs
--INCLUDEPATH += src/quazip
--INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/zlib
-+
-+CONFIG += link_pkgconfig
-+PKGCONFIG += quazip1-qt5
-
- win32 {
- # DEFINES += ZLIB_WINAPI