3975 Commits

Author SHA1 Message Date
Brad Parker
a4f78fd20a use $ARGS in .ra recipe files for make options instead of configure ones 2017-12-07 21:45:33 -05:00
Twinaphex
dc0afa0f25
Merge pull request #635 from orbea/common
libretro-buildbot-recipe.sh: Remove seemingly unneeded and non-portable bash redirection.
2017-12-07 06:31:59 +01:00
Twinaphex
034b55a605
Merge pull request #637 from orbea/mame
libretro-buildbot-recipe.sh: Don't build mame2003 and mame2010 with 1 make job
2017-12-07 06:10:18 +01:00
orbea
f527b2f2a8 libretro-buildbot-recipe.sh: Don't build mame2003 and mame2010 with 1 make job. 2017-12-06 20:41:16 -08:00
Twinaphex
9af7098503
Merge pull request #636 from orbea/gl
libretro-buildbot-recipe.sh: Remove the redundant generic gl make function.
2017-12-07 04:40:56 +01:00
orbea
6d7486a5db libretro-buildbot-recipe.sh: Remove the redundant generic gl make function.
Also remove the GENERIC_THEOS target since its not used anywhere and the
function does not exist.
2017-12-06 14:17:44 -08:00
orbea
abe440887d libretro-buildbot-recipe.sh: Remove seemingly unneeded and non-portable bash redirection. 2017-12-06 08:33:02 -08:00
Twinaphex
4d9c83ac38
Merge pull request #633 from orbea/bsnes
libretro-buildbot-recipe.sh: Build all three profiles for the bsnes cores.
2017-12-06 04:57:25 +01:00
Twinaphex
ea864899d5
Merge pull request #634 from orbea/logs
libretro-buildbot-recipe.sh: Use the RECIPE name for the log files.
2017-12-06 04:56:46 +01:00
orbea
bbc09a08a8 libretro-buildbot-recipe.sh: Build all three profiles for bsnes-libretro and bsnes-mercury
Fixes https://github.com/libretro/libretro-super/issues/241
2017-12-05 15:02:17 -08:00
orbea
8db271c929 libretro-buildbot-recipe.sh: Use the RECIPE name for the log files. 2017-12-05 14:46:03 -08:00
Twinaphex
9eefe27c88
Merge pull request #632 from orbea/args
libretro-buildbot-recipe.sh: Do not require checking if there are $ARGS
2017-12-05 20:13:26 +01:00
orbea
78536c66cb libretro-buildbot-recipe.sh: Do not require checking if there are $ARGS 2017-12-05 10:01:50 -08:00
Twinaphex
173dc9a0d7
Merge pull request #631 from orbea/bsnes
libretro-buildbot-recipe.sh: Build the bsnes cores in the generic make functions.
2017-12-05 17:49:33 +01:00
orbea
58498ddbd3 libretro-buildbot-recipe.sh: Build the bsnes android cores in the build_libretro_generic_jni function. 2017-12-05 07:39:50 -08:00
orbea
55a0861965 libretro-buildbot-recipe.sh: Build the bsnes cores in the build_libretro_generic_makefile function. 2017-12-05 07:37:26 -08:00
Twinaphex
779db36110
Merge pull request #629 from orbea/branch
libretro-buildbot-recipe.sh: Always use the branch in the recipe file.
2017-12-05 07:50:04 +01:00
orbea
548bfd810e libretro-buildbot-recipe.sh: Skip the recipe if it fails to cd to the cloned repo. 2017-12-04 08:26:42 -08:00
orbea
0f107ce404 libretro-buildbot-recipe.sh: Don't remove branches if travis is running the script. 2017-12-03 13:14:08 -08:00
orbea
fe1db129dc recipes: Use the correct branch for bsnes-libretro.
The default and up to date branch is 'libretro' and not 'master'.
2017-12-03 12:58:22 -08:00
orbea
c2275b79f8 libretro-buildbot-recipe.sh: Always use the branch in the recipe file.
If the checked out branch does not match the branch name in the recipe
file the script will now make a shallow fetch of the correct branch,
checkout the new branch and then remove the old one. If this is done it
will also build a core with the new branch.
2017-12-03 12:58:22 -08:00
Andrés
e99abc600f
Merge pull request #630 from orbea/gitclean
libretro-buildbot-recipe.sh: Make sure the $PWD is not the $BASE_DIR before cleaning.
2017-12-02 19:19:57 -05:00
orbea
63b26eee74 libretro-buildbot-recipe.sh: Make sure the $PWD is $BASE_DIR/$DIR/$SUBDIR before cleaning. 2017-12-02 16:14:05 -08:00
Andrés
b41369c83a
Update cores-android-jni 2017-12-02 18:24:46 -05:00
Andrés
baed499105
Update libretro-buildbot-recipe.sh 2017-12-02 17:38:12 -05:00
Twinaphex
a5bb62160d
Merge pull request #627 from orbea/duplicates
recipes: Remove duplicate recipes.
2017-12-02 12:24:38 +01:00
orbea
b3f18d4c86 recipes: Remove duplicate recipes. 2017-12-02 03:17:35 -08:00
Twinaphex
00b3617655
Merge pull request #626 from orbea/bsnes-cpp98
libretro-buildbot-recipe.sh: Use the generic command for bsnes_cplusplus98.
2017-12-02 11:27:29 +01:00
orbea
3ad6eee742 libretro-buildbot-recipe.sh: Use the generic command for bsnes_cplusplus98. 2017-12-02 02:16:49 -08:00
Twinaphex
12d2e247fc
Merge pull request #625 from orbea/retrolink
retrolink.sh: Silent shellcheck warnings.
2017-12-02 07:51:11 +01:00
orbea
2f96177c33 retrolink.sh: Silence shellcheck warnings.
Line 6:
start=$(readelf -V $1 | grep -A1 .gnu.version_r | tail -n1 | cut -d' ' -f6)
                   ^-- SC2086: Double quote to prevent globbing and word splitting.

