From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0424E1395E2 for ; Mon, 14 Nov 2016 18:08:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51044E0AA8; Mon, 14 Nov 2016 18:08:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26222E0AA8 for ; Mon, 14 Nov 2016 18:08:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA271341658 for ; Mon, 14 Nov 2016 18:08:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6446308 for ; Mon, 14 Nov 2016 18:08:23 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1479146887.662b77d032d55476c2f08a9f7d413f8fc4bedaaf.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/docker/docker-9999.ebuild X-VCS-Directories: app-emulation/docker/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 662b77d032d55476c2f08a9f7d413f8fc4bedaaf X-VCS-Branch: master Date: Mon, 14 Nov 2016 18:08:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9ec33da7-8a2b-4154-8078-0f692962e4c2 X-Archives-Hash: 1b10b8cb9621d8d8d2418551b851e07b commit: 662b77d032d55476c2f08a9f7d413f8fc4bedaaf Author: William Hubbs gentoo org> AuthorDate: Mon Nov 14 18:08:07 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Nov 14 18:08:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=662b77d0 app-emulation/docker: sync live ebuild Package-Manager: portage-2.3.0 app-emulation/docker/docker-9999.ebuild | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/app-emulation/docker/docker-9999.ebuild b/app-emulation/docker/docker-9999.ebuild index feccb2c..f7e5a33 100644 --- a/app-emulation/docker/docker-9999.ebuild +++ b/app-emulation/docker/docker-9999.ebuild @@ -26,9 +26,9 @@ DESCRIPTION="The core functions you need to create Docker images and run Docker HOMEPAGE="https://dockerproject.org" LICENSE="Apache-2.0" SLOT="0" -IUSE="apparmor aufs btrfs +device-mapper experimental overlay seccomp" +IUSE="apparmor aufs btrfs +device-mapper hardened overlay pkcs11 seccomp" -# https://github.com/docker/docker/blob/master/hack/PACKAGERS.md#build-dependencies +# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#build-dependencies CDEPEND=" >=dev-db/sqlite-3.7.9:3 device-mapper? ( @@ -44,12 +44,12 @@ DEPEND=" dev-go/go-md2man btrfs? ( - >=sys-fs/btrfs-progs-3.8 + >=sys-fs/btrfs-progs-3.16.1 ) " -# https://github.com/docker/docker/blob/master/hack/PACKAGERS.md#runtime-dependencies -# https://github.com/docker/docker/blob/master/hack/PACKAGERS.md#optional-dependencies +# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#runtime-dependencies +# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#optional-dependencies RDEPEND=" ${CDEPEND} @@ -61,6 +61,7 @@ RDEPEND=" >app-emulation/containerd-0.2.2 app-emulation/runc[apparmor?,seccomp?] + app-emulation/docker-proxy " RESTRICT="installsources strip" @@ -111,7 +112,7 @@ pkg_setup() { if kernel_is lt 3 10; then ewarn "" ewarn "Using Docker with kernels older than 3.10 is unstable and unsupported." - ewarn " - http://docs.docker.com/installation/binaries/#check-kernel-dependencies" + ewarn " - http://docs.docker.com/engine/installation/binaries/#check-kernel-dependencies" fi # for where these kernel versions come from, see: @@ -199,10 +200,10 @@ src_compile() { export CGO_CFLAGS="-I${ROOT}/usr/include" export CGO_LDFLAGS="-L${ROOT}/usr/$(get_libdir)" - # if we're building from a zip, we need the GITCOMMIT value + # if we're building from a tarball, we need the GITCOMMIT value [ "$DOCKER_GITCOMMIT" ] && export DOCKER_GITCOMMIT - if gcc-specs-pie; then + if use hardened; then sed -i "s/EXTLDFLAGS_STATIC='/&-fno-PIC /" hack/make.sh || die grep -q -- '-fno-PIC' hack/make.sh || die 'hardened sed failed' @@ -222,19 +223,12 @@ src_compile() { fi done - for tag in apparmor seccomp; do + for tag in apparmor pkcs11 seccomp; do if use $tag; then DOCKER_BUILDTAGS+=" $tag" fi done - # https://github.com/docker/docker/pull/13338 - if use experimental; then - export DOCKER_EXPERIMENTAL=1 - else - unset DOCKER_EXPERIMENTAL - fi - # time to build! ./hack/make.sh dynbinary || die 'dynbinary failed' @@ -246,7 +240,6 @@ src_install() { VERSION="$(cat VERSION)" newbin "bundles/$VERSION/dynbinary-client/docker-$VERSION" docker newbin "bundles/$VERSION/dynbinary-daemon/dockerd-$VERSION" dockerd - newbin "bundles/$VERSION/dynbinary-daemon/docker-proxy-$VERSION" docker-proxy dosym containerd /usr/bin/docker-containerd dosym containerd-shim /usr/bin/docker-containerd-shim dosym runc /usr/bin/docker-runc @@ -272,8 +265,8 @@ src_install() { doins -r contrib/syntax/vim/syntax # note: intentionally not using "doins" so that we preserve +x bits - mkdir -p "${D}/usr/share/${PN}/contrib" - cp -R contrib/* "${D}/usr/share/${PN}/contrib" + dodir /usr/share/${PN}/contrib + cp -R contrib/* "${ED}/usr/share/${PN}/contrib" } pkg_postinst() {