wok rev 21857
updated rust and rust-cargo (1.31.1 -> 1.37.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Sep 17 17:06:24 2019 +0100 (2019-09-17) |
parents | 9155c3f322db |
children | acc0cf34b379 |
files | rust-cargo/receipt rust/receipt |
line diff
1.1 --- a/rust-cargo/receipt Tue Sep 17 16:12:29 2019 +0100 1.2 +++ b/rust-cargo/receipt Tue Sep 17 17:06:24 2019 +0100 1.3 @@ -1,9 +1,9 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="rust-cargo" 1.7 -VERSION="1.31.1" 1.8 +VERSION="1.37.0" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="The Rust package manager" 1.11 +SHORT_DESC="The Rust package manager." 1.12 MAINTAINER="al.bobylev@gmail.com" 1.13 LICENSE="MIT Apache BSD" 1.14 WEB_SITE="https://www.rust-lang.org/"
2.1 --- a/rust/receipt Tue Sep 17 16:12:29 2019 +0100 2.2 +++ b/rust/receipt Tue Sep 17 17:06:24 2019 +0100 2.3 @@ -1,32 +1,39 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="rust" 2.7 -VERSION="1.31.1" 2.8 +VERSION="1.37.0" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="The Rust programming language" 2.11 +SHORT_DESC="The Rust programming language." 2.12 MAINTAINER="al.bobylev@gmail.com" 2.13 LICENSE="MIT Apache BSD" 2.14 WEB_SITE="https://www.rust-lang.org/" 2.15 + 2.16 TARBALL="rust-$VERSION-i686-unknown-linux-gnu.tar.gz" 2.17 WGET_URL="https://static.rust-lang.org/dist/$TARBALL" 2.18 2.19 SIBLINGS="rust-cargo" 2.20 -BUILD_DEPENDS="wget cacerts" 2.21 +BUILD_DEPENDS="cacerts" 2.22 2.23 # Rules to configure and make the package. 2.24 compile_rules() 2.25 { 2.26 - ./install.sh \ 2.27 - --prefix=$install/usr \ 2.28 - --sysconfdir=$install/etc \ 2.29 - --mandir=$install/usr/share/man \ 2.30 + ./install.sh \ 2.31 + --prefix=$install/usr \ 2.32 + --sysconfdir=$install/etc \ 2.33 + --mandir=$install/usr/share/man \ 2.34 --without=rust-docs 2.35 } 2.36 2.37 # Rules to gen a SliTaz package suitable for Tazpkg. 2.38 genpkg_rules() 2.39 { 2.40 - cook_copy_files rust-gdb rustc rustdoc rustc.1* rustdoc.1* 2.41 + cook_copy_files \ 2.42 + rust-gdb \ 2.43 + rustc \ 2.44 + rustdoc \ 2.45 + rustc.1* \ 2.46 + rustdoc.1* 2.47 + 2.48 mkdir -p $fs/usr 2.49 cp -a $install/usr/lib $fs/usr 2.50 find $fs/usr/lib -type f -name '*.so' -exec chmod a+x \{\} \;