summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* filemq: disable asciidoc documentation generationArnout Vandecappelle (Essensium/Mind)2013-05-121-0/+1
| | | | | | | | | | | | filemq uses asciidoc for its documentation. asciidoc uses python and import the unicodedata module, which is not in host-python. So disable asciidoc entirely. This doesn't get hit by the autobuilders because they don't have asciidoc installed in their chroot. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* f2fs-tools: fix versionArnout Vandecappelle (Essensium/Mind)2013-05-121-1/+1
| | | | | | | | The commit e3eadd doesn't (no longer?) exists in the upstream git, so replace it with the latest commit to date. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* czmq: disable asciidoc documentation generationArnout Vandecappelle (Essensium/Mind)2013-05-121-0/+4
| | | | | | | | | | | | czmq uses asciidoc for its documentation. asciidoc uses python and import the unicodedata module, which is not in host-python. So disable asciidoc entirely. This doesn't get hit by the autobuilders because they don't have asciidoc installed in their chroot. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-tools: needs largefile supportPeter Korsgaard2013-05-121-2/+3
| | | | | | Fixes http://autobuild.buildroot.net/results/ba2674c2f5bb33304dbbdf2f0ad0ca5ecfdc11aa/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openssl: fix host-openssl dependenciesArnout Vandecappelle (Essensium/Mind)2013-05-121-0/+1
| | | | | | | | | Support for ocf-linux or cryptodev-linux added a dependency of host-openssl on host-ocf-linux / host-cryptodev-linux, which we don't have and the dependency is anyway not needed. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* classpath: remove qt supportArnout Vandecappelle (Essensium/Mind)2013-05-121-7/+4
| | | | | | | | classpath doesn't work with Qt in buildroot. It assumes qt will run on X11, but we don't have qt-x11 support on buildroot. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-pam: fix missing includesArnout Vandecappelle (Essensium/Mind)2013-05-122-0/+65
| | | | | | | | | | | Two patches taken from upstream fix e.g. http://autobuild.buildroot.org/results/fa31431066ce0f9c554bdb923e59aa0458508224 These patches are in linux-pam 1.1.6 already, but since I don't know how to test it, I don't want to do a version bump. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wvstreams: add missing includes for getuid()Peter Korsgaard2013-05-121-0/+25
| | | | | | Fixes http://autobuild.buildroot.net/results/2ad80b1ae823fbe196f8a65220d5d4a0dd202c4e/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gutenprint: ensure staging version of cups-config is usedPeter Korsgaard2013-05-121-0/+2
| | | | | | | | And not whatever is available on the host. Fixes http://autobuild.buildroot.net/results/dd202d9be79e00ecab622bd7427542b16e962916/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* matchbox-lib: pango backend needs Xft support in pangoPeter Korsgaard2013-05-121-1/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/7f5e56790028b96626e6f0a69ddce08667b712eb/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libnss/libnspr: unavailable comment should be OR and not ANDGustavo Zacarias2013-05-122-2/+2
| | | | | | | | Otherwise the comment would only show up when both conditions are true instead of any of them. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Unhide lttng-tools and lttng-modulesOlivier Schonken2013-05-112-1/+3
| | | | | | | | | | | | When using lttng-tools for userland tracing with lttng-libust lttng-modules is not required, thus a dependency on building lttng-modules and a kernel is overkill for lttng-tools. It also hides it from a user not wanting to build a kernel. A comment has been added to lttng-modules to show a user that lttng-modules is dependent on a kernel build. Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package-infra: limit the number of // jobsYann E. MORIN2013-05-111-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The current code spawns as many jobs as up to twice the number of CPUs. On small-class machines like laptops, with a limitted amount of memory, but still a few CPUs (real or hyperthreads), the HDD becomes a bottleneck, and it becomes almost impossible to do anythiong else while there is a build in progress. Limit the number of jobs to the number of CPUs plus one. Even on fast machines with fast HDDs, this settings keeps the machine fully busy (for those packages that can build in parallel, of course). For example, building qemu or the linux kernel kept my hyperthreaded hexa Core i7 with 18GiB of RAM, busy at 99% (I never ever managed to get 100% even with more jobs, not even 200); while on my hyperthreaded dual Core i5 with only 4GiB and a slow HDD, I still topped at 100% CPU, while still able to do some work involving the HDD. If the number of processors is not available, assume one. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Nathan Lynch <ntl@pobox.com> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Nathan Lynch <ntl@pobox.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libcurl: add security patch for CVE-2013-1944Gustavo Zacarias2013-05-112-0/+57
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gutenprint: disable (doxygen) documentation generationPeter Korsgaard2013-05-111-0/+1
| | | | | | Just wastes build time, so disable it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Disable building of cups driver in host-gutenprintOlivier Schonken2013-05-111-1/+9
| | | | | | | | | | This should fix http://autobuild.buildroot.org/results/d2e386b50744aeda7257a0b78aafe90ba4da697c/ Because there is no host-cups package, host-gutenprint cant build the host-cups drivers - missing includes and libs. Host gutenprint only built to get the xml. Thus not a loss. Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ltrace: unavailable for ARC architectureGustavo Zacarias2013-05-111-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* strace: unavailable for AArch64 and ARCGustavo Zacarias2013-05-111-1/+1
| | | | | | | | | | | strace isn't available for the AArch64 and ARC architectures. The patchset for AArch64 is somewhat big and complicated (needs updates to other bits) so it'd probably be better to use a git version of strace or wait for a new release. http://autobuild.buildroot.net/results/506f4adec348f0b616ad09bddbcbc242e38253b8/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt5imageformats: needs gui support in qt5basePeter Korsgaard2013-05-111-0/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/8843619e91958766c66c0955f363bbfc733b31e6/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dbus: add license informationSimon Dawson2013-05-111-0/+3
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* atk: add license informationSimon Dawson2013-05-111-0/+3
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wvstreams: disable warningsThomas Petazzoni2013-05-111-1/+5
| | | | | | | | | During the compilation of wvstreams, a number of strict aliasing related warnings are shown, making the build quite noisy. Turn warnings off using the --disable-warnings option. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wvstreams: fix build failuresThomas Petazzoni2013-05-111-0/+40
| | | | | | | | Add a patch to fix wvstreams build failures such as http://autobuild.buildroot.org/results/8cb2904113a5e63d6170c085f77a8040d50a0138/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pulseaudio: link against json-cThomas Petazzoni2013-05-102-0/+32
| | | | | | | | | | | | | | Add an upstream patch that makes Pulseaudio link against json-c instead of json, so that it works with json-c 0.11, and doesn't cause problems with libjson has been also installed in the system. Note that this fix has been merged in Pulseaudio after the 3.0 release, so we will have to keep this patch around when bumping to 3.0. Fixes http://autobuild.buildroot.org/results/91ffd3196092c48b88f59adb12741b3f93064dea/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* json-c: bump to version 0.11Thomas Petazzoni2013-05-103-51/+23
| | | | | | | | | | | | | | | | Bumping this package is needed, because json-c 0.10 has a major defect: it installs a library named libjson.so, which conflicts with the library installed by the libjson package. This has been changed in the upstream json-c 0.11 version, which now installs libjson-c and json-c.pc. It allows to solve the Pulseaudio link problem, which wants to link against json-c but happens to link against libjson when libjson has been compiled and installed after json-c. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-nfc: needs toolchain with threads supportgilles.talis@gmail.com2013-05-101-0/+4
| | | | | | | python-nfc uses libusb that requires a toolchain with threads support Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* hplip: needs threadsGustavo Zacarias2013-05-101-2/+3
| | | | | | | | Hplip needs threads because libusb needs them. Fixes: http://autobuild.buildroot.net/results/12fb9bb8c93c1cc1f93ba8e15558d1630f2e7c3d/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* udev: add license informationSimon Dawson2013-05-081-0/+3
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* various packages: fix license informationSimon Dawson2013-05-089-9/+9
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* patch: fix license informationSimon Dawson2013-05-081-1/+1
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* msmtp: bump to version 1.4.31gilles.talis@gmail.com2013-05-071-1/+3
| | | | | | | | Also added license information Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* chrony: new packageNathan Lynch2013-05-073-0/+55
| | | | | Signed-off-by: Nathan Lynch <ntl@pobox.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gperf: add license informationSimon Dawson2013-05-071-0/+2
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dropbear: disable standalone mode for nommuGustavo Zacarias2013-05-071-9/+13
| | | | | | | | | dropbear for nommu targets must disable the standalone (non-inetd) mode since the platform lacks fork(), fixes: http://autobuild.buildroot.net/results/ecbdfab10f54bec75c112bbf005bba9ae2b18dc8/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-ui-themes: use a choice option for theme namePeter Korsgaard2013-05-071-5/+108
| | | | | | | A bit more user friendly than asking people to figure out the available themes manually. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-ui-themes: strip theme nameSimon Dawson2013-05-071-2/+2
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libmicrohttpd: bump to version 0.9.27Gustavo Zacarias2013-05-071-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-thrift: new packageVinicius Tinti2013-05-073-0/+38
| | | | | | | | | | | | | | | | Add Python bindings for the Apache Thrift RPC. Thrift is an interface definition language that is used to define and create services for numerous languages using remote procedure calls (RPC). This patch does not include the Thrift code generator. It only includes the Thrift libraries used at runtime. Signed-off-by: Tiago Maluta <tiagomaluta@gmail.com> Signed-off-by: Vinicius Tinti <viniciustinti@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libnl: enable parallel makeNathan Lynch2013-05-071-1/+0
| | | | | | | | | | Current versions of libnl (since 3.2.4, at least) do not appear to require MAKE1. Signed-off-by: Nathan Lynch <ntl@pobox.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ndisc6: only needs gettext if locale is selectedArnout Vandecappelle (Essensium/Mind)2013-05-072-1/+2
| | | | | | | | | Also add missing select in Config.in. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* flex: only needs gettext if locale is selectedArnout Vandecappelle (Essensium/Mind)2013-05-072-1/+2
| | | | | | | | | Also add missing select in Config.in. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-setuptools: forkbump and add workaround for shebangsGustavo Zacarias2013-05-072-8/+67
| | | | | | | | | | | | | | | | | | | Switch to distribute fork since it's maintained and fixes a few issues while bumping to version 0.6.36. There's work upstream in re-merging with setuptools which is now supposedly maintained, see http://mail.python.org/pipermail/distutils-sig/2013-March/020126.html Buildroot python packages should use --single-version-externally-managed and --root=/ in the install phase even if they're not setuptools-based. This is because the default is to build egg files (zip files) for packages to support multiple target versions, and since the packages should be handled by buildroot infrastructure that's not needed. Also potentially doing double-compression is time-wasting (i.e. egg file and target filesystem) when running on slow targets. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-netifaces: use single version externally managedGustavo Zacarias2013-05-071-2/+4
| | | | | | | | | | | | We want --single-version-externally-managed (and --root=/) to make python packages uncompressed (python eggs are zip files) since compression should be a target filesystem responsibility. And we don't need/want multiple versions of the same package in the target since packages should be handled by buildroot on any sane embedded system. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* blackbox: needs mmuGustavo Zacarias2013-05-061-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/644617ae64b39c57428c3e57115c3e6df5396d16/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ebtables: fix static buildGustavo Zacarias2013-05-061-1/+10
| | | | | | | | | ebtables has a funky way of building the static version. Fixes: http://autobuild.buildroot.net/results/f5916d84194b6aa02d8eca7cbbb4e7867bb6afd4/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update webkit download URLMichael J. Hammel2013-05-061-1/+1
| | | | | | Signed-off-by: Michael J. Hammel <mjhammel@graphics-muse.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* erlang: needs mmuGustavo Zacarias2013-05-061-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/5b3411008ddf89aef55c8dd8682b894cf9860d13/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-ui-themes: bump versionPeter Korsgaard2013-05-062-3/+3
| | | | | | | The base theme is no longer available in the themes download (it is the standard theme installed by jquery-ui), so default to ui-lightness instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-ui-themes: add license infoPeter Korsgaard2013-05-061-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-ui-themes: new packageSimon Dawson2013-05-063-0/+47
| | | | | | [Peter: drop CSS path option, depend on jquery-ui, misc cleanups] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>