diff options
author | Matt Housh <jaeger@crux.ninja> | 2017-03-27 12:07:28 -0500 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2017-03-27 12:07:28 -0500 |
commit | b9cb02db221f963cfdbf1733ef8da00ec3cb0bb1 (patch) | |
tree | b00b2281b4fabd45d2ca7aefdb4fc29f1b4a5c90 /containerd | |
parent | e655b70197ab87ae9578cec47dec41a7d7731096 (diff) | |
download | contrib-b9cb02db221f963cfdbf1733ef8da00ec3cb0bb1.tar.gz contrib-b9cb02db221f963cfdbf1733ef8da00ec3cb0bb1.tar.xz |
containerd: switched make command to full commit hash
Diffstat (limited to 'containerd')
-rw-r--r-- | containerd/.signature | 4 | ||||
-rw-r--r-- | containerd/Pkgfile | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/containerd/.signature b/containerd/.signature index f5beacc89..d79b2543e 100644 --- a/containerd/.signature +++ b/containerd/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3/EeuAeWoe2Ns51LMEonPACuIwUkb9G6mqkzl19ydIACyHbIPd0cG8emN0YQKK/hbaQ3fVgKVe6jgLvPGKm0yw4= -SHA256 (Pkgfile) = 8d7d6aa54f1dfcae0ff3a4e4b5ba61359fcf723844ae4c813825dcf209b916f4 +RWSagIOpLGJF3691KNEcmLOe8rycZzNTM2a2Dzg+IRI3P1Z3NR4g2mKiX4Q4MwhYQ1nIARMU9bMlzO70lqrOT6aZvQdK3j9AWg0= +SHA256 (Pkgfile) = c3f870941cd0f077343b065c36ee32e1963a08d9f114a51b40a274eab73abd9f SHA256 (.footprint) = 32a4bb4fd22670b861b84bdaeb8ae0f1cac4047815d27fdc767c6e8aaf7523cf SHA256 (containerd-977c511.tar.xz) = 23e9b4c405a2863be8a7bf52f23a586fb170a817c2b3a636192053193452daab diff --git a/containerd/Pkgfile b/containerd/Pkgfile index ab32348b7..3ac29bde8 100644 --- a/containerd/Pkgfile +++ b/containerd/Pkgfile @@ -5,7 +5,7 @@ name=containerd version=977c511 -release=1 +release=2 source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.xz) build() { @@ -13,7 +13,8 @@ build() { ln -sf $SRC/$name-$version src/github.com/docker/$name cd src/github.com/docker/$name export GOPATH=$SRC - make GIT_COMMIT=977c511 + # use the long commit hash here + make GIT_COMMIT=977c511eda0925a723debdc94d09459af49d082a install -d -m 0755 $PKG/usr/bin install -m 0755 bin/* $PKG/usr/bin/ } |