mirror of
https://github.com/flatcar/scripts.git
synced 2026-05-04 19:56:32 +02:00
chore(chromeos-kernel): delete chromeos kernel builds
This commit is contained in:
parent
f84d0ebfee
commit
2f74ee40df
@ -1,17 +0,0 @@
|
||||
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
CROS_WORKON_COMMIT="f6a45ba0aa715500f21d6d95a0558dd50e4bbf6b"
|
||||
CROS_WORKON_TREE="b80c11182613432cf1192946a2c95ea1cd742d9d"
|
||||
CROS_WORKON_PROJECT="chromiumos/third_party/kernel-next"
|
||||
CROS_WORKON_LOCALNAME="../third_party/kernel-next/"
|
||||
|
||||
# This must be inherited *after* EGIT/CROS_WORKON variables defined
|
||||
inherit cros-workon cros-kernel2
|
||||
|
||||
DESCRIPTION="Chrome OS Kernel-next"
|
||||
KEYWORDS="amd64 arm x86"
|
||||
|
||||
DEPEND="!sys-kernel/chromeos-kernel"
|
||||
RDEPEND="!sys-kernel/chromeos-kernel"
|
||||
@ -1,15 +0,0 @@
|
||||
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
CROS_WORKON_PROJECT="chromiumos/third_party/kernel-next"
|
||||
CROS_WORKON_LOCALNAME="../third_party/kernel-next/"
|
||||
|
||||
# This must be inherited *after* EGIT/CROS_WORKON variables defined
|
||||
inherit cros-workon cros-kernel2
|
||||
|
||||
DESCRIPTION="Chrome OS Kernel-next"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
|
||||
DEPEND="!sys-kernel/chromeos-kernel"
|
||||
RDEPEND="!sys-kernel/chromeos-kernel"
|
||||
@ -1,21 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# This script is given one argument: the base of the source directory of
|
||||
# the package, and it prints a string on stdout with the numerical version
|
||||
# number for said repo.
|
||||
|
||||
# Matching regexp for all known kernel release tags to date.
|
||||
PATTERN="v[23].*"
|
||||
|
||||
if [ ! -d "$1" ] ; then
|
||||
exit
|
||||
fi
|
||||
|
||||
cd "$1" || exit
|
||||
|
||||
git describe --match "${PATTERN}" --abbrev=0 HEAD 2>&1 | egrep "${PATTERN}" |
|
||||
sed s/v\\.*//g | sed s/-/_/g
|
||||
@ -1,25 +0,0 @@
|
||||
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
CROS_WORKON_COMMIT="808f8d525c0eeaba7d71f2c9f993c02b1c76e210"
|
||||
CROS_WORKON_TREE="cf09dbf486aa2e7f53a7236d4d77165325586be8"
|
||||
CROS_WORKON_PROJECT="chromiumos/third_party/kernel"
|
||||
|
||||
# TODO(jglasgow) Need to fix DEPS file to get rid of "files"
|
||||
CROS_WORKON_LOCALNAME="../third_party/kernel/files"
|
||||
|
||||
# This must be inherited *after* EGIT/CROS_WORKON variables defined
|
||||
inherit cros-workon cros-kernel2
|
||||
|
||||
DESCRIPTION="Chrome OS Kernel"
|
||||
KEYWORDS="amd64 arm x86"
|
||||
|
||||
RDEPEND="!sys-kernel/chromeos-kernel-next
|
||||
!sys-kernel/chromeos-kernel-exynos"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_test() {
|
||||
# Needed for `cros_run_unit_tests`.
|
||||
cros-kernel2_src_test
|
||||
}
|
||||
@ -1,23 +0,0 @@
|
||||
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
CROS_WORKON_PROJECT="chromiumos/third_party/kernel"
|
||||
|
||||
# TODO(jglasgow) Need to fix DEPS file to get rid of "files"
|
||||
CROS_WORKON_LOCALNAME="../third_party/kernel/files"
|
||||
|
||||
# This must be inherited *after* EGIT/CROS_WORKON variables defined
|
||||
inherit cros-workon cros-kernel2
|
||||
|
||||
DESCRIPTION="Chrome OS Kernel"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
|
||||
RDEPEND="!sys-kernel/chromeos-kernel-next
|
||||
!sys-kernel/chromeos-kernel-exynos"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_test() {
|
||||
# Needed for `cros_run_unit_tests`.
|
||||
cros-kernel2_src_test
|
||||
}
|
||||
@ -1,21 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# This script is given one argument: the base of the source directory of
|
||||
# the package, and it prints a string on stdout with the numerical version
|
||||
# number for said repo.
|
||||
|
||||
# Matching regexp for all known kernel release tags to date.
|
||||
PATTERN="v[23].*"
|
||||
|
||||
if [ ! -d "$1" ] ; then
|
||||
exit
|
||||
fi
|
||||
|
||||
cd "$1" || exit
|
||||
|
||||
git describe --match "${PATTERN}" --abbrev=0 HEAD 2>&1 | egrep "${PATTERN}" |
|
||||
sed s/v\\.*//g | sed s/-/_/g
|
||||
Loading…
x
Reference in New Issue
Block a user