mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
17 lines
517 B
BlitzBasic
17 lines
517 B
BlitzBasic
DESCRIPTION = "Pyrex is a language specially designed for writing Python extension modules. \
|
|
It's designed to bridge the gap between the nice, high-level, easy-to-use world of Python \
|
|
and the messy, low-level world of C."
|
|
SECTION = "devel/python"
|
|
PRIORITY = "optional"
|
|
LICENSE = "GPL"
|
|
SRCNAME = "Pyrex"
|
|
PR = "ml0"
|
|
|
|
SRC_URI = "\
|
|
http://www.cosc.canterbury.ac.nz/greg.ewing/python/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
|
|
file://pyrex-fix-optimized-mode.patch \
|
|
"
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit distutils
|