summaryrefslogtreecommitdiff
path: root/gnustep-apps/gshisen
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /gnustep-apps/gshisen
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'gnustep-apps/gshisen')
-rw-r--r--gnustep-apps/gshisen/Manifest1
-rw-r--r--gnustep-apps/gshisen/files/gshisen-1.3.0-warnings.patch29
-rw-r--r--gnustep-apps/gshisen/gshisen-1.3.0-r2.ebuild16
-rw-r--r--gnustep-apps/gshisen/gshisen-1.3.0-r3.ebuild24
-rw-r--r--gnustep-apps/gshisen/metadata.xml11
5 files changed, 0 insertions, 81 deletions
diff --git a/gnustep-apps/gshisen/Manifest b/gnustep-apps/gshisen/Manifest
deleted file mode 100644
index 4dd23b3e458c..000000000000
--- a/gnustep-apps/gshisen/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST GShisen-1.3.0.tar.gz 66406 BLAKE2B 454360526433fc3922cd7f1370252991d1d92ef6966f0058a5046b72bd17d89f3455f5d1630b79d35cc42671ede12fafbdabc38d386870c423d41e364ef900a6 SHA512 eaaf4705837c59ec4bb67f183a595f100d95e892d47cb666510228d99e5ebc4551b494f7993d3d134bd9def947bb9255742cd1127abc1995e493ca50707cd4fd
diff --git a/gnustep-apps/gshisen/files/gshisen-1.3.0-warnings.patch b/gnustep-apps/gshisen/files/gshisen-1.3.0-warnings.patch
deleted file mode 100644
index e5b24f856141..000000000000
--- a/gnustep-apps/gshisen/files/gshisen-1.3.0-warnings.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Debian patch.
-https://bugs.gentoo.org/957964
-https://salsa.debian.org/gnustep-team/gshisen.app/-/blob/master/debian/patches/warnings.patch?ref_type=heads
-Description: Fix some compiler warnings.
-Author: Yavor Doganov <yavor@gnu.org>
-Forwarded: no
-Last-Update: 2025-01-20
----
-
---- gshisen.app-1.3.0.orig/board.m
-+++ gshisen.app-1.3.0/board.m
-@@ -171,7 +171,7 @@
- [tile release];
- }
- }
-- tmptiles = (NSMutableArray *)[tmptiles sortedArrayUsingFunction:(int (*)(id, id, void*))randomizeTiles context:self];
-+ tmptiles = (NSMutableArray *)[tmptiles sortedArrayUsingFunction:(NSComparisonResult (*)(id, id, void*))randomizeTiles context:self];
-
- if(tmr && !hadEndOfGame) {
- if([tmr isValid])
-@@ -491,7 +491,7 @@
- [gameData setObject: entry forKey: @"seconds"];
-
- [scores addObject: gameData];
-- [scores sortUsingFunction:(int (*)(id, id, void*))sortScores context:self];
-+ [scores sortUsingFunction:(NSComparisonResult (*)(id, id, void*))sortScores context:self];
- if ([scores count] > numScoresToKeep) {
- NSRange scoresToZap = NSMakeRange(numScoresToKeep,
- [scores count] - numScoresToKeep);
diff --git a/gnustep-apps/gshisen/gshisen-1.3.0-r2.ebuild b/gnustep-apps/gshisen/gshisen-1.3.0-r2.ebuild
deleted file mode 100644
index ea02dd897bb8..000000000000
--- a/gnustep-apps/gshisen/gshisen-1.3.0-r2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnustep-2
-
-MY_PN=GShisen
-DESCRIPTION="The first GNUstep game, similar to Mahjongg"
-HOMEPAGE="https://gap.nongnu.org/gshisen/index.html"
-SRC_URI="https://savannah.nongnu.org/download/gap/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
diff --git a/gnustep-apps/gshisen/gshisen-1.3.0-r3.ebuild b/gnustep-apps/gshisen/gshisen-1.3.0-r3.ebuild
deleted file mode 100644
index a7cf3bd64659..000000000000
--- a/gnustep-apps/gshisen/gshisen-1.3.0-r3.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnustep-2 edos2unix
-
-MY_PN=GShisen
-DESCRIPTION="The first GNUstep game, similar to Mahjongg"
-HOMEPAGE="https://gap.nongnu.org/gshisen/index.html"
-SRC_URI="https://savannah.nongnu.org/download/gap/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=( "${FILESDIR}/${P}-warnings.patch" )
-
-src_prepare() {
- edos2unix board.m
-
- default
-}
diff --git a/gnustep-apps/gshisen/metadata.xml b/gnustep-apps/gshisen/metadata.xml
deleted file mode 100644
index 41a2457aebf1..000000000000
--- a/gnustep-apps/gshisen/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="project">
- <email>gnustep@gentoo.org</email>
- <name>Gentoo GNUstep Project</name>
- </maintainer>
- <longdescription>GShisen is the first GNUstep game!
-The object of the game is to remove all tiles from the field. Only two matching tiles can be removed at a time. Two tiles can only be removed if they can be connected with at most three connected lines. Lines can be horizontal or vertical but not diagonal.
-Remember that lines may cross the empty border. If you are stuck, you can use the Hint feature to find two tiles which may be removed.</longdescription>
-</pkgmetadata>