Bump Rust to 1.30.0

This commit is contained in:
Kevin Cotugno 2018-10-30 08:01:32 -07:00 committed by Fredrik Fornwall
parent d1a56f43c7
commit a5fdde8420
2 changed files with 2 additions and 13 deletions

View File

@ -1,8 +1,8 @@
TERMUX_PKG_HOMEPAGE=https://www.rust-lang.org/
TERMUX_PKG_DESCRIPTION="Systems programming language focused on safety, speed and concurrency"
TERMUX_PKG_VERSION=1.29.2
TERMUX_PKG_VERSION=1.30.0
TERMUX_PKG_SRCURL=https://static.rust-lang.org/dist/rustc-$TERMUX_PKG_VERSION-src.tar.gz
TERMUX_PKG_SHA256=5088e796aa2e47478cdf41e7243fc5443fafab0a7c70a11423e57c80c04167c9
TERMUX_PKG_SHA256=cd0ba83fcca55b64c0c9f23130fe731dfc1882b73ae21bef96be8f2362c108ee
TERMUX_PKG_DEPENDS="clang, openssl"
termux_step_configure () {

View File

@ -1,11 +0,0 @@
--- ../rustc-1.29.2-src/src/etc/rust-lldb 2018-10-05 15:19:57.000000000 -0700
+++ ./src/etc/rust-lldb 2018-10-22 20:18:13.686641765 -0700
@@ -24,7 +24,7 @@
fi
# Create a tempfile containing the LLDB script we want to execute on startup
-TMPFILE=`mktemp /tmp/rust-lldb-commands.XXXXXX`
+TMPFILE=`mktemp @TERMUX_PREFIX@/tmp/rust-lldb-commands.XXXXXX`
# Make sure to delete the tempfile no matter what
trap "rm -f $TMPFILE; exit" INT TERM EXIT