summaryrefslogtreecommitdiff
path: root/meta/recipes-extended
AgeCommit message (Collapse)AuthorFiles
2011-12-24which: Disable iberty since its not listed in DEPENDSRichard Purdie1
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-23which: Add missing SRC checksumsMark Hatle1
Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-23gperf: Add missing SRC checksumMark Hatle1
Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-22bash: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-22zypper: add patch from libxml2Saul Wold2
Due to Augaes adding the libxml2 requirement. Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21wget: fix a host intrusion issue introduced by adding --with-ssl=openssl.Dexuan Cui1
On my x86-64 Ubuntu 11.04, with MACHINE=qemux86, "bitbake wget" fails. The config.log shows: configure:30072: i586-poky-linux-gcc -m32 -march=i586 --sysroot=/distro/dcui/1212/p1/build/tmp/sysroots/qemux86 -o conftest -O2 -pipe -g -feliminate-unused-debug-types -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c -ldl -lz /usr/lib/libssl.so /usr/lib/libcrypto.so -lz >&5 /usr/lib/libssl.so: could not read symbols: File in wrong format The patch fixes the issue by specifying libssl-prefix. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2011-12-21texi2html: Upgrade to 5.0Saul Wold3
Add patch to update GETTEXT_MACRO_VERSION to 0.18 Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21mc: Add version 4.8.1 now GPLv3Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21libidn: Upgrade to 1.23Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21augeas: Upgrade to 0.10.0Saul Wold2
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21less: Correcting generic licenseBeth Flanagan1
I've asked and received permission from Mark Nudelman, the author of less, to utilize a generic BSD 2 clause license for less, instead of creating a common "less" license file. Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-21ltp: Add recipe from OEJiajun Xu1
Port ltp recipe from OE and upgraged to latest version(20110915). Install ltp into ${D}/opt/ltp and POSIX test suite is also copied into ${D}/opt/ltp/testcases. TODO: Some cases are removed since they depend on command 'expect'. It is not in Poky or OE and we will add it for enhancement next. Signed-off-by: Jiajun Xu <jiajun.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-19Add missing SUMMARY fields to various recipesScott Garman1
This adds the SUMMARY field to the following recipes which were missing it: * dosfstools * grep * icu * libevent * libnfsidmap * qemu-helper-nativesdk Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-19mktemp: mark patch as upstreamedScott Garman1
Patch sumitted and accepted upstream, updating Upstream-Status. Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-16ed: Fix EXTRA_OECONF to ensure right compiler is foundSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-15Patch Upstream Status UpdatesSaul Wold10
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13ed: remove unsupported optionSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13bash: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13sed: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13gzip: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13gawk: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13findutils: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-13ed: Add SRC_URI Checksums for GPLv2Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-12pax: fix compilation with x32 toolchainNitin A Kamble2
off_t is 8byte for x32. We need to check both _FILE_OFFSET_BITS and size of off_t to see if file offset is 64bit. This patch adds AC_CHECK_SIZEOF(off_t) and checks SIZEOF_OFF_T == 8. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-12-12findutils: Fix compilation for x32 toolchainNitin A Kamble2
Work around gnulib time_t assumption in findutils for x32 time_t is 64bit and long int is 32bit on x32. But gnulib used in findutils assumes time_t values fit into long int. Such assumption is invalid for x32 and should be removed. This patch is a workaround to compile gnulib for x32. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-Off-By: H.J. Lu <hjl.tools@gmail.com>
2011-12-12mdadm: Make custom CC definition conditionalNitin A Kamble2
By hardcoding CC's definition in the Makefile, all the gcc parameters set by tune settings are lost. Causing compile failure with x32 toolchain As the bitbake defined CC is good, there is no need to redfine CC in the make file, hence making the CC definition in the Makefile conditional. This fixes bug: [YOCTO #1414] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-12-12texinfo: fix compile failure due target makedoc binary being usedSaul Wold2
Need to have the texinfo-native build and install a host sysroot makedoc binary and then patch the target build to use this binary. This requires that we don't ASSUME_PROVIDED texinfo-native any longer since we need to install this makedoc tool which is not part of the normal distrubtion. [YOCTO #1664] Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-08OECore license fixes: meta/*Elizabeth Flanagan8
This is a quick audit of only the most obviously wrong licenses found within OECore. These fixes fall into four areas: - LICENSE field had incorrect format so that the parser choked - LICENSE field has a license with no version - LICENSE field was actually incorrect - LICENSE field has an imaginary license that didn't exist This fixes most of the LICENSE warnings thrown, along with my prior commit adding additional licenses to common-licenses and additional SPDXLICENSEMAP entries. HOWEVER..... there is much to be done on the license front. For a list of recipes with licenses that need obvious fixing see: https://wiki.yoctoproject.org/wiki/License_Audit That said, I would suggest another license audit as I've found enough inconsistencies. A good suggestion is when in doubt, look at how openSuse or Gentoo or Debian license the package. Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
2011-12-08sysstat: don't run populate-volatile.sh update in do_rootfs, first boot or ↵Martin Jansa2
without populate-volatile.sh Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-08wget: enable https and opensslSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-06wget: Fix wget alternative path to be /usr/bin not /binSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-05libaio: patch source code for x32Nitin A Kamble2
This Fixes bug: [YOCTO #1417] Properly load arguments 5 an 6 for x86-64 syscall Use asm ("r10") and asm ("r8") to load arguments 5 an 6 for x86-64 syscall so that it works with both x32 and x86-64. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-Off-By: H.J. Lu <hjl.tools@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-02less: Update to 444Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-02sysstat: Update to 10.0.3Saul Wold2
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-02psmisc: Update to 22.14Saul Wold4
* 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 Schmidt1
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 Jansa1
* 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 Edwin1
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 Edwin1
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 Purdie1
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-30cronie: use useradd.bbclass instead of hardcoded groupadd callsMartin Jansa1
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 Jansa1
and tinylogin) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-11-30PR Bump for OpenSSL 1.0Saul Wold2
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-29wget: Update to 1.13.4Saul Wold4
* 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 Wold2
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-26ghostscript: Ensure we run reautoconfRichard Purdie1
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 Purdie1
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 Purdie2
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 Kamble4
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-11-16libconvert-asn1-perl/libtimedate-perl: Convert to use allarchRichard Purdie2
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>