Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker/
Date: Wed, 13 Jul 2016 16:14:13
Message-Id: 1468425874.504d39014be0dbf0f0cab63945c9926435f8789e.williamh@gentoo
1 commit: 504d39014be0dbf0f0cab63945c9926435f8789e
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 13 15:53:57 2016 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 13 16:04:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=504d3901
7
8 app-emulation/docker: 1.12.0_rc4 version bump
9
10 Package-Manager: portage-2.2.28
11
12 app-emulation/docker/Manifest | 1 +
13 app-emulation/docker/docker-1.12.0_rc4.ebuild | 269 ++++++++++++++++++++++++++
14 2 files changed, 270 insertions(+)
15
16 diff --git a/app-emulation/docker/Manifest b/app-emulation/docker/Manifest
17 index d2b19e7..ea1a203 100644
18 --- a/app-emulation/docker/Manifest
19 +++ b/app-emulation/docker/Manifest
20 @@ -1,2 +1,3 @@
21 DIST docker-1.11.0.tar.gz 10637394 SHA256 088869b9a19ae17656e068aa6d3d473866e8133365427c601c671da1b2189057 SHA512 ecb7f531a5632fd6274e3eec59a5194c61d0788ab9f3864845cbc248232c2f14671a26c34abab8c5ca85ce6106ae72ea3ae4e5d133ad1efb126069ae82a2dba0 WHIRLPOOL 20b0ef1642d2fea2ae186a17786d95f138fb7df92daa104f00c481488f82eadd5e8f27a0a8e926d68f495fd62bc132d83817a0831f84b3786474a9408d87878f
22 DIST docker-1.12.0_rc3.tar.gz 12359008 SHA256 3f030c4f084ed518efeb00f21f3fdfb25252dd9c153b1d42da953e59bb41c582 SHA512 438f0f6fa65f7354d3059558427aadcc86139f3c062e30407f249ba8cfcfb307f083cea1a872637dfb4c68481a11cc22580e50ca6eb51d98370665c9fdc42f65 WHIRLPOOL 30914ea9fee3759bb1229329ebc7da35d3ba39abf311abb1f90e12e45899d01954d7903579b253d3cc609ac269ceaf681e58d08e87b31232836322ab3dcc65c1
23 +DIST docker-1.12.0_rc4.tar.gz 12381738 SHA256 bc256d2a348efbf236eab991254c925fa1917dd1e29cb40586f1696f4e24852e SHA512 6eee057ffad2770287143f330de9a35d5c0a94e0d4c79a7dbd14a1bdff79e61d8044ac69c7548c966c65589486424ea73f9382226d4a965f1568115da2ef21ca WHIRLPOOL f48170c199aa7639d614c443dca6aadf60178beacd675c92ee50e2216b3134a14d50e311abe9beeb30f7d10d270f68baeacfe0204de8dd1df71bc278898b034e
24
25 diff --git a/app-emulation/docker/docker-1.12.0_rc4.ebuild b/app-emulation/docker/docker-1.12.0_rc4.ebuild
26 new file mode 100644
27 index 0000000..059bc39
28 --- /dev/null
29 +++ b/app-emulation/docker/docker-1.12.0_rc4.ebuild
30 @@ -0,0 +1,269 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +EGO_PN="github.com/docker/docker"
38 +
39 +if [[ ${PV} = *9999* ]]; then
40 + # Docker cannot be fetched via "go get", thanks to autogenerated code
41 + EGIT_REPO_URI="https://${EGO_PN}.git"
42 + EGIT_CHECKOUT_DIR="${WORKDIR}/${P}/src/${EGO_PN}"
43 + inherit git-r3
44 +else
45 + MY_PV="${PV/_/-}"
46 + DOCKER_GITCOMMIT="e4a0dbc"
47 + EGIT_COMMIT="v${MY_PV}"
48 + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
49 + KEYWORDS="~amd64"
50 + [ "$DOCKER_GITCOMMIT" ] || die "DOCKER_GITCOMMIT must be added manually for each bump!"
51 + inherit golang-vcs-snapshot
52 +fi
53 +inherit bash-completion-r1 golang-base linux-info systemd udev user
54 +
55 +DESCRIPTION="The core functions you need to create Docker images and run Docker containers"
56 +HOMEPAGE="https://dockerproject.org"
57 +LICENSE="Apache-2.0"
58 +SLOT="0"
59 +IUSE="apparmor aufs btrfs +device-mapper experimental overlay seccomp"
60 +
61 +# https://github.com/docker/docker/blob/master/hack/PACKAGERS.md#build-dependencies
62 +CDEPEND="
63 + >=dev-db/sqlite-3.7.9:3
64 + device-mapper? (
65 + >=sys-fs/lvm2-2.02.89[thin]
66 + )
67 + seccomp? ( >=sys-libs/libseccomp-2.2.1 )
68 + apparmor? ( sys-libs/libapparmor )
69 +"
70 +
71 +DEPEND="
72 + ${CDEPEND}
73 +
74 + dev-go/go-md2man
75 +
76 + btrfs? (
77 + >=sys-fs/btrfs-progs-3.8
78 + )
79 +"
80 +
81 +# https://github.com/docker/docker/blob/master/hack/PACKAGERS.md#runtime-dependencies
82 +# https://github.com/docker/docker/blob/master/hack/PACKAGERS.md#optional-dependencies
83 +RDEPEND="
84 + ${CDEPEND}
85 +
86 + !app-emulation/docker-bin
87 + >=net-firewall/iptables-1.4
88 + sys-process/procps
89 + >=dev-vcs/git-1.7
90 + >=app-arch/xz-utils-4.9
91 +
92 + >app-emulation/containerd-0.2.2
93 + app-emulation/runc[apparmor?,seccomp?]
94 +"
95 +
96 +RESTRICT="installsources strip"
97 +
98 +S="${WORKDIR}/${P}/src/${EGO_PN}"
99 +
100 +# see "contrib/check-config.sh" from upstream's sources
101 +CONFIG_CHECK="
102 + ~NAMESPACES ~NET_NS ~PID_NS ~IPC_NS ~UTS_NS
103 + ~DEVPTS_MULTIPLE_INSTANCES
104 + ~CGROUPS ~CGROUP_CPUACCT ~CGROUP_DEVICE ~CGROUP_FREEZER ~CGROUP_SCHED ~CPUSETS ~MEMCG
105 + ~KEYS ~MACVLAN ~VETH ~BRIDGE ~BRIDGE_NETFILTER
106 + ~NF_NAT_IPV4 ~IP_NF_FILTER ~IP_NF_TARGET_MASQUERADE
107 + ~IP_VS
108 + ~NETFILTER_XT_MATCH_ADDRTYPE ~NETFILTER_XT_MATCH_CONNTRACK
109 + ~NF_NAT ~NF_NAT_NEEDED
110 +
111 + ~POSIX_MQUEUE
112 +
113 + ~MEMCG_KMEM ~MEMCG_SWAP ~MEMCG_SWAP_ENABLED
114 +
115 + ~BLK_CGROUP ~IOSCHED_CFQ
116 + ~CGROUP_PERF
117 + ~CGROUP_HUGETLB
118 + ~NET_CLS_CGROUP
119 + ~CFS_BANDWIDTH ~FAIR_GROUP_SCHED ~RT_GROUP_SCHED
120 + ~XFRM_ALGO ~XFRM_USER
121 +"
122 +
123 +ERROR_KEYS="CONFIG_KEYS: is mandatory"
124 +ERROR_MEMCG_KMEM="CONFIG_MEMCG_KMEM: is optional"
125 +ERROR_MEMCG_SWAP="CONFIG_MEMCG_SWAP: is required if you wish to limit swap usage of containers"
126 +ERROR_RESOURCE_COUNTERS="CONFIG_RESOURCE_COUNTERS: is optional for container statistics gathering"
127 +
128 +ERROR_BLK_CGROUP="CONFIG_BLK_CGROUP: is optional for container statistics gathering"
129 +ERROR_IOSCHED_CFQ="CONFIG_IOSCHED_CFQ: is optional for container statistics gathering"
130 +ERROR_CGROUP_PERF="CONFIG_CGROUP_PERF: is optional for container statistics gathering"
131 +ERROR_CFS_BANDWIDTH="CONFIG_CFS_BANDWIDTH: is optional for container statistics gathering"
132 +ERROR_XFRM_ALGO="CONFIG_XFRM_ALGO: is optional for secure networks"
133 +ERROR_XFRM_USER="CONFIG_XFRM_USER: is optional for secure networks"
134 +
135 +pkg_setup() {
136 + if kernel_is lt 3 10; then
137 + ewarn ""
138 + ewarn "Using Docker with kernels older than 3.10 is unstable and unsupported."
139 + ewarn " - http://docs.docker.com/installation/binaries/#check-kernel-dependencies"
140 + fi
141 +
142 + # for where these kernel versions come from, see:
143 + # https://www.google.com/search?q=945b2b2d259d1a4364a2799e80e8ff32f8c6ee6f+site%3Akernel.org%2Fpub%2Flinux%2Fkernel+file%3AChangeLog*
144 + if ! {
145 + kernel_is ge 3 16 \
146 + || { kernel_is 3 15 && kernel_is ge 3 15 5; } \
147 + || { kernel_is 3 14 && kernel_is ge 3 14 12; } \
148 + || { kernel_is 3 12 && kernel_is ge 3 12 25; }
149 + }; then
150 + ewarn ""
151 + ewarn "There is a serious Docker-related kernel panic that has been fixed in 3.16+"
152 + ewarn " (and was backported to 3.15.5+, 3.14.12+, and 3.12.25+)"
153 + ewarn ""
154 + ewarn "See also https://github.com/docker/docker/issues/2960"
155 + fi
156 +
157 + if kernel_is le 3 18; then
158 + CONFIG_CHECK+="
159 + ~RESOURCE_COUNTERS
160 + "
161 + fi
162 +
163 + if kernel_is le 3 13; then
164 + CONFIG_CHECK+="
165 + ~NETPRIO_CGROUP
166 + "
167 + else
168 + CONFIG_CHECK+="
169 + ~CGROUP_NET_PRIO
170 + "
171 + fi
172 +
173 + if use aufs; then
174 + CONFIG_CHECK+="
175 + ~AUFS_FS
176 + ~EXT4_FS_POSIX_ACL ~EXT4_FS_SECURITY
177 + "
178 + ERROR_AUFS_FS="CONFIG_AUFS_FS: is required to be set if and only if aufs-sources are used instead of aufs4/aufs3"
179 + fi
180 +
181 + if use btrfs; then
182 + CONFIG_CHECK+="
183 + ~BTRFS_FS
184 + "
185 + fi
186 +
187 + if use device-mapper; then
188 + CONFIG_CHECK+="
189 + ~BLK_DEV_DM ~DM_THIN_PROVISIONING ~EXT4_FS ~EXT4_FS_POSIX_ACL ~EXT4_FS_SECURITY
190 + "
191 + fi
192 +
193 + if use overlay; then
194 + CONFIG_CHECK+="
195 + ~OVERLAY_FS ~EXT4_FS_SECURITY ~EXT4_FS_POSIX_ACL
196 + "
197 + fi
198 +
199 + linux-info_pkg_setup
200 +
201 + # create docker group for the code checking for it in /etc/group
202 + enewgroup docker
203 +}
204 +
205 +src_compile() {
206 + export GOPATH="${WORKDIR}/${P}:${PWD}/vendor"
207 +
208 + # setup CFLAGS and LDFLAGS for separate build target
209 + # see https://github.com/tianon/docker-overlay/pull/10
210 + export CGO_CFLAGS="-I${ROOT}/usr/include"
211 + export CGO_LDFLAGS="-L${ROOT}/usr/$(get_libdir)"
212 +
213 + # if we're building from a zip, we need the GITCOMMIT value
214 + [ "$DOCKER_GITCOMMIT" ] && export DOCKER_GITCOMMIT
215 +
216 + if gcc-specs-pie; then
217 + sed -i "s/EXTLDFLAGS_STATIC='/&-fno-PIC /" hack/make.sh || die
218 + grep -q -- '-fno-PIC' hack/make.sh || die 'hardened sed failed'
219 +
220 + sed "s/LDFLAGS_STATIC_DOCKER='/&-extldflags -fno-PIC /" \
221 + -i hack/make/dynbinary || die
222 + grep -q -- '-fno-PIC' hack/make/dynbinary || die 'hardened sed failed'
223 + fi
224 +
225 + # let's set up some optional features :)
226 + export DOCKER_BUILDTAGS=''
227 + for gd in aufs btrfs device-mapper overlay; do
228 + if ! use $gd; then
229 + DOCKER_BUILDTAGS+=" exclude_graphdriver_${gd//-/}"
230 + fi
231 + done
232 +
233 + for tag in apparmor seccomp; do
234 + if use $tag; then
235 + DOCKER_BUILDTAGS+=" $tag"
236 + fi
237 + done
238 +
239 + # https://github.com/docker/docker/pull/13338
240 + if use experimental; then
241 + export DOCKER_EXPERIMENTAL=1
242 + else
243 + unset DOCKER_EXPERIMENTAL
244 + fi
245 +
246 + # time to build!
247 + ./hack/make.sh dynbinary || die 'dynbinary failed'
248 +
249 + # build the man pages too
250 + ./man/md2man-all.sh || die "unable to generate man pages"
251 +}
252 +
253 +src_install() {
254 + VERSION="$(cat VERSION)"
255 + newbin "bundles/$VERSION/dynbinary-client/docker-$VERSION" docker
256 + newbin "bundles/$VERSION/dynbinary-daemon/dockerd-$VERSION" dockerd
257 + dosym containerd /usr/bin/docker-containerd
258 + dosym containerd-shim /usr/bin/docker-containerd-shim
259 + dosym runc /usr/bin/docker-runc
260 +
261 + newinitd contrib/init/openrc/docker.initd docker
262 + newconfd contrib/init/openrc/docker.confd docker
263 +
264 + systemd_dounit contrib/init/systemd/docker.{service,socket}
265 +
266 + udev_dorules contrib/udev/*.rules
267 +
268 + dodoc AUTHORS CONTRIBUTING.md CHANGELOG.md NOTICE README.md
269 + dodoc -r docs/*
270 + doman man/man*/*
271 +
272 + dobashcomp contrib/completion/bash/*
273 +
274 + insinto /usr/share/zsh/site-functions
275 + doins contrib/completion/zsh/*
276 +
277 + insinto /usr/share/vim/vimfiles
278 + doins -r contrib/syntax/vim/ftdetect
279 + doins -r contrib/syntax/vim/syntax
280 +
281 + # note: intentionally not using "doins" so that we preserve +x bits
282 + mkdir -p "${D}/usr/share/${PN}/contrib"
283 + cp -R contrib/* "${D}/usr/share/${PN}/contrib"
284 +}
285 +
286 +pkg_postinst() {
287 + udev_reload
288 +
289 + elog
290 + elog "To use Docker, the Docker daemon must be running as root. To automatically"
291 + elog "start the Docker daemon at boot, add Docker to the default runlevel:"
292 + elog " rc-update add docker default"
293 + elog "Similarly for systemd:"
294 + elog " systemctl enable docker.service"
295 + elog
296 + elog "To use Docker as a non-root user, add yourself to the 'docker' group:"
297 + elog " usermod -aG docker youruser"
298 + elog
299 +}