forked from funtoo/games-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merged: flora: 0b285eae7de8b8c0a144d0f180606ffdd0c35392 faustoo: e0f9e62fcbf7fdbfc35c12c3465cd9a87ad15605 fusion809: abfa9346fe7b14406594c7fc70719cdeca70143f gentoo-staging: 4401f99b5f67539c974918d8600af942e8f3197c kit-fixups: 2e5ab5476d1e15efb6c018b56bc0df90b669e921
- Loading branch information
1 parent
61f1cc3
commit a6f8cb7
Showing
114 changed files
with
1,103 additions
and
965 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
diff --git a/patterns/dfa.c b/patterns/dfa.c | ||
index 3689616..2d2f8c6 100644 | ||
--- a/patterns/dfa.c | ||
+++ b/patterns/dfa.c | ||
@@ -279,7 +279,7 @@ resize_dfa(dfa_t *pdfa, int max_states, int max_indexes) | ||
* dump a dfa (debugging purpose). | ||
*/ | ||
|
||
-static const char *line = | ||
+static const char line[] = | ||
"----------------------------------------------------\n"; | ||
|
||
void | ||
diff --git a/patterns/mkpat.c b/patterns/mkpat.c | ||
index 70a6964..5f1f1dd 100644 | ||
--- a/patterns/mkpat.c | ||
+++ b/patterns/mkpat.c | ||
@@ -1419,7 +1419,7 @@ generate_autohelper_code(int funcno, int number_of_params, int *labels) | ||
/* A common case. Just use the labels as parameters. */ | ||
switch (number_of_params) { | ||
case 0: | ||
- code_pos += sprintf(code_pos, autohelper_functions[funcno].code); | ||
+ code_pos += sprintf(code_pos, "%s", autohelper_functions[funcno].code); | ||
break; | ||
case 1: | ||
code_pos += sprintf(code_pos, autohelper_functions[funcno].code, | ||
diff --git a/patterns/uncompress_fuseki.c b/patterns/uncompress_fuseki.c | ||
index 3290b05..c67a733 100644 | ||
--- a/patterns/uncompress_fuseki.c | ||
+++ b/patterns/uncompress_fuseki.c | ||
@@ -224,9 +224,9 @@ main(int argc, char *argv[]) | ||
|
||
assert(boardsize > 0); | ||
if (boardsize > MAX_BOARD) { | ||
- printf(output_strings[PREAMBLE]); | ||
+ printf("%s", output_strings[PREAMBLE]); | ||
printf(output_strings[HEADER], boardsize); | ||
- printf(output_strings[FOOTER]); | ||
+ printf("%s", output_strings[FOOTER]); | ||
return EXIT_SUCCESS; | ||
} | ||
|
||
@@ -251,7 +251,7 @@ main(int argc, char *argv[]) | ||
board[k][boardsize + 1] = '|'; | ||
} | ||
|
||
- printf(output_strings[PREAMBLE]); | ||
+ printf("%s", output_strings[PREAMBLE]); | ||
printf(output_strings[HEADER], boardsize); | ||
|
||
|
||
@@ -308,7 +308,7 @@ main(int argc, char *argv[]) | ||
if (mode == C_OUTPUT) | ||
write_pattern_c_code(NULL, board1d, NO_MOVE, 0, boardsize, -1); | ||
|
||
- printf(output_strings[FOOTER]); | ||
+ printf("%s", output_strings[FOOTER]); | ||
|
||
return EXIT_SUCCESS; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A Go-playing program" | ||
HOMEPAGE="https://www.gnu.org/software/gnugo/devel.html" | ||
SRC_URI="mirror://gentoo/${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" | ||
IUSE="readline" | ||
|
||
RDEPEND=" | ||
readline? ( sys-libs/readline:0= ) | ||
>=sys-libs/ncurses-5.2-r3:0= | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
PATCHES=( | ||
"${FILESDIR}"/${P}-invalid-move.patch | ||
"${FILESDIR}"/${P}-format-security.patch | ||
) | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_with readline) \ | ||
--enable-cache-size=32 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
DIST xmille_2.0-12.diff.gz 6041 BLAKE2B 3c901cccdacf7306420c5de98618ea0468a96ef42a61d5d9f0cbb4e655269c1eb38fab8acfc77830978ea90ed7c424c9236efa16b70f33ef53a36076a6dd6e9f SHA512 8f8a71ce6f4359b4d8fbecd0e6149783abc4ded07da485c91c67784fd6c4988d074ad9bda7a8a47689ffe379dd8d20f9968ef7e6998ed22b735c51a2fae5828d | ||
DIST xmille_2.0-13.diff.gz 6276 BLAKE2B bf136bc25d3aea56b671b6ff475717d162f0620a1c8c07d3b96b9d7a4b9b9f3ccae1039fc24827048686c631312c36e450a8bd989c32e9d26ab1c594ffc317d9 SHA512 d9e4448942738a105255d9aa77e2e66cb9edc8b35fd8278d1c810dbdca4a5b8a4916bf48c8d6a16e282db0c0fa058a0b281c168976529edeedb6caf53af7cd15 | ||
DIST xmille_2.0.orig.tar.gz 68178 BLAKE2B bd6ab40a8868b90bfc1b045a2be797c8eab49e676b695f521ceaf8646de9c01a07806c0ce029e4959a339e2ab48668635abd5b842c90e33c2cb5fd359eb971b8 SHA512 028740785dfc13b4088810855358b9dab75fbb79221dd4218ef0c19550c2180fe92e553d0a474bf45091b4008988e1a093a6d5bac99fe1ccafcaec3429cd0e8b |
Oops, something went wrong.