[yocto] [Recipe reporting system] Upgradable recipe name list

2017-10-22 Thread recipe-report
This mail was sent out by Recipe reporting system.

This message list those recipes which need to be upgraded. If maintainers
believe some of them needn't to upgrade at this time, they can fill
RECIPE_NO_UPDATE_REASON in respective recipe file to ignore this remainder
until newer upstream version was detected.

Example:
RECIPE_NO_UPDATE_REASON = "Version 2.0 is unstable"

You can check the detail information at:

http://recipes.yoctoproject.org/

Package   VersionUpstream version  Maintainer   
NoUpgradeReason
  -    ---  
--
python3   3.5.3  3.6.3 Alejandro Hernandez
python2.7.13 2.7.14Alejandro Hernandez
python3-native3.5.3  3.6.3 Alejandro Hernandez
python-native 2.7.13 2.7.14Alejandro Hernandez
sysprof   3.24.1 3.26.1Alexander Kanavin
gtk-doc   1.25   1.26  Alexander Kanavin
webkitgtk 2.16.6 2.18.1Alexander Kanavin
bjam-native   1.64.0 1.65.1Alexander Kanavin
gnome-desktop33.24.2 3.26.1Alexander Kanavin
dnf   2.6.3  2.7.5 Alexander Kanavin
expect5.45   5.45.3Alexander Kanavin
epiphany  3.24.3 3.26.1Alexander Kanavin
libdnf0.9.3  0.11.1Alexander Kanavin
librepo   1.7.20+gitX1.8.1+gitAUTOINC+...  Alexander Kanavin
ffmpeg3.3.3  3.4   Alexander Kanavin
dtc   1.4.4  7.4   Alexander Kanavin
btrfs-tools   4.12   4.13.3Alexander Kanavin
oprofile  1.1.0  1.2.0 Alexander Kanavin
systemtap-uprobes 3.13.2   Alexander Kanavin
systemtap 3.13.2   Alexander Kanavin
mkelfimage4.0+gitX   4.6+gitAUTOINC+db...  Alexander Kanavin
mkelfimage has been removed...
mpg1231.25.6 1.25.7Alexander Kanavin
lighttpd  1.4.45 1.4.47Alexander Kanavin
iso-codes 3.75   3.76  Alexander Kanavin
boost 1.64.0 1.65.1Alexander Kanavin
libnl 3.2.29 3.4.0 Alexander Kanavin
libxslt   1.1.29 1.1.31Alexander Kanavin
psmisc22.21  23.1  Alexander Kanavin
vala  0.36.4 0.38.2Alexander Kanavin
gobject-introspec...  1.52.1 1.54.1Alexander Kanavin
apt   1.2.24 1.5   Aníbal Limón
dpkg  1.18.241.19.0.4  Aníbal Limón
apt-native1.2.24 1.5   Aníbal Limón
bind  9.10.5-P3  9.11.2Armin Kuster
openssh   7.5p1  7.6p1 Armin Kuster
libxfont  1.5.2  1.5.3 Armin Kuster
libxkbcommon  0.7.1  0.7.2 Armin Kuster
libxres   1.0.7  1.2.0 Armin Kuster
xkeyboard-config  2.21   2.22  Armin Kuster
xserver-xorg  1.19.3 1.19.5Armin Kuster
kexec-tools   2.0.14 2.0.15Armin Kuster
curl  7.54.1 7.56.0Armin Kuster
busybox   1.24.1 1.27.2Armin Kuster
xf86-input-libinput   0.25.1 0.26.0Armin Kuster
libxfont2 2.0.1  2.0.2 Armin Kuster
nspr  4.16   4.17  Armin Kuster
nss   3.31.1 3.33  Armin Kuster
libpcre2  10.23  10.30 Armin Kuster
gnutls3.5.13 3.6.1 Armin Kuster
linux-yocto-dev   4.12-rc++gitX  4.13  Bruce Ashfield
linux-libc-headers4.12   4.13.9Bruce Ashfield
libunwind 1.21.2.1 Bruce Ashfield
linux-yocto   4.12.12+gitX   4.12.14+gitAUTOIN...  Bruce Ashfield
linux-yocto-tiny  4.12.12+gitX   4.12.14+gitAUTOIN...  Bruce Ashfield
linux-yocto-rt4.12.12+gitX   4.12.14+gitAUTOIN...  Bruce Ashfield
connman   1.34   1.35  Changhyeok Bae
iproute2  4.11.0 4.13.0Changhyeok Bae
systemd-boot  234 

Re: [yocto] Problem with populate_sdk

2017-10-22 Thread Andrea Adami
On Thu, Oct 19, 2017 at 8:26 PM, Greg Wilson-Lindberg
 wrote:
> I'm trying to build an SDK for a Raspberry Pi3, and I got a problem with the
> files from one of my custom recipes.
>
>
> In my recipe I have:
>
> FILES_${PN}-dev = "lib/lib${PN}.a lib/lib${PN}_unix.a lib/pkgconfig
> include/canfestival/*.h"
>
>
> The *.a files get put into staticdev not dev in the package split.
>
>
> In my image recipe I've added:
>
> IMAGE_FEATURES += "dev-pkgs  staticdev-pkgs"
>
> I get all of the libraries in my image. In the SDK I don't get the *.a
> libraries from the staticdev, I do get the header files which were put into
> dev.
>
>
> So, at this point I'm a bit confused, even though I include both the dev &
> staticdev I am only getting the dev files in the SDK. And, also, why are the
> *.a libs being put into staticdev in the first place?
>
>

Hi,
these defaults are defined in meta/conf/bitbake.conf:

PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN}-dev ${PN}-doc ${PN}-locale
${PACKAGE_BEFORE_PN} ${PN}"

This means that staticdev package is created before dev package, just after dbg.

and

FILES_${PN}-staticdev = "${libdir}/*.a ${base_libdir}/*.a ${libdir}/${BPN}/*.a"

indicates that the .a files in these dirs belongs to the staticdev package.

Now, I guess you should try:

 SDKIMAGE_FEATURES = "dev-pkgs dbg-pkgs staticdev-pkgs"

Se https://lists.yoctoproject.org/pipermail/yocto/2014-September/021645.html

Cheers
Andrea


> Regards, Greg
>
>
> --
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto