mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

They are no longer required to build python software. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
21 lines
587 B
BlitzBasic
21 lines
587 B
BlitzBasic
SUMMARY = "Python vcversioner, automagically update the project's version"
|
|
HOMEPAGE = "https://github.com/habnabit/vcversioner"
|
|
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://PKG-INFO;md5=260625d695c5e0c9dd2c2ef898833c7d"
|
|
|
|
SRC_URI[md5sum] = "7848a365ced9941053bc25d9a9f8f4b4"
|
|
SRC_URI[sha256sum] = "acd43686e92e6c8bbeb4f2eef54408567a7adea9692fa72d591eec5357c03b86"
|
|
|
|
inherit pypi setuptools
|
|
|
|
do_compile_append() {
|
|
${PYTHON} setup.py -q bdist_egg --dist-dir ./
|
|
}
|
|
|
|
do_install_append() {
|
|
install -m 0644 ${S}/vcversioner*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|