blob: c9878406fc77a8d331c8a63eb4bfd803bee8d59c [file] [log] [blame]
#!/usr/bin/python
# 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.
# Filter out all the packages that are already in chromeos.
cros_pkgs = set(open('target-os.packages', 'r').readlines())
port_pkgs = set(open('portage.packages', 'r').readlines())
boot_pkgs = port_pkgs - cros_pkgs
f = open('bootstrap.packages', 'w')
f.write(''.join(boot_pkgs))
f.close()
# After bootstrapping the package will be assumed
# to be installed by emerge.
prov_pkgs = [x for x in boot_pkgs if not x.startswith('virtual/')]
f = open('chromeos-base.packages', 'a')
f.write(''.join(prov_pkgs))
f.close()
# Make a list of the packages that can be installed. Those packages
# are in taget-os-dev or chromeos-test and not chromeos.
dev_pkgs = set(open('target-os-dev.packages', 'r').readlines())
test_pkgs = set(open('target-os-test.packages', 'r').readlines())
inst_pkgs = (dev_pkgs | test_pkgs) - cros_pkgs
# We have to keep virtuals because portage will complain if we list
# them in package.provided, but it still needs to install a binpkg
# for the new style virtuals.
inst_pkgs = inst_pkgs | set([x for x in cros_pkgs if x.startswith('virtual/')])
f = open('package.installable', 'w')
f.write(''.join(inst_pkgs))
f.close()