summaryrefslogtreecommitdiff
path: root/games-puzzle
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-02-23 21:45:48 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-02-23 21:45:48 +0000
commit0530006d7f63d6c158b4ff5ea0c3f7ef3bae9cc4 (patch)
treeb3f2e1932614978a64f3fff0cf39d188bcb8a4d3 /games-puzzle
parent9217a0cce81e89f5648599fcda4e549903c7b9bd (diff)
gentoo auto-resync : 23:02:2023 - 21:45:48
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/Manifest.gzbin17291 -> 17291 bytes
-rw-r--r--games-puzzle/nudoku/Manifest3
-rw-r--r--games-puzzle/nudoku/files/nudoku-2.1.0-include-locale.patch22
-rw-r--r--games-puzzle/nudoku/nudoku-2.1.0.ebuild3
4 files changed, 26 insertions, 2 deletions
diff --git a/games-puzzle/Manifest.gz b/games-puzzle/Manifest.gz
index 26cedffee6ec..1bc19fa8b8f3 100644
--- a/games-puzzle/Manifest.gz
+++ b/games-puzzle/Manifest.gz
Binary files differ
diff --git a/games-puzzle/nudoku/Manifest b/games-puzzle/nudoku/Manifest
index 038ed6eb248c..4f96c103a980 100644
--- a/games-puzzle/nudoku/Manifest
+++ b/games-puzzle/nudoku/Manifest
@@ -1,4 +1,5 @@
+AUX nudoku-2.1.0-include-locale.patch 732 BLAKE2B e2b88fe53d10bb16a6660d1f6cad7640b0a183dd243212c51dd4a22a6bb991b24d14f3ee5c89174bf78d707d54b241c72255f78b25067d269eeed4fb7fb474c4 SHA512 1877ec6f93c1a552009747e785639ce80dfb37a7b61d1d28f84aa46adffcb03db47cdba29aa55cc7c0e0cc452c1ebe178d50a32a2ab3d2a54dbda2d3e706a775
AUX nudoku-2.1.0-ncurses-link.patch 1077 BLAKE2B b03e0cd67bb2bdbab2849252802dd792757c099dab7e9b3279f9feb4811b8b129a4c6d99490af325533779d02a2fa5f50e4f1a3e67b8003888e02aa2c47018e6 SHA512 0911ea872374654f43f246ea2208f06b02ec951945038851236b82122eb0a318cf5e9ffe9ad86dbdf84bd431a2907f744c0452aa406d13da807ae2da21f928eb
DIST nudoku-2.1.0.tar.gz 31592 BLAKE2B 997ae3931fec3b6605858a35cdf6bc88296138c01a9138d229ed43a5262fdd5d15eb8a96dfdcf02e8eb6f7f416b84e4752edbb57319be50bfdae6c952217446b SHA512 dde16d1dccc1cae8d156f57fccf8b112f3fee7d23b912b5cd7ecc092ecbf04a8e85f469e53fa02e6bd2d0b9498e4a65a219e1aad8091f82638dceab32f320670
-EBUILD nudoku-2.1.0.ebuild 655 BLAKE2B acba6e03ef4550908645e602cef6800ab9401f01b50384abe0de27fcd8a3bf588ace499a7251cd77fdfc60aa2fdc0db0cbdae2abc1465ce1ed6f3e35cf5d2ef4 SHA512 4b1204f009d730a995dd56ac67d66ae671015774a621d22e9d90ef2ae7e59c33f74e4187813e83474e6611662206a7a68c49d76306d2003c145054449f829414
+EBUILD nudoku-2.1.0.ebuild 703 BLAKE2B 79fb503f54559440c888427d629f03d41565a14ec757ecaa0634660b0d3688086ecaa7e9f40f5c777854cfe36903492fc667831ed795f2b8d6d88451bf828187 SHA512 f126ac7a2c4826e9ab3137171c18f7fd14aa9f1b03f6658211a25148db09d9be60496c02009516dbe9dca414f2cf3e633709db59a13b4f644b3827681142ecec
MISC metadata.xml 473 BLAKE2B 291ca8a22ebc8c8d6ae997fd4cf7e036312d24c0ecdd55bf7aa444e901fae4b92f7c2393bb6211aa85cf9f79b2a006ab14f40c7c706e9d7d0f0743149c5f6cd5 SHA512 ccb510531c72a7165302e0fb76641248791895b806dae51c7733170d94143e673e4033694e9c9f3b090ffffcf0385ac5ec2548742208392a7ae3eaf4e9d09f46
diff --git a/games-puzzle/nudoku/files/nudoku-2.1.0-include-locale.patch b/games-puzzle/nudoku/files/nudoku-2.1.0-include-locale.patch
new file mode 100644
index 000000000000..d4d1c89bd104
--- /dev/null
+++ b/games-puzzle/nudoku/files/nudoku-2.1.0-include-locale.patch
@@ -0,0 +1,22 @@
+From ffe61c8cb6dcf6032960fa75ac2b66b5f1906e37 Mon Sep 17 00:00:00 2001
+From: Michael Vetter <jubalh@iodoru.org>
+Date: Thu, 23 Feb 2023 10:58:43 +0100
+Subject: [PATCH] Include locale.h
+
+See https://bugs.gentoo.org/895990
+---
+ src/main.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/main.c b/src/main.c
+index 74d6a0e..77a0a03 100644
+--- a/src/main.c
++++ b/src/main.c
+@@ -25,6 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ #include <ncurses.h> /* ncurses */
+ #include <time.h> /* time */
+ #include <string.h> /* strcmp, strlen */
++#include <locale.h> /* setlocale */
+ #include "sudoku.h" /* sudoku functions */
+ #ifdef ENABLE_CAIRO
+ #include "outp.h" /* output functions */
diff --git a/games-puzzle/nudoku/nudoku-2.1.0.ebuild b/games-puzzle/nudoku/nudoku-2.1.0.ebuild
index 9bd564dfc76a..f4a69b9fc4c7 100644
--- a/games-puzzle/nudoku/nudoku-2.1.0.ebuild
+++ b/games-puzzle/nudoku/nudoku-2.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -25,6 +25,7 @@ RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-2.1.0-ncurses-link.patch"
+ "${FILESDIR}/${PN}-2.1.0-include-locale.patch"
)
src_prepare() {