Files
meta-openembedded/meta-oe/recipes-devtools/python/python-pyyaml_svn.bb
Andreas Oberritter 326d9f23bf python: bump PR of packages after update of distutils.bbclass
* Bump every recipe inheriting distutils or setuptools and
  not overriding do_install without calling distutils_do_install.

Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
2012-06-07 09:19:27 +02:00

23 lines
532 B
BlitzBasic

DESCRIPTION = "Python support for YAML"
HOMEPAGE = "http://www.pyyaml.org"
SECTION = "devel/python"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17"
DEPENDS = "libyaml python-cython-native"
SRCREV = "344"
PV = "3.08+svnr${SRCPV}"
PR = "ml2"
SRC_URI = "\
svn://svn.pyyaml.org/pyyaml;module=trunk;proto=http \
file://setup.py \
"
S = "${WORKDIR}/trunk"
inherit distutils
do_configure_prepend() {
# upstream setup.py overcomplicated, use ours
install -m 0644 ${WORKDIR}/setup.py ${S}
}