Line 7:
pos=$(readelf -V $1 | grep 'Flags: none' | cut -d' ' -f3 | sed 's/://')
                 ^-- SC2086: Double quote to prevent globbing and word splitting.

Line 9:
printf '\x02' | dd if=/dev/stdin of=$1 seek=$(($start+$pos+4)) count=1 bs=1 conv=notrunc 2> /dev/null
                                    ^-- SC2086: Double quote to prevent globbing and word splitting.
                                               ^-- SC2004: $/${} is unnecessary on arithmetic variables.
                                                      ^-- SC2004: $/${} is unnecessary on arithmetic variables.
2017-12-01 22:50:17 -08:00
Twinaphex
946b96d5ec
Merge pull request #624 from orbea/higan
libretro-buildbot-recipe.sh: Build higan and nSide in the generic make function.
2017-12-02 05:52:45 +01:00
orbea
5b9cb80e8f libretro-buildbot-recipe.sh: Build higan and nSide in the generic make function. 2017-12-01 16:28:06 -08:00
Twinaphex
d68aabe580
Merge pull request #622 from orbea/git
libretro-buildbot-recipe.sh: Check if the HEAD commit is new or not.
2017-11-30 08:59:15 +01:00
Andrés
0fffab8e89
Merge pull request #623 from orbea/clean
libretro-buildbot-recipe.sh: Clean cores after building them.
2017-11-29 21:41:46 -05:00
orbea
813fcd42cc libretro-buildbot-recipe.sh: Clean cores after building them. 2017-11-29 18:20:33 -08:00
orbea
e3a38f76e1 libretro-buildbot-recipe.sh: Check if the HEAD commit is new or not.
Newer git versions now report 'Already up to date.' instead of 'Already up-to-date' so we need a more robust solution.
2017-11-29 17:45:47 -08:00
Andrés
2f56bbc8c7
Merge pull request #542 from alondero/patch-1
[Redream] Correct firmware file names listed
2017-11-28 21:06:38 -05:00
Andrés
6c20bf7cbb
Merge pull request #621 from orbea/nside
recipes: Fix nSide recipes
2017-11-28 20:48:42 -05:00
orbea
cfe5a4c0cc recipes: Fix nSide recipes 2017-11-28 17:42:59 -08:00
Andrés
7c28b332ed
Update cores-windows-x64_seh-generic 2017-11-28 20:31:23 -05:00
Twinaphex
98030ace93
Merge pull request #617 from orbea/bsnes
recipes: Remove extra bsnes recipe.
2017-11-27 07:35:50 +01:00
Twinaphex
121bcc6ff1
Merge pull request #618 from orbea/nside
Add higan_sfc_balanced_libretro.info for the nSide core.
2017-11-27 07:35:36 +01:00
Twinaphex
932f9f20c0
Merge pull request #619 from RobLoach/patch-30
Fix ChaiLove database building
2017-11-27 07:26:26 +01:00
Rob Loach
c15525ace8
Fix ChaiLove database building 2017-11-27 01:12:46 -05:00
orbea
20dd7b4f3e Add higan_sfc_balanced_libretro.info for the nSide core. 2017-11-26 19:39:11 -08:00
orbea
230c2da475 recipes: Remove extra bsnes recipe. 2017-11-26 17:57:00 -08:00
radius
9601119d46 sort alphabetically 2017-11-26 15:40:50 -05:00
radius
423f670f6f readd bnes 2017-11-26 15:27:11 -05:00
radius
25c0d0ee54 add nside core, sort and cleanup 2017-11-26 15:24:08 -05:00