From 5d49b1d4b714da6c5e643cbabace2daa99b89fe5 Mon Sep 17 00:00:00 2001 From: Rod Whitby Date: Fri, 9 Mar 2007 14:47:49 +0000 Subject: spandsp: A library of many DSP functions for telephony. --- packages/spandsp/.mtn2git_empty | 0 packages/spandsp/spandsp_0.0.2+0.0.3pre27.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 packages/spandsp/.mtn2git_empty create mode 100644 packages/spandsp/spandsp_0.0.2+0.0.3pre27.bb diff --git a/packages/spandsp/.mtn2git_empty b/packages/spandsp/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/spandsp/spandsp_0.0.2+0.0.3pre27.bb b/packages/spandsp/spandsp_0.0.2+0.0.3pre27.bb new file mode 100644 index 0000000000..2c0ffa0845 --- /dev/null +++ b/packages/spandsp/spandsp_0.0.2+0.0.3pre27.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "A library of many DSP functions for telephony." +HOMEPAGE = "http://www.soft-switch.org" +DEPENDS = "tiff libxml2" +SECTION = "voip" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "http://www.soft-switch.org/downloads/snapshots/spandsp/spandsp-20070123.tar.gz" +S = "${WORKDIR}/${PN}-0.0.3" + +inherit autotools + +PARALLEL_MAKE = "" + +do_stage () { + autotools_stage_all +} \ No newline at end of file -- cgit v1.2.3 From 0c6a9f2f931c65df90763850e9b30bb0d913e498 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Fri, 9 Mar 2007 20:29:00 +0000 Subject: classes/insane.bbclass: Use split and make it work with python2.3 again rsplit was introduced in python 2.4 and is like split but starts to split from the right side. The only difference is obviously if you have maxsplit set (which we don't). So it is fine to remove the 'r' --- classes/insane.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/insane.bbclass b/classes/insane.bbclass index a3ca21d1dc..40f6151f08 100644 --- a/classes/insane.bbclass +++ b/classes/insane.bbclass @@ -206,7 +206,7 @@ def package_qa_check_rpath(file,name,d): bb.fatal("This class assumed that WORKDIR is ${TMPDIR}/work... Not doing any check") output = os.popen("%s -Byr %s" % (scanelf,file)) - txt = output.readline().rsplit() + txt = output.readline().split() if bad_dir in txt: package_qa_write_error( 1, name, file, d) bb.error("QA Issue package %s contains bad RPATH %s in file %s" % (name, txt, file)) -- cgit v1.2.3