Benjamin Gilbert
0b010279e0
build_image: Create /boot/coreos/first_boot
2017-03-01 15:54:05 -08:00
Michael Marineau
770333103f
Merge pull request #2454 from marineam/update-mantle
...
mantle: bump to latest
2017-03-01 15:12:53 -08:00
Michael Marineau
71a8118a93
mantle: bump to latest
...
Includes major updates to kola.
2017-03-01 15:08:17 -08:00
Euan Kemp
1186d2875a
Initial checkin of docker-aci build script
2017-03-01 14:59:43 -08:00
Euan Kemp
c6755af3c2
Merge pull request #2452 from euank/docker-1.12
...
Re-add docker 1.12 ebuilds
2017-03-01 13:41:06 -08:00
Alex Crawford
91e1ea080a
Merge pull request #2453 from crawford/ignition
...
sys-apps/ignition: bump to v0.13.0
2017-03-01 11:15:42 -08:00
Alex Crawford
e7311382ae
sys-apps/ignition: bump to v0.13.0
2017-03-01 11:13:45 -08:00
Euan Kemp
20325a547f
build_image_util: allow unchecked emerges too
...
This is useful for emerges that are meant for incomplete rootfs's, such
as ACI building emerges. There are cases where the #! check is expected
to fail while doing those.
2017-03-01 10:52:17 -08:00
Euan Kemp
e435e82338
app-emulation/docker: lockdown 1.12 containerd dep
2017-02-27 17:15:41 -08:00
Euan Kemp
d1ef988acc
app-emulation/containerd: remove 9999 from 0.2.5
2017-02-27 17:14:18 -08:00
Euan Kemp
8cbe29301b
app-emulation/containerd: re-add 0.2.5
...
And move it from being a symlink.
This is the older version docker 1.12 uses
2017-02-27 17:13:12 -08:00
Euan Kemp
0fcf442a47
app-emulation/docker: lock down 1.13 dependencies
...
These are the only versions upstream tests together
2017-02-27 17:10:27 -08:00
Euan Kemp
4472529650
app-emulation/docker: depend on correct runc
...
docker 1.12 is only tested to work by upstream with this specific runc
version.
2017-02-27 17:08:29 -08:00
Euan Kemp
fa1eb15c37
app-emulation/runc: improve patch naming
2017-02-27 17:07:31 -08:00
Euan Kemp
8303e82b87
app-emulation/runc: bring back p9 for docker 1.12
2017-02-27 17:00:47 -08:00
Euan Kemp
79014a1dcd
app-emulation/docker: remove 9999 logic from 1.12
2017-02-27 16:58:14 -08:00
Euan Kemp
42edc7ae2c
app-emulation/docker: re-add docker-1.12 ebuild
...
This is to allow packaging it for skim as well.
This is an unmodified copy of the ebuild from build-1325
2017-02-27 16:54:41 -08:00
David Michael
366bbc106e
Merge pull request #2446 from dm0-/bugs-1789
...
sys-apps/systemd: bump for tmp mounts backport
2017-02-27 15:51:54 -08:00
Benjamin Gilbert
37d22d0ff3
Merge pull request #648 from bgilbert/sdk-version-keep
...
tag_release: Semi-document "keep" argument to --sdk_version
2017-02-27 14:19:07 -08:00
Benjamin Gilbert
7965d657c7
tag_release: Semi-document "keep" argument to --sdk_version
2017-02-27 13:48:44 -08:00
David Michael
bef68c9970
Merge pull request #2450 from dm0-/linux
...
Linux 4.10.1
2017-02-26 19:26:59 -08:00
David Michael
f0b8c1dadd
sys-kernel/coreos-sources: bump to 4.10.1
2017-02-26 19:07:11 -08:00
Benjamin Gilbert
4d3899e322
Merge pull request #2449 from bgilbert/kernel-4.10
...
sys-kernel/coreos-*: bump to v4.10
2017-02-24 16:27:32 -08:00
Benjamin Gilbert
cdf6c9f780
sys-kernel/coreos-*: bump to v4.10
2017-02-24 16:14:35 -08:00
David Michael
511f73e9d0
sys-apps/systemd: bump for tmp mounts backport
2017-02-24 14:27:27 -08:00
David Michael
9104ea9fed
Merge pull request #2444 from dm0-/gcc
...
profiles: update GCC to a stable version
2017-02-24 13:10:06 -08:00
David Michael
77a1682b71
Merge pull request #527 from dm0-/gcc
...
bump(sys-devel/gcc): sync with upstream
2017-02-24 13:09:55 -08:00
David Michael
dae71820ac
bump(sys-devel/gcc): sync with upstream
2017-02-24 13:00:10 -08:00
David Michael
793bbb8576
profiles: update GCC to a stable version
2017-02-24 12:56:29 -08:00
Euan Kemp
07cd4b9831
Merge pull request #2429 from euank/containerd-sidegrade
...
app-emulation/containerd: fix cache problem
2017-02-24 12:09:34 -08:00
Euan Kemp
e7ac7e80d0
app-emulation/docker: depend on newer containerd
...
By downgrading the version. See the previous commit for details.
2017-02-24 11:37:05 -08:00
Euan Kemp
f24eae8fde
app-emulation/containerd: fix cache problem
...
Prior to this, "${P}" would match upstream gentoo's distfile cache of
containerd, and that tarball would be used regardless of our SRC_URI
changing as we bumped the commit hash.
That resulted in us having an incorrect version of containerd installed
(and lying about the commit hash in --version to boot. Yikes!)
This fixes it by ensuring our package name actually uniquely identifies
the containerd package.
The choice to use the number of commits since the version as the patch
number is fairly arbitrary, but seemed like a sane and comparable number
to choose.
Due to containerd's somewhat fragile versioning, this number is not
technically unique (since there the v0.2.3 bump is commit to multiple
branches), but we can deal with issues if they happen.
Alternative fixes, such as FETCH_RESTRICT or other means of fooling the
cache logic, are more error prone and less faithful to portage's intent
that ${P} does uniquely identify an upstream source.
A different fix would be to use a CROS_WORKON style process for
containerd. There's no particular reason that approach is being avoided
other than the need to hack on containerd has so far been fairly small.
We can be more sloppy with versioning if/when we switch containerd over
to that process.
The choice to rename to 0.2.3 is because that commit (see
containerd/version.go) chooses to call itself 0.2.3, though it's newer
than the v0.2.5 tag. Docker 1.12 actually used a commit that contained
the 0.2.5 tag.
2017-02-24 11:37:02 -08:00
David Michael
5e273c5f26
Merge pull request #2443 from dm0-/sysroot
...
coreos/config/env: make gettext builds stay inside the sysroot
2017-02-22 22:07:07 -08:00
David Michael
455ef91da3
coreos/config/env: make gettext builds stay inside the sysroot
...
This is only an issue when the glibc versions differ between the
SDK and the sysroot. The M4 library detection functions in gettext
do bad things on their own, so bypass them.
2017-02-22 21:56:19 -08:00
Benjamin Gilbert
f13eccc973
Merge pull request #2442 from bgilbert/move-ignition-units
...
sys-apps/ignition, sys-kernel/bootengine: Migrate Ignition unit files
2017-02-22 21:54:56 -08:00
Benjamin Gilbert
b54b3e3c28
sys-apps/ignition, sys-kernel/bootengine: Migrate Ignition unit files
...
The Ignition units are only used in the initramfs and are intertwined
with several other units in bootengine. Move them into bootengine for
simplicity.
2017-02-22 21:48:38 -08:00
Michael Marineau
f8f1ea80b0
Merge pull request #526 from marineam/add-missing
...
Add missing distfile digests
2017-02-22 18:06:12 -08:00
Michael Marineau
0ccec34939
app-admin/eselect: add missing digests
2017-02-22 17:49:33 -08:00
Michael Marineau
6173cf2ab3
app-admin/perl-cleaner: add missing digests
2017-02-22 17:47:40 -08:00
Michael Marineau
a3cdd6dbe8
app-admin/rsyslog: add missing digests
2017-02-22 17:46:26 -08:00
Michael Marineau
448e96aa07
app-admin/sudo: add missing digests
2017-02-22 17:45:06 -08:00
Michael Marineau
f9c0dd7b23
app-arch/gzip: add missing digests
2017-02-22 17:43:47 -08:00
Michael Marineau
0c72ed56cf
app-arch/unrar: add missing digests
2017-02-22 17:42:16 -08:00
Michael Marineau
e5bd4dfedd
app-arch/xz-utils: add missing digests
2017-02-22 17:40:17 -08:00
Michael Marineau
bce0485187
dev-python/cffi: add missing digests
2017-02-22 17:38:23 -08:00
Michael Marineau
418e7cf7b9
net-analyzer/nmap: add missing digests
2017-02-22 17:36:25 -08:00
Michael Marineau
4998872e56
net-libs/gnutls: add missing digests
2017-02-22 17:32:33 -08:00
Euan Kemp
4e1aa74339
Merge pull request #2433 from euank/runc-p133
...
app-emulation/runc: update to use intended version
2017-02-21 15:20:56 -08:00
David Michael
c0d9d0cd25
Merge pull request #525 from dm0-/glsa
...
Fix some recent GLSAs
2017-02-21 15:13:44 -08:00
David Michael
b7bdea6375
Merge pull request #2434 from dm0-/glsa
...
Fix some recent GLSAs
2017-02-21 15:13:32 -08:00