From a858f378d959b49a413eb82625cf12e54da57bcf Mon Sep 17 00:00:00 2001 From: mid-kid Date: Mon, 16 Oct 2017 13:06:09 +0200 Subject: [PATCH] Update some 3DS toolchain components --- satellites/devkitarm-libctru.sat | 4 ++-- satellites/firmtool.sat | 4 ++-- satellites/python3-cffi.sat | 6 +++--- satellites/python3-cparser.sat | 15 +++++++++++++++ 4 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 satellites/python3-cparser.sat diff --git a/satellites/devkitarm-libctru.sat b/satellites/devkitarm-libctru.sat index f173826..6244164 100644 --- a/satellites/devkitarm-libctru.sat +++ b/satellites/devkitarm-libctru.sat @@ -1,9 +1,9 @@ name=libctru -version=1.3.0 +version=1.4.0 update_url="https://github.com/smealum/ctrulib/releases" dlextract "https://github.com/smealum/ctrulib/releases/download/v$version/$name-src-$version.tar.bz2" \ - '2bdc36451a6d4068e50ea7712939b319' + '460645e1985bd2c47b02a1a24e712241' _ # The makefile doesn't like it when this directory is named build diff --git a/satellites/firmtool.sat b/satellites/firmtool.sat index b727b23..f02c6bb 100644 --- a/satellites/firmtool.sat +++ b/satellites/firmtool.sat @@ -1,12 +1,12 @@ import 'compile/python' name=firmtool -version=1.1 +version=1.3 update_url="https://github.com/TuxSH/firmtool/releases" update_names="/archive/v$version.tar.gz" dlextract "https://github.com/TuxSH/$name/archive/v$version/$name-$version.tar.gz" \ - '3eab4dbe8051e7811b34edb574d21601' + 'b80c4165a2babb469f687204723d8b9e' _ cd "$name-$version" diff --git a/satellites/python3-cffi.sat b/satellites/python3-cffi.sat index 490f671..4cb1ecb 100644 --- a/satellites/python3-cffi.sat +++ b/satellites/python3-cffi.sat @@ -1,11 +1,11 @@ import 'compile/python' name=cffi -version=1.10.0 +version=1.11.2 update_url="https://pypi.python.org/pypi/$name" -dlextract "https://pypi.python.org/packages/5b/b9/790f8eafcdab455bcd3bd908161f802c9ce5adbf702a83aa7712fcc345b7/$name-$version.tar.gz" \ - '2b5fa41182ed0edaf929a789e602a070' +dlextract "https://pypi.python.org/packages/c9/70/89b68b6600d479034276fed316e14b9107d50a62f5627da37fafe083fde3/$name-$version.tar.gz" \ + 'a731487324b501c8295221b629d3f5f3' _ cd "$name-$version" diff --git a/satellites/python3-cparser.sat b/satellites/python3-cparser.sat new file mode 100644 index 0000000..e5b8e4d --- /dev/null +++ b/satellites/python3-cparser.sat @@ -0,0 +1,15 @@ +import 'compile/python' + +name=pycparser +version=2.18 +update_url="https://github.com/eliben/$name/releases" +update_names="/archive/release_v$version.tar.gz" + +dlextract "https://github.com/eliben/$name/archive/release_v$version/$name-$version.tar.gz" \ + 'c609e8b0e3941d3f32d2fd13fba803e1' +_ + +cd "$name-release_v$version" +compile_python 3 + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: