blob: 8ee41973fc948f8679749e377df22c1ab1a186e6 [file] [log] [blame]
# 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.
EAPI=4
CROS_WORKON_COMMIT="cc72f5c47c758892b0f41257b0dd441a506ffdcd"
CROS_WORKON_TREE="5e4cb7b3bbfda6cb32060b7d38b362f0b7706efb"
PYTHON_DEPEND="2"
CROS_WORKON_PROJECT="chromiumos/third_party/u-boot"
CROS_WORKON_LOCALNAME="u-boot"
CROS_WORKON_SUBDIR="files"
inherit cros-workon distutils
DESCRIPTION="Patman tool (from U-Boot) for sending patches upstream"
HOMEPAGE="http://www.denx.de/wiki/U-Boot"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND=""
src_prepare() {
cd tools/patman
rm patman
cp "${FILESDIR}/setup.py" .
touch __init__.py
distutils_src_prepare
}
src_compile() {
cd tools/patman
distutils_src_compile
}
src_install() {
cd tools/patman
dobin "${FILESDIR}/patman"
distutils_src_install
}