mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 13:36:58 +02:00
We intended to use some extra python modules for autotest in the chroot, but decided against it. They're removed from hard-host-depends in https://gerrit.chromium.org/gerrit/21816 BUG=None TEST=./upgrade_chroot; see that they've been removed. CQ-DEPEND=If896436bf9fed7c0fd600ffca9a4c854fd7eceba CQ-DEPEND=I95df39e40b62c919df0bafcb490d8caa48c04dd4 Change-Id: If9854661b8774d519c5a587e77c31eafdc9b889b Reviewed-on: https://gerrit.chromium.org/gerrit/21817 Tested-by: Chris Masone <cmasone@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org> Commit-Ready: Chris Masone <cmasone@chromium.org>
13 lines
485 B
Plaintext
13 lines
485 B
Plaintext
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# We intended to use some extra python modules for autotest in the chroot,
|
|
# but decided against it. They're removed from hard-host-depends in
|
|
# https://gerrit.chromium.org/gerrit/21816
|
|
|
|
|
|
pkgs=( dev-python/requests dev-python/chardet dev-python/certifi )
|
|
sudo CLEAN_DELAY=0 emerge -q --unmerge "${pkgs[@]}"
|
|
exit 0
|