diff options
author | William Hubbs <williamh@gentoo.org> | 2021-01-09 14:53:34 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2021-01-09 14:56:46 -0600 |
commit | 674aed3fda2de9134fd6b528de264a2b1b2ccac7 (patch) | |
tree | 202f297d9d8bc05563c8fcca54de312181cd4283 /app-emulation/docker | |
parent | app-misc/geoclue: Version bump to 2.5.7 (diff) | |
download | gentoo-674aed3fda2de9134fd6b528de264a2b1b2ccac7.tar.gz gentoo-674aed3fda2de9134fd6b528de264a2b1b2ccac7.tar.bz2 gentoo-674aed3fda2de9134fd6b528de264a2b1b2ccac7.zip |
app-emulation/docker: build fixes for 20.10.2
- Complete removal of selinux use flag
- fix EGO_PN
Closes: https://bugs.gentoo.org/764524
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-emulation/docker')
-rw-r--r-- | app-emulation/docker/docker-20.10.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-emulation/docker/docker-20.10.2.ebuild b/app-emulation/docker/docker-20.10.2.ebuild index c7720c3208da..0330740f9dcc 100644 --- a/app-emulation/docker/docker-20.10.2.ebuild +++ b/app-emulation/docker/docker-20.10.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -EGO_PN="github.com/moby/moby" +EGO_PN=github.com/docker/docker GIT_COMMIT=f0014860c1 inherit bash-completion-r1 linux-info systemd udev golang-vcs-snapshot @@ -196,7 +196,7 @@ src_compile() { fi done - for tag in apparmor seccomp selinux; do + for tag in apparmor seccomp; do if use $tag; then DOCKER_BUILDTAGS+=" $tag" fi |