summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* lightning: fix build issue by bumping to 2.1.2Thomas Petazzoni2018-02-062-2/+3
| | | | | | | | | | | | | | The current version of lightning doesn't build with recent versions of binutils. Since this has been fixed upstream in a dot release, let's bump to the upstream version that has the fix. While at it, add a hash for the license file. Fixes: http://autobuild.buildroot.net/results/51424c044e11b89544824dbdf1af45b05b499ba4/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libv4l: fix EVIOCSCLOCKID related compile failurePeter Seiderer2018-02-051-0/+35
| | | | | | | | | | | | | Fixes [1]: keytable.c: In function 'test_event': keytable.c:1351:12: error: 'EVIOCSCLOCKID' undeclared (first use in this function) ioctl(fd, EVIOCSCLOCKID, &mode); [1] http://autobuild.buildroot.net/results/8ba380471423bd2491e40103d7b1a45de1bd12ed Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libmaxminddb: disable binaries without threadsFabrice Fontaine2018-02-052-0/+60
| | | | | | | | | | | libmaxminddb added a pthread dependency to bin/mmdblookup in version 1.3.2 Fixes: - https://autobuild.buildroot.net/results/3e653a5fa4cbd714980ce0f1c3b02f3abb6d558e Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* cargo: new packageEric Le Bihan2018-02-055-0/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new package provides Cargo, the Rust official package manager. Cargo is written in Rust and uses Cargo as its build system. It also depends on other Rust packages. Normally, a previously installed version of Cargo would be used to: 1. Fetch the dependencies. 2. Build the new version of Cargo, using the available Rust compiler. But the fetching step prevents offline builds. So instead two features of Cargo are leveraged: vendoring [1] and local registry. First, a tarball of the build dependencies generated using `cargo vendor` is fetched along with Cargo source code. Then, the build process is as follows: 1. The tarball of the build dependencies is uncompressed in a local registry. 2. A snapshot of Cargo, provided by cargo-bin, builds the final version of Cargo. 3. A configuration file telling Cargo how to cross-compile programs for the target is generated and installed. Currently, only the host variant is provided. [1] https://github.com/alexcrichton/cargo-vendor [Peter: use src.fedoraproject.org, fix comment] Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libcurl: add host variantEric Le Bihan2018-02-051-0/+14
| | | | | Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libhttpparser: add host variantEric Le Bihan2018-02-051-0/+9
| | | | | | | Allow build of host variant of libhttpparser. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libssh2: add host variantEric Le Bihan2018-02-051-0/+6
| | | | | | | Allow build of host variant of libssh2, which depends on host-openssl. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rust: new packageEric Le Bihan2018-02-053-0/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new package provides rustc, the compiler for the Rust programming language, built from source. Currently, only the host variant is built. The Rust compiler uses LLVM as its backend: a copy of LLVM source code is provided and CMake is used to build it. It is possible to use a pre-built external copy. When LLVM/clang will be available in Buildroot, it would be possible to benefit from this feature and thus decrease build time. LLVM is configured to generate code for x86, ARM, PowerPC and MIPS architectures. The Rust compiler uses Cargo as its build system and is written in Rust. Therefore this package depends on cargo-bin and rust-bin. The internal build process is as follows: 1. stage0 compiler, provided by rust-bin, is used to build stage1 compiler. 2. stage1 compiler builds the final Rust compiler (stage2 compiler) and the standard library for the host architecture. 3. the standard library for the target architecture is built. The target architecture to support is given by the GNU/LLVM target triple. Rust supports some predefined targets [1]. As the build system expects the triple to be in the form of <arch>-unknown-<system> and Buildroot toolchain wrapper uses <arch>-buildroot-<system>, the package Makefile uses $(RUST_TARGET_NAME) defined in the rustc package and uses it instead of $(GNU_TARGET_NAME). When compiling Rust code with this compiler, the generated program only depends on the target C library, as it is statically linked to the Rust standard library and any other code from Rust packages (a.k.a. "crates"). If the jemalloc package is selected, support for this memory allocator will be enabled in the target standard library. The menuconfig entry for rustc is also updated to expose this provider. [1] https://forge.rust-lang.org/platform-support.html Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cargo-bin: new packageEric Le Bihan2018-02-052-0/+21
| | | | | | | | | This new package fetches a binary version of Cargo, suitable to bootstrap the host variants of the Rust compiler and Cargo, the package manager. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rust-bin: new packageEric Le Bihan2018-02-053-0/+123
| | | | | | | | | | | | | | | | | | | | | This package provides a pre-built version of rustc, the compiler for the Rust programming language, fetched from the upstream project. A pre-built version of the standard library for the host as well as one for the chosen target are also fetched and installed. Only the host variant is provided to allow the user to cross-compile Rust programs and run them on the target. This package could also be used to provide a bootstrap compiler when building Rust from source. So, in order to add it as a build dependency, the compiler and standard libraries are only installed in $(HOST_DIR) if the package is explicitly selected. The menuconfig entry for rustc is also updated to expose this provider. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rustc: new virtual packageEric Le Bihan2018-02-053-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | The compiler for the Rust programming language is called rustc. There is only one reference implementation for it, based on LLVM, from the Rust project [1]. It can generate code for various architectures so it can be labeled as a cross-compiler. But, as for GCC, building it from source takes time. So it would be sensible to have at least one package which provides it as a pre-built version, fetched from the upstream project. Later another package can be added, to build it from source code. In addition to the compiler, the standard library for the host and/or the target should also be fetched/built. So, add a virtual package named rustc to enable support for multiple providers. Currently, only the host variant will be available to allow the user to cross-compile Rust programs for the target. [1] http://rust-lang.org Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libsamplerate: add optional dependency to alsa-libBernd Kuhls2018-02-051-0/+4
| | | | | | | | | | | | | | | | | Configure summary without this patch and without alsa-lib built before: Extra tools required for testing and examples : [...] Have ALSA : ................... no and with this patch Extra tools required for testing and examples : [...] Have ALSA : ................... yes Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* gcc: or1k: use 20170218 tag instead of branchPeter Korsgaard2018-02-057-2/+2
| | | | | | | | | | | | | | | | As pointed out by Joel Stanley: https://patchwork.ozlabs.org/patch/863011/ Github now longer provides the exact same tarball for the or1k musl-5.4.0 tarball, breaking the build. Even more, musl-5.4.0 is the name of a git branch, not a tag. Fix both problems by changing to the or1k-musl-5.4.0-20170218 tag, which points to the exact same git commit. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Tested-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Revert "python3: bump to 2.6.4"Thomas Petazzoni2018-02-0519-109/+68
| | | | | | | | | | | | | | This reverts commit 233202597d9411399aeaded2f9a7cd14f2e29833, which causes a lot of build failures. Part of the Python build process tries to use os.replace(), which is only available since Python 3.3. It should work if the host-python being built was used, but unfortunately the system Python ends up being used, causing the build failure. Fixes: http://autobuild.buildroot.net/results/ed95a7ded6bd6c17bd0820b3a96862487b71eb2b/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/bootstrap: fix licence file pathRomain Naour2018-02-052-2/+2
| | | | | | | | | | | The licence file is in css/ directory. Fixes: http://autobuild.buildroot.net/results/0d4/0d4b9488d1aa80e8d290e4dfe1937c3879eceea4 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/libcodec2: fix upstream source URLBernd Kuhls2018-02-042-3/+2
| | | | | | | | Upstream changed to URL of the source tarball and removed SHA1SUMS. Added license hash. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/gpsd: add config option for Spectratime iSync and build fix patchZoltan Gyarmati2018-02-043-0/+44
| | | | | | | | | | | | | | | | | | | As in the inital 3.17 version bump patch the iSync config option was not added, the iSync driver was implicitly enabled in the gpsd config as default, and due to a bug in the gpsd build setup, this caused several autobuild issues which are fixed by this. This commit adds both the Buildroot config option and the gpsd patch which was also sent to and accepted in upstream. Fixes: http://autobuild.buildroot.net/results/555b4bdd1707aa21e6d3014e30b635c96c5efffc http://autobuild.buildroot.net/results/cfc14a2c471c63ecc4c95c12b8e00ed7656acfd2 http://autobuild.buildroot.net/results/2104e15526bd6f467f0d56dee10b5fa46e2c71dd http://autobuild.buildroot.net/results/610b3f898b396c1def682b809482408c2c4555bc ... and many more. Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* xcb-util-wm: add license fileDanomi Manchego2018-02-042-0/+3
| | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xcb-util-image: add license fileDanomi Manchego2018-02-042-0/+3
| | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-remi: fix trailing whitespace and line sizeGwenhael Goavec-Merou2018-02-042-6/+5
| | | | | | | | | | | Fixes line size in Config.in, trailing whitespace after # and empty line Fixes: - https://gitlab.com/buildroot.org/buildroot/-/jobs/50971692 Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* safeclib: fix trailing whitespaceFabrice Fontaine2018-02-041-1/+1
| | | | | | | | | | | Fixes trailing whitespace after MIT Fixes: - https://gitlab.com/buildroot.org/buildroot/-/jobs/50971692 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ntp: explicitly enable openssl-random when crypto is enabledAdam Duskett2018-02-041-1/+1
| | | | | | | | | If OpenSSL is selected, --enable-openssl-random should be explicitly enabled for consistency with the disable case. [Peter: tweak commit text] Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dash: enable line editting if libedit is selectedCarlos Santos2018-02-041-0/+14
| | | | | | | | | | | | | Otherwise, explicitly disable it, so that the configure script does not misdetect a system-installed libedit for example. Also, add a profile snippet enabling line editing, Emacs style. [Peter: move DASH_INSTALL_PROFILE inside conditional, ensure /etc/profile.d exists] Change-Id: I68c6dbbafa95e266860329cb9c7ff5519fda5bf8 Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gconf: add dependency on toolchain w/ dynamic libJoseph Kogut2018-02-041-2/+4
| | | | | | | | | | GConf fails to build when BR2_STATIC_LIBS=y. Fixes: http://autobuild.buildroot.net/results/ad8a9b082006f0334010c9c4dc5a90c2071df121/ Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-remi: new packageGwenhael Goavec-Merou2018-02-044-0/+27
| | | | | | | | | | | | | Remi is a GUI library for Python applications which transpiles an application's interface into HTML to be rendered in a web browser. This removes platform-specific dependencies and lets you easily develop cross-platform applications in Python! https://github.com/dddomodossola/remi/tree/master Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gdk-pixbuf: unbreak gdk-pixbuf loaders.cachePierre CROKAERT2018-02-041-1/+1
| | | | | | | | | | | | | | | Fix gdk-pixbuf broken by host package moved to /lib instead of /usr/lib Regression occured following commit 19ba17ee3ba946ac86 (Globally replace $(HOST_DIR)/usr/lib with $(HOST_DIR)/lib). The host package loader.cache now refer to $(HOST_DIR)/lib, and the target one should refer to /usr/lib. Fix it by adjusting the sed invocation. [Peter: extend commit message] Signed-off-by: Pierre CROKAERT <pct@crookies.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: drop old unsupported 3.x versionsPeter Korsgaard2018-02-041-18/+0
| | | | | | | | These versions are very old and no longer supported according to https://www.kernel.org/category/releases.html, so drop them and add legacy entries. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* network-manager: Add option for OpenVSwitch supportPetr Vorel2018-02-032-2/+14
| | | | | Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* network-manager: Bump to version 1.10.2Petr Vorel2018-02-032-5/+6
| | | | | | | | handle new dependency to Jansson (since 1.10.0). [Peter: unconditionally disable ovs support as suggested by Thomas] Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dhcp: disable isc assertions (reproducible builds)Peter Seiderer2018-02-031-1/+3
| | | | | | | | | | | | | | | | The isc assertions from the bundled bind dns library are using the __FILE__ macro for debug messages (see dhcp-4.3.5/bind/bind-9.9.9-P3/lib/isc/include/isc/assertions.h). Disabling the assertions gains: - reproducible builds (no build time paths in the executable) - space saving on the target: dhcpd: 1.9M -> 1.6M dhcrelay: 1.6M -> 1.3M Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* safeclib: new packageFabrice Fontaine2018-02-035-0/+78
| | | | | | | | | | | | safec fork with all C11 Annex K functions This library implements the secure C11 Annex K functions on top of most libc implementations, which are missing from them. https://rurban.github.io/safeclib/ Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* liburiparser: bump to version 0.8.4Carlos Santos2018-02-032-4/+6
| | | | | Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ustr: bump debian patch to 1.0.4-6Andrey Yurovsky2018-02-032-3/+3
| | | | | | | | | Version 1.0.4-5 is no longer available, replace with 1.0.4-6 so ustr can continue to be built. [Peter: use snapshot.debian.org as suggested by Baruch] Signed-off-by: Andrey Yurovsky <yurovsky@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* drbd-utils: bump version to 9.2.0Christophe Vu-Brugier2018-02-032-3/+3
| | | | | | | | | | | | | | | | | Also update the download URL. This patch fixes many autobuild failures because drbd-utils packages older than 8.9.9 are no longer provided by linbit.com. Fixes: http://autobuild.buildroot.net/results/a6d61c7ca8e505509d84869f072d812da79e949a http://autobuild.buildroot.net/results/53ea7cfc57d912377b566474b15a47ffc077b047 http://autobuild.buildroot.net/results/3a6d7a384e6558156695b6ac46754976f4db7652 http://autobuild.buildroot.net/results/0576b80240ba439f7c2842a58e8bd418199e6100 http://autobuild.buildroot.net/results/3f9db30f18b58a6258acb5dfb9301936e5e05bf6 Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/wf111: do a direct downloadYann E. MORIN2018-02-032-17/+1
| | | | | | | | | | We can now do a download without prior registration, so we can drop the requirement for a local, pre-downloaded tarball, now. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Julien CORJON <corjon.j@ecagroup.com> Cc: Antoine Ténart <antoine.tenart@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/wf111: fix armv5 URLYann E. MORIN2018-02-031-1/+1
| | | | | | | | | | Commit b857c7481 (package/wf111: bump to version 5.2.2-r3) forgot to completely update the archive name for the armv5te variant. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Julien CORJON <corjon.j@ecagroup.com> Cc: Antoine Ténart <antoine.tenart@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* axfsutils: bump versionChris Brandt2018-02-032-2/+2
| | | | | | | | This updated version fixes memory violations, memory leaks, compiler warnings and includes updated documentation on usage. Signed-off-by: Chris Brandt <chris.brandt@renesas.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* wireguard: bump to version 0.0.20180202Peter Korsgaard2018-02-032-3/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/bash: remove dead commentYann E. MORIN2018-02-031-1/+0
| | | | | | | | | | | | | Commit 02e5cef1 (system: add option to choose what /bin/sh points to) removed the symlink creation, but forgot to remove the corresponding comment, which is now more puzzling than amusing... Remove the comment. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Romain Naour <romain.naour@gmail.com> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 4.{4, 9, 14, 15}.x seriesFabio Estevam2018-02-031-4/+4
| | | | | Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python3: bump to 2.6.4Adam Duskett2018-02-0319-68/+109
| | | | | | | Also update necessary patches. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tzdata: bump to 2018cAdam Duskett2018-02-032-3/+3
| | | | | Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* systemd: update to v237Adam Duskett2018-02-035-160/+10
| | | | | | | | Also refresh patches and remove 0004-add-false-option-for-tests.patch as it has been added upstream. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* php: bump version to 7.2.2Adam Duskett2018-02-028-12/+21
| | | | | | | | | | Additional changes: - Fix ordering of patches. - Update patches to apply cleanly against 7.2.2 - Updates License sha256sum Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* audit: bump to 2.8.2Adam Duskett2018-02-022-2/+2
| | | | | Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* autofs: update to 5.1.4Waldemar Brodkorb2018-01-312-2/+2
| | | | | Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 4.14.x seriesFabio Estevam2018-01-311-1/+1
| | | | | Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dnsmasq: update homepage linkBaruch Siach2018-01-311-1/+1
| | | | | | | | | The doc.html seems like a better choice for a homepage link than the list of files in the containing directory listing. Cc: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 4.{4, 9}.x seriesFabio Estevam2018-01-311-2/+2
| | | | | Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libva: remove consecutive empty linesThomas Petazzoni2018-01-301-1/+0
| | | | | | | | Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/50140040 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud