diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2020-10-11 11:03:59 +1300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-10-11 23:49:21 +0700 |
commit | 48c86adda608a72beeac271dcbcf97f9b9abda88 (patch) | |
tree | 4bae6ab5a9e0111de156281a36ffe119c0041271 /development | |
parent | 0e9a92a62561bc4f4f91c7627182372c8e259d0e (diff) | |
download | slackbuilds-48c86adda608a72beeac271dcbcf97f9b9abda88.tar.gz |
development/cargo-vendor: Removed (part of cargo).
Slackware 14.2 was bumped to rust 1.46.0 whose cargo now
includes the vendor subcommand.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/cargo-vendor/README | 6 | ||||
-rw-r--r-- | development/cargo-vendor/cargo-vendor.SlackBuild | 126 | ||||
-rw-r--r-- | development/cargo-vendor/cargo-vendor.info | 10 | ||||
-rw-r--r-- | development/cargo-vendor/slack-desc | 19 |
4 files changed, 0 insertions, 161 deletions
diff --git a/development/cargo-vendor/README b/development/cargo-vendor/README deleted file mode 100644 index 51b8ca81ee..0000000000 --- a/development/cargo-vendor/README +++ /dev/null @@ -1,6 +0,0 @@ -cargo-vendor - Cargo subcommand to vendor crates.io dependencies - -This is a Cargo subcommand which vendors all crates.io dependencies into a -local directory using Cargo's support for source replacement. - -cargo-vendor is helpful for packaging applications which use cargo (rust). diff --git a/development/cargo-vendor/cargo-vendor.SlackBuild b/development/cargo-vendor/cargo-vendor.SlackBuild deleted file mode 100644 index eaf37417e1..0000000000 --- a/development/cargo-vendor/cargo-vendor.SlackBuild +++ /dev/null @@ -1,126 +0,0 @@ -#!/bin/sh - -# Slackware build script for cargo-vendor - -# Copyright 2017-2019 Andrew Clemons, Wellington New Zealand -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=cargo-vendor -VERSION=${VERSION:-0.1.23} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac - - if [ "$ARCH" = "i586" ]; then - if rustc -Vv | grep host | grep i686 > /dev/null ; then - ARCH=i686 - fi - fi -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" - CARGOTARGET="--target i586-unknown-linux-gnu" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" - CARGOTARGET="--target i686-unknown-linux-gnu" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" - CARGOTARGET="--target x86_64-unknown-linux-gnu" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" - CARGOTARGET="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-src-$VERSION -tar xvf $CWD/$PRGNAM-src-$VERSION.tar.gz -cd $PRGNAM-src-$VERSION - -# build offline -# configuration tells cargo to use the configured directory -# for dependencies intead of downloading from crates.io -mkdir .cargo -cat << EOF >> .cargo/config -[source.crates-io] -registry = 'https://github.com/rust-lang/crates.io-index' -replace-with = 'vendored-sources' - -[source.vendored-sources] -directory = '$(pwd)/vendor' -EOF - -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -if case "$ARCH" in i?86) true ;; *) false ;; esac ; then - # error: failed to run custom build command for `openssl-sys v0.9.17` - # process didn't exit successfully: `/tmp/SBo/cargo-vendor-0.1.12/target/release/build/openssl-sys-1001b6424b340fb9/build-script-build` (exit code: 101) - # --- stdout - # cargo:rerun-if-env-changed=OPENSSL_LIB_DIR - # cargo:rerun-if-env-changed=OPENSSL_INCLUDE_DIR - # cargo:rerun-if-env-changed=OPENSSL_DIR - # run pkg_config fail: "Cross compilation detected. Use PKG_CONFIG_ALLOW_CROSS=1 to override" - export PKG_CONFIG_ALLOW_CROSS=1 -fi - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -cargo build --release $CARGOTARGET - -mkdir -p $PKG/usr/bin/ - -find target -name cargo-vendor -exec install -m 755 {} $PKG/usr/bin/cargo-vendor \; - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE-APACHE LICENSE-MIT README.md $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/cargo-vendor/cargo-vendor.info b/development/cargo-vendor/cargo-vendor.info deleted file mode 100644 index c922e9cc31..0000000000 --- a/development/cargo-vendor/cargo-vendor.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="cargo-vendor" -VERSION="0.1.23" -HOMEPAGE="https://github.com/alexcrichton/cargo-vendor" -DOWNLOAD="https://github.com/alexcrichton/cargo-vendor/releases/download/0.1.23/cargo-vendor-src-0.1.23.tar.gz" -MD5SUM="4c35b8f917b42c6fc600292d9779a84c" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Andrew Clemons" -EMAIL="andrew.clemons@gmail.com" diff --git a/development/cargo-vendor/slack-desc b/development/cargo-vendor/slack-desc deleted file mode 100644 index 46ef9dc5c9..0000000000 --- a/development/cargo-vendor/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -cargo-vendor: cargo-vendor (Cargo subcommand to vendor crates.io dependencies) -cargo-vendor: -cargo-vendor: This is a Cargo subcommand which vendors all crates.io dependencies -cargo-vendor: into a local directory using Cargo's support for source replacement. -cargo-vendor: -cargo-vendor: https://github.com/alexcrichton/cargo-vendor -cargo-vendor: -cargo-vendor: -cargo-vendor: -cargo-vendor: -cargo-vendor: |