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

Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
775 B
BlitzBasic
24 lines
775 B
BlitzBasic
SUMMARY = "Python LR parsing library"
|
|
SECTION = "devel/python"
|
|
LICENSE = "AGPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://agpl-3.0.txt;md5=73f1eb20517c55bf9493b7dd6e480788"
|
|
|
|
HOMEPAGE = "https://lrparsing.sourceforge.net/"
|
|
BUGTRACKER = "https://sourceforge.net/p/lrparsing/tickets/"
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/lrparsing/files/"
|
|
UPSTREAM_CHECK_REGEX = "lrparsing-(?P<pver>\d+(\.\d+)+)"
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/lrparsing/lrparsing-${PV}.tar.gz \
|
|
file://0001-setup.py-use-setuptools-instead-of-distutils.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "7c060d9f03cf582fdbc0ae0fef0ea2ff6fd56251047ba7e425af97e23f46f582"
|
|
|
|
RDEPENDS:${PN} = " \
|
|
python3-crypt \
|
|
"
|
|
|
|
inherit setuptools3
|
|
|
|
S = "${UNPACKDIR}/lrparsing-${PV}"
|
|
|
|
BBCLASSEXTEND = "native"
|