get rid of needless _ver variable. This also fixes `docker --version` to
be more consistent with the .dep from docker inc.
get rid of _apply_patches() and prepare() functions
replace _dockerdir variable with builddir and adjust openrc patch
go recently received a security upgrade to 1.12.8 (f4894bf9) this
upgrade fixes various CVEs in go standard libraries, for instance in
HTTP/2 functionality. Since go is statically linked packages using this
functionality need to be rebuild.
Separates Docker's standalone engine and CLI components into separate packages, 'docker-engine' and 'docker-cli'; the container now exists as a 'meta' package, pulling in both the engine and cli packages, to maintain backward compatibility.
See https://github.com/docker/docker-ce/releases/tag/v18.09.6 for more information about what's new in 18.09.6.
Closes GH-7640
* update docker to 18.09.0
* containerd and rund are now built separately
* add dependency on tini-static, no need to build it here
* use new go-md2man package to process manpages
This change to APKBUILD for runc also fixes a warning that gets
logged every 30 seconds while running dockerd:
failed to retrieve docker-runc version: unknown output format: runc version spec: 1.0.0\n
Reason: the way it was built before was partially wrong
Other packages providing a vim subpackage (e.g. main/mercurial) also add
an install_if rule for their vim subpackage. So for the sake of
consistency do it here as well.
This commit updates $license variable in all APKBUILDs to comply with
short names specified by SPDX version 3.0 [1] where possible. It was
done using find-and-replace method on substrings inside $license
variables.
Only license names were updated, not "expressions" specifying relation
between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or
exceptions (e.g. "X with exceptions").
Many licenses have a version or multiple variants, e.g. MPL-2.0,
BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not
contain license version or variant. Since there's no way how to infer
this information just from abuild, it were left without the variant
suffix or version, i.e. non SPDX compliant.
GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They
exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later
(formerly e.g. GPL-2.0+). We did not systematically noted distinguish
between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean
GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g.
GPL2+) were left without the variant suffix, i.e. non SPDX compliant.
Note: This commit just fixes format of the license names, no
verification has been done if the specified license information is
actually correct!
[1]: https://spdx.org/licenses/
py-opencl, R: missing dependencies community/{OpenBLAS,py-numpy}
openspecfun: missing dependency community/openlibm
llvm-libunwind: no support yet
drawterm: no support yet
caddy:
e040f51c04/buildenv.go (L239)
docker: disable for now.
Currently we still cannot boot Alpine s390x natively yet, most usage are
running inside containers. Thus it is not likely we need Docker on s390x
for now.
There is no -u flag to ulimit provided by Busybox ash, change
to -p in docker.init
bash ulimit:
-n The maximum number of open file descriptors
-u The maximum number of processes available to a single user
ash ulimit (from Busybox):
{ RLIMIT_NOFILE, 0, 'n', "file descriptors" },
{ RLIMIT_NPROC, 0, 'p', "processes" },
References:
428d7337e88db61095a3
* Needed to tweak tini to return not just version but also commit.
This is needed so docker doesn't complain it can't get version.
* Added docker-doc man pages (sub package)
* Upgrade to v17.03.1-ce