mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-23 15:31:05 +02:00
Merge pull request #2224 from dm0-/bugs-1468
Containerize the GCE agent
This commit is contained in:
commit
b59f9d6467
@ -1 +0,0 @@
|
||||
DIST google-daemon-1.3.2.tar.gz 18551 SHA256 f2d9476e8fb9134e6d5774838d6dacc4bff9495f29804e2dba7fdee574248d29 SHA512 26e691227d55f85cbac853a0b07d6e7d2cc4c6722987afe243170775bb7ee6db1b904a5996c97a152d5352c2d08b856a2389cb281ee47ee3fdc49508120404dc WHIRLPOOL c43b733d63ae026f8e9895a63f2548ecddab33f7fc399f853db5180f1ead343432aa923e0e0b0fff278064ac5ad3ce4dfc7b7a064197e762fad6bc6cc49092b6
|
@ -1,26 +0,0 @@
|
||||
From dba9b86ed013b0520fbd731239c5d93769a6a9f4 Mon Sep 17 00:00:00 2001
|
||||
From: Alex Crawford <alex.crawford@coreos.com>
|
||||
Date: Tue, 10 May 2016 14:40:32 -0700
|
||||
Subject: [PATCH 1/3] Add users to docker group by default
|
||||
|
||||
This allows users to use Docker without needing sudo.
|
||||
---
|
||||
google-daemon/usr/share/google/google_daemon/accounts.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/google-daemon/usr/share/google/google_daemon/accounts.py b/google-daemon/usr/share/google/google_daemon/accounts.py
|
||||
index e14f5c0..31241f9 100755
|
||||
--- a/google-daemon/usr/share/google/google_daemon/accounts.py
|
||||
+++ b/google-daemon/usr/share/google/google_daemon/accounts.py
|
||||
@@ -76,7 +76,7 @@ class Accounts(object):
|
||||
self.urllib2 = urllib2_module
|
||||
|
||||
self.default_user_groups = self.GroupsThatExist(
|
||||
- ['adm', 'video', 'dip', 'plugdev', 'sudo'])
|
||||
+ ['adm', 'video', 'dip', 'plugdev', 'sudo', 'docker'])
|
||||
|
||||
def UpdateUser(self, username, ssh_keys):
|
||||
"""Create username on the system, with authorized ssh_keys."""
|
||||
--
|
||||
2.7.3
|
||||
|
@ -1,83 +0,0 @@
|
||||
From 1eff70fe7f0083d7aee76e18c89e92fce278a57a Mon Sep 17 00:00:00 2001
|
||||
From: Alex Crawford <alex.crawford@coreos.com>
|
||||
Date: Tue, 10 May 2016 14:45:16 -0700
|
||||
Subject: [PATCH 2/3] Use ens4v1 instead of eth0
|
||||
|
||||
The network interface under systemd is ens4v1
|
||||
(http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/).
|
||||
---
|
||||
.../share/google/google_daemon/address_manager.py | 22 +++++++++++-----------
|
||||
1 file changed, 11 insertions(+), 11 deletions(-)
|
||||
|
||||
diff --git a/google-daemon/usr/share/google/google_daemon/address_manager.py b/google-daemon/usr/share/google/google_daemon/address_manager.py
|
||||
index 7a0e911..ba3be6e 100644
|
||||
--- a/google-daemon/usr/share/google/google_daemon/address_manager.py
|
||||
+++ b/google-daemon/usr/share/google/google_daemon/address_manager.py
|
||||
@@ -15,16 +15,16 @@
|
||||
"""Manage extra network interface addresses on a GCE instance.
|
||||
|
||||
Fetch a list of public endpoint IPs from the metadata server, compare it with
|
||||
-what's configured on eth0, and add/remove addresses from eth0 to make them
|
||||
+what's configured on ens4v1, and add/remove addresses from ens4v1 to make them
|
||||
match. Only remove those which match our proto code.
|
||||
|
||||
This must be run by root. If it reads any malformed data, it will take no
|
||||
action.
|
||||
|
||||
Command used to add ips:
|
||||
- ip route add to local $IP/32 dev eth0 proto 66
|
||||
+ ip route add to local $IP/32 dev ens4v1 proto 66
|
||||
Command used to fetch list of configured IPs:
|
||||
- ip route ls table local type local dev eth0 scope host proto 66
|
||||
+ ip route ls table local type local dev ens4v1 scope host proto 66
|
||||
"""
|
||||
|
||||
|
||||
@@ -106,8 +106,8 @@ class AddressManager(object):
|
||||
return self.ParseIPAddrs(addrs_data)
|
||||
|
||||
def ReadLocalConfiguredAddrs(self):
|
||||
- """Fetch list of addresses we've configured on eth0 already."""
|
||||
- cmd = ('{0} route ls table local type local dev eth0 scope host ' +
|
||||
+ """Fetch list of addresses we've configured on ens4v1 already."""
|
||||
+ cmd = ('{0} route ls table local type local dev ens4v1 scope host ' +
|
||||
'proto {1:d}').format(self.ip_path, GOOGLE_PROTO_ID)
|
||||
result = self.system.RunCommand(cmd.split())
|
||||
if self.IPCommandFailed(result, cmd):
|
||||
@@ -135,27 +135,27 @@ class AddressManager(object):
|
||||
to_remove or None))
|
||||
|
||||
def AddAddresses(self, to_add):
|
||||
- """Configure new addresses on eth0."""
|
||||
+ """Configure new addresses on ens4v1."""
|
||||
for addr in to_add:
|
||||
self.AddOneAddress(addr)
|
||||
|
||||
def AddOneAddress(self, addr):
|
||||
- """Configure one address on eth0."""
|
||||
- cmd = '%s route add to local %s/32 dev eth0 proto %d' % (
|
||||
+ """Configure one address on ens4v1."""
|
||||
+ cmd = '%s route add to local %s/32 dev ens4v1 proto %d' % (
|
||||
self.ip_path, addr, GOOGLE_PROTO_ID)
|
||||
result = self.system.RunCommand(cmd.split())
|
||||
self.IPCommandFailed(result, cmd) # Ignore return code
|
||||
|
||||
def DeleteAddresses(self, to_remove):
|
||||
- """Un-configure a list of addresses from eth0."""
|
||||
+ """Un-configure a list of addresses from ens4v1."""
|
||||
for addr in to_remove:
|
||||
self.DeleteOneAddress(addr)
|
||||
|
||||
def DeleteOneAddress(self, addr):
|
||||
- """Delete one address from eth0."""
|
||||
+ """Delete one address from ens4v1."""
|
||||
# This will fail if it doesn't match exactly the specs listed.
|
||||
# That'll help ensure we don't remove one added by someone else.
|
||||
- cmd = '%s route delete to local %s/32 dev eth0 proto %d' % (
|
||||
+ cmd = '%s route delete to local %s/32 dev ens4v1 proto %d' % (
|
||||
self.ip_path, addr, GOOGLE_PROTO_ID)
|
||||
result = self.system.RunCommand(cmd.split())
|
||||
self.IPCommandFailed(result, cmd) # Ignore return code
|
||||
--
|
||||
2.7.3
|
||||
|
@ -1,29 +0,0 @@
|
||||
# Copyright (c) 2014 CoreOS, Inc. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="Google Daemon for Compute Engine"
|
||||
HOMEPAGE="https://github.com/GoogleCloudPlatform/compute-image-packages"
|
||||
SRC_URI="https://github.com/GoogleCloudPlatform/compute-image-packages/releases/download/${PV}/google-daemon-${PV}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-lang/python-oem"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/0001-Add-users-to-docker-group-by-default.patch"
|
||||
epatch "${FILESDIR}/0002-Use-ens4v1-instead-of-eth0.patch"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/oem/google-compute-daemon/"
|
||||
doins -r "${S}/usr/share/google/google_daemon/."
|
||||
}
|
1
sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/Manifest
vendored
Normal file
1
sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/Manifest
vendored
Normal file
@ -0,0 +1 @@
|
||||
DIST 20160930.tar.gz 102009 SHA256 0edbc187a124858a7f9a952825b0267e0aad7f0a44687aecb366ecc7560131fa SHA512 8fef26a68eaa1f24359f0b0b793c42eeaeb901a494758046b6a008dfe233cd044284a7b4453fad0f286bd57fcd2067e1333a6a9933f849e907365b174398db9a WHIRLPOOL 1700123c22f6902dd0ec5cc65a33772028c27d9c959a50e6662a1ed3e353172b45261126f1a6ad5f5d0d635a7153e24dea034a8c2fc3521425d249843abbd197
|
@ -0,0 +1,47 @@
|
||||
# Copyright (c) 2016 CoreOS, Inc. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="Linux Guest Environment for Google Compute Engine"
|
||||
HOMEPAGE="https://github.com/GoogleCloudPlatform/compute-image-packages"
|
||||
SRC_URI="https://github.com/GoogleCloudPlatform/compute-image-packages/archive/${PV}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-python/setuptools"
|
||||
|
||||
# These dependencies cover everything possibly called by the scripts.
|
||||
RDEPEND="
|
||||
app-admin/sudo
|
||||
dev-python/boto
|
||||
dev-python/setuptools
|
||||
sys-apps/ethtool
|
||||
sys-apps/gawk
|
||||
sys-apps/grep
|
||||
sys-apps/iproute2
|
||||
sys-apps/shadow
|
||||
sys-libs/glibc
|
||||
sys-libs/nss-usrfiles
|
||||
"
|
||||
|
||||
S="${WORKDIR}/compute-image-packages-${PV}"
|
||||
|
||||
src_prepare() {
|
||||
# Don't attempt to mess with our host keys.
|
||||
sed -i -e '/set_host_keys/s/true/false/i' \
|
||||
"${S}"/google_compute_engine/instance_setup/instance_config.py
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
(cd "${S}" && exec python setup.py build)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
(cd "${S}" && exec python setup.py install -O1 --skip-build --root "${D}")
|
||||
}
|
@ -1 +0,0 @@
|
||||
DIST google-startup-scripts-1.3.2.tar.gz 15750 SHA256 e26f70714d9bfc8feba83d44c0881b2c10f54a594bc206e77c03c2f0611a5f39 SHA512 f5c2d4bca4030426dbec9103c0b53cb8c166645ae0d6926bfc318112c6b14743dd2df8834cd35e5f5eb73a4862b709deda50e95018250abf069cac52ec436217 WHIRLPOOL a09f4b169e87301f23688d2404d12e546d19930e87894c79bf5f5253ebc05ed796d49ab3dfe8233de50797ec50afbb0ffc935c881f0f00f975363e5a4189592e
|
@ -1,163 +0,0 @@
|
||||
From 73c4917ef66a0be37b625f00d0c38dffe5cbc70c Mon Sep 17 00:00:00 2001
|
||||
From: Alex Crawford <alex.crawford@coreos.com>
|
||||
Date: Thu, 12 May 2016 14:28:01 -0700
|
||||
Subject: [PATCH] Allow location of startup scripts to be overridden
|
||||
|
||||
---
|
||||
google-startup-scripts/usr/share/google/fetch_script | 3 ++-
|
||||
google-startup-scripts/usr/share/google/first-boot | 7 ++++---
|
||||
google-startup-scripts/usr/share/google/onboot | 19 ++++++++++---------
|
||||
.../usr/share/google/run-shutdown-scripts | 5 +++--
|
||||
.../usr/share/google/run-startup-scripts | 5 +++--
|
||||
5 files changed, 22 insertions(+), 17 deletions(-)
|
||||
|
||||
diff --git a/google-startup-scripts/usr/share/google/fetch_script b/google-startup-scripts/usr/share/google/fetch_script
|
||||
index 72ba9ac..2946a71 100755
|
||||
--- a/google-startup-scripts/usr/share/google/fetch_script
|
||||
+++ b/google-startup-scripts/usr/share/google/fetch_script
|
||||
@@ -24,6 +24,7 @@ fi
|
||||
|
||||
declare -r CURL_RETRY_LIMIT=10
|
||||
declare -r CURL_TIMEOUT=10
|
||||
+declare -r SCRIPTS_PREFIX=${GOOGLE_SCRIPTS_PREFIX:-/usr/share/google/}
|
||||
|
||||
function log() {
|
||||
echo "$@" | ${LOGGER} -t google -p daemon.info
|
||||
@@ -109,7 +110,7 @@ function download_url() {
|
||||
|
||||
function get_metadata_attribute() {
|
||||
local readonly varname=$1
|
||||
- /usr/share/google/get_metadata_value "attributes/${varname}"
|
||||
+ ${SCRIPTS_PREFIX}/get_metadata_value "attributes/${varname}"
|
||||
return $?
|
||||
}
|
||||
|
||||
diff --git a/google-startup-scripts/usr/share/google/first-boot b/google-startup-scripts/usr/share/google/first-boot
|
||||
index b346b65..836857d 100755
|
||||
--- a/google-startup-scripts/usr/share/google/first-boot
|
||||
+++ b/google-startup-scripts/usr/share/google/first-boot
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
declare -r INSTANCE_FILE=${PREFIX}/var/lib/google/vm-instance-id
|
||||
declare -r LOCK_FILE=${INSTANCE_FILE}.lock
|
||||
+declare -r SCRIPTS_PREFIX=${GOOGLE_SCRIPTS_PREFIX:-/usr/share/google/}
|
||||
|
||||
mkdir -p ${PREFIX}/var/lib/google/per-instance
|
||||
|
||||
@@ -29,7 +30,7 @@ function log() {
|
||||
}
|
||||
|
||||
function get_instance_id() {
|
||||
- ${PREFIX}/usr/share/google/get_metadata_value id 2>/dev/null
|
||||
+ ${PREFIX}/${SCRIPTS_PREFIX}/get_metadata_value id 2>/dev/null
|
||||
}
|
||||
|
||||
# Checks the instance id has changed.
|
||||
@@ -71,8 +72,8 @@ function manage_stored_instance_id() {
|
||||
log "Running first-boot"
|
||||
|
||||
# Regenerate host keys for ssh.
|
||||
- if [[ -x ${PREFIX}/usr/share/google/regenerate-host-keys ]]; then
|
||||
- ${PREFIX}/usr/share/google/regenerate-host-keys
|
||||
+ if [[ -x ${PREFIX}/${SCRIPTS_PREFIX}/regenerate-host-keys ]]; then
|
||||
+ ${PREFIX}/${SCRIPTS_PREFIX}/regenerate-host-keys
|
||||
fi
|
||||
|
||||
# We are booting this instance for the first time.
|
||||
diff --git a/google-startup-scripts/usr/share/google/onboot b/google-startup-scripts/usr/share/google/onboot
|
||||
index 482d384..a3df445 100755
|
||||
--- a/google-startup-scripts/usr/share/google/onboot
|
||||
+++ b/google-startup-scripts/usr/share/google/onboot
|
||||
@@ -33,7 +33,8 @@ else
|
||||
declare -r LOGGER=/bin/logger
|
||||
fi
|
||||
|
||||
-declare -r BOTO_SETUP_SCRIPT=/usr/share/google/boto/boot_setup.py
|
||||
+declare -r SCRIPTS_PREFIX=${GOOGLE_SCRIPTS_PREFIX:-/usr/share/google/}
|
||||
+declare -r BOTO_SETUP_SCRIPT=${SCRIPTS_PREFIX}/boto/boot_setup.py
|
||||
declare -r GOOGLE_ENVIRONMENT=/var/run/google.environment
|
||||
|
||||
function log() {
|
||||
@@ -42,26 +43,26 @@ function log() {
|
||||
}
|
||||
|
||||
function set_interrupts() {
|
||||
- if [[ -x /usr/share/google/set-interrupts ]]; then
|
||||
- /usr/share/google/set-interrupts
|
||||
+ if [[ -x ${SCRIPTS_PREFIX}/set-interrupts ]]; then
|
||||
+ ${SCRIPTS_PREFIX}/set-interrupts
|
||||
fi
|
||||
}
|
||||
|
||||
function virtionet_irq_affinity() {
|
||||
- if [[ -x /usr/share/google/virtionet-irq-affinity ]]; then
|
||||
- /usr/share/google/virtionet-irq-affinity
|
||||
+ if [[ -x ${SCRIPTS_PREFIX}/virtionet-irq-affinity ]]; then
|
||||
+ ${SCRIPTS_PREFIX}/virtionet-irq-affinity
|
||||
fi
|
||||
}
|
||||
|
||||
function first_boot() {
|
||||
- if [[ -x /usr/share/google/first-boot ]]; then
|
||||
- /usr/share/google/first-boot
|
||||
+ if [[ -x ${SCRIPTS_PREFIX}/first-boot ]]; then
|
||||
+ ${SCRIPTS_PREFIX}/first-boot
|
||||
fi
|
||||
}
|
||||
|
||||
function get_metadata_value() {
|
||||
local readonly varname=$1
|
||||
- /usr/share/google/get_metadata_value ${varname}
|
||||
+ ${SCRIPTS_PREFIX}/get_metadata_value ${varname}
|
||||
return $?
|
||||
}
|
||||
|
||||
@@ -119,7 +120,7 @@ function check_for_connection() {
|
||||
log "Checking for metadata server connection."
|
||||
while true; do
|
||||
((count++))
|
||||
- MDS_TRIES=1 /usr/share/google/get_metadata_value "?recursive=True"
|
||||
+ MDS_TRIES=1 ${SCRIPTS_PREFIX}/get_metadata_value "?recursive=True"
|
||||
return_code=$?
|
||||
case ${return_code} in
|
||||
# No error. Connection is active.
|
||||
diff --git a/google-startup-scripts/usr/share/google/run-shutdown-scripts b/google-startup-scripts/usr/share/google/run-shutdown-scripts
|
||||
index 61377e9..b81f49b 100755
|
||||
--- a/google-startup-scripts/usr/share/google/run-shutdown-scripts
|
||||
+++ b/google-startup-scripts/usr/share/google/run-shutdown-scripts
|
||||
@@ -20,6 +20,7 @@
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
||||
|
||||
declare -r SHUTDOWN_SCRIPT=/var/run/google.shutdown.script
|
||||
+declare -r SCRIPTS_PREFIX=${GOOGLE_SCRIPTS_PREFIX:-/usr/share/google/}
|
||||
|
||||
# NOTE
|
||||
# Make sure that the shutdown script completes within 90 seconds, so
|
||||
@@ -27,5 +28,5 @@ declare -r SHUTDOWN_SCRIPT=/var/run/google.shutdown.script
|
||||
# buffers to disk.
|
||||
#
|
||||
# The shutdown script blocks other shutdown operations from proceeding.
|
||||
-/usr/share/google/fetch_script ${SHUTDOWN_SCRIPT} shutdown
|
||||
-/usr/share/google/run-scripts ${SHUTDOWN_SCRIPT} shutdown
|
||||
+${SCRIPTS_PREFIX}/fetch_script ${SHUTDOWN_SCRIPT} shutdown
|
||||
+${SCRIPTS_PREFIX}/run-scripts ${SHUTDOWN_SCRIPT} shutdown
|
||||
diff --git a/google-startup-scripts/usr/share/google/run-startup-scripts b/google-startup-scripts/usr/share/google/run-startup-scripts
|
||||
index b9e2667..c9afddf 100755
|
||||
--- a/google-startup-scripts/usr/share/google/run-startup-scripts
|
||||
+++ b/google-startup-scripts/usr/share/google/run-startup-scripts
|
||||
@@ -19,9 +19,10 @@
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
||||
|
||||
declare -r STARTUP_SCRIPT=/var/run/google.startup.script
|
||||
+declare -r SCRIPTS_PREFIX=${GOOGLE_SCRIPTS_PREFIX:-/usr/share/google/}
|
||||
|
||||
# Make sure all udev changes settle before running startup scripts.
|
||||
udevadm settle
|
||||
|
||||
-/usr/share/google/fetch_script ${STARTUP_SCRIPT} startup
|
||||
-/usr/share/google/run-scripts ${STARTUP_SCRIPT} startup
|
||||
+${SCRIPTS_PREFIX}/fetch_script ${STARTUP_SCRIPT} startup
|
||||
+${SCRIPTS_PREFIX}/run-scripts ${STARTUP_SCRIPT} startup
|
||||
--
|
||||
2.7.3
|
||||
|
@ -1,28 +0,0 @@
|
||||
# Copyright (c) 2014 CoreOS, Inc. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="Google Startup Scripts for Compute Engine"
|
||||
HOMEPAGE="https://github.com/GoogleCloudPlatform/compute-image-packages"
|
||||
SRC_URI="https://github.com/GoogleCloudPlatform/compute-image-packages/releases/download/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-lang/python-oem"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/0001-Allow-location-of-startup-scripts-to-be-overridden.patch"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
exeinto "/usr/share/oem/google-startup-scripts/"
|
||||
doexe "${S}"/usr/share/google/*
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
</pkgmetadata>
|
@ -0,0 +1,16 @@
|
||||
# Copyright (c) 2016 CoreOS, Inc.. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=2
|
||||
|
||||
DESCRIPTION="CoreOS OEM suite for Google Compute Engine (meta package)"
|
||||
HOMEPAGE=""
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
app-emulation/google-compute-engine
|
||||
"
|
46
sdk_container/src/third_party/coreos-overlay/coreos-base/coreos-oem-gce/files/manglefs.sh
vendored
Normal file
46
sdk_container/src/third_party/coreos-overlay/coreos-base/coreos-oem-gce/files/manglefs.sh
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# GCE can work with our normal file system, but it needs an "init system".
|
||||
# Here is a better place to install this script so it doesn't get put in real
|
||||
# images built from the GCE Python package.
|
||||
cat << 'EOF' > init.sh && chmod 755 init.sh
|
||||
#!/bin/bash -ex
|
||||
|
||||
# Run the initialization scripts.
|
||||
/usr/bin/google_instance_setup
|
||||
/usr/bin/google_network_setup
|
||||
/usr/bin/google_metadata_script_runner --script-type startup
|
||||
|
||||
# Handle the signal to shut down this service.
|
||||
trap 'stopping=1 ; kill "${daemon_pids[@]}" || :' SIGTERM
|
||||
|
||||
# Fork the daemon processes.
|
||||
daemon_pids=()
|
||||
for d in accounts clock_skew ip_forwarding
|
||||
do
|
||||
/usr/bin/google_${d}_daemon & daemon_pids+=($!)
|
||||
done
|
||||
|
||||
# Pause while the daemons are running, and stop them all when one dies.
|
||||
wait -n "${daemon_pids[@]}" || :
|
||||
kill "${daemon_pids[@]}" || :
|
||||
|
||||
# If a daemon died while we're not shutting down, fail.
|
||||
test -n "$stopping" || exit 1
|
||||
|
||||
# Otherwise, run the shutdown script before quitting.
|
||||
exec /usr/bin/google_metadata_script_runner --script-type shutdown
|
||||
EOF
|
||||
|
||||
# Disable PAM checks in the container.
|
||||
rm -f usr/lib/pam.d/*
|
||||
cat << 'EOF' > usr/lib/pam.d/other
|
||||
account optional pam_permit.so
|
||||
auth optional pam_permit.so
|
||||
password optional pam_permit.so
|
||||
session optional pam_permit.so
|
||||
EOF
|
||||
|
||||
# Don't bundle these paths, since they are useless to us.
|
||||
rm -fr boot etc/* usr/lib64/systemd var/db/pkg
|
38
sdk_container/src/third_party/coreos-overlay/coreos-base/coreos-oem-gce/files/manifest.in
vendored
Normal file
38
sdk_container/src/third_party/coreos-overlay/coreos-base/coreos-oem-gce/files/manifest.in
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.8.6",
|
||||
"name": "@ACI_NAME@",
|
||||
"labels": [
|
||||
{"name": "arch", "value": "@ACI_ARCH@"},
|
||||
{"name": "os", "value": "linux"},
|
||||
{"name": "version", "value": "@ACI_VERSION@"}
|
||||
],
|
||||
"app": {
|
||||
"exec": [ "/init.sh" ],
|
||||
"user": "0",
|
||||
"group": "0",
|
||||
|
||||
"mountPoints": [
|
||||
{
|
||||
"name": "baselayout",
|
||||
"path": "/usr/share/baselayout",
|
||||
"readOnly": true
|
||||
},
|
||||
{
|
||||
"name": "cacertificates",
|
||||
"path": "/usr/share/ca-certificates",
|
||||
"readOnly": true
|
||||
},
|
||||
{
|
||||
"name": "etc",
|
||||
"path": "/etc",
|
||||
"readOnly": false
|
||||
},
|
||||
{
|
||||
"name": "runsystemd",
|
||||
"path": "/run/systemd",
|
||||
"readOnly": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
[Unit]
|
||||
Description=Google Compute Engine User Accounts Manager Daemon
|
||||
After=network.target
|
||||
Before=sshd.service
|
||||
Requires=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/share/oem/python/bin/python2.7 /usr/share/oem/google-compute-daemon/manage_accounts.py
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=Google Compute Engine Address Manager Daemon
|
||||
After=network.target
|
||||
Requires=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/share/oem/python/bin/python2.7 /usr/share/oem/google-compute-daemon/manage_addresses.py
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=Google Compute Engine Clock Sync Daemon
|
||||
After=network.target
|
||||
Requires=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/share/oem/python/bin/python2.7 /usr/share/oem/google-compute-daemon/manage_clock_sync.py
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,15 +0,0 @@
|
||||
[Unit]
|
||||
Description=Google Compute Engine Startup Scripts
|
||||
After=network.target
|
||||
After=local-fs.target
|
||||
Before=sshd.service
|
||||
Requires=network.target
|
||||
Requires=local-fs.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
Environment=GOOGLE_SCRIPTS_PREFIX=/usr/share/oem/google-startup-scripts
|
||||
ExecStart=/usr/share/oem/google-startup-scripts/onboot
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,14 +0,0 @@
|
||||
[Unit]
|
||||
Description=Google Compute Engine user startup scripts
|
||||
After=network.target
|
||||
After=google-startup-scripts-onboot.service
|
||||
Requires=google-startup-scripts-onboot.service
|
||||
Requires=network.target
|
||||
|
||||
[Service]
|
||||
Environment=GOOGLE_SCRIPTS_PREFIX=/usr/share/oem/google-startup-scripts
|
||||
ExecStart=/usr/share/oem/google-startup-scripts/run-startup-scripts
|
||||
Type=idle
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
29
sdk_container/src/third_party/coreos-overlay/coreos-base/oem-gce/files/units/oem-gce.service
vendored
Normal file
29
sdk_container/src/third_party/coreos-overlay/coreos-base/oem-gce/files/units/oem-gce.service
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
[Unit]
|
||||
Description=GCE Linux Agent
|
||||
After=local-fs.target network-online.target network.target
|
||||
After=local-fs.target network-online.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Restart=always
|
||||
RestartSec=5
|
||||
|
||||
# There is a custom main process that kills all of the contained services.
|
||||
KillMode=process
|
||||
KillSignal=SIGTERM
|
||||
|
||||
ExecStart=/usr/bin/rkt run \
|
||||
--inherit-env=true \
|
||||
--insecure-options=image \
|
||||
--net=host \
|
||||
--stage1-path=/usr/lib/rkt/stage1-images/stage1-fly.aci \
|
||||
--volume=baselayout,kind=host,source=/usr/share/baselayout,readOnly=true \
|
||||
--volume=cacertificates,kind=host,source=/usr/share/ca-certificates,readOnly=true \
|
||||
--volume=etc,kind=host,source=/etc,readOnly=false \
|
||||
--volume=runsystemd,kind=host,source=/run/systemd,readOnly=false \
|
||||
/usr/share/oem/coreos-oem-gce.aci
|
||||
|
||||
ExecStopPost=/usr/bin/rkt gc --mark-only
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -15,11 +15,6 @@ IUSE=""
|
||||
# no source directory
|
||||
S="${WORKDIR}"
|
||||
|
||||
RDEPEND="
|
||||
~app-emulation/google-compute-daemon-${PV}
|
||||
~app-emulation/google-startup-scripts-${PV}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
sed -e "s\\@@OEM_VERSION_ID@@\\${PVR}\\g" \
|
||||
"${FILESDIR}/oem-release" > "${T}/oem-release" || die
|
@ -16,8 +16,7 @@ IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
amd64? (
|
||||
app-emulation/google-compute-daemon
|
||||
app-emulation/google-startup-scripts
|
||||
app-emulation/google-compute-engine
|
||||
app-emulation/open-vm-tools
|
||||
app-emulation/wa-linux-agent
|
||||
coreos-base/nova-agent-container
|
||||
|
@ -1,11 +1,11 @@
|
||||
DEFINED_PHASES=install
|
||||
DEPEND=virtual/pkgconfig
|
||||
DESCRIPTION=flannel
|
||||
EAPI=4
|
||||
HOMEPAGE=https://github.com/coreos/flannel
|
||||
KEYWORDS=amd64 arm64
|
||||
DESCRIPTION=etcd (System Application Container)
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/coreos/etcd
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-admin/sdnotify-proxy
|
||||
RDEPEND=>=app-emulation/rkt-1.9.1[rkt_stage1_fly]
|
||||
SLOT=0
|
||||
_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=1533657f9a20953b63d15b823fbd740e
|
||||
_md5_=36c3f16ed0e287422bd7f64616e6fd79
|
11
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/flannel-0.6.1-r4
vendored
Normal file
11
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/flannel-0.6.1-r4
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
DEFINED_PHASES=install
|
||||
DEPEND=virtual/pkgconfig
|
||||
DESCRIPTION=flannel
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/coreos/flannel
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-emulation/rkt
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=3d8aa8e5ee20b663c814a98a7c753a3e
|
11
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/flannel-0.6.2
vendored
Normal file
11
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/flannel-0.6.2
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
DEFINED_PHASES=install
|
||||
DEPEND=virtual/pkgconfig
|
||||
DESCRIPTION=flannel
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/coreos/flannel
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-emulation/rkt
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=3d8aa8e5ee20b663c814a98a7c753a3e
|
@ -1,11 +1,11 @@
|
||||
DEFINED_PHASES=install
|
||||
DEPEND=virtual/pkgconfig
|
||||
DESCRIPTION=flannel
|
||||
EAPI=4
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/coreos/flannel
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-admin/sdnotify-proxy
|
||||
RDEPEND=app-emulation/rkt
|
||||
SLOT=0
|
||||
_eclasses_=multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=1533657f9a20953b63d15b823fbd740e
|
||||
_eclasses_=coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=3d8aa8e5ee20b663c814a98a7c753a3e
|
||||
|
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:= virtual/pkgconfig
|
||||
DESCRIPTION=fleet
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/fleet
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=49948ffb2bd048d7507c39c7927b4c68
|
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/fleet-0.11.8
vendored
Normal file
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/fleet-0.11.8
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:1.7= virtual/pkgconfig
|
||||
DESCRIPTION=fleet
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/fleet
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ab71805799abc679eaac3b4406d46991
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:= virtual/pkgconfig
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:1.7= virtual/pkgconfig
|
||||
DESCRIPTION=fleet
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/fleet
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=49948ffb2bd048d7507c39c7927b4c68
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ab71805799abc679eaac3b4406d46991
|
||||
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=compile install prepare
|
||||
DEPEND=dev-lang/go:= virtual/pkgconfig
|
||||
DESCRIPTION=Kubernetes Container Manager
|
||||
EAPI=5
|
||||
HOMEPAGE=http://kubernetes.io/
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=net-misc/socat
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/coreos/kubernetes/archive/v1.1.2_coreos.0.tar.gz -> 1.1.2_coreos.0.tar.gz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=18a9f2ef77d9c54c985313dfe9cc1518
|
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:=
|
||||
DESCRIPTION=locksmith
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/locksmith
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=7b9a24dadff2679bef6c88685c4c61a6
|
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/locksmith-0.4.1
vendored
Normal file
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/locksmith-0.4.1
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:1.7=
|
||||
DESCRIPTION=locksmith
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/locksmith
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=83ee56ecefed60786506bb042fb9bfe1
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:1.7=
|
||||
DESCRIPTION=locksmith
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/locksmith
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=7b9a24dadff2679bef6c88685c4c61a6
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=83ee56ecefed60786506bb042fb9bfe1
|
||||
|
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=mayday
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/mayday
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=e313fe1d1f5a81a98055ceb678a27b80
|
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/mayday-1.0.0
vendored
Normal file
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-admin/mayday-1.0.0
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=mayday
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/mayday
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=17368341385b9a2634cf996e07096e20
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=mayday
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/mayday
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=e313fe1d1f5a81a98055ceb678a27b80
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=17368341385b9a2634cf996e07096e20
|
||||
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=sdnotify-proxy
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/sdnotify-proxy
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=f9be5b8fc722ade07ef8ee077b6169f6
|
||||
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=sdnotify-proxy
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/sdnotify-proxy
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=f9be5b8fc722ade07ef8ee077b6169f6
|
||||
|
@ -8,4 +8,4 @@ KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
_eclasses_=cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=26a50e180120b1b5d1db650c432c9a36
|
||||
_md5_=e46a5bcb96834df2ed87d4e632f931d5
|
@ -8,4 +8,4 @@ KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
_eclasses_=cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=26a50e180120b1b5d1db650c432c9a36
|
||||
_md5_=e46a5bcb96834df2ed87d4e632f931d5
|
||||
|
@ -1,12 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:1.7=
|
||||
DESCRIPTION=CoreUpdate Management CLI
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/updateservicectl
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-admin/updatectl
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=7897dbcda1d1d33c653b2394ce70e6ee
|
||||
|
@ -1,12 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:1.7=
|
||||
DESCRIPTION=CoreUpdate Management CLI
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/updateservicectl
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-admin/updatectl
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=7897dbcda1d1d33c653b2394ce70e6ee
|
||||
|
@ -1,9 +1,11 @@
|
||||
DEFINED_PHASES=compile install prepare unpack
|
||||
DEPEND=app-crypt/trousers dev-lang/go:= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DEPEND=app-crypt/trousers dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
EAPI=5
|
||||
IUSE=+go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-crypt/trousers
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=d523ca08b79b405ccb6667940a2bf221
|
||||
|
@ -1,9 +1,11 @@
|
||||
DEFINED_PHASES=compile install prepare unpack
|
||||
DEPEND=app-crypt/trousers dev-lang/go:= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DEPEND=app-crypt/trousers dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
EAPI=5
|
||||
IUSE=+go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-crypt/trousers
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=d523ca08b79b405ccb6667940a2bf221
|
||||
|
@ -1,12 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=A build tool for ACIs
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/appc/acbuild
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=sys-apps/kmod app-crypt/gnupg sys-apps/systemd
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=83e4c698278dc86b7f64f10340a86b3d
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=d19b7cf74a34bcb5e60b8c68f6e9187e
|
||||
|
@ -1,12 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=A build tool for ACIs
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/appc/acbuild
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=sys-apps/kmod app-crypt/gnupg sys-apps/systemd
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=83e4c698278dc86b7f64f10340a86b3d
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=d19b7cf74a34bcb5e60b8c68f6e9187e
|
||||
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=App Container builder and validator
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/appc/spec
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=f0f83c5041dace50483122a72038374a
|
||||
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=App Container builder and validator
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/appc/spec
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=f0f83c5041dace50483122a72038374a
|
||||
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile install prepare unpack
|
||||
DEPEND=dev-lang/go:1.6=
|
||||
DESCRIPTION=A daemon to control runC
|
||||
EAPI=5
|
||||
HOMEPAGE=https://containerd.tools
|
||||
IUSE=seccomp +go_version_go1_6
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-emulation/runc seccomp? ( sys-libs/libseccomp )
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
SLOT=0
|
||||
SRC_URI=https:///archive/v0.2.2.tar.gz -> containerd-0.2.2.tar.gz
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 vcs-snapshot b45be87e7012be0af8424e8a5644da1d
|
||||
_md5_=1173702655f268f0490f6868c8a1c75d
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=compile info install postinst prepare setup unpack
|
||||
DEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) dev-lang/go:= btrfs? ( >=sys-fs/btrfs-progs-3.16.1 ) sys-kernel/coreos-kernel virtual/pkgconfig virtual/pkgconfig >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=Docker complements kernel namespacing with a high-level API which operates at the process level
|
||||
EAPI=5
|
||||
HOMEPAGE=https://dockerproject.org
|
||||
IUSE=apparmor aufs +btrfs contrib +device-mapper experimental +overlay seccomp +selinux vim-syntax zsh-completion cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) !app-emulation/docker-bin >=net-firewall/iptables-1.4 sys-process/procps >=dev-vcs/git-1.7 >=app-arch/xz-utils-4.9 apparmor? ( sys-libs/libapparmor[static-libs] )
|
||||
RESTRICT=installsources strip
|
||||
SLOT=0
|
||||
_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=b82c90821255c9ce3f115bab235413a3
|
14
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/docker-1.11.2-r4
vendored
Normal file
14
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/docker-1.11.2-r4
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile info install postinst prepare setup unpack
|
||||
DEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) journald? ( >=sys-apps/systemd-225 ) btrfs? ( >=sys-fs/btrfs-progs-3.16.1 ) sys-kernel/coreos-kernel virtual/pkgconfig virtual/pkgconfig >=dev-vcs/git-1.8.2.1 dev-lang/go:1.6=
|
||||
DESCRIPTION=Docker complements kernel namespacing with a high-level API which operates at the process level
|
||||
EAPI=5
|
||||
HOMEPAGE=https://dockerproject.org
|
||||
IUSE=apparmor aufs +btrfs contrib +device-mapper experimental +overlay seccomp +selinux vim-syntax zsh-completion +journald cros_workon_tree_* profiling +go_version_go1_6
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) journald? ( >=sys-apps/systemd-225 ) !app-emulation/docker-bin >=net-firewall/iptables-1.4 sys-process/procps >=dev-vcs/git-1.7 >=app-arch/xz-utils-4.9 >=app-emulation/containerd-0.2.0 >=app-emulation/runc-0.1.0
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
RESTRICT=installsources strip
|
||||
SLOT=0
|
||||
_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=f33446ddec8db9ce01527179c21130b6
|
@ -1,13 +1,14 @@
|
||||
DEFINED_PHASES=compile info install postinst prepare setup unpack
|
||||
DEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) dev-lang/go:= btrfs? ( >=sys-fs/btrfs-progs-3.16.1 ) sys-kernel/coreos-kernel virtual/pkgconfig virtual/pkgconfig >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) journald? ( >=sys-apps/systemd-225 ) btrfs? ( >=sys-fs/btrfs-progs-3.16.1 ) sys-kernel/coreos-kernel virtual/pkgconfig virtual/pkgconfig >=dev-vcs/git-1.8.2.1 dev-lang/go:1.6=
|
||||
DESCRIPTION=Docker complements kernel namespacing with a high-level API which operates at the process level
|
||||
EAPI=5
|
||||
HOMEPAGE=https://dockerproject.org
|
||||
IUSE=apparmor aufs +btrfs contrib +device-mapper experimental +overlay seccomp +selinux vim-syntax zsh-completion cros_workon_tree_* profiling
|
||||
IUSE=apparmor aufs +btrfs contrib +device-mapper experimental +overlay seccomp +selinux vim-syntax zsh-completion +journald cros_workon_tree_* profiling +go_version_go1_6
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) !app-emulation/docker-bin >=net-firewall/iptables-1.4 sys-process/procps >=dev-vcs/git-1.7 >=app-arch/xz-utils-4.9 apparmor? ( sys-libs/libapparmor[static-libs] )
|
||||
RDEPEND=>=dev-db/sqlite-3.7.9:3 device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] ) seccomp? ( >=sys-libs/libseccomp-2.2.1[static-libs] ) journald? ( >=sys-apps/systemd-225 ) !app-emulation/docker-bin >=net-firewall/iptables-1.4 sys-process/procps >=dev-vcs/git-1.7 >=app-arch/xz-utils-4.9 >=app-emulation/containerd-0.2.0 >=app-emulation/runc-0.1.0
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
RESTRICT=installsources strip
|
||||
SLOT=0
|
||||
_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=b82c90821255c9ce3f115bab235413a3
|
||||
_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=f33446ddec8db9ce01527179c21130b6
|
||||
|
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=install prepare
|
||||
DESCRIPTION=Google Daemon for Compute Engine
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/GoogleCloudPlatform/compute-image-packages
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-lang/python-oem
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/GoogleCloudPlatform/compute-image-packages/releases/download/1.1.1/google-daemon-1.1.1.tar.gz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ca464a092dfcdba68d2329955671b28a
|
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile install prepare
|
||||
DEPEND=dev-python/setuptools
|
||||
DESCRIPTION=Linux Guest Environment for Google Compute Engine
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/GoogleCloudPlatform/compute-image-packages
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=app-admin/sudo dev-python/boto dev-python/setuptools sys-apps/ethtool sys-apps/gawk sys-apps/grep sys-apps/iproute2 sys-apps/shadow sys-libs/glibc sys-libs/nss-usrfiles
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/GoogleCloudPlatform/compute-image-packages/archive/20160930.tar.gz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=220f2629b2c96675a36f07a2c838f67b
|
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=install prepare
|
||||
DESCRIPTION=Google Startup Scripts for Compute Engine
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/GoogleCloudPlatform/compute-image-packages
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-lang/python-oem
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/GoogleCloudPlatform/compute-image-packages/releases/download/1.1.1/google-startup-scripts-1.1.1.tar.gz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=c9beca606e5b45669927986058751dd5
|
@ -9,4 +9,4 @@ LICENSE=LGPL-2
|
||||
RDEPEND=dnet? ( dev-libs/libdnet ) deploypkg? ( dev-libs/libmspack )
|
||||
SLOT=0
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-2 df00117322129fb906bb0a53c3d6a020 libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=24f698e1610c0b05184d89970cf88c65
|
||||
_md5_=9c9e7633b78840bf9aa8c6e974f35b8c
|
||||
|
14
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/rkt-1.14.0
vendored
Normal file
14
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/rkt-1.14.0
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure info install prepare test unpack
|
||||
DEPEND=app-arch/cpio sys-fs/squashfs-tools dev-perl/Capture-Tiny rkt_stage1_src? ( >=sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig >=dev-vcs/git-1.8.2.1 dev-lang/go:1.7=
|
||||
DESCRIPTION=A CLI for running app containers, and an implementation of the App Container Spec.
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/rkt
|
||||
IUSE=doc examples +rkt_stage1_coreos +rkt_stage1_fly rkt_stage1_host rkt_stage1_src tpm cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-emulation/rocket rkt_stage1_host? ( ~sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers )
|
||||
REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_src ) go_version_go1_7
|
||||
SLOT=0
|
||||
SRC_URI=rkt_stage1_coreos? ( amd64? ( https://alpha.release.core-os.net/amd64-usr/1151.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-amd64-usr-1151.0.0.img ) arm64? ( https://alpha.release.core-os.net/arm64-usr/1151.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-arm64-usr-1151.0.0.img ) )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=a03bf3393308af8a75b3c93dbde85010
|
@ -1,14 +0,0 @@
|
||||
DEFINED_PHASES=compile configure info install prepare test unpack
|
||||
DEPEND=|| ( ~dev-lang/go-1.4.3:= >=dev-lang/go-1.5.3:= ) app-arch/cpio sys-fs/squashfs-tools dev-perl/Capture-Tiny rkt_stage1_src? ( >=sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=A CLI for running app containers, and an implementation of the App Container Spec.
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/rkt
|
||||
IUSE=doc examples +rkt_stage1_coreos +rkt_stage1_fly rkt_stage1_host rkt_stage1_src +actool tpm cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-emulation/rocket actool? ( !app-emulation/actool ) rkt_stage1_host? ( ~sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers )
|
||||
REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_src )
|
||||
SLOT=0
|
||||
SRC_URI=rkt_stage1_coreos? ( https://alpha.release.core-os.net/amd64-usr/1032.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-1032.0.0.img )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=cd6754c088e885d35ccbf82ebb1862c6
|
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=compile configure info install prepare test unpack
|
||||
DEPEND=|| ( ~dev-lang/go-1.4.3:= >=dev-lang/go-1.5.3:= ) app-arch/cpio sys-fs/squashfs-tools dev-perl/Capture-Tiny rkt_stage1_src? ( >=sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig >=dev-vcs/git-1.8.2.1
|
||||
DEPEND=app-arch/cpio sys-fs/squashfs-tools dev-perl/Capture-Tiny rkt_stage1_src? ( >=sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig >=dev-vcs/git-1.8.2.1 dev-lang/go:1.7=
|
||||
DESCRIPTION=A CLI for running app containers, and an implementation of the App Container Spec.
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/rkt
|
||||
IUSE=doc examples +rkt_stage1_coreos +rkt_stage1_fly rkt_stage1_host rkt_stage1_src +actool tpm cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64
|
||||
IUSE=doc examples +rkt_stage1_coreos +rkt_stage1_fly rkt_stage1_host rkt_stage1_src tpm cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!app-emulation/rocket actool? ( !app-emulation/actool ) rkt_stage1_host? ( ~sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers )
|
||||
REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_src )
|
||||
RDEPEND=!app-emulation/rocket rkt_stage1_host? ( ~sys-apps/systemd-222 app-shells/bash ) sys-apps/acl tpm? ( app-crypt/trousers )
|
||||
REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_src ) go_version_go1_7
|
||||
SLOT=0
|
||||
SRC_URI=rkt_stage1_coreos? ( https://alpha.release.core-os.net/amd64-usr/1032.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-1032.0.0.img )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=cd6754c088e885d35ccbf82ebb1862c6
|
||||
SRC_URI=rkt_stage1_coreos? ( amd64? ( https://alpha.release.core-os.net/amd64-usr/1151.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-amd64-usr-1151.0.0.img ) arm64? ( https://alpha.release.core-os.net/arm64-usr/1151.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-arm64-usr-1151.0.0.img ) )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=a03bf3393308af8a75b3c93dbde85010
|
||||
|
14
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/runc-0.1.0
vendored
Normal file
14
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/runc-0.1.0
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile install
|
||||
DEPEND=>=dev-lang/go-1.4:= dev-lang/go:1.6=
|
||||
DESCRIPTION=runc container cli tools
|
||||
EAPI=5
|
||||
HOMEPAGE=http://runc.io
|
||||
IUSE=+seccomp +go_version_go1_6
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=seccomp? ( sys-libs/libseccomp )
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/opencontainers/runc/archive/v0.1.0.tar.gz -> runc-0.1.0.tar.gz
|
||||
_eclasses_=coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=6ddd9af488efbffe4253cd7070c9211b
|
@ -1,10 +1,10 @@
|
||||
DEFINED_PHASES=install
|
||||
DESCRIPTION=Windows Azure Linux Agent
|
||||
EAPI=5
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/Azure/WALinuxAgent
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-lang/python-oem
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/Azure/WALinuxAgent/archive/WALinuxAgent-2.0.16.tar.gz
|
||||
_md5_=2078c19c867286c531dbecfe6eb18414
|
||||
SRC_URI=https://github.com/Azure/WALinuxAgent/archive/v2.1.3.tar.gz -> wa-linux-agent-2.1.3.tar.gz
|
||||
_md5_=b41512ee5ccf5f5b40475351d4e53487
|
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-eselect/eselect-go-0.1.0
vendored
Normal file
12
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-eselect/eselect-go-0.1.0
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=configure install postinst
|
||||
DEPEND=test? ( dev-libs/glib )
|
||||
DESCRIPTION=Eselect module for managing multiple Go versions
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/coreos/eselect-go
|
||||
IUSE=test
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-admin/eselect !dev-lang/go:0
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/coreos/eselect-go/releases/download/v0.1.0/eselect-go-0.1.0.tar.gz
|
||||
_md5_=e41e0b67c722bdfba58ae57a4163148b
|
@ -3,10 +3,10 @@ DEPEND=dev-libs/openssl sys-apps/findutils sys-apps/systemd || ( >=dev-lang/pyth
|
||||
DESCRIPTION=Mozilla's CA Certificate Store
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.mozilla.org/en-US/about/governance/policies/security-group/certs/
|
||||
KEYWORDS=amd64
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=MPL-2.0 GPL-2
|
||||
RDEPEND=dev-libs/openssl sys-apps/findutils sys-apps/systemd
|
||||
SLOT=0
|
||||
SRC_URI=ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_19_1_RTM/src/nss-3.19.1.tar.gz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=99a75c24de8335ba7cb268a3af48138d
|
||||
_md5_=a8aac6cb105aa6b370af14a3ccd0b274
|
||||
|
File diff suppressed because one or more lines are too long
13
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-shells/bash-4.3_p46-r1
vendored
Normal file
13
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-shells/bash-4.3_p46-r1
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack
|
||||
DEPEND=>=sys-libs/ncurses-5.2-r2 readline? ( >=sys-libs/readline-6.3 ) nls? ( virtual/libintl ) virtual/yacc
|
||||
DESCRIPTION=The standard GNU Bourne again shell
|
||||
EAPI=4
|
||||
HOMEPAGE=http://tiswww.case.edu/php/chet/bash/bashtop.html
|
||||
IUSE=afs bashlogger examples mem-scramble +net nls plugins +readline vanilla
|
||||
KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=>=sys-libs/ncurses-5.2-r2 readline? ( >=sys-libs/readline-6.3 ) nls? ( virtual/libintl ) !<sys-apps/portage-2.1.6.7_p1 !<sys-apps/paludis-0.26.0_alpha5
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnu/bash/bash-4.3.tar.gz ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-001 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-002 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-003 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-004 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-005 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-006 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-007 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-008 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-009 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-010 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-011 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-012 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-013 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-014 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-015 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-016 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-017 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-018 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-019 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-020 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-021 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-022 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-023 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-024 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-025 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-026 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-027 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-028 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-029 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-030 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-031 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-032 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-033 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-034 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-035 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-036 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-037 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-038 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-039 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-040 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-041 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-042 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-043 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-044 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-045 ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/bash43-046 mirror://gnu/bash/bash-4.3-patches/bash43-001 mirror://gnu/bash/bash-4.3-patches/bash43-002 mirror://gnu/bash/bash-4.3-patches/bash43-003 mirror://gnu/bash/bash-4.3-patches/bash43-004 mirror://gnu/bash/bash-4.3-patches/bash43-005 mirror://gnu/bash/bash-4.3-patches/bash43-006 mirror://gnu/bash/bash-4.3-patches/bash43-007 mirror://gnu/bash/bash-4.3-patches/bash43-008 mirror://gnu/bash/bash-4.3-patches/bash43-009 mirror://gnu/bash/bash-4.3-patches/bash43-010 mirror://gnu/bash/bash-4.3-patches/bash43-011 mirror://gnu/bash/bash-4.3-patches/bash43-012 mirror://gnu/bash/bash-4.3-patches/bash43-013 mirror://gnu/bash/bash-4.3-patches/bash43-014 mirror://gnu/bash/bash-4.3-patches/bash43-015 mirror://gnu/bash/bash-4.3-patches/bash43-016 mirror://gnu/bash/bash-4.3-patches/bash43-017 mirror://gnu/bash/bash-4.3-patches/bash43-018 mirror://gnu/bash/bash-4.3-patches/bash43-019 mirror://gnu/bash/bash-4.3-patches/bash43-020 mirror://gnu/bash/bash-4.3-patches/bash43-021 mirror://gnu/bash/bash-4.3-patches/bash43-022 mirror://gnu/bash/bash-4.3-patches/bash43-023 mirror://gnu/bash/bash-4.3-patches/bash43-024 mirror://gnu/bash/bash-4.3-patches/bash43-025 mirror://gnu/bash/bash-4.3-patches/bash43-026 mirror://gnu/bash/bash-4.3-patches/bash43-027 mirror://gnu/bash/bash-4.3-patches/bash43-028 mirror://gnu/bash/bash-4.3-patches/bash43-029 mirror://gnu/bash/bash-4.3-patches/bash43-030 mirror://gnu/bash/bash-4.3-patches/bash43-031 mirror://gnu/bash/bash-4.3-patches/bash43-032 mirror://gnu/bash/bash-4.3-patches/bash43-033 mirror://gnu/bash/bash-4.3-patches/bash43-034 mirror://gnu/bash/bash-4.3-patches/bash43-035 mirror://gnu/bash/bash-4.3-patches/bash43-036 mirror://gnu/bash/bash-4.3-patches/bash43-037 mirror://gnu/bash/bash-4.3-patches/bash43-038 mirror://gnu/bash/bash-4.3-patches/bash43-039 mirror://gnu/bash/bash-4.3-patches/bash43-040 mirror://gnu/bash/bash-4.3-patches/bash43-041 mirror://gnu/bash/bash-4.3-patches/bash43-042 mirror://gnu/bash/bash-4.3-patches/bash43-043 mirror://gnu/bash/bash-4.3-patches/bash43-044 mirror://gnu/bash/bash-4.3-patches/bash43-045 mirror://gnu/bash/bash-4.3-patches/bash43-046
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=b61b58f872eab4469f1370e84f273f3f
|
@ -5,6 +5,6 @@ HOMEPAGE=http://coreos.com
|
||||
IUSE=etcd_protocols_1 etcd_protocols_2 selinux
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=sys-apps/baselayout-3.0.0 etcd_protocols_1? ( dev-db/etcd:1 !etcd_protocols_2? ( dev-db/etcdctl ) ) etcd_protocols_2? ( dev-db/etcd:2 ) sys-apps/dbus[selinux?] sys-apps/systemd[selinux?] selinux? ( sec-policy/selinux-virt ) amd64? ( app-admin/kubelet app-admin/kubelet-wrapper app-crypt/go-tspi app-emulation/rkt[actool] app-emulation/xenserver-pv-version app-emulation/xenstore sys-auth/realmd sys-auth/sssd ) app-admin/flannel app-admin/fleet app-admin/locksmith app-admin/mayday app-admin/sudo app-admin/toolbox app-arch/gzip app-arch/tar app-arch/unzip app-arch/zip app-crypt/gnupg app-crypt/tpmpolicy app-editors/vim app-emulation/docker app-misc/ca-certificates app-misc/jq app-shells/bash coreos-base/coreos-cloudinit coreos-base/coreos-init coreos-base/coreos-metadata coreos-base/coretest coreos-base/update_engine dev-util/strace dev-vcs/git net-analyzer/nmap net-dns/bind-tools net-firewall/ebtables net-firewall/ipset net-firewall/iptables net-fs/nfs-utils net-misc/bridge-utils net-misc/dhcpcd net-misc/iputils net-misc/ntp net-misc/rsync net-misc/wget net-misc/whois sys-apps/coreutils sys-apps/dbus sys-apps/ethtool sys-apps/findutils sys-apps/gawk sys-apps/grep sys-apps/iproute2 sys-apps/kexec-tools sys-apps/less sys-apps/lshw sys-apps/net-tools sys-apps/pciutils sys-apps/rng-tools sys-apps/rootdev sys-apps/sed sys-apps/seismograph sys-apps/shadow sys-apps/usbutils sys-apps/util-linux sys-apps/which sys-block/open-iscsi sys-fs/btrfs-progs sys-fs/e2fsprogs sys-fs/mdadm sys-fs/multipath-tools sys-fs/xfsprogs sys-kernel/coreos-firmware sys-kernel/coreos-kernel sys-libs/glibc sys-libs/nss-usrfiles sys-libs/timezone-data sys-process/lsof sys-process/procps
|
||||
RDEPEND=>=sys-apps/baselayout-3.0.0 etcd_protocols_1? ( dev-db/etcd:1 !etcd_protocols_2? ( dev-db/etcdctl ) ) etcd_protocols_2? ( dev-db/etcd:2 amd64? ( app-admin/etcd-wrapper ) ) sys-apps/dbus[selinux?] sys-apps/systemd[selinux?] selinux? ( sec-policy/selinux-virt ) amd64? ( app-admin/kubelet-wrapper app-crypt/go-tspi app-emulation/xenserver-pv-version app-emulation/xenstore sys-auth/realmd sys-auth/sssd ) app-admin/flannel app-admin/fleet app-admin/locksmith app-admin/mayday app-admin/sdnotify-proxy app-admin/sudo app-admin/toolbox app-arch/gzip app-arch/tar app-arch/unzip app-arch/zip app-crypt/gnupg app-crypt/tpmpolicy app-editors/vim app-emulation/docker app-emulation/rkt app-emulation/actool app-misc/ca-certificates app-misc/jq app-shells/bash coreos-base/coreos-cloudinit coreos-base/coreos-init coreos-base/coreos-metadata coreos-base/coretest coreos-base/update_engine dev-util/strace dev-vcs/git net-analyzer/nmap net-dns/bind-tools net-firewall/ebtables net-firewall/ipset net-firewall/iptables net-fs/nfs-utils net-misc/bridge-utils net-misc/dhcpcd net-misc/iputils net-misc/ntp net-misc/rsync net-misc/wget net-misc/whois sys-apps/coreutils sys-apps/dbus sys-apps/ethtool sys-apps/findutils sys-apps/gawk sys-apps/grep sys-apps/iproute2 sys-apps/kexec-tools sys-apps/less sys-apps/lshw sys-apps/net-tools sys-apps/pciutils sys-apps/rng-tools sys-apps/sed sys-apps/seismograph sys-apps/shadow sys-apps/usbutils sys-apps/util-linux sys-apps/which sys-block/open-iscsi sys-fs/btrfs-progs sys-fs/e2fsprogs sys-fs/mdadm sys-fs/multipath-tools sys-fs/quota sys-fs/xfsprogs sys-kernel/coreos-firmware sys-kernel/coreos-kernel sys-libs/glibc sys-libs/nss-usrfiles sys-libs/timezone-data sys-process/lsof sys-process/procps
|
||||
SLOT=0
|
||||
_md5_=ba436b4851a94c1a50271f4b88f80278
|
||||
_md5_=c355bfdbee693e7ade43189c443bc820
|
||||
|
@ -1,10 +0,0 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=CoreOS (meta package)
|
||||
EAPI=2
|
||||
HOMEPAGE=http://coreos.com
|
||||
IUSE=etcd_protocols_1 etcd_protocols_2 selinux
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=sys-apps/baselayout-3.0.0 etcd_protocols_1? ( dev-db/etcd:1 !etcd_protocols_2? ( dev-db/etcdctl ) ) etcd_protocols_2? ( dev-db/etcd:2 ) sys-apps/dbus[selinux?] sys-apps/systemd[selinux?] selinux? ( sec-policy/selinux-virt ) amd64? ( app-admin/kubelet app-admin/kubelet-wrapper app-crypt/go-tspi app-emulation/rkt[actool] app-emulation/xenserver-pv-version app-emulation/xenstore sys-auth/realmd sys-auth/sssd ) app-admin/flannel app-admin/fleet app-admin/locksmith app-admin/mayday app-admin/sudo app-admin/toolbox app-arch/gzip app-arch/tar app-arch/unzip app-arch/zip app-crypt/gnupg app-crypt/tpmpolicy app-editors/vim app-emulation/docker app-misc/ca-certificates app-misc/jq app-shells/bash coreos-base/coreos-cloudinit coreos-base/coreos-init coreos-base/coreos-metadata coreos-base/coretest coreos-base/update_engine dev-util/strace dev-vcs/git net-analyzer/nmap net-dns/bind-tools net-firewall/ebtables net-firewall/ipset net-firewall/iptables net-fs/nfs-utils net-misc/bridge-utils net-misc/dhcpcd net-misc/iputils net-misc/ntp net-misc/rsync net-misc/wget net-misc/whois sys-apps/coreutils sys-apps/dbus sys-apps/ethtool sys-apps/findutils sys-apps/gawk sys-apps/grep sys-apps/iproute2 sys-apps/kexec-tools sys-apps/less sys-apps/lshw sys-apps/net-tools sys-apps/pciutils sys-apps/rng-tools sys-apps/rootdev sys-apps/sed sys-apps/seismograph sys-apps/shadow sys-apps/usbutils sys-apps/util-linux sys-apps/which sys-block/open-iscsi sys-fs/btrfs-progs sys-fs/e2fsprogs sys-fs/mdadm sys-fs/multipath-tools sys-fs/xfsprogs sys-kernel/coreos-firmware sys-kernel/coreos-kernel sys-libs/glibc sys-libs/nss-usrfiles sys-libs/timezone-data sys-process/lsof sys-process/procps
|
||||
SLOT=0
|
||||
_md5_=ba436b4851a94c1a50271f4b88f80278
|
10
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/coreos-base/coreos-0.0.1-r274
vendored
Normal file
10
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/coreos-base/coreos-0.0.1-r274
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=CoreOS (meta package)
|
||||
EAPI=2
|
||||
HOMEPAGE=http://coreos.com
|
||||
IUSE=etcd_protocols_1 etcd_protocols_2 selinux
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=sys-apps/baselayout-3.0.0 etcd_protocols_1? ( dev-db/etcd:1 !etcd_protocols_2? ( dev-db/etcdctl ) ) etcd_protocols_2? ( dev-db/etcd:2 amd64? ( app-admin/etcd-wrapper ) ) sys-apps/dbus[selinux?] sys-apps/systemd[selinux?] selinux? ( sec-policy/selinux-virt ) amd64? ( app-admin/kubelet-wrapper app-crypt/go-tspi app-emulation/xenserver-pv-version app-emulation/xenstore sys-auth/realmd sys-auth/sssd ) app-admin/flannel app-admin/fleet app-admin/locksmith app-admin/mayday app-admin/sdnotify-proxy app-admin/sudo app-admin/toolbox app-arch/gzip app-arch/tar app-arch/unzip app-arch/zip app-crypt/gnupg app-crypt/tpmpolicy app-editors/vim app-emulation/docker app-emulation/rkt app-emulation/actool app-misc/ca-certificates app-misc/jq app-shells/bash coreos-base/coreos-cloudinit coreos-base/coreos-init coreos-base/coreos-metadata coreos-base/coretest coreos-base/update_engine dev-util/strace dev-vcs/git net-analyzer/nmap net-dns/bind-tools net-firewall/ebtables net-firewall/ipset net-firewall/iptables net-fs/nfs-utils net-misc/bridge-utils net-misc/dhcpcd net-misc/iputils net-misc/ntp net-misc/rsync net-misc/wget net-misc/whois sys-apps/coreutils sys-apps/dbus sys-apps/ethtool sys-apps/findutils sys-apps/gawk sys-apps/grep sys-apps/iproute2 sys-apps/kexec-tools sys-apps/less sys-apps/lshw sys-apps/net-tools sys-apps/pciutils sys-apps/rng-tools sys-apps/sed sys-apps/seismograph sys-apps/shadow sys-apps/usbutils sys-apps/util-linux sys-apps/which sys-block/open-iscsi sys-fs/btrfs-progs sys-fs/e2fsprogs sys-fs/mdadm sys-fs/multipath-tools sys-fs/quota sys-fs/xfsprogs sys-kernel/coreos-firmware sys-kernel/coreos-kernel sys-libs/glibc sys-libs/nss-usrfiles sys-libs/timezone-data sys-process/lsof sys-process/procps
|
||||
SLOT=0
|
||||
_md5_=c355bfdbee693e7ade43189c443bc820
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=!<coreos-base/coreos-init-0.0.1-r69 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig virtual/pkgconfig dev-lang/go:=
|
||||
DESCRIPTION=coreos-cloudinit
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coreos-cloudinit
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=sys-apps/shadow-4.1.5.1
|
||||
SLOT=0
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338
|
||||
_md5_=3b7a4f0d10a625e1b73fe2c7872097fd
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=!<coreos-base/coreos-init-0.0.1-r69 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig virtual/pkgconfig dev-lang/go:1.7=
|
||||
DESCRIPTION=coreos-cloudinit
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coreos-cloudinit
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=sys-apps/shadow-4.1.5.1
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338
|
||||
_md5_=63f60558962be5f5cc61ec3b283631f5
|
@ -1,12 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=!<coreos-base/coreos-init-0.0.1-r69 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig virtual/pkgconfig dev-lang/go:=
|
||||
DEPEND=!<coreos-base/coreos-init-0.0.1-r69 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig virtual/pkgconfig dev-lang/go:1.7=
|
||||
DESCRIPTION=coreos-cloudinit
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coreos-cloudinit
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=sys-apps/shadow-4.1.5.1
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338
|
||||
_md5_=3b7a4f0d10a625e1b73fe2c7872097fd
|
||||
_eclasses_=coreos-doc 72164c6190a558664ec3293b6e572055 coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338
|
||||
_md5_=63f60558962be5f5cc61ec3b283631f5
|
||||
|
@ -5,6 +5,6 @@ HOMEPAGE=http://coreos.com
|
||||
IUSE=vm-testing
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-portage/gentoolkit coreos-base/coreos coreos-base/coreos-experimental coreos-base/gmerge dev-lang/python dev-util/strace dev-vcs/repo net-analyzer/netperf net-analyzer/tcpdump net-dialup/minicom net-misc/dhcp net-misc/iperf net-misc/iputils net-misc/openssh net-misc/rsync sys-apps/coreutils sys-apps/diffutils sys-apps/file sys-apps/findutils sys-apps/i2c-tools sys-apps/kbd sys-apps/less sys-apps/portage sys-apps/smartmontools sys-apps/which sys-devel/gcc sys-devel/gdb sys-fs/lvm2 sys-process/ktop sys-process/procps sys-process/psmisc vm-testing? ( app-emulation/xen app-emulation/xen-pvgrub app-emulation/xen-tools app-emulation/qemu )
|
||||
RDEPEND=app-portage/gentoolkit coreos-base/coreos coreos-base/coreos-experimental coreos-base/gmerge dev-lang/python dev-util/strace dev-vcs/repo net-analyzer/netperf net-analyzer/tcpdump net-dialup/minicom net-misc/iperf net-misc/iputils net-misc/openssh net-misc/rsync sys-apps/coreutils sys-apps/diffutils sys-apps/file sys-apps/findutils sys-apps/i2c-tools sys-apps/kbd sys-apps/less sys-apps/portage sys-apps/smartmontools sys-apps/which sys-devel/gcc sys-devel/gdb sys-fs/lvm2 sys-process/ktop sys-process/procps sys-process/psmisc vm-testing? ( app-emulation/xen app-emulation/xen-pvgrub app-emulation/xen-tools app-emulation/qemu )
|
||||
SLOT=0
|
||||
_md5_=d5950822c33cb9db82479378ad72b2a9
|
||||
_md5_=7a4b502e12f96eae4806916f2f13a799
|
||||
|
@ -1,10 +0,0 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=CoreOS developer images and containers (meta package)
|
||||
EAPI=4
|
||||
HOMEPAGE=http://coreos.com
|
||||
IUSE=vm-testing
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-portage/gentoolkit coreos-base/coreos coreos-base/coreos-experimental coreos-base/gmerge dev-lang/python dev-util/strace dev-vcs/repo net-analyzer/netperf net-analyzer/tcpdump net-dialup/minicom net-misc/dhcp net-misc/iperf net-misc/iputils net-misc/openssh net-misc/rsync sys-apps/coreutils sys-apps/diffutils sys-apps/file sys-apps/findutils sys-apps/i2c-tools sys-apps/kbd sys-apps/less sys-apps/portage sys-apps/smartmontools sys-apps/which sys-devel/gcc sys-devel/gdb sys-fs/lvm2 sys-process/ktop sys-process/procps sys-process/psmisc vm-testing? ( app-emulation/xen app-emulation/xen-pvgrub app-emulation/xen-tools app-emulation/qemu )
|
||||
SLOT=0
|
||||
_md5_=d5950822c33cb9db82479378ad72b2a9
|
10
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/coreos-base/coreos-dev-0.1.0-r76
vendored
Normal file
10
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/coreos-base/coreos-dev-0.1.0-r76
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=CoreOS developer images and containers (meta package)
|
||||
EAPI=4
|
||||
HOMEPAGE=http://coreos.com
|
||||
IUSE=vm-testing
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-portage/gentoolkit coreos-base/coreos coreos-base/coreos-experimental coreos-base/gmerge dev-lang/python dev-util/strace dev-vcs/repo net-analyzer/netperf net-analyzer/tcpdump net-dialup/minicom net-misc/iperf net-misc/iputils net-misc/openssh net-misc/rsync sys-apps/coreutils sys-apps/diffutils sys-apps/file sys-apps/findutils sys-apps/i2c-tools sys-apps/kbd sys-apps/less sys-apps/portage sys-apps/smartmontools sys-apps/which sys-devel/gcc sys-devel/gdb sys-fs/lvm2 sys-process/ktop sys-process/procps sys-process/psmisc vm-testing? ( app-emulation/xen app-emulation/xen-pvgrub app-emulation/xen-tools app-emulation/qemu )
|
||||
SLOT=0
|
||||
_md5_=7a4b502e12f96eae4806916f2f13a799
|
@ -10,4 +10,4 @@ RDEPEND=app-emulation/docker net-misc/openssh net-nds/rpcbind !<dev-db/etcd-0.0.
|
||||
REQUIRED_USE=symlink-usr
|
||||
SLOT=0
|
||||
_eclasses_=cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=18b5c2fea9d992723a97950b265b4c8a
|
||||
_md5_=401a00a44b25e021a1533def5311deb9
|
@ -10,4 +10,4 @@ RDEPEND=app-emulation/docker net-misc/openssh net-nds/rpcbind !<dev-db/etcd-0.0.
|
||||
REQUIRED_USE=symlink-usr
|
||||
SLOT=0
|
||||
_eclasses_=cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=18b5c2fea9d992723a97950b265b4c8a
|
||||
_md5_=401a00a44b25e021a1533def5311deb9
|
||||
|
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DESCRIPTION=A simple cloud-provider metadata agent
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coreos-metadata
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ee50b2aa0ab6b078e4cd557131abf9bc
|
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DESCRIPTION=A simple cloud-provider metadata agent
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coreos-metadata
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ac3bc0badc8c5308528c05aeba5858d3
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DESCRIPTION=A simple cloud-provider metadata agent
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coreos-metadata
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ee50b2aa0ab6b078e4cd557131abf9bc
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=ac3bc0badc8c5308528c05aeba5858d3
|
||||
|
@ -0,0 +1,8 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=CoreOS OEM suite for Google Compute Engine (meta package)
|
||||
EAPI=2
|
||||
KEYWORDS=amd64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-emulation/google-compute-engine
|
||||
SLOT=0
|
||||
_md5_=91d5b670ecd8b5bae3261509822cf7ef
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:1.7=
|
||||
DESCRIPTION=Sanity tests for CoreOS
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coretest
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64 x86
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=162c59190a101a7002ea4e6882cf1cf3
|
||||
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 dev-lang/go:1.7=
|
||||
DESCRIPTION=Sanity tests for CoreOS
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/coretest
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=162c59190a101a7002ea4e6882cf1cf3
|
||||
|
@ -4,6 +4,6 @@ EAPI=2
|
||||
HOMEPAGE=http://src.chromium.org
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-arch/lzop app-arch/pigz app-admin/sudo sys-apps/less dev-embedded/u-boot-tools dev-util/ccache dev-util/crosutils sys-boot/syslinux sys-devel/crossdev sys-devel/sysroot-wrappers sys-fs/dosfstools app-arch/cabextract >=app-arch/pbzip2-1.1.1-r1 app-arch/rpm2targz app-arch/sharutils app-arch/unzip app-emulation/qemu app-text/texi2html coreos-base/cros-devutils[cros_host] coreos-base/cros-testutils =dev-lang/python-2* dev-python/setuptools dev-lang/nasm dev-lang/swig dev-lang/yasm dev-lang/go dev-lang/go-bootstrap dev-libs/dbus-glib >=dev-libs/glib-2.26.1 dev-libs/libgcrypt dev-libs/libxslt dev-libs/libyaml dev-libs/protobuf dev-python/cherrypy dev-python/ctypesgen dev-python/m2crypto dev-python/mako dev-python/netifaces dev-python/pyinotify dev-python/pyopenssl dev-python/python-daemon dev-python/pyusb dev-python/setproctitle dev-python/ws4py sys-devel/bc dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.30 dev-util/scons dev-vcs/cvs >=dev-vcs/git-1.7.2 dev-vcs/mercurial dev-vcs/subversion[-dso] net-misc/gcutil net-misc/gsutil sys-apps/usbutils sys-apps/systemd !sys-apps/nih-dbus-tool =sys-devel/automake-1.10* sys-libs/libnih sys-libs/nss-usrfiles sys-power/iasl virtual/udev dev-libs/protobuf-c app-text/asciidoc app-text/xmlto sys-apps/gptfdisk net-libs/libtirpc sys-apps/dbus sys-process/lsof app-arch/zip app-portage/eclass-manpages app-portage/gentoolkit app-portage/portage-utils app-editors/vim dev-util/perf sys-apps/pv app-shells/bash-completion sys-devel/smatch sys-fs/squashfs-tools coreos-base/update_engine dev-cpp/gflags dev-python/mock dev-python/mox dev-python/unittest2 dev-python/pylint net-misc/openssh net-misc/wget dev-python/gdata dev-embedded/smdk-dltool dev-python/pyyaml virtual/cdrtools !net-misc/dhcpcd !coreos-base/google-breakpad
|
||||
RDEPEND=app-arch/lzop app-arch/pigz app-admin/sudo sys-apps/less dev-embedded/u-boot-tools dev-util/ccache dev-util/crosutils sys-boot/syslinux sys-devel/crossdev sys-devel/sysroot-wrappers sys-fs/dosfstools app-arch/cabextract >=app-arch/pbzip2-1.1.1-r1 app-arch/rpm2targz app-arch/sharutils app-arch/unzip app-emulation/qemu app-text/texi2html coreos-base/cros-devutils[cros_host] coreos-base/cros-testutils =dev-lang/python-2* dev-python/setuptools dev-lang/nasm dev-lang/swig dev-lang/yasm dev-lang/go:1.6 dev-lang/go-bootstrap dev-libs/dbus-glib >=dev-libs/glib-2.26.1 dev-libs/libgcrypt dev-libs/libxslt dev-libs/libyaml dev-libs/protobuf dev-python/cherrypy dev-python/ctypesgen dev-python/m2crypto dev-python/mako dev-python/netifaces dev-python/pyinotify dev-python/pyopenssl dev-python/python-daemon dev-python/pyusb dev-python/setproctitle dev-python/ws4py sys-devel/bc dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.30 dev-util/scons dev-vcs/cvs >=dev-vcs/git-1.7.2 dev-vcs/mercurial dev-vcs/subversion[-dso] net-misc/gcutil net-misc/gsutil sys-apps/usbutils sys-apps/systemd !sys-apps/nih-dbus-tool =sys-devel/automake-1.10* sys-libs/libnih sys-libs/nss-usrfiles sys-power/iasl virtual/udev app-text/asciidoc app-text/xmlto sys-apps/gptfdisk net-libs/libtirpc sys-apps/dbus sys-process/lsof app-arch/zip app-portage/eclass-manpages app-portage/gentoolkit app-portage/portage-utils app-editors/vim dev-util/perf sys-apps/pv app-shells/bash-completion sys-devel/smatch sys-fs/squashfs-tools coreos-base/update_engine dev-cpp/gflags dev-python/mock dev-python/mox dev-python/unittest2 dev-python/pylint net-misc/openssh net-misc/wget dev-python/gdata dev-embedded/smdk-dltool dev-python/pyyaml virtual/cdrtools !net-misc/dhcpcd !coreos-base/google-breakpad
|
||||
SLOT=0
|
||||
_md5_=c4d00c0fa1c7f1c3fddd578af10faf77
|
||||
_md5_=03f88a4cd0098e96f37ea9fda3364f51
|
||||
|
@ -1,9 +0,0 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=List of packages that are needed on the buildhost (meta package)
|
||||
EAPI=2
|
||||
HOMEPAGE=http://src.chromium.org
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-arch/lzop app-arch/pigz app-admin/sudo sys-apps/less dev-embedded/u-boot-tools dev-util/ccache dev-util/crosutils sys-boot/syslinux sys-devel/crossdev sys-devel/sysroot-wrappers sys-fs/dosfstools app-arch/cabextract >=app-arch/pbzip2-1.1.1-r1 app-arch/rpm2targz app-arch/sharutils app-arch/unzip app-emulation/qemu app-text/texi2html coreos-base/cros-devutils[cros_host] coreos-base/cros-testutils =dev-lang/python-2* dev-python/setuptools dev-lang/nasm dev-lang/swig dev-lang/yasm dev-lang/go dev-lang/go-bootstrap dev-libs/dbus-glib >=dev-libs/glib-2.26.1 dev-libs/libgcrypt dev-libs/libxslt dev-libs/libyaml dev-libs/protobuf dev-python/cherrypy dev-python/ctypesgen dev-python/m2crypto dev-python/mako dev-python/netifaces dev-python/pyinotify dev-python/pyopenssl dev-python/python-daemon dev-python/pyusb dev-python/setproctitle dev-python/ws4py sys-devel/bc dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.30 dev-util/scons dev-vcs/cvs >=dev-vcs/git-1.7.2 dev-vcs/mercurial dev-vcs/subversion[-dso] net-misc/gcutil net-misc/gsutil sys-apps/usbutils sys-apps/systemd !sys-apps/nih-dbus-tool =sys-devel/automake-1.10* sys-libs/libnih sys-libs/nss-usrfiles sys-power/iasl virtual/udev dev-libs/protobuf-c app-text/asciidoc app-text/xmlto sys-apps/gptfdisk net-libs/libtirpc sys-apps/dbus sys-process/lsof app-arch/zip app-portage/eclass-manpages app-portage/gentoolkit app-portage/portage-utils app-editors/vim dev-util/perf sys-apps/pv app-shells/bash-completion sys-devel/smatch sys-fs/squashfs-tools coreos-base/update_engine dev-cpp/gflags dev-python/mock dev-python/mox dev-python/unittest2 dev-python/pylint net-misc/openssh net-misc/wget dev-python/gdata dev-embedded/smdk-dltool dev-python/pyyaml virtual/cdrtools !net-misc/dhcpcd !coreos-base/google-breakpad
|
||||
SLOT=0
|
||||
_md5_=c4d00c0fa1c7f1c3fddd578af10faf77
|
@ -0,0 +1,9 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=List of packages that are needed on the buildhost (meta package)
|
||||
EAPI=2
|
||||
HOMEPAGE=http://src.chromium.org
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-arch/lzop app-arch/pigz app-admin/sudo sys-apps/less dev-embedded/u-boot-tools dev-util/ccache dev-util/crosutils sys-boot/syslinux sys-devel/crossdev sys-devel/sysroot-wrappers sys-fs/dosfstools app-arch/cabextract >=app-arch/pbzip2-1.1.1-r1 app-arch/rpm2targz app-arch/sharutils app-arch/unzip app-emulation/qemu app-text/texi2html coreos-base/cros-devutils[cros_host] coreos-base/cros-testutils =dev-lang/python-2* dev-python/setuptools dev-lang/nasm dev-lang/swig dev-lang/yasm dev-lang/go:1.6 dev-lang/go-bootstrap dev-libs/dbus-glib >=dev-libs/glib-2.26.1 dev-libs/libgcrypt dev-libs/libxslt dev-libs/libyaml dev-libs/protobuf dev-python/cherrypy dev-python/ctypesgen dev-python/m2crypto dev-python/mako dev-python/netifaces dev-python/pyinotify dev-python/pyopenssl dev-python/python-daemon dev-python/pyusb dev-python/setproctitle dev-python/ws4py sys-devel/bc dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.30 dev-util/scons dev-vcs/cvs >=dev-vcs/git-1.7.2 dev-vcs/mercurial dev-vcs/subversion[-dso] net-misc/gcutil net-misc/gsutil sys-apps/usbutils sys-apps/systemd !sys-apps/nih-dbus-tool =sys-devel/automake-1.10* sys-libs/libnih sys-libs/nss-usrfiles sys-power/iasl virtual/udev app-text/asciidoc app-text/xmlto sys-apps/gptfdisk net-libs/libtirpc sys-apps/dbus sys-process/lsof app-arch/zip app-portage/eclass-manpages app-portage/gentoolkit app-portage/portage-utils app-editors/vim dev-util/perf sys-apps/pv app-shells/bash-completion sys-devel/smatch sys-fs/squashfs-tools coreos-base/update_engine dev-cpp/gflags dev-python/mock dev-python/mox dev-python/unittest2 dev-python/pylint net-misc/openssh net-misc/wget dev-python/gdata dev-embedded/smdk-dltool dev-python/pyyaml virtual/cdrtools !net-misc/dhcpcd !coreos-base/google-breakpad
|
||||
SLOT=0
|
||||
_md5_=03f88a4cd0098e96f37ea9fda3364f51
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:1.7=
|
||||
DESCRIPTION=nova-agent-watcher
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/nova-agent-watcher
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=5f033e01316562b13f6837d69b2042a8
|
||||
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:=
|
||||
DEPEND=>=dev-vcs/git-1.8.2.1 virtual/pkgconfig dev-lang/go:1.7=
|
||||
DESCRIPTION=nova-agent-watcher
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/nova-agent-watcher
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=cros_workon_tree_* profiling +go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=5f033e01316562b13f6837d69b2042a8
|
||||
|
@ -3,6 +3,6 @@ DESCRIPTION=OEM suite for Azure
|
||||
EAPI=5
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-emulation/wa-linux-agent
|
||||
RDEPEND=~app-emulation/wa-linux-agent-2.1.3
|
||||
SLOT=0
|
||||
_md5_=7ef98e304a77c4cc6468ba86a50e4848
|
||||
_md5_=e5de71918edfcd8ef1b20036928b315e
|
@ -2,8 +2,8 @@ DEFINED_PHASES=install prepare
|
||||
DESCRIPTION=OEM suite for EC2 compatible images
|
||||
EAPI=5
|
||||
IUSE=ec2 openstack brightbox
|
||||
KEYWORDS=amd64 x86
|
||||
KEYWORDS=amd64 arm64 x86
|
||||
LICENSE=Apache-2.0
|
||||
REQUIRED_USE=^^ ( ec2 openstack brightbox )
|
||||
SLOT=0
|
||||
_md5_=2cef80305a0c5e9afc3de1acbf043acf
|
||||
_md5_=c5177efb46864b21a33a450ff2b4b165
|
@ -3,6 +3,5 @@ DESCRIPTION=OEM suite for Google Compute Engine images
|
||||
EAPI=5
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=app-emulation/google-compute-daemon app-emulation/google-startup-scripts
|
||||
SLOT=0
|
||||
_md5_=c5b105a52cc388f127ae8bdda366371d
|
||||
_md5_=abf37bcd897c66a32d7b061e42f3efde
|
@ -1,12 +1,12 @@
|
||||
DEFINED_PHASES=compile configure info install prepare test unpack
|
||||
DEPEND=dev-cpp/gmock dev-cpp/gtest !coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key coreos-base/libchrome:180609[cros-debug=] dev-cpp/gflags dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf dev-util/bsdiff net-misc/curl sys-fs/e2fsprogs !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DEPEND=dev-cpp/gmock dev-cpp/gtest !coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key dev-cpp/gflags dev-cpp/glog[gflags] dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf:= dev-util/bsdiff net-misc/curl >=sys-apps/seismograph-2.2.0 sys-fs/e2fsprogs !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DESCRIPTION=CoreOS OS Update Engine
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/update_engine
|
||||
IUSE=cros-debug cros_host -delta_generator symlink-usr cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=BSD
|
||||
RDEPEND=!coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key coreos-base/libchrome:180609[cros-debug=] dev-cpp/gflags dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf dev-util/bsdiff net-misc/curl sys-fs/e2fsprogs
|
||||
RDEPEND=!coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key dev-cpp/gflags dev-cpp/glog[gflags] dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf:= dev-util/bsdiff net-misc/curl >=sys-apps/seismograph-2.2.0 sys-fs/e2fsprogs
|
||||
SLOT=0
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=86ff1b5fcf1d92cd00de78b8fb998b8b
|
||||
_md5_=f5bbb96ee4733d38deb8560d55c105b2
|
@ -1,12 +1,12 @@
|
||||
DEFINED_PHASES=compile configure info install prepare test unpack
|
||||
DEPEND=dev-cpp/gmock dev-cpp/gtest !coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key coreos-base/libchrome:180609[cros-debug=] dev-cpp/gflags dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf dev-util/bsdiff net-misc/curl sys-fs/e2fsprogs !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DEPEND=dev-cpp/gmock dev-cpp/gtest !coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key dev-cpp/gflags dev-cpp/glog[gflags] dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf:= dev-util/bsdiff net-misc/curl >=sys-apps/seismograph-2.2.0 sys-fs/e2fsprogs !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1 virtual/pkgconfig
|
||||
DESCRIPTION=CoreOS OS Update Engine
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/update_engine
|
||||
IUSE=cros-debug cros_host -delta_generator symlink-usr cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm ~arm64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=!coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key coreos-base/libchrome:180609[cros-debug=] dev-cpp/gflags dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf dev-util/bsdiff net-misc/curl sys-fs/e2fsprogs
|
||||
RDEPEND=!coreos-base/coreos-installer app-arch/bzip2 coreos-base/coreos-au-key dev-cpp/gflags dev-cpp/glog[gflags] dev-libs/dbus-glib dev-libs/glib dev-libs/libxml2 dev-libs/openssl dev-libs/protobuf:= dev-util/bsdiff net-misc/curl >=sys-apps/seismograph-2.2.0 sys-fs/e2fsprogs
|
||||
SLOT=0
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=86ff1b5fcf1d92cd00de78b8fb998b8b
|
||||
_md5_=f5bbb96ee4733d38deb8560d55c105b2
|
||||
|
@ -4,6 +4,6 @@ EAPI=5
|
||||
HOMEPAGE=http://coreos.com/docs/sdk/
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=amd64? ( app-emulation/google-compute-daemon app-emulation/google-startup-scripts app-emulation/open-vm-tools app-emulation/wa-linux-agent coreos-base/nova-agent-container coreos-base/nova-agent-watcher dev-lang/python-oem ) arm64? ( sys-boot/grub sys-firmware/edk2-armvirt ) coreos-base/coreos coreos-base/coreos-dev
|
||||
RDEPEND=amd64? ( app-emulation/google-compute-engine app-emulation/open-vm-tools app-emulation/wa-linux-agent coreos-base/nova-agent-container coreos-base/nova-agent-watcher dev-lang/python-oem ) arm64? ( sys-boot/grub sys-firmware/edk2-armvirt ) coreos-base/coreos coreos-base/coreos-dev
|
||||
SLOT=0
|
||||
_md5_=7a67e1b4c70eaf34c1023efb279c69b7
|
||||
_md5_=57fbabe7152e58f4446c6cc7d2188bb7
|
||||
|
@ -1,9 +0,0 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=Meta ebuild for building all binary packages.
|
||||
EAPI=5
|
||||
HOMEPAGE=http://coreos.com/docs/sdk/
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=amd64? ( app-emulation/google-compute-daemon app-emulation/google-startup-scripts app-emulation/open-vm-tools app-emulation/wa-linux-agent coreos-base/nova-agent-container coreos-base/nova-agent-watcher dev-lang/python-oem ) arm64? ( sys-boot/grub sys-firmware/edk2-armvirt ) coreos-base/coreos coreos-base/coreos-dev
|
||||
SLOT=0
|
||||
_md5_=7a67e1b4c70eaf34c1023efb279c69b7
|
@ -0,0 +1,9 @@
|
||||
DEFINED_PHASES=-
|
||||
DESCRIPTION=Meta ebuild for building all binary packages.
|
||||
EAPI=5
|
||||
HOMEPAGE=http://coreos.com/docs/sdk/
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=amd64? ( app-emulation/google-compute-engine app-emulation/open-vm-tools app-emulation/wa-linux-agent coreos-base/nova-agent-container coreos-base/nova-agent-watcher dev-lang/python-oem ) arm64? ( sys-boot/grub sys-firmware/edk2-armvirt ) coreos-base/coreos coreos-base/coreos-dev
|
||||
SLOT=0
|
||||
_md5_=57fbabe7152e58f4446c6cc7d2188bb7
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=Mantle: Gluing CoreOS together
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/mantle
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2
|
||||
RDEPEND=>=net-dns/dnsmasq-2.72[dhcp,ipv6]
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=e7b14084e26f10da9f74d1b8fb29e1ea
|
13
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/coreos-devel/mantle-0.2.1
vendored
Normal file
13
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/coreos-devel/mantle-0.2.1
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare test unpack
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=Mantle: Gluing CoreOS together
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/mantle
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2
|
||||
RDEPEND=>=net-dns/dnsmasq-2.72[dhcp,ipv6]
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=99f5c51fe432876610198b61a0013542
|
@ -1,12 +1,13 @@
|
||||
DEFINED_PHASES=compile info install prepare unpack
|
||||
DEPEND=dev-lang/go:= >=dev-vcs/git-1.8.2.1
|
||||
DEFINED_PHASES=compile info install prepare test unpack
|
||||
DEPEND=dev-lang/go:1.7= >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=Mantle: Gluing CoreOS together
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/coreos/mantle
|
||||
IUSE=cros_workon_tree_* profiling
|
||||
IUSE=+go_version_go1_7 cros_workon_tree_* profiling
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2
|
||||
RDEPEND=>=net-dns/dnsmasq-2.72[dhcp,ipv6]
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 9aec6d11d214fbb3064cc9de1bd64eb0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=e7b14084e26f10da9f74d1b8fb29e1ea
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=99f5c51fe432876610198b61a0013542
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user