fix(coreos-base/gmerge): Remove reference to old package.provided file

A case of binary packages masking breakage, didn't notice this broke
because I didn't happen to trigger a build of gmerge during my testing.
This package.provided file contained the hackily installed toolchain
which is now handled via a normal emerge instead.
This commit is contained in:
Michael Marineau 2013-12-05 23:07:15 -08:00
parent f0c18c5bd7
commit 43c26c6cc9
3 changed files with 0 additions and 10 deletions

View File

@ -32,13 +32,8 @@ src_install() {
dobin gmerge stateful_update crdev dobin gmerge stateful_update crdev
# Setup package.provided so that gmerge will know what packages to ignore. # Setup package.provided so that gmerge will know what packages to ignore.
# - $ROOT/etc/portage/profile/package.provided contains compiler tools and
# and is setup by setup_board. We know that that file will be present in
# $ROOT because the initial compile of packages takes place in
# /build/$BOARD.
# - $CHROMEOS_PROFILE/package.provided contains packages that we don't # - $CHROMEOS_PROFILE/package.provided contains packages that we don't
# want to install to the device. # want to install to the device.
insinto /usr/local/etc/make.profile/package.provided insinto /usr/local/etc/make.profile/package.provided
newins "${SYSROOT}"/etc/portage/profile/package.provided compiler
newins "${CHROMEOS_PROFILE}"/package.provided coreos newins "${CHROMEOS_PROFILE}"/package.provided coreos
} }

View File

@ -31,13 +31,8 @@ src_install() {
dobin gmerge stateful_update crdev dobin gmerge stateful_update crdev
# Setup package.provided so that gmerge will know what packages to ignore. # Setup package.provided so that gmerge will know what packages to ignore.
# - $ROOT/etc/portage/profile/package.provided contains compiler tools and
# and is setup by setup_board. We know that that file will be present in
# $ROOT because the initial compile of packages takes place in
# /build/$BOARD.
# - $CHROMEOS_PROFILE/package.provided contains packages that we don't # - $CHROMEOS_PROFILE/package.provided contains packages that we don't
# want to install to the device. # want to install to the device.
insinto /usr/local/etc/make.profile/package.provided insinto /usr/local/etc/make.profile/package.provided
newins "${SYSROOT}"/etc/portage/profile/package.provided compiler
newins "${CHROMEOS_PROFILE}"/package.provided coreos newins "${CHROMEOS_PROFILE}"/package.provided coreos
} }