system/docker: Updated for version 1.0.1.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Vincent Batts 2014-06-25 23:25:27 +07:00 committed by Willy Sudiarto Raharjo
parent 772a4143de
commit fe4b965a7e
2 changed files with 8 additions and 7 deletions

View file

@ -5,11 +5,11 @@
# Written by Vincent Batts <vbatts@hashbangbash.com>
PRGNAM=docker
VERSION=${VERSION:-0.11.1}
VERSION=${VERSION:-1.0.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
GITHASH=${GITHASH:-fb99f99}
GITHASH=${GITHASH:-990021a}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@ -47,9 +47,10 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/v${VERSION}.tar.gz || tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
# the have symlinks in their testdata that goes outside the context of this build
find . ! -type l \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
-o -perm 511 \) -exec chmod 755 {} \; -o ! -type l \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;

View file

@ -1,8 +1,8 @@
PRGNAM="docker"
VERSION="0.11.1"
VERSION="1.0.1"
HOMEPAGE="https://docker.io/"
DOWNLOAD="https://github.com/dotcloud/docker/archive/v0.11.1.tar.gz"
MD5SUM="6496901bfc30aa8094411a0dd6c10ab5"
DOWNLOAD="https://github.com/dotcloud/docker/archive/v1.0.1.tar.gz"
MD5SUM="61c6c5b7308817a53f1e0f0173f65fe0"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="google-go-lang"