From 1fc28fb0486c14b791377fc21c96c0323cc1e8da Mon Sep 17 00:00:00 2001 From: Florian Boor Date: Mon, 18 May 2009 15:25:02 +0200 Subject: python: Add patch to fix linking --- recipes/python/python-2.6.1/07-export-grammer.patch | 10 ++++++++++ recipes/python/python_2.6.1.bb | 1 + 2 files changed, 11 insertions(+) create mode 100644 recipes/python/python-2.6.1/07-export-grammer.patch (limited to 'recipes/python') diff --git a/recipes/python/python-2.6.1/07-export-grammer.patch b/recipes/python/python-2.6.1/07-export-grammer.patch new file mode 100644 index 0000000000..b7ec2bbc65 --- /dev/null +++ b/recipes/python/python-2.6.1/07-export-grammer.patch @@ -0,0 +1,10 @@ +--- Python-2.6.1.orig/Parser/printgrammar.c 2008-04-13 15:35:56.000000000 -0500 ++++ Python-2.6.1/Parser/printgrammar.c 2008-12-28 00:01:28.675633800 -0600 +@@ -16,6 +16,7 @@ + fprintf(fp, "/* Generated by Parser/pgen */\n\n"); + fprintf(fp, "#include \"pgenheaders.h\"\n"); + fprintf(fp, "#include \"grammar.h\"\n"); ++ fprintf(fp, "PyAPI_DATA(grammar) _PyParser_Grammar;\n"); + printdfas(g, fp); + printlabels(g, fp); + fprintf(fp, "grammar _PyParser_Grammar = {\n"); diff --git a/recipes/python/python_2.6.1.bb b/recipes/python/python_2.6.1.bb index e50ca43aab..8ca51ae3bf 100644 --- a/recipes/python/python_2.6.1.bb +++ b/recipes/python/python_2.6.1.bb @@ -12,6 +12,7 @@ SRC_URI = "\ file://04-default-is-optimized.patch;patch=1 \ file://05-enable-ctypes-cross-build.patch;patch=1 \ file://06-libffi-enable-default-mips.patch;patch=1 \ + file://07-export-grammer.patch;patch=1 \ file://99-ignore-optimization-flag.patch;patch=1 \ \ # not yet pushed forward -- cgit v1.2.3 From 4df5a84ef95f422d3f14423be1a098698d9838ae Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Fri, 24 Apr 2009 18:34:40 -0300 Subject: python-pycups: add Signed-off-by: Otavio Salvador --- recipes/python/python-pycups_1.9.45.bb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 recipes/python/python-pycups_1.9.45.bb (limited to 'recipes/python') diff --git a/recipes/python/python-pycups_1.9.45.bb b/recipes/python/python-pycups_1.9.45.bb new file mode 100644 index 0000000000..bd127d5559 --- /dev/null +++ b/recipes/python/python-pycups_1.9.45.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "cups Python Bindings" +SECTION = "devel/python" +PRIORITY = "optional" +LICENSE = "GPLv2" +DEPENDS = "cups" +SRCNAME = "pycups" + +SRC_URI = "http://cyberelk.net/tim/data/pycups/pycups-${PV}.tar.bz2" +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit distutils + +# used during compilation +CFLAGS += -DVERSION=\\"${PV}\\" + +RDEPENDS = "python-core cups" -- cgit v1.2.3