aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
AgeCommit message (Collapse)Author
2011-12-02less: Update to 444Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-02sysstat: Update to 10.0.3Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-02psmisc: Update to 22.14Saul Wold
* Create psmisc-extras for unpackaged binaries * rebase patch * set LICENSE to GPLv2 Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-02logrotate: Add dependency on popt lib.Stefan Schmidt
Without this logrotate may fail like this: compilation terminated. | config.c:9:18: fatal error: popt.h: No such file or directory Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
2011-12-01shadow: use u-a for /usr/bin/groupsMartin Jansa
* otherwise coreutils upgrade fails with update-alternatives: Error: not linking //usr/bin/groups to groups.coreutils since //usr/bin/groups exists and is not a link Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-30polkit-gnome: Upgrade to 0.102Zhai Edwin
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-30xz: Upgrade to 5.0.3Zhai Edwin
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-30mailx: Add missing openssl DEPENDS and bump PR after openssl 1.0Richard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-30cronie: use useradd.bbclass instead of hardcoded groupadd callsMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-30mingetty: use u-a to provide /sbin/getty (also provided by util-linux-agetty ↵Martin Jansa
and tinylogin) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-30PR Bump for OpenSSL 1.0Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-29wget: Update to 1.13.4Saul Wold
* remove gnutls.bzr patch as it was in upstream Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-29tzdata/tzcode: Update tzdata to 2011nSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-26ghostscript: Ensure we run reautoconfRichard Purdie
Avoding the autoreconf with a hardcoded do_configure is bad practise since it can hide various errors. This patch ensures we do use the standard do_configure. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-26ghostscript-native: Ensure the sys/time/h fix is applied for native buildsRichard Purdie
On my system, the sys/time.h header is in a subdir off /usr/include which causes a build failure. Apply the target CFLAGS fix to native builds as well to address this. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-26ghostscript: Really fix parallel make raceRichard Purdie
There continue to be parallel make race issues showing up on the autobuilder. This patch removes some potential sources of these. The rm is unrequired since we're using cp -f. The || true ensures that if we did race against someone it becomes harmless. [YOCTO #1202] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-23at: update the upstream-status of patchesNitin A Kamble
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-11-16libconvert-asn1-perl/libtimedate-perl: Convert to use allarchRichard Purdie
Both these recipes generate architecture independent packages. They can safely use the allarch class to ensure they really are indepentent from the target compiler and so forth and hence ensure sstate packages with good dependencies. [YOCTO #1075] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-15time: use u-a for time, conflicts with busyboxMartin Jansa
* it was reported here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-September/009409.html Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-15time: drop default S and 2 useless commentsMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-15time: rename files dir to time-1.7 for faster lookupMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-11sudo: Avoid post install scriptsMark Hatle
The post install script was removed, and the install_append updated to ensure the permissions are set correctly. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2011-11-11shadow: Generate the shadow files at rootfs constructionMark Hatle
With the recent changes to the shadow-native package support "--root", we can now convert the passwd/group files to their shadow forms while doing the rootfs install, instead of waiting to run on the target. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2011-11-10Convert to use direct access to the data store (instead of bb.data.*Var*())Richard Purdie
This is the result of running the following over the metadata: 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' \ -i `grep -ril bb.data *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-10libarchive: Remove obsolete comment and empty line at the endPaul Menzel
This is a fix up for commit fb19df5b21e551c5dfdfa340438952560c5fa528 Author: Xiaofeng Yan <xiaofeng.yan@windriver.com> Date: Mon Nov 7 20:03:53 2011 +0800 libarchive: update to 2.8.5 Remove patch "0003-Patch-from-upstream-rev-2516.patch" because it has been merged to source codes. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> removing a now obsolete comment because the undistributable content was removed [1] from upstream’s tarball. Also remove an empty line at the end introduced in the above commit. [1] http://code.google.com/p/libarchive/issues/detail?id=162 Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
2011-11-08libzypp: fix mishandling of hyphenated archesTom Zanussi
Several hyphen-to-underscore translations were missing, causing compiler errors trying to build arches with hyphens in their names. This adds the missing translations. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
2011-11-08libarchive: update to 2.8.5Xiaofeng Yan
Remove patch "0003-Patch-from-upstream-rev-2516.patch" because it has been merged to source codes. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-07lighttpd 1.4.29: rename index.html to avoid clashes with DL_DIRKoen Kooi
As Martin Jansa pointed out before, bitbake will silently peek in DL_DIR before FILESPATH and use files from there if found. The failure mode for lighttpd involves a 404 redirect placing index.html into DL_DIR, which will end up in the lighttpd packages. In my specific case iproute2 hit the linuxfoundation 404 redirect so lighttpd.ipk now serves the linuxfoundation frontpage :) Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-11-04bash: Ensure we fully reautoconf the recipes so site data is usedRichard Purdie
This ensures bug 487 (missing job control functionality) really gets fixed. [YOCTO #487] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-01Fix HOMEPAGE values in libzypp and sat-solver .bb filesRobert P. J. Day
Fix obvious typoes in .bb files for libzypp and sat-solver packages, and update the HOMEPAGE for sat-solver to refer to the sat-solver home page itself, rather than the libzypp home page. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-01iptables: upgrade to version 1.4.12.1Dongxiao Xu
Change do_configure_prepend() since some m4 file is needed when doing configuration. Define correct FILE for iptables and iptables-dbg packages. License checksum changed (not essential part), and the license is still GPLv2. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2011-10-31polkit: upgrade to latest 0.102Dongxiao Xu
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2011-10-31wget: Remove pointless codeRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-31mdadm: fix QA Packaging issuesSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-31man: fix QA Packaging issuesSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-31at: fix QA Packaging issuesSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-31wget: Add recipe from OESaul Wold
Needed to support building oe-core with oe-core Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-31recipes: bump PR after python upgradeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-27grep: upgrade to 2.9Scott Garman
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2011-10-27sudo: upgrade to 1.8.3Scott Garman
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2011-10-24texi2html: Added recipe from OESaul Wold
Needed to build oe-core with oe-core Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-20tzcode-native: update SRC_URI to new IANA locationJoshua Lock
The TZ database has moved, it's now hosted by IANA. Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-10-20tzdata: updated SRC_URI and update to 2011kJoshua Lock
tzdata is now hosted by IANA at http://www.iana.org/time-zones Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-10-20chkconfig: Update to 1.3.55Wenzong Fan
Update chkconfig to 1.3.55 from 1.3.52. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
2011-10-20libxml-sax-perl: update to 0.99Kang Kai
Update libxml-sax-perl to 0.99 Signed-off-by: Kang Kai <kai.kang@windriver.com>
2011-10-20ghostscript: update to 9.04Kang Kai
Remove the old version and update ghostscript to 9.04. * update ghostscript-9.02-prevent_recompiling.patch * because soobj is not used any more, remove soobj related work * gs provides a configure option --with-install-cups to install cups related files but disabled by default, so need update post install scripts Signed-off-by: Kang Kai <kai.kang@windriver.com>
2011-10-19ghostscript: renamed x86_64 to x86-64 for patch to workSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-19ghostscript: Disable parallel make due to install issuesSaul Wold
ghostscript uses a script called instcopy to install files first to temp dir and then rm's and copies dirs|files to the final destination. When parallel make happens multiple threads of this runs and tries to remove existing directories with contents, not a good thing, therefore disable parallel make for install. Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-17lsb: Change link of ${baselib} to lib64 for 64bits systemXiaofeng Yan
Correct two faults: 1 Binaries of lsb test suite need ld-linux.so* in /lib64. for example: Target$ ./lsbcmdchk -sh: ./lsbcmdchk: No such file or directory Target$ strings lsbcmdchk | grep "ld-" /lib64/ld-lsb-x86-64.so.3 "lsbcmdchk" from lsb test suite is a binary program. A new modification to lsb_1.4.bb caused that binaries from lsb test suite can't run because binaries of lsb test suite need ld-linux.so* in /lib64. But the link is changed due to adding multilib. I changed this link again. 2 correct mandir Waring will appear when running task task do_populate_sysroot NOTE: package lsb-1.4-r2: task do_populate_sysroot: Succeeded WARNING: For recipe lsb, the following files were installed but not shipped in any package: WARNING: /{datadir}/man/man1/lsb_release.1.gz I changed mandir=${D}/man to mandir=${D}/${datadir}/man Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-17screen: Add patch to fix parallel make installSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>