mirror of
https://github.com/flatcar/scripts.git
synced 2025-12-15 22:31:59 +01:00
Merge pull request #2415 from dm0-/ccache
Move ccache back to portage-stable
This commit is contained in:
commit
8d9d15aafd
@ -1 +0,0 @@
|
||||
DIST ccache-3.2.2.tar.xz 300808 SHA256 4f0d99699f24d198494addca0f41a93b0150cdfd01491f15a5d7eb02c7c2a0ca SHA512 fc438f3b00baa41076eee3e5783ea53a208eb348343e587c6f729f7e98462cd20c720fe323fe08f271bc14dae48f7828cef769882f028f3772992989b87b075d WHIRLPOOL 095a125e869910644622b98b7720a01ccc235fbeb8c84ec52017fe52f82fe7b8122584c3e5fa4d39c1344e9c062517a1edb46c3e64fe649e845ed5c1fb455c5a
|
||||
@ -1,70 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-3.2.2.ebuild,v 1.1 2015/05/11 03:06:48 vapier Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils readme.gentoo
|
||||
|
||||
DESCRIPTION="fast compiler cache"
|
||||
HOMEPAGE="http://ccache.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/ccache/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="app-arch/xz-utils
|
||||
sys-libs/zlib"
|
||||
RDEPEND="${DEPEND}
|
||||
sys-apps/gentoo-functions"
|
||||
|
||||
src_prepare() {
|
||||
# make sure we always use system zlib
|
||||
rm -rf zlib || die
|
||||
epatch "${FILESDIR}"/${PN}-3.1.7-no-perl.patch #421609
|
||||
epatch "${FILESDIR}"/${PN}-3.1.10-size-on-disk.patch #456178
|
||||
epatch "${FILESDIR}"/${PN}-3.2.2-save-temps.patch
|
||||
sed \
|
||||
-e "/^EPREFIX=/s:'':'${EPREFIX}':" \
|
||||
"${FILESDIR}"/ccache-config-3 > ccache-config || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
DOCS=( AUTHORS.txt MANUAL.txt NEWS.txt README.txt )
|
||||
default
|
||||
|
||||
dobin ccache-config
|
||||
|
||||
DOC_CONTENTS="
|
||||
To use ccache with **non-Portage** C compiling, add
|
||||
${EPREFIX}/usr/lib/ccache/bin to the beginning of your path, before ${EPREFIX}usr/bin.
|
||||
Portage 2.0.46-r11+ will automatically take advantage of ccache with
|
||||
no additional steps. If this is your first install of ccache, type
|
||||
something like this to set a maximum cache size of 2GB:\\n
|
||||
# ccache -M 2G\\n
|
||||
If you are upgrading from an older version than 3.x you should clear all of your caches like so:\\n
|
||||
# CCACHE_DIR='${CCACHE_DIR:-${PORTAGE_TMPDIR}/ccache}' ccache -C\\n
|
||||
ccache now supports sys-devel/clang and dev-lang/icc, too!"
|
||||
|
||||
readme.gentoo_create_doc
|
||||
}
|
||||
|
||||
pkg_prerm() {
|
||||
if [[ -z ${REPLACED_BY_VERSION} ]] ; then
|
||||
"${EROOT}"/usr/bin/ccache-config --remove-links
|
||||
"${EROOT}"/usr/bin/ccache-config --remove-links ${CHOST}
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
"${EROOT}"/usr/bin/ccache-config --install-links
|
||||
"${EROOT}"/usr/bin/ccache-config --install-links ${CHOST}
|
||||
|
||||
# nuke broken symlinks from previous versions that shouldn't exist
|
||||
rm -f "${EROOT}"/usr/lib/ccache/bin/${CHOST}-cc || die
|
||||
rm -rf "${EROOT}"/usr/lib/ccache.backup || die
|
||||
|
||||
readme.gentoo_print_elog
|
||||
}
|
||||
@ -1,21 +0,0 @@
|
||||
https://bugs.gentoo.org/56178
|
||||
|
||||
stick to the size of files on disk rather than their byte size.
|
||||
this func is only used for stats management, so this should be safe.
|
||||
|
||||
--- a/util.c
|
||||
+++ b/util.c
|
||||
@@ -845,12 +845,7 @@ file_size(struct stat *st)
|
||||
#ifdef _WIN32
|
||||
return (st->st_size + 1023) & ~1023;
|
||||
#else
|
||||
- size_t size = st->st_blocks * 512;
|
||||
- if ((size_t)st->st_size > size) {
|
||||
- /* probably a broken stat() call ... */
|
||||
- size = (st->st_size + 1023) & ~1023;
|
||||
- }
|
||||
- return size;
|
||||
+ return st->st_blocks * 512;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -1,15 +0,0 @@
|
||||
avoid weak perl usage in tests
|
||||
|
||||
https://bugs.gentoo.org/421609
|
||||
|
||||
--- a/test.sh
|
||||
+++ b/test.sh
|
||||
@@ -1466,7 +1466,7 @@
|
||||
mkdir -p $dir
|
||||
i=0
|
||||
while [ $i -lt 10 ]; do
|
||||
- perl -e 'print "A" x 4017' >$dir/result$i-4017.o
|
||||
+ printf '%4017s' '' | tr ' ' 'A' >$dir/result$i-4017.o
|
||||
touch $dir/result$i-4017.stderr
|
||||
touch $dir/result$i-4017.d
|
||||
if [ $i -gt 5 ]; then
|
||||
@ -1,38 +0,0 @@
|
||||
From 13259a28a6ace55f9397b2066173fecc4b296833 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Marineau <michael.marineau@coreos.com>
|
||||
Date: Thu, 9 Jul 2015 13:13:33 -0700
|
||||
Subject: [PATCH] Bail out on --save-temps, an alias for -save-temps
|
||||
|
||||
---
|
||||
NEWS.txt | 2 ++
|
||||
compopt.c | 1 +
|
||||
2 files changed, 3 insertions(+)
|
||||
|
||||
diff --git a/NEWS.txt b/NEWS.txt
|
||||
index c1e121d..19b0ae2 100644
|
||||
--- a/NEWS.txt
|
||||
+++ b/NEWS.txt
|
||||
@@ -18,6 +18,8 @@ Bug fixes
|
||||
|
||||
- Avoid calling `exit()` inside an exit handler.
|
||||
|
||||
+- Bail out on compiler option --save-temps in addition to -save-temps.
|
||||
+
|
||||
|
||||
ccache 3.2.2
|
||||
------------
|
||||
diff --git a/compopt.c b/compopt.c
|
||||
index 26e1591..0fc9161 100644
|
||||
--- a/compopt.c
|
||||
+++ b/compopt.c
|
||||
@@ -33,6 +33,7 @@ struct compopt {
|
||||
|
||||
static const struct compopt compopts[] = {
|
||||
{"--param", TAKES_ARG},
|
||||
+ {"--save-temps", TOO_HARD},
|
||||
{"--serialize-diagnostics", TAKES_ARG | TAKES_PATH},
|
||||
{"-A", TAKES_ARG},
|
||||
{"-D", AFFECTS_CPP | TAKES_ARG | TAKES_CONCAT_ARG},
|
||||
--
|
||||
2.3.6
|
||||
|
||||
@ -1,97 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# ccache-config - helper script for ccache and its ebuild
|
||||
#
|
||||
# Copyright 2003-2014 Superlucidity Services, LLC
|
||||
# Copyright 2013-2014 Gentoo Foundation
|
||||
# This program licensed under the GNU GPL version 2.
|
||||
#
|
||||
# This script developed by Zachary T Welch at Superlucidity Services, LLC
|
||||
# it was cloned from the distcc-config script
|
||||
#
|
||||
# Additional features to come; this provides a starting point
|
||||
|
||||
EPREFIX=''
|
||||
|
||||
. "${EPREFIX}"/lib/gentoo/functions.sh 2>/dev/null || {
|
||||
ebegin() { echo " * $* ..."; }
|
||||
eend() {
|
||||
local r=${1:-$?}
|
||||
[ ${r} -eq 0 ] && echo " [ OK ]" || echo " [ !! ]"
|
||||
return $r
|
||||
}
|
||||
}
|
||||
|
||||
LIBDIR="lib"
|
||||
|
||||
# this should be getopt'd someday (override with CC_QUIET=1)
|
||||
CC_VERBOSE=1
|
||||
unset _CC_QUIET
|
||||
c_quiet() {
|
||||
[ -n "${CC_QUIET:-${_CC_QUIET}}" ] || [ -z "${CC_VERBOSE}" ]
|
||||
}
|
||||
|
||||
c_ebegin() { c_quiet || ebegin "$@" ; }
|
||||
c_eend() { c_quiet || eend "$@" ; }
|
||||
|
||||
###
|
||||
# the following functions manage the ccache symlinks
|
||||
# they allow the user or other scripts (namely gcc-config) to
|
||||
# automatically update ccache's links when upgrading toolchains
|
||||
#
|
||||
cc_path() {
|
||||
echo ${ROOT%/}${EPREFIX}/usr/${LIBDIR}/ccache/bin/$1
|
||||
}
|
||||
cc_remove_link() {
|
||||
local t=$(cc_path "$1")
|
||||
if [ -L ${t} ]; then
|
||||
c_ebegin "Removing ${t}"
|
||||
rm -f "${t}"
|
||||
c_eend
|
||||
|
||||
# Trim the empty dir if possible. #517242
|
||||
t=${t%/*}
|
||||
if rmdir "${t}" 2>/dev/null; then
|
||||
rmdir "${t%/*}" 2>/dev/null
|
||||
fi
|
||||
:
|
||||
fi
|
||||
}
|
||||
cc_install_link() {
|
||||
# Search the PATH for the specified compiler
|
||||
# then create shadow link in /usr/lib/ccache/bin to ccache
|
||||
|
||||
if command -v "$1" >/dev/null ; then
|
||||
# first be sure any old link is removed
|
||||
_CC_QUIET=1
|
||||
cc_remove_link "$1"
|
||||
unset _CC_QUIET
|
||||
|
||||
# then create the new link
|
||||
local t=$(cc_path "$1")
|
||||
c_ebegin "Creating ccache shadow link ${t}"
|
||||
mkdir -p -m 0755 "${t%/*}" && ln -s "${EPREFIX}"/usr/bin/ccache "${t}"
|
||||
c_eend
|
||||
fi
|
||||
}
|
||||
cc_links() {
|
||||
local a
|
||||
for a in gcc cc c++ g++ icc icpc clang clang++ ; do
|
||||
"cc_${1}_link" "${2}${2:+-}${a}"
|
||||
done
|
||||
}
|
||||
|
||||
###
|
||||
# main routine
|
||||
|
||||
case $1 in
|
||||
--install-links )
|
||||
cc_links install "$2"
|
||||
;;
|
||||
--remove-links )
|
||||
cc_links remove "$2"
|
||||
;;
|
||||
* )
|
||||
echo "usage: $0 {--install-links|--remove-links} [ CHOST ]"
|
||||
;;
|
||||
esac
|
||||
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>toolchain</herd>
|
||||
<maintainer>
|
||||
<email>robbat2@gentoo.org</email>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
ccache acts as a caching pre-processor to C/C++ compilers, improving
|
||||
compilation time when recompiling previously compiled source.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@ -9,6 +9,6 @@ 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.5.tar.gz -> containerd-0.2.5.tar.gz
|
||||
SRC_URI=https:///archive/03e5862ec0d8d3b3f750e19fca3ee367e13c090e.tar.gz -> containerd-0.2.5.tar.gz
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 vcs-snapshot b45be87e7012be0af8424e8a5644da1d
|
||||
_md5_=2be6df9433588fe3628f9d17a2c5b5e5
|
||||
_md5_=0449bbd47fe59743cc915a36c2db8300
|
||||
@ -9,4 +9,4 @@ RDEPEND=app-emulation/runc seccomp? ( sys-libs/libseccomp )
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
SLOT=0
|
||||
_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_=2be6df9433588fe3628f9d17a2c5b5e5
|
||||
_md5_=0449bbd47fe59743cc915a36c2db8300
|
||||
|
||||
@ -1,14 +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=
|
||||
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.7=
|
||||
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
|
||||
IUSE=apparmor aufs +btrfs contrib +device-mapper experimental +overlay seccomp +selinux vim-syntax zsh-completion +journald cros_workon_tree_* profiling +go_version_go1_7
|
||||
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 >=sys-apps/shadow-4.4 >=app-emulation/containerd-0.2.5[seccomp?] >=app-emulation/runc-1.0.0_rc2-r2[apparmor?,seccomp?]
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
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 >=sys-apps/shadow-4.4 >=app-emulation/containerd-0.2.5[seccomp?] >=app-emulation/runc-1.0.0_rc2-r2[apparmor?,seccomp?] app-emulation/docker-proxy
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
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_=cd40ac8e670844446b5fb45077f73697
|
||||
_md5_=13905f23c6dd9573a1009694b0499ede
|
||||
@ -1,14 +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=
|
||||
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.7=
|
||||
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
|
||||
IUSE=apparmor aufs +btrfs contrib +device-mapper experimental +overlay seccomp +selinux vim-syntax zsh-completion +journald cros_workon_tree_* profiling +go_version_go1_7
|
||||
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 >=sys-apps/shadow-4.4 >=app-emulation/containerd-0.2.5[seccomp?] >=app-emulation/runc-1.0.0_rc2-r2[apparmor?,seccomp?]
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
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 >=sys-apps/shadow-4.4 >=app-emulation/containerd-0.2.5[seccomp?] >=app-emulation/runc-1.0.0_rc2-r2[apparmor?,seccomp?] app-emulation/docker-proxy
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
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_=cd40ac8e670844446b5fb45077f73697
|
||||
_md5_=13905f23c6dd9573a1009694b0499ede
|
||||
|
||||
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile install prepare unpack
|
||||
DEPEND=>=dev-lang/go-1.4.2:= dev-lang/go:1.7=
|
||||
DESCRIPTION=Docker container networking
|
||||
EAPI=5
|
||||
HOMEPAGE=http://github.com/docker/libnetwork
|
||||
IUSE=+go_version_go1_7
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!<app-emulation/docker-1.13.0_rc1
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/docker/libnetwork/archive/0f534354b813003a754606689722fe253101bc4e.tar.gz -> docker-proxy-0.8.0_p20170131.tar.gz
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e golang-base 1f6a08c05da2d91150032ff45db6a2c5 golang-vcs-snapshot 1caa6d8238d2378ad688ae068ff22e5a multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=4cc16219bb89313b6d3e28135765be8a
|
||||
13
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/docker-proxy-9999
vendored
Normal file
13
sdk_container/src/third_party/coreos-overlay/metadata/md5-cache/app-emulation/docker-proxy-9999
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile install prepare unpack
|
||||
DEPEND=>=dev-lang/go-1.4.2:= dev-lang/go:1.7=
|
||||
DESCRIPTION=Docker container networking
|
||||
EAPI=5
|
||||
HOMEPAGE=http://github.com/docker/libnetwork
|
||||
IUSE=+go_version_go1_7
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=!<app-emulation/docker-1.13.0_rc1
|
||||
REQUIRED_USE=go_version_go1_7
|
||||
SLOT=0
|
||||
_eclasses_=coreos-go 6e6f51e4ecc89ef7c7823a65556bd9d9 coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e golang-base 1f6a08c05da2d91150032ff45db6a2c5 golang-vcs c46e447dc94466eabb5ce867f21b85bf multilib 3972ca401cf7dbb430df9995f5d8d580 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=4cc16219bb89313b6d3e28135765be8a
|
||||
@ -11,4 +11,4 @@ REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_sr
|
||||
SLOT=0
|
||||
SRC_URI=rkt_stage1_coreos? ( amd64? ( https://alpha.release.core-os.net/amd64-usr/1235.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-amd64-usr-1235.0.0.img ) arm64? ( https://alpha.release.core-os.net/arm64-usr/1235.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-arm64-usr-1235.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_=dedcd81d6caeac11080fb0d8236592da
|
||||
_md5_=4ba36b865a1bcbaa151bf3a598062880
|
||||
@ -11,4 +11,4 @@ REQUIRED_USE=|| ( rkt_stage1_coreos rkt_stage1_fly rkt_stage1_host rkt_stage1_sr
|
||||
SLOT=0
|
||||
SRC_URI=rkt_stage1_coreos? ( amd64? ( https://alpha.release.core-os.net/amd64-usr/1235.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-amd64-usr-1235.0.0.img ) arm64? ( https://alpha.release.core-os.net/arm64-usr/1235.0.0/coreos_production_pxe_image.cpio.gz -> rkt-pxe-arm64-usr-1235.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_=dedcd81d6caeac11080fb0d8236592da
|
||||
_md5_=4ba36b865a1bcbaa151bf3a598062880
|
||||
|
||||
@ -9,6 +9,6 @@ LICENSE=Apache-2.0
|
||||
RDEPEND=apparmor? ( sys-libs/libapparmor ) seccomp? ( sys-libs/libseccomp )
|
||||
REQUIRED_USE=go_version_go1_6
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/opencontainers/runc/archive/50a19c6ff828c58e5dab13830bd3dacde268afe5.tar.gz -> runc-1.0.0_rc2.tar.gz
|
||||
SRC_URI=https://github.com/opencontainers/runc/archive/2f7393a47307a16f8cee44a37b262e8b81021e3e.tar.gz -> runc-1.0.0_rc2.tar.gz
|
||||
_eclasses_=coreos-go-depend bbc48df71cd1e48b73083b5c63377751 coreos-go-utils 5e0ac5131161ee8de80f759806fc0de0 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 vcs-snapshot b45be87e7012be0af8424e8a5644da1d
|
||||
_md5_=45875fd5e2521873618d503d53a248d0
|
||||
_md5_=8a4da565cfb7241167d9544c9aeffc38
|
||||
@ -6,5 +6,5 @@ KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-lang/python-oem
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/Azure/WALinuxAgent/archive/v2.1.3.tar.gz -> wa-linux-agent-2.1.3.tar.gz
|
||||
_md5_=b41512ee5ccf5f5b40475351d4e53487
|
||||
SRC_URI=https://github.com/Azure/WALinuxAgent/archive/v2.2.4.tar.gz -> wa-linux-agent-2.2.4.tar.gz
|
||||
_md5_=f5ac6a191443e004a54d08d4609fa1d7
|
||||
@ -3,6 +3,6 @@ DESCRIPTION=OEM suite for Azure
|
||||
EAPI=5
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=~app-emulation/wa-linux-agent-2.1.3
|
||||
RDEPEND=~app-emulation/wa-linux-agent-2.2.4
|
||||
SLOT=0
|
||||
_md5_=e5de71918edfcd8ef1b20036928b315e
|
||||
@ -4,10 +4,10 @@ DESCRIPTION=Contains error handling functions used by GnuPG software
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.gnupg.org/related_software/libgpg-error
|
||||
IUSE=common-lisp nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
|
||||
KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
KEYWORDS=alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=GPL-2 LGPL-2.1
|
||||
RDEPEND=nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20131008-r12 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnupg/libgpg-error/libgpg-error-1.24.tar.bz2
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e libtool b75230758539a7da029e24afdb693960 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=cf326f4729b5a7419271338a8ff1b2d5
|
||||
_md5_=dfc80c0e603784c8abe68dc6a91f0dc0
|
||||
|
||||
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=install postinst prepare prerm
|
||||
DEPEND=app-arch/xz-utils sys-libs/zlib
|
||||
DESCRIPTION=fast compiler cache
|
||||
EAPI=5
|
||||
HOMEPAGE=http://ccache.samba.org/
|
||||
KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=app-arch/xz-utils sys-libs/zlib sys-apps/gentoo-functions
|
||||
SLOT=0
|
||||
SRC_URI=http://samba.org/ftp/ccache/ccache-3.2.2.tar.xz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e multilib 3972ca401cf7dbb430df9995f5d8d580 readme.gentoo df3fc8fdaf5a519e7d48c83e7592c95f toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85
|
||||
_md5_=56ea3bfe57c0e62500947c9a9490c789
|
||||
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=configure install postinst preinst prepare setup test
|
||||
DEFINED_PHASES=configure install postinst preinst prepare pretend test
|
||||
DEPEND=!static? ( ldns? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] ) libedit? ( dev-libs/libedit ) sctp? ( net-misc/lksctp-tools ) selinux? ( >=sys-libs/libselinux-1.28 ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.8f:0[-bindist(-)] dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) >=sys-libs/zlib-1.2.3 ) pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) static? ( ldns? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] ) libedit? ( dev-libs/libedit[static-libs(+)] ) sctp? ( net-misc/lksctp-tools[static-libs(+)] ) selinux? ( >=sys-libs/libselinux-1.28[static-libs(+)] ) skey? ( >=sys-auth/skey-1.1.5-r1[static-libs(+)] ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.8f:0[-bindist(-)] dev-libs/openssl:0[static-libs(+)] ) libressl? ( dev-libs/libressl[static-libs(+)] ) ) >=sys-libs/zlib-1.2.3[static-libs(+)] ) virtual/pkgconfig virtual/os-headers sys-devel/autoconf !<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
|
||||
DESCRIPTION=Port of OpenBSD's free SSH release
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.openssh.org/
|
||||
IUSE=debug +hpn kerberos kernel_linux ldap ldns libedit libressl livecd pam +pie sctp selinux skey ssh1 +ssl static test X X509
|
||||
KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
IUSE=abi_mips_n32 debug hpn kerberos kernel_linux ldap ldns libedit libressl livecd pam +pie sctp selinux skey ssh1 +ssl static test X X509
|
||||
KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=BSD GPL-2
|
||||
RDEPEND=!static? ( ldns? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] ) libedit? ( dev-libs/libedit ) sctp? ( net-misc/lksctp-tools ) selinux? ( >=sys-libs/libselinux-1.28 ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.8f:0[-bindist(-)] dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) >=sys-libs/zlib-1.2.3 ) pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( >=sys-auth/pambase-20081028 ) userland_GNU? ( virtual/shadow ) X? ( x11-apps/xauth )
|
||||
REQUIRED_USE=ldns? ( ssl ) pie? ( !static ) ssh1? ( ssl ) static? ( !kerberos !pam ) X509? ( !ldap ssl ) test? ( ssl )
|
||||
REQUIRED_USE=ldns? ( ssl ) pie? ( !static ) ssh1? ( ssl ) static? ( !kerberos !pam ) X509? ( !hpn !ldap !sctp ssl ) test? ( ssl )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://openbsd/OpenSSH/portable/openssh-7.3p1.tar.gz mirror://gentoo/openssh-7.3_p1-sctp.patch.xz hpn? ( mirror://gentoo/openssh-7.3_p1-hpn-14.10-r1.patch.xz http://dev.gentoo.org/~chutzpah/openssh-7.3_p1-hpn-14.10-r1.patch.xz ) ldap? ( mirror://gentoo/openssh-lpk-7.3p1-0.3.14.patch.xz ) X509? ( http://roumenpetrov.info/openssh/x509-9.2/openssh-7.3p1+x509-9.2.diff.gz )
|
||||
SRC_URI=mirror://openbsd/OpenSSH/portable/openssh-7.4p1.tar.gz mirror://gentoo/openssh-7.4_p1-sctp.patch.xz ldap? ( mirror://gentoo/openssh-lpk-7.4p1-0.3.14.patch.xz ) X509? ( http://roumenpetrov.info/openssh/x509-9.3/openssh-7.4p1+x509-9.3.diff.gz )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e libtool b75230758539a7da029e24afdb693960 multilib 3972ca401cf7dbb430df9995f5d8d580 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=0329857028e2a065cce68bee850f4c3f
|
||||
_md5_=8c6628228831dea9416fbb28b70bb7eb
|
||||
@ -11,4 +11,4 @@ RDEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3
|
||||
REQUIRED_USE=importd? ( curl gcrypt lzma )
|
||||
SLOT=0/2
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=000ed61307b062706f23a7511c8bfbf3
|
||||
_md5_=d43a430c7c6263841826a384dd490be2
|
||||
@ -11,4 +11,4 @@ RDEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3
|
||||
REQUIRED_USE=importd? ( curl gcrypt lzma )
|
||||
SLOT=0/2
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 systemd 3165c885f3c71ffae7a867d931fb0e07 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 udev 73058269b3e70e34e084fa3981282338 user 906f3c8eb3a2350a4f1191a89baa3e46 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=000ed61307b062706f23a7511c8bfbf3
|
||||
_md5_=d43a430c7c6263841826a384dd490be2
|
||||
|
||||
@ -11,4 +11,4 @@ RESTRICT=test
|
||||
SLOT=2
|
||||
SRC_URI=mirror://gnu/unifont/unifont-7.0.05/unifont-7.0.05.pcf.gz truetype? ( mirror://sourceforge/dejavu/dejavu-sans-ttf-2.34.zip )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 mount-boot 41ed556fa5641393d5323e421c8e5bcf multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=09135c46d922b987387072a7f89d0c92
|
||||
_md5_=b7ea6ecff17d373e2b29c56fb3203109
|
||||
@ -11,4 +11,4 @@ RESTRICT=test
|
||||
SLOT=2
|
||||
SRC_URI=mirror://gnu/unifont/unifont-7.0.05/unifont-7.0.05.pcf.gz truetype? ( mirror://sourceforge/dejavu/dejavu-sans-ttf-2.34.zip )
|
||||
_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c autotools-utils 419811142edf3516b0d0cf1a254d93cb bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 cros-workon 995fc284f005294b40380f96f8f96541 eutils 9d81603248f2ba3ec59124320d123e5e flag-o-matic d270fa247153df66074f795fa42dba3e git-r3 ef66dfc3db09f327af21cf32f140fb2b libtool b75230758539a7da029e24afdb693960 mount-boot 41ed556fa5641393d5323e421c8e5bcf multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 3972ca401cf7dbb430df9995f5d8d580 pax-utils ecf634cba91bb9591a8fdb6f6145f1bb python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=09135c46d922b987387072a7f89d0c92
|
||||
_md5_=b7ea6ecff17d373e2b29c56fb3203109
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
DEFINED_PHASES=compile configure install prepare pretend setup unpack
|
||||
DEPEND==sys-kernel/coreos-modules-4.8.15-r2 app-arch/gzip app-shells/bash sys-apps/coreutils sys-apps/findutils sys-apps/grep sys-apps/ignition:= sys-apps/less sys-apps/sed sys-apps/shadow sys-apps/systemd sys-apps/seismograph sys-apps/util-linux sys-fs/btrfs-progs sys-fs/e2fsprogs sys-fs/mdadm sys-fs/xfsprogs >=sys-kernel/coreos-firmware-20160331-r1:= >=sys-kernel/bootengine-0.0.4:= sys-kernel/dracut virtual/udev =sys-kernel/coreos-sources-4.8.15
|
||||
DEPEND==sys-kernel/coreos-modules-4.8.17-r2 app-arch/gzip app-shells/bash sys-apps/coreutils sys-apps/findutils sys-apps/grep sys-apps/ignition:= sys-apps/less sys-apps/sed sys-apps/shadow sys-apps/systemd sys-apps/seismograph sys-apps/util-linux sys-fs/btrfs-progs sys-fs/e2fsprogs sys-fs/mdadm sys-fs/xfsprogs >=sys-kernel/coreos-firmware-20160331-r1:= >=sys-kernel/bootengine-0.0.4:= sys-kernel/dracut virtual/udev =sys-kernel/coreos-sources-4.8.17-r1
|
||||
DESCRIPTION=CoreOS Linux kernel
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.kernel.org
|
||||
KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2 freedist
|
||||
RDEPEND==sys-kernel/coreos-modules-4.8.15-r2
|
||||
RDEPEND==sys-kernel/coreos-modules-4.8.17-r2
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=0/4.8.15-r2
|
||||
SLOT=0/4.8.17-r2
|
||||
_eclasses_=coreos-kernel 752d7a354cf977d8a12bf954190e9d20 eutils 9d81603248f2ba3ec59124320d123e5e linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=b531fd02cfd892c89a08def456fd29dd
|
||||
_md5_=04dc19d0afbc656aca5979b33136482d
|
||||
@ -1,5 +1,5 @@
|
||||
DEFINED_PHASES=compile configure install postinst prepare pretend setup unpack
|
||||
DEPEND==sys-kernel/coreos-sources-4.8.15
|
||||
DEPEND==sys-kernel/coreos-sources-4.8.17-r1
|
||||
DESCRIPTION=CoreOS Linux kernel modules
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.kernel.org
|
||||
@ -8,6 +8,6 @@ KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2 freedist
|
||||
RDEPEND=!<sys-kernel/coreos-kernel-4.6.3-r1
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=0/4.8.15-r2
|
||||
SLOT=0/4.8.17-r2
|
||||
_eclasses_=coreos-kernel 752d7a354cf977d8a12bf954190e9d20 eutils 9d81603248f2ba3ec59124320d123e5e linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 3972ca401cf7dbb430df9995f5d8d580 portability bb1a0ed8ea152b957d17339f01d4d7f5 savedconfig 7de7daa586f6bf361639e77d6f2299db toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=504109d46fa628d1af16a2067836873f
|
||||
_md5_=f96cd00800b712a7a8655a87fedb02ab
|
||||
@ -8,7 +8,7 @@ KEYWORDS=amd64 arm64
|
||||
LICENSE=GPL-2 freedist
|
||||
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=4.8.15
|
||||
SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.8.15.xz mirror://kernel/linux/kernel/v4.x/linux-4.8.tar.xz
|
||||
SLOT=4.8.17-r1
|
||||
SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.8.17.xz mirror://kernel/linux/kernel/v4.x/linux-4.8.tar.xz
|
||||
_eclasses_=eutils 9d81603248f2ba3ec59124320d123e5e kernel-2 f745fe70cd0e35af07412905687b9a7f multilib 3972ca401cf7dbb430df9995f5d8d580 python-any-r1 8eb13cdf35f6e43c48107b911900b2cc python-utils-r1 2e6826f6a93ad2acf904eecf5b5fb6d2 toolchain-funcs 7a212e5e01adfa4805c9978366e6ee85 versionator 99ae9d758cbe7cfed19170e7d48f5a9c
|
||||
_md5_=cd2483f8402e9492ab7bce2bfd1fa3e2
|
||||
_md5_=1b83012de1174a2a006dee8403ab08fd
|
||||
Loading…
x
Reference in New Issue
Block a user