aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/pidgin
AgeCommit message (Collapse)Author
2016-08-22meta-oe: remove trailing spacesMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-08-15pidgin: upgrade to 2.11.0Herrie
* add PACKAGECONFIG for nss Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06pidgin: use pkg-config instead of hardcoded paths or python-configMartin Jansa
* also fix following QA warning: WARNING: pidgin-2.10.12-r0 do_package: QA Issue: pidgin: Files/directories were installed but not shipped in any package: /usr/share/appdata /usr/share/appdata/pidgin.appdata.xml Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. pidgin: 2 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06pidgin: add PACKAGECONFIGsMartin Jansa
* disable gstreamer and vv, because gstreamer 0.10 is in meta-multimedia now * disable farsight2/farstream, because farsight2 is blacklisted * don't enable X11 support without x11 in DISTRO_FEATURES * allow to disable all UI, useful for DISTROs who want just the purple libraries like LuneOS Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06pidgin: Update to 2.10.12Herrie
Which is compatible with GnuTLS that's included in Krogoth. Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
2016-02-25libnice, farsight2, pidgin: Blacklist because libnice's nice.pcMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-01-06pidgin*: blacklist because of gnutls upgradeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-22pidgin: upgrade to 2.10.9 and fold pidgin.inc into itMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-22libotr: Fix B!=S build failuresRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-07-22pidgin-otr: Add missing intltool-native DEPENDSRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-07-22pidgin: add missing dependency on intltool-nativeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15meta-oe: use BPN in SRC_URIRobert Yang
Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-01-22pidgin: Add pidgin-otr recipe and a patch for itJakob Drexel
Also added a patch to fix issue with autotools. Signed-off-by: Jakob Drexel <jake42@rommel.stw.uni-erlangen.de> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-01-22pidgin: Add libotr recipe and patch to fix QA-issueJakob Drexel
Signed-off-by: Jakob Drexel <jake42@rommel.stw.uni-erlangen.de> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-06-20pidgin: fix build on CentOS 6Lukas Märdian
Signed-off-by: Lukas Märdian <luk@slyon.de>
2013-04-15recipes: Unify indentationMartin Jansa
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-28Replace bb.data.* with d.*Paul Eggleton
Used sed expression given here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html Plus an additional expression for .expand. Full expression is: sed \ -e 's:bb.data.\(setVar([^,]*,[^,]*\), \([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,]*,[^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Some minor correction in systemd.bbclass was needed for some expressions that didn't quite match the regex in the desired way; additionally a few instances were manually changed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-10-19PACKAGES_DYNAMIC: use regexp not globMartin Jansa
* bitbake uses PACKAGES_DYNAMIC as regexp ^ could make matching faster (and it will be more clear that we're expecting regexp not glob) * made all those last '-' optional, use .* (or nothing) * use += instead of = in most cases to keep ${PN}-locale from bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-09-20recipes: bump PR to rebuild after libffi5 -> libffi6Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-19recipes: convert tabs to 4 spaces in populate_packagesMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-17pidgin: fix missing quote in FILES_libgnt-dbgMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-05-17pidgin: explicitly disable nssMartin Jansa
* sometimes it leaks from meta-chromium and breaks pidgin build Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-02-13recipes: bump PR to rebuild .la files without libz.laMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-01recipes: bump PR after python upgradeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-12pidgin: package purple-2/libymsg.so to libpurple-devMartin Jansa
* otherwise fails with ERROR: QA Issue: non -dev/-dbg/-nativesdk package contains symlink .so: libpurple path '/work/armv4t-oe-linux-gnueabi/pidgin-2.7.9-r0.0/packages-split/libpurple/usr/lib/purple-2/libymsg.so' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-07-21pidgin: inherit perlnativeMartin Jansa
* otherwise perl from host is used and if there isn't libxml-parser-perl installed on host it fails with: checking for XML::Parser... configure: error: XML::Parser perl module is required for intltool Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-05-29pidgin: add LIC_FILES_CHKSUMMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-04-10recipes,classes: import a lot of recipes from meta-shrMartin Jansa
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)