Skip to content

Commit

Permalink
Fix broken build script caused by git command (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingshen Sun committed Dec 4, 2017
1 parent 7bb061c commit 98cc80a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion brotli/BUILD
Expand Up @@ -5,7 +5,8 @@ url="https://github.com/dropbox/rust-brotli"
license=(BSD)

prepare() {
git clone -b c8ad81e7ad5a33b18b284a058f33d34bec27fea3 https://github.com/dropbox/rust-brotli.git "$srcdir"
git clone https://github.com/dropbox/rust-brotli.git "$srcdir"
cd "$srcdir" && git checkout -b c8ad81e7ad5a33b18b284a058f33d34bec27fea3
}

build() {
Expand Down
3 changes: 2 additions & 1 deletion giproute2/BUILD
Expand Up @@ -4,7 +4,8 @@ pkgdesc="iproute2 written in Golang."
license=(BSD)

prepare() {
git clone -b 2e6eb9e88d50617db5c5540c7e6a623144d4698a https://github.com/mesalock-linux/giproute2.git "$srcdir"
git clone https://github.com/mesalock-linux/giproute2.git "$srcdir"
cd "$srcdir" && git checkout -b 2e6eb9e88d50617db5c5540c7e6a623144d4698a
}

build() {
Expand Down
3 changes: 2 additions & 1 deletion mgetty/BUILD
Expand Up @@ -4,7 +4,8 @@ pkgdesc="getty written in Rust."
license=(BSD)

prepare() {
git clone -b fd191a6a3d0cab40cf1342bdf9766a08147bfb33 https://github.com/mesalock-linux/mgetty.git "$srcdir"
git clone https://github.com/mesalock-linux/mgetty.git "$srcdir"
cd "$srcdir" && git checkout -b fd191a6a3d0cab40cf1342bdf9766a08147bfb33
}

build() {
Expand Down
3 changes: 2 additions & 1 deletion minit/BUILD
Expand Up @@ -4,7 +4,8 @@ pkgdesc="init tool written in Rust."
license=(BSD)

prepare() {
git clone -b 685ada71ce42469cc6e5995e7faef475062b493c https://github.com/mesalock-linux/minit.git "$srcdir"
git clone https://github.com/mesalock-linux/minit.git "$srcdir"
cd "$srcdir" && git checkout -b 685ada71ce42469cc6e5995e7faef475062b493c
}

build() {
Expand Down
3 changes: 2 additions & 1 deletion uutils-coreutils/BUILD
Expand Up @@ -5,7 +5,8 @@ url="https://github.com/uutils/coreutils"
license=(MIT)

prepare() {
git clone -b 4e034b02bd959e7a66eacbfdf16882814e8cbccb https://github.com/uutils/coreutils.git "$srcdir"
git clone https://github.com/uutils/coreutils.git "$srcdir"
cd "$srcdir" && git checkout -b 4e034b02bd959e7a66eacbfdf16882814e8cbccb
cp "$pkgrepo"/"$pkgname"/001-makefile-libstdbuf.patch "$srcdir"
}

Expand Down
3 changes: 2 additions & 1 deletion uutils-findutils/BUILD
Expand Up @@ -5,7 +5,8 @@ url="https://github.com/uutils/findutils"
license=(MIT)

prepare() {
git clone -b 2e6a268fa5682fc9ee07f8f8b9634051f6c0ef6f https://github.com/uutils/findutils.git "$srcdir"
git clone https://github.com/uutils/findutils.git "$srcdir"
cd "$srcdir" && git checkout -b 2e6a268fa5682fc9ee07f8f8b9634051f6c0ef6f
}

build() {
Expand Down
3 changes: 2 additions & 1 deletion xi-core/BUILD
Expand Up @@ -5,7 +5,8 @@ url="https://github.com/google/xi-editor"
license=(Apache-2.0)

prepare() {
git clone -b 176c4002d873393b408fafc17fcbed0fc46b5057 https://github.com/google/xi-editor.git "$srcdir"
git clone https://github.com/google/xi-editor.git "$srcdir"
cd "$srcdir" && git checkout -b 176c4002d873393b408fafc17fcbed0fc46b5057
}

build() {
Expand Down
3 changes: 2 additions & 1 deletion xi-tui/BUILD
Expand Up @@ -5,7 +5,8 @@ url="https://github.com/little-dude/xi-tui"
license=(MIT)

prepare() {
git clone -b 032966b2bebc40c5d5401972e42aa07b821e8a72 https://github.com/little-dude/xi-tui.git "$srcdir"
git clone https://github.com/little-dude/xi-tui.git "$srcdir"
cd "$srcdir" && git checkout -b 032966b2bebc40c5d5401972e42aa07b821e8a72
}

build() {
Expand Down

0 comments on commit 98cc80a

Please sign in to comment.