blob: 8e4a504c1f90f9fa5c00667130539784b7b16a0c [file] [log] [blame]
# Copyright 2019 The ChromiumOS Authors
# Distributed under the terms of the GNU General Public License v2
# This is separate from the chromite ebuild currently so that we *don't* track
# the chromite repo directly. This stuff rarely changes, so we don't want to
# throw useless churn into the SDK.
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
inherit cros-constants python-r1
DESCRIPTION="Blend chromite bits into the SDK"
HOMEPAGE="https://chromium.googlesource.com/chromiumos/chromite/"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
IUSE=""
S="${WORKDIR}"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${PYTHON_DEPS}"
src_install() {
install_python() {
# TODO(crbug.com/771085): Figure out this SYSROOT business.
local dir="$(python_get_sitedir | sed "s:^${SYSROOT}::")/chromite"
dodir "${dir%/*}"
dosym "${CHROOT_SOURCE_ROOT}/chromite" "${dir}"
}
python_foreach_impl install_python
}