Skip to content
This repository was archived by the owner on Nov 4, 2023. It is now read-only.

Commit 2288092

Browse files
author
Joshua Li
committed
upgrade deps within tilde, and bump upx
1 parent fa5d235 commit 2288092

File tree

3 files changed

+36
-26
lines changed

3 files changed

+36
-26
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ rust: stable
77
env:
88
global:
99
- NAME=vape
10+
- UPX_VER=3.95
1011

1112
before_install:
1213
- case "$TARGET" in
@@ -15,8 +16,8 @@ before_install:
1516
esac
1617
- case "$TRAVIS_OS_NAME" in
1718
"linux")
18-
wget -q -O - https://github.com/upx/upx/releases/download/v3.94/upx-3.94-amd64_linux.tar.xz | unxz | tar xf - ;
19-
sudo install -m755 upx-3.94-amd64_linux/upx /usr/local/bin ;;
19+
wget -qO - "https://github.com/upx/upx/releases/download/v${UPX_VER}/upx-${UPX_VER}-amd64_linux.tar.xz" | unxz | tar xf - ;
20+
sudo install -m755 "upx-${UPX_VER}-amd64_linux/upx" /usr/local/bin ;;
2021
"osx")
2122
brew update ;
2223
brew install upx ;;
@@ -33,7 +34,7 @@ script:
3334
strip "target/${TARGET}/release/${NAME}" ;;
3435
*) ;;
3536
esac
36-
- upx --ultra-brute "target/${TARGET}/release/${NAME}"
37+
- upx --ultra-brute --best "target/${TARGET}/release/${NAME}"
3738
- mv -v "target/${TARGET}/release/${NAME}" "${NAME}-${TARGET}"
3839

3940
matrix:

Cargo.lock

Lines changed: 29 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "vape"
33
description = "full width aesthetics"
44
version = "0.2.1"
5-
authors = ["Joshua Li <joshua.r.li.98@gmail.com>"]
5+
authors = ["Joshua Li <josh@jrl.ninja>"]
66
license = "MIT"
77

88
homepage = "https://www.github.com/JoshuaRLi/vape"
@@ -15,8 +15,8 @@ categories = ["command-line-utilities", "text-processing"]
1515
travis-ci = { repository = "JoshuaRLi/vape" }
1616

1717
[dependencies]
18-
getopts = "^0.2"
19-
rand = "~0.5.0"
18+
getopts = "~0.2"
19+
rand = "~0.5"
2020

2121
[[bin]]
2222
name = "vape"

0 commit comments

Comments
 (0)