coreos-devel/fero-client: Drop CoreOS board handling for Rust

This package didn't need to handle board cross-compilation in the
first place since it was only installed on the SDK host, but this
change brings it in line with all of our other Rust projects.
This commit is contained in:
David Michael 2018-10-29 18:31:27 +00:00
parent 7cb0f72cce
commit dd3d4270c9
4 changed files with 13 additions and 11 deletions

View File

@ -1,7 +1,7 @@
# Copyright (c) 2018 CoreOS, Inc.. All rights reserved. # Copyright (c) 2018 CoreOS, Inc.. All rights reserved.
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=6 EAPI=7
CROS_WORKON_PROJECT="coreos/fero" CROS_WORKON_PROJECT="coreos/fero"
CROS_WORKON_LOCALNAME="fero" CROS_WORKON_LOCALNAME="fero"
@ -14,7 +14,7 @@ else
KEYWORDS="amd64" KEYWORDS="amd64"
fi fi
inherit coreos-cargo cros-workon inherit cargo cros-workon
DESCRIPTION="Client for fero signing server" DESCRIPTION="Client for fero signing server"
HOMEPAGE="https://github.com/coreos/fero" HOMEPAGE="https://github.com/coreos/fero"
@ -28,7 +28,7 @@ RDEPEND="${DEPEND}"
src_unpack() { src_unpack() {
cros-workon_src_unpack "$@" cros-workon_src_unpack "$@"
coreos-cargo_src_unpack "$@" cargo_src_unpack "$@"
} }
src_compile() { src_compile() {

File diff suppressed because one or more lines are too long