From: Philipp Zabel Date: Sat, 29 Jul 2006 23:28:26 +0000 (+0000) Subject: dbus, dbus-glib, dbus-python: update to 0.91/0.71 X-Git-Tag: Release-2010-05/1~9453^2~1049 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=110a855c87073f306b008cff224ea869f74022a2;p=openembedded.git dbus, dbus-glib, dbus-python: update to 0.91/0.71 --- diff --git a/packages/dbus/dbus-0.91/.mtn2git_empty b/packages/dbus/dbus-0.91/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/dbus/dbus-0.90/dbus-1.init b/packages/dbus/dbus-0.91/dbus-1.init similarity index 100% rename from packages/dbus/dbus-0.90/dbus-1.init rename to packages/dbus/dbus-0.91/dbus-1.init diff --git a/packages/dbus/dbus-0.90/fix-segfault.patch b/packages/dbus/dbus-0.91/fix-segfault.patch similarity index 100% rename from packages/dbus/dbus-0.90/fix-segfault.patch rename to packages/dbus/dbus-0.91/fix-segfault.patch diff --git a/packages/dbus/dbus-glib-native_0.71.bb b/packages/dbus/dbus-glib-native_0.71.bb new file mode 100644 index 0000000000..81a15c9b35 --- /dev/null +++ b/packages/dbus/dbus-glib-native_0.71.bb @@ -0,0 +1,22 @@ +SECTION = "base" +PR = "r0" +HOMEPAGE = "http://www.freedesktop.org/Software/dbus" +DESCRIPTION = "message bus system for applications to talk to one another" +LICENSE = "GPL" +DEPENDS = "expat glib-2.0 virtual/libintl dbus-native" + +SRC_URI = "http://freedesktop.org/software/dbus/releases/dbus-glib-${PV}.tar.gz \ + file://cross.patch;patch=1" + +inherit autotools pkgconfig gettext native + +S = "${WORKDIR}/dbus-glib-${PV}" +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/dbus-glib" +DEPENDS = "glib-2.0-native" + +do_stage() { + oe_runmake install + install -d ${STAGING_DATADIR}/dbus + install -m 0644 tools/dbus-bus-introspect.xml ${STAGING_DATADIR}/dbus + install -m 0644 tools/dbus-glib-bindings.h ${STAGING_DATADIR}/dbus +} diff --git a/packages/dbus/dbus-glib/dbus-glib-0.70-fix-includes.patch b/packages/dbus/dbus-glib/dbus-glib-0.70-fix-includes.patch deleted file mode 100644 index 68edc54038..0000000000 --- a/packages/dbus/dbus-glib/dbus-glib-0.70-fix-includes.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- dbus-glib-0.70/dbus/Makefile.am.fix_includes 2006-07-17 13:00:39.000000000 -0400 -+++ dbus-glib-0.70/dbus/Makefile.am 2006-07-17 20:09:00.000000000 -0400 -@@ -38,13 +38,13 @@ - dbus-gvalue.c \ - dbus-gvalue.h \ - dbus-gthread.c \ -- dbus-glib.h \ -- dbus-glib-lowlevel.h \ -- dbus-glib-error-enum.h \ - $(DBUS_GLIB_INTERNALS) - - libdbus_glib_HEADERS = \ -- dbus-gtype-specialized.h -+ dbus-gtype-specialized.h \ -+ dbus-glib.h \ -+ dbus-glib-lowlevel.h \ -+ dbus-glib-error-enum.h - - libdbus_glibdir = $(includedir)/dbus-1.0/dbus - - diff --git a/packages/dbus/dbus-glib_0.70.bb b/packages/dbus/dbus-glib_0.71.bb similarity index 94% rename from packages/dbus/dbus-glib_0.70.bb rename to packages/dbus/dbus-glib_0.71.bb index 304e7aca48..6bb69ba316 100644 --- a/packages/dbus/dbus-glib_0.70.bb +++ b/packages/dbus/dbus-glib_0.71.bb @@ -7,7 +7,6 @@ DEPENDS = "expat glib-2.0 virtual/libintl dbus-glib-native" SRC_URI = "http://freedesktop.org/software/dbus/releases/dbus-glib-${PV}.tar.gz \ file://cross.patch;patch=1 \ - file://dbus-glib-0.70-fix-includes.patch;patch=1 \ file://no-examples.patch;patch=1 \ file://no-introspect.patch;patch=1" diff --git a/packages/dbus/dbus-native_0.91.bb b/packages/dbus/dbus-native_0.91.bb new file mode 100644 index 0000000000..e176787d91 --- /dev/null +++ b/packages/dbus/dbus-native_0.91.bb @@ -0,0 +1,26 @@ +DEFAULT_PREFERENCE="-1" + +SECTION = "base" +PR = "r0" +HOMEPAGE = "http://www.freedesktop.org/Software/dbus" +DESCRIPTION = "message bus system for applications to talk to one another" +LICENSE = "GPL" + +S = "${WORKDIR}/dbus-${PV}" +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/dbus" +DEPENDS = "glib-2.0-native" + +SRC_URI = "http://freedesktop.org/software/dbus/releases/dbus-${PV}.tar.gz \ + file://cross.patch;patch=1 \ + file://tmpdir.patch;patch=1" + +inherit autotools pkgconfig gettext native + +EXTRA_OECONF = "--disable-qt --disable-qt3 --disable-gtk --disable-tests \ + --disable-checks --disable-xml-docs --disable-doxygen-docs \ + --with-xml=expat --without-x" + +do_stage () { + oe_runmake install + autotools_stage_all +} diff --git a/packages/dbus/dbus-python/dbus-python-0.70-fix-binary-modules-dir.patch b/packages/dbus/dbus-python/dbus-python-0.70-fix-binary-modules-dir.patch deleted file mode 100644 index 17b78d938a..0000000000 --- a/packages/dbus/dbus-python/dbus-python-0.70-fix-binary-modules-dir.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- dbus-python-0.70/setup.py.fix-binary-modules-dir 2006-07-17 20:30:07.000000000 -0400 -+++ dbus-python-0.70/setup.py 2006-07-17 20:30:22.000000000 -0400 -@@ -92,12 +92,12 @@ - "dbus/_util", - ], - ext_modules=[ -- Extension("dbus_bindings", ["dbus/dbus_bindings.pyx"], -+ Extension("dbus/dbus_bindings", ["dbus/dbus_bindings.pyx"], - include_dirs=dbus_includes, - libraries=["dbus-1"], - - ), -- Extension("dbus_glib_bindings", ["dbus/dbus_glib_bindings.pyx"], -+ Extension("dbus/dbus_glib_bindings", ["dbus/dbus_glib_bindings.pyx"], - include_dirs=dbus_glib_includes, - libraries=["dbus-glib-1", "dbus-1", "glib-2.0"], - define_macros=[ - diff --git a/packages/dbus/dbus-python_0.70.bb b/packages/dbus/dbus-python_0.71.bb similarity index 79% rename from packages/dbus/dbus-python_0.70.bb rename to packages/dbus/dbus-python_0.71.bb index 7bfbc931ed..7c80a1be3c 100644 --- a/packages/dbus/dbus-python_0.70.bb +++ b/packages/dbus/dbus-python_0.71.bb @@ -9,7 +9,6 @@ PR = "r0" DEPENDS = "python-native" SRC_URI = "http://freedesktop.org/software/dbus/releases/dbus-python-${PV}.tar.gz \ - file://cross.patch;patch=1 \ - file://dbus-python-0.70-fix-binary-modules-dir.patch;patch=1" + file://cross.patch;patch=1" inherit distutils diff --git a/packages/dbus/dbus_0.90.bb b/packages/dbus/dbus_0.91.bb similarity index 100% rename from packages/dbus/dbus_0.90.bb rename to packages/dbus/dbus_0.91.bb