[oe] [meta-oe][PATCH 6/6] xterm: add PACKAGECONFIG for xft
* fixes following issue in test-dependencies report: xterm/xterm/latest lost dependency on fontconfig libxft Signed-off-by: Martin Jansa --- meta-oe/recipes-graphics/xorg-app/xterm_303.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_303.bb b/meta-oe/recipes-graphics/xorg-app/xterm_303.bb index 47dfbe5..52e77b7 100644 --- a/meta-oe/recipes-graphics/xorg-app/xterm_303.bb +++ b/meta-oe/recipes-graphics/xorg-app/xterm_303.bb @@ -24,3 +24,6 @@ do_configure() { } FILES_${PN} += " /usr/lib/X11" + +PACKAGECONFIG ?= "" +PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig" -- 1.9.2 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH 3/6] navit: add PACKAGECONFIG for imlib2, qt, gtk, sdl
* fixes following issues from test-dependencies report: navit/navit/latest lost dependency on fribidi navit/navit-graphics-gtk/latest lost dependency on imlib2 navit/navit-graphics-sdl/latest lost dependency on eglibc freetype Signed-off-by: Martin Jansa --- meta-oe/recipes-navigation/navit/navit.inc | 11 --- .../navit/navit/configure.add.imlib2.option.patch| 16 meta-oe/recipes-navigation/navit/navit_svn.bb| 1 + 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 meta-oe/recipes-navigation/navit/navit/configure.add.imlib2.option.patch diff --git a/meta-oe/recipes-navigation/navit/navit.inc b/meta-oe/recipes-navigation/navit/navit.inc index 8b63bba..eb8f43a 100644 --- a/meta-oe/recipes-navigation/navit/navit.inc +++ b/meta-oe/recipes-navigation/navit/navit.inc @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=ed539d099d6ce08de6ea0dfed9ecb333 \ " SECTION = "x11/applications" -DEPENDS = "glib-2.0 gtk+ qt4-x11-free gd gypsy librsvg-native" +DEPENDS = "glib-2.0 gd gypsy librsvg-native" RDEPENDS_${PN} = " ${PN}-icons ${PN}-config " RDEPENDS_${PN}-gui-qml = "qt4-plugin-imageformat-svg" RRECOMMENDS_${PN} = "gpsd ${PN}-dbus ${PN}-speech-cmdline ${PN}-gui-internal ${PN}-graphics-gtk" @@ -17,12 +17,17 @@ INC_PR = "r11" inherit autotools gettext +PACKAGECONFIG ?= "qt" +PACKAGECONFIG[fribidi] = "--enable-fribidi,--disable-fribidi,fribidi" +PACKAGECONFIG[imlib2] = "--enable-imlib2,--disable-imlib2,imlib2" +PACKAGECONFIG[sdl] = "--enable-graphics-sdl,--disable-graphics-sdl,libsdl" +PACKAGECONFIG[gtk] = "--enable-graphics-gtk-drawing-area --enable-gui-gtk,--disable-graphics-gtk-drawing-area --disable-gui-gtk,gtk+" +PACKAGECONFIG[qt] = "--enable-graphics-qt-qpainter --enable-gui-qml,--disable-graphics-qt-qpainter --disable-gui-qml,qt4-x11-free" + EXTRA_OECONF += " \ --disable-binding-python \ --disable-samplemap \ --enable-avoid-unaligned \ ---enable-graphics-qt-qpainter \ ---enable-gui-qml \ --enable-svg2png-scaling-flag=32 \ --disable-speech-speech-dispatcher \ --enable-cache-size=20971520 \ diff --git a/meta-oe/recipes-navigation/navit/navit/configure.add.imlib2.option.patch b/meta-oe/recipes-navigation/navit/navit/configure.add.imlib2.option.patch new file mode 100644 index 000..be41792 --- /dev/null +++ b/meta-oe/recipes-navigation/navit/navit/configure.add.imlib2.option.patch @@ -0,0 +1,16 @@ +--- a/configure.in.orig2014-05-10 15:57:18.146362110 +0200 b/configure.in 2014-05-10 15:59:27.859358845 +0200 +@@ -498,10 +498,13 @@ + AC_SUBST(FRIBIDI_CFLAGS) + AC_SUBST(FRIBIDI_LIBS) + ++AC_ARG_ENABLE(imlib2, [ --disable-imlib2 disable imlib2 support], imlib2=$enableval;imlib2_reason="configure parameter", imlib2=yes) ++if test x"${imlib2}" = "xyes"; then + PKG_CHECK_MODULES(IMLIB2, [imlib2], [imlib2_pkgconfig=yes], [imlib2_pkgconfig=no]) + if test "x$imlib2_pkgconfig" = "xyes"; then +AC_DEFINE(HAVE_IMLIB2, 1, [Define to 1 if you have imlib2]) + fi ++fi + AC_SUBST(IMLIB2_CFLAGS) + AC_SUBST(IMLIB2_LIBS) + diff --git a/meta-oe/recipes-navigation/navit/navit_svn.bb b/meta-oe/recipes-navigation/navit/navit_svn.bb index 2661507..eff1eb3 100644 --- a/meta-oe/recipes-navigation/navit/navit_svn.bb +++ b/meta-oe/recipes-navigation/navit/navit_svn.bb @@ -7,4 +7,5 @@ PR = "${INC_PR}.3" S = "${WORKDIR}/${PN}" SRC_URI += "svn://anonym...@navit.svn.sourceforge.net/svnroot/navit/trunk;module=navit;protocol=http \ file://freetype-include-path.patch \ +file://configure.add.imlib2.option.patch \ " -- 1.9.2 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH 4/6] sox: add PACKAGECONFIG for ao
* fixes following issue from test-dependencies report: sox/sox/latest lost dependency on libao Signed-off-by: Martin Jansa --- meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb b/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb index cfc61d4..18d77bb 100644 --- a/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb +++ b/meta-multimedia/recipes-multimedia/sox/sox_14.4.0.bb @@ -19,6 +19,7 @@ PACKAGECONFIG[magic] = "--with-magic,--without-magic,file," PACKAGECONFIG[mad] = "--with-mad,--without-mad,libmad," PACKAGECONFIG[id3tag] = "--with-id3tag,--without-id3tag,libid3tag," PACKAGECONFIG[lame] = "--with-lame,--without-lame,lame," +PACKAGECONFIG[ao] = "--with-ao,--without-ao,libao," LICENSE = "GPLv2 & LGPLv2.1" LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=751419260aa954499f7abaabaa882bbe \ -- 1.9.2 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH 5/6] tk: Fix build with xft
* xft requires fontconfig, but pkg-config --libs xft doesn't return it add it manually Signed-off-by: Martin Jansa --- .../tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch | 13 + meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb | 3 +-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 meta-oe/recipes-devtools/tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch diff --git a/meta-oe/recipes-devtools/tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch b/meta-oe/recipes-devtools/tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch new file mode 100644 index 000..a0c157f --- /dev/null +++ b/meta-oe/recipes-devtools/tcltk/tk-8.6.0/configure.use.fontconfig.with.xft.patch @@ -0,0 +1,13 @@ +--- a/configure.in.orig2014-05-10 14:35:39.859147385 + b/configure.in 2014-05-10 14:36:20.282925184 + +@@ -554,8 +554,8 @@ + dnl make sure package configurator (xft-config or pkg-config + dnl says that xft is present. + found_xft=yes +- XFT_CFLAGS=`pkg-config --cflags xft 2>/dev/null` || found_xft="no" +- XFT_LIBS=`pkg-config --libs xft 2>/dev/null` || found_xft="no" ++ XFT_CFLAGS=`pkg-config --cflags xft fontconfig 2>/dev/null` || found_xft="no" ++ XFT_LIBS=`pkg-config --libs xft fontconfig 2>/dev/null` || found_xft="no" + AC_MSG_RESULT([$found_xft]) + dnl make sure that compiling against Xft header file doesn't bomb + if test "$found_xft" = "yes" ; then diff --git a/meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb b/meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb index a5e76e9..1177d03 100644 --- a/meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb +++ b/meta-oe/recipes-devtools/tcltk/tk_8.6.0.bb @@ -15,8 +15,6 @@ LIC_FILES_CHKSUM = "file://../license.terms;md5=c88f99decec11afa967ad33d314f87fe file://../xlib/license.terms;md5=c88f99decec11afa967ad33d314f87fe \ " -PNBLACKLIST[tk] = "tk8.6.0/unix/libtk8.6.so: error: undefined reference to 'FcCharSetHasChar'" - DEPENDS = "tcl virtual/libx11 libxt" SRC_URI = "\ @@ -26,6 +24,7 @@ SRC_URI = "\ file://tklibrary.diff;striplevel=2 \ file://tkprivate.diff;striplevel=2 \ file://fix-xft.diff \ +file://configure.use.fontconfig.with.xft.patch \ " SRC_URI[md5sum] = "b883a1a3c489c17413fb602a94bf54e8" SRC_URI[sha256sum] = "5c708b2b6f658916df59190b27750fa1ea2bc10992108e10f961c0700f058de6" -- 1.9.2 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH 2/6] libao: add PACKAGECONFIG for alsa and pulseaudio
* fixes following issues from test-dependencies report: Found errors: libao/libao-plugin-libalsa/latest doesn't exist libao/libao-plugin-libalsa-dbg/latest doesn't exist libao/libao-plugin-libpulse/latest doesn't exist libao/libao-plugin-libpulse-dbg/latest doesn't exist Signed-off-by: Martin Jansa --- meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb index d2da08e..1a22604 100644 --- a/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb +++ b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb @@ -26,5 +26,7 @@ python populate_packages_prepend () { do_split_packages(d, rootdir_dbg, '^(.*)\.so$', output_pattern='${BPN}-plugin-%s-dbg', description='AO %s plugin debug data') } -PACKAGECONFIG ?= "" +PACKAGECONFIG ?= "${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d) ${@base_contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)" PACKAGECONFIG[esound] = "--enable-esd,--disable-esd,esound" +PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" +PACKAGECONFIG[pulseaudio] = "--enable-pulse,--disable-pulse,pulseaudio" -- 1.9.2 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH 1/6] elementary: use B = "$S"
Signed-off-by: Martin Jansa --- meta-efl/recipes-efl/efl/elementary_1.9.3.bb | 4 1 file changed, 4 insertions(+) diff --git a/meta-efl/recipes-efl/efl/elementary_1.9.3.bb b/meta-efl/recipes-efl/efl/elementary_1.9.3.bb index 32ae663..4f24baf 100644 --- a/meta-efl/recipes-efl/efl/elementary_1.9.3.bb +++ b/meta-efl/recipes-efl/efl/elementary_1.9.3.bb @@ -10,3 +10,7 @@ SRC_URI_append_class-target = " file://0001-Makefile-Use-elementary_codegen-defi SRC_URI[md5sum] = "cc75bb1c7c4c49de120ec33e413130ce" SRC_URI[sha256sum] = "49f896066b72ba51eefd8e92f0b7e7b8e190b0dd26323b12cbd4f26216f578fb" + +# autotools-brokensep - configure updates Elementary.h correctly in ${B}, but then build is using Elementary.h from ${S} +# which includes #define ELM_EMAP (instead of #undef ELM_EMAP) and building fails +B = "${S}" -- 1.9.2 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-multimedia][WIP][PATCH v2] fluidsynth: upgrade to 1.1.6
On Sat, May 10, 2014 at 10:33 AM, Tim Orling wrote: > Just the address for FSF: OK it would be good to have that recorded in commit message -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH] acpitests: update to 20140424 release
Sync up/refresh aapits build fixes, 0001-Fixup-aapits-build.patch is splitted and replaced by aapits-linux.patch / aapits-makefile.patch Signed-off-by: Fathi Boudra --- .../acpica/acpitests/0001-Fixup-aapits-build.patch | 558 - .../acpica/acpitests/aapits-linux.patch| 336 + .../acpica/acpitests/aapits-makefile.patch | 26 + ...acpitests_20140114.bb => acpitests_20140424.bb} | 11 +- 4 files changed, 368 insertions(+), 563 deletions(-) delete mode 100644 meta-oe/recipes-extended/acpica/acpitests/0001-Fixup-aapits-build.patch create mode 100644 meta-oe/recipes-extended/acpica/acpitests/aapits-linux.patch create mode 100644 meta-oe/recipes-extended/acpica/acpitests/aapits-makefile.patch rename meta-oe/recipes-extended/acpica/{acpitests_20140114.bb => acpitests_20140424.bb} (67%) diff --git a/meta-oe/recipes-extended/acpica/acpitests/0001-Fixup-aapits-build.patch b/meta-oe/recipes-extended/acpica/acpitests/0001-Fixup-aapits-build.patch deleted file mode 100644 index 6565a32..000 --- a/meta-oe/recipes-extended/acpica/acpitests/0001-Fixup-aapits-build.patch +++ /dev/null @@ -1,558 +0,0 @@ -From d9743540b5399a14a7ca1ba708156bed956d9425 Mon Sep 17 00:00:00 2001 -From: Al Stone -Date: Fri, 17 Jan 2014 12:51:13 +0100 -Subject: [PATCH] Fixup aapits build - -From http://git.linaro.org/people/al.stone/acpica-tools.git -Upstream-status: Unknown - tests/aapits/Makefile | 44 +--- - tests/aapits/atexec.c | 15 ++- - tests/aapits/atinit.c | 10 +- - tests/aapits/atmain.c | 6 +++--- - tests/aapits/atnamespace.c | 12 - tests/aapits/atosxfctrl.c | 21 + - tests/aapits/atresource.c | 10 +- - tests/aapits/osunixxf.c| 25 ++--- - 8 files changed, 111 insertions(+), 32 deletions(-) - -diff --git a/tests/aapits/Makefile b/tests/aapits/Makefile -index b774c9c..9bf12b8 100644 a/tests/aapits/Makefile -+++ b/tests/aapits/Makefile -@@ -20,37 +20,53 @@ SRCS= atexec.c atmain.c \ - ../../source/components/hardware/hwxface.c \ - ../../source/common/getopt.c \ - ../../source/components/debugger/dbcmds.c \ -+ ../../source/components/debugger/dbconvert.c \ - ../../source/components/debugger/dbdisply.c \ - ../../source/components/debugger/dbexec.c \ - ../../source/components/debugger/dbfileio.c \ - ../../source/components/debugger/dbhistry.c \ - ../../source/components/debugger/dbinput.c \ -+ ../../source/components/debugger/dbmethod.c \ -+ ../../source/components/debugger/dbnames.c \ - ../../source/components/debugger/dbstats.c \ -+ ../../source/components/debugger/dbtest.c \ - ../../source/components/debugger/dbutils.c \ - ../../source/components/debugger/dbxface.c \ - ../../source/components/disassembler/dmbuffer.c \ -+ ../../source/components/disassembler/dmdeferred.c \ - ../../source/components/disassembler/dmnames.c \ - ../../source/components/disassembler/dmobject.c \ - ../../source/components/disassembler/dmopcode.c \ - ../../source/components/disassembler/dmresrc.c \ - ../../source/components/disassembler/dmresrcl.c \ -+ ../../source/components/disassembler/dmresrcl2.c \ - ../../source/components/disassembler/dmresrcs.c \ - ../../source/components/disassembler/dmutils.c \ - ../../source/components/disassembler/dmwalk.c \ - ../../source/components/events/evevent.c \ -+ ../../source/components/events/evglock.c \ - ../../source/components/events/evgpeblk.c \ - ../../source/components/events/evgpe.c \ -+ ../../source/components/events/evgpeinit.c \ -+ ../../source/components/events/evgpeutil.c \ -+ ../../source/components/events/evhandler.c \ - ../../source/components/events/evmisc.c \ - ../../source/components/events/evregion.c \ - ../../source/components/events/evrgnini.c \ - ../../source/components/events/evsci.c \ - ../../source/components/events/evxface.c \ - ../../source/components/events/evxfevnt.c \ -+ ../../source/components/events/evxfgpe.c \ - ../../source/components/events/evxfregn.c \ - ../../source/components/hardware/hwacpi.c \ -+ ../../source/components/hardware/hwesleep.c \ - ../../source/components/hardware/hwgpe.c \ -+ ../../source/components/hardware/hwpci.c \ - ../../source/components/hardware/hwregs.c \ - ../../source/components/hardware/hwsleep.c \ -+ ../../source/components/hardware/hwxfsleep.c \ -+ ../../source/components/dispatcher/dsargs.c \ -+ ../../source/components/dispatcher/dscontrol.c \ - ../../source/components/dispatcher/dsfield.c \ - ../../source/components/dispatcher/dsinit.c \ - ../../source/components/dispatcher/dsmethod.c \ -@@ -60,11 +76,13 @@ SRCS= atexec.c atmain.c \
Re: [oe] [meta-multimedia][WIP][PATCH v2] fluidsynth: upgrade to 1.1.6
On Sat, May 10, 2014 at 10:15 AM, Khem Raj wrote: > On Wed, May 7, 2014 at 10:45 AM, Tim Orling wrote: > > -LIC_FILES_CHKSUM = "file://COPYING;md5=dda26baa823649da9a68947707650272" > > +LIC_FILES_CHKSUM = "file://COPYING;md5=e198e9aac94943d0ec29a7dae8c29416" > > what changed here ? > -- Just the address for FSF: diff 1.1.1-r0/fluidsynth-1.1.1/COPYING 1.1.6-r0/fluidsynth-1.1.6/COPYING 6c6 < 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --- > 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 467,468c467,468 < License along with this library; if not, write to the Free < Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --- > License along with this library; if not, write to the Free Software > Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA > ___ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel > -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-multimedia][WIP][PATCH v2] fluidsynth: upgrade to 1.1.6
On Wed, May 7, 2014 at 10:45 AM, Tim Orling wrote: > -LIC_FILES_CHKSUM = "file://COPYING;md5=dda26baa823649da9a68947707650272" > +LIC_FILES_CHKSUM = "file://COPYING;md5=e198e9aac94943d0ec29a7dae8c29416" what changed here ? -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-oe][PATCH] xdelta3: add optional lzma support
On Wed, May 7, 2014 at 4:43 AM, Matthieu Crapet wrote: > + > +# Optional secondary compression > +PACKAGECONFIG ?= "" > +PACKAGECONFIG[lzma] = ",,xz" consider when xz comes as indirect dependency via some other package then this packageconfig will become useless IMO you have to also fix the package itself to explicitly enable/disable the lzma support and then adding packageconfig will be effective. -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [OE-core] GStreamer 0.10's future
On Thu, May 8, 2014 at 7:48 AM, Burton, Ross wrote: > For the 1.7 release I want to move GStreamer 0.10 from oe-core into > meta-multimedia, and ensure everything in oe-core has ported to > GStreamer 1.x. GStreamer 0.10 is considered dead upstream and is > unmaintained so we don't need to be shipping both versions anymore. > > Everyone in agreement? Should I expect any hate mail over this? I think we still have QT versions which has not yet removed the support. but as long as its in some layer I am good with it. -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH] acpica: update to 20140424 release
Signed-off-by: Fathi Boudra --- .../acpica/{acpica_20140325.bb => acpica_20140424.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-oe/recipes-extended/acpica/{acpica_20140325.bb => acpica_20140424.bb} (91%) diff --git a/meta-oe/recipes-extended/acpica/acpica_20140325.bb b/meta-oe/recipes-extended/acpica/acpica_20140424.bb similarity index 91% rename from meta-oe/recipes-extended/acpica/acpica_20140325.bb rename to meta-oe/recipes-extended/acpica/acpica_20140424.bb index 0210b04..c302d27 100644 --- a/meta-oe/recipes-extended/acpica/acpica_20140325.bb +++ b/meta-oe/recipes-extended/acpica/acpica_20140424.bb @@ -14,8 +14,8 @@ DEPENDS = "bison flex" SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ file://no-werror.patch \ " -SRC_URI[md5sum] = "08efe232bca06a7c54462695bbc2f87c" -SRC_URI[sha256sum] = "12a7a3c9f2d81e46b0c7095bb7c268ec4bf231178fcbe54ff0c30cd83d2ac38c" +SRC_URI[md5sum] = "733532f005fba5d1c530651b13d1" +SRC_URI[sha256sum] = "72ece982bbbdfb1b17418f1feb3a9daaa01803d0d41dcf00e19d702cdf751bbc" S = "${WORKDIR}/acpica-unix2-${PV}" -- 1.9.3 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH] pm-qa: update to 0.4.9 release
Signed-off-by: Fathi Boudra --- meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb b/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb index 4d33975..f6ffcb6 100644 --- a/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb +++ b/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb @@ -4,12 +4,12 @@ HOMEPAGE = "https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/Test LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" -PV = "0.4.8" +PV = "0.4.9" BRANCH ?= "master" -# Corresponds to tag pm-qa-v0.4.8 -SRCREV = "6a8c2ae8a6035b15a7fbe61b6ca56841e056fa37" +# Corresponds to tag pm-qa-v0.4.9 +SRCREV = "c54941a9bbaac33e44e6d0c7f5344e21102642cf" SRC_URI = "git://git.linaro.org/tools/pm-qa.git;protocol=git;branch=${BRANCH}" -- 1.9.3 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-oe][PATCH] fwts: update to 14.05.00 release
Signed-off-by: Fathi Boudra --- meta-oe/recipes-extended/fwts/fwts_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-extended/fwts/fwts_git.bb b/meta-oe/recipes-extended/fwts/fwts_git.bb index d704d84..4fa1d6b 100644 --- a/meta-oe/recipes-extended/fwts/fwts_git.bb +++ b/meta-oe/recipes-extended/fwts/fwts_git.bb @@ -5,9 +5,9 @@ HOMEPAGE = "https://wiki.ubuntu.com/Kernel/Reference/fwts"; LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://src/main.c;beginline=1;endline=16;md5=deb8af5388e838d133eaa036f4d1496f" -PV = "14.03.01" +PV = "14.05.00" -SRCREV = "8ec44dc1e55ecf334f4afa8eed8795ed5776c396" +SRCREV = "fb5385fec1f3468b479e87c0bba38ab76f60915b" SRC_URI = "git://kernel.ubuntu.com/hwe/fwts.git" S = "${WORKDIR}/git" -- 1.9.3 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel