James Hilliard
875efa45b0
package/{mesa3d, mesa3d-headers}: bump version to 18.3.1
...
Backport patch needed to fix error: ‘NULL’ undeclared
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-12-16 12:15:36 +01:00
Bernd Kuhls
ed5d7d6229
package/{mesa3d, mesa3d-headers}: bump version to 18.3.0
...
Rebased patch 0002 after upstream commit
https://cgit.freedesktop.org/mesa/mesa/commit/configure.ac?h=18.3&id=6b8657aff0adb9952aa3178d3b332de19d354561
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-12-10 11:49:50 +01:00
Thomas Petazzoni
2c1336533d
package/mesa3d-headers: install OpenCL headers when needed
...
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-12-03 23:07:30 +01:00
Bernd Kuhls
e726fd8b5c
package/{mesa3d, mesa3d-headers}: bump version to 18.2.6
...
Added mandatory dependency to xlib_libXxf86vm
https://cgit.freedesktop.org/mesa/mesa/commit/configure.ac?h=18.2&id=f05ce9dc514427a661696bc6b908e30841b6eb9d
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-12-03 21:27:43 +01:00
Bernd Kuhls
cf7338c903
package/{mesa3d, mesa3d-headers}: bump version to 18.2.5
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-11-24 10:13:05 +01:00
Bernd Kuhls
9f8f8a49c5
package/{mesa3d, mesa3d-headers}: bump version to 18.2.4
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-11-02 09:48:35 +01:00
Bernd Kuhls
e0a3e71add
package/{mesa3d, mesa3d-headers}: bump version to 18.2.3
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-10-20 14:17:23 +02:00
Bernd Kuhls
94050786cb
package/{mesa3d, mesa3d-headers}: bump version to 18.2.2
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-10-06 15:22:45 +02:00
Bernd Kuhls
0b3b106b8e
package/{mesa3d, mesa3d-headers}: bump version to 18.2.1
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-09-30 10:37:36 +02:00
Bernd Kuhls
3d3235f9c1
package/{mesa3d, mesa3d-headers}: bump version to 18.2.0
...
Upstream unconditionally enabled floating-point textures:
https://cgit.freedesktop.org/mesa/mesa/commit/?h=18.2&id=66673bef941af344314fe9c91cad8cd330b245eb
x11 support depends on xlib_libXrandr now:
https://cgit.freedesktop.org/mesa/mesa/commit/configure.ac?h=18.2&id=3f960c1338713d317ce6463be68cee162c968d8d
Removed 0003-musl-time-h.patch, patch was applied upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-09-10 21:58:42 +02:00
Bernd Kuhls
ee4b049190
package/{mesa3d, mesa3d-headers}: bump version to 18.1.8
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-09-10 17:38:58 +02:00
Bernd Kuhls
31ef46cbd8
package/{mesa3d, mesa3d-headers}: bump version to 18.1.7
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-09-08 23:39:44 +02:00
Peter Korsgaard
721e4cbb52
Merge branch 'next'
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-09-07 13:13:17 +02:00
Bernd Kuhls
c00ab0508d
package/{mesa3d, mesa3d-headers}: bump version to 18.1.6
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-08-16 00:27:43 +02:00
Thomas Petazzoni
98e3c1eee5
mesa3d-headers: fix logic to generate the dri.pc file
...
As noted by Arnout in [1], the logic in mesa3d-headers.mk generates a
bogus dri.pc file, which looks like this:
prefix=/usr
exec_prefix=/usr
libdir=/lib
includedir=/include
dridriverdir=/dri
Indeed, the ${...} are expanded as shell variables when the sed
command is executed, while the intention is that those ${...} should
go in the .pc file. By escaping those using $${...}, we get the
expected .pc file:
prefix=/usr
exec_prefix=/usr
libdir=${exec_prefix}/lib
includedir=${prefix}/include
dridriverdir=${libdir}/dri
This was detected by the not yet committed check-package improvement
from Ricardo that detects bogus ${...} usage to reference make
variables.
[1] http://lists.busybox.net/pipermail/buildroot/2018-July/225402.html
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-08-11 12:35:15 +02:00
Bernd Kuhls
57d4a27eaf
package/{mesa3d, mesa3d-headers}: bump version to 18.1.5
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Tested-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-07-27 23:55:32 +02:00
Bernd Kuhls
565a2b8f4b
package/{mesa3d, mesa3d-headers}: bump version to 18.1.4
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-07-14 22:12:44 +02:00
Bernd Kuhls
e642310af1
package/{mesa3d, mesa3d-headers}: bump version to 18.1.3
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-06-30 18:10:48 +02:00
Bernd Kuhls
8d4f508a31
package/{mesa3d, mesa3d-headers}: bump version to 18.1.2
...
Removed patch 0003, applied upstream:
https://cgit.freedesktop.org/mesa/mesa/commit/?h=18.1&id=f9500edb96b7b50a6ab29ebf694610f0112d741f
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-06-16 14:38:12 +02:00
Romain Naour
5379504d70
package/{mesa3d, mesa3d-headers}: bump version to 18.1.1
...
Rebase the two patches on 18.1.1.
Convert 0001-musl.patch to git patch.
See:
https://lists.freedesktop.org/archives/mesa-dev/2018-June/196523.html
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-06-02 22:26:14 +02:00
Romain Naour
f18ca0e7bb
package/{mesa3d, mesa3d-headers}: bump version to 18.0.4
...
See:
https://lists.freedesktop.org/archives/mesa-dev/2018-May/195215.html
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-05-19 21:50:14 +02:00
Bernd Kuhls
dacc2899e2
package/{mesa3d, mesa3d-headers}: bump version to 18.0.3
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-05-08 14:55:22 +02:00
Bernd Kuhls
d633f6a8b8
package/{mesa3d, mesa3d-headers}: bump version to 18.0.2
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-04-29 09:57:34 +02:00
Bernd Kuhls
8b2c8690d1
package/{mesa3d, mesa3d-headers}: bump version to 18.0.1
...
Removed patch 0002, upstream committed a different fix:
https://cgit.freedesktop.org/mesa/mesa/commit/?h=18.1&id=cbee1bfb34274668a05995b9d4c78ddec9e5ea4c
https://cgit.freedesktop.org/mesa/mesa/commit/?h=18.1&id=5a75019ad0270a974788a9b8648ba98ff4203768
Renumbered patch 0003 -> 0002.
Tested using test-pkg (removed skipped toolchains from log):
armv5-ctng-linux-gnueabi [ 1/46]: OK
armv7-ctng-linux-gnueabihf [ 2/46]: OK
br-aarch64-glibc [ 3/46]: OK
br-arcle-hs38 [ 4/46]: OK
br-arm-cortex-a9-glibc [ 6/46]: OK
br-arm-cortex-a9-musl [ 7/46]: OK
br-arm-full [ 9/46]: OK
br-i386-pentium4-full [12/46]: OK
br-i386-pentium-mmx-musl [13/46]: OK
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-04-21 14:50:26 +02:00
Yann E. MORIN
8f3c772459
package: share downloaded files for big packages
...
Theses packages are given as an example of the use of the *_DL_SUBDIR feature.
There maybe other packages that would benefit from that feature, they
would need to be added on a case by case basis.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-04-02 17:48:56 +02:00
Bernd Kuhls
7776dd0667
package/{mesa3d, mesa3d-headers}: bump version to 18.0.0
...
Rebased 0002-Fix-endianess-detection-with-musl-based-toolchains.patch
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Tested-by: Joseph Kogut <joseph.kogut@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-03-29 15:59:09 +02:00
Bernd Kuhls
69a2d15d1c
package/{mesa3d, mesa3d-headers}: bump version to 17.3.7
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Tested-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-03-22 23:43:54 +01:00
Bernd Kuhls
2ab743e6a1
package/{mesa3d, mesa3d-headers}: bump version to 17.3.6
...
Release note of this emergency release:
https://lists.freedesktop.org/archives/mesa-announce/2018-February/000403.html
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-02-27 20:37:13 +01:00
Romain Naour
b910cba2c7
package/{mesa3d, mesa3d-headers}: bump version to 17.3.5
...
This is a emergency release fixing major a issue in the RADV driver [1].
[1] https://lists.freedesktop.org/archives/mesa-announce/2018-February/000401.html
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-02-21 21:37:30 +01:00
Bernd Kuhls
cbd12ed37e
package/{mesa3d, mesa3d-headers}: bump version to 17.3.4
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-02-15 22:13:24 +01:00
Bernd Kuhls
f764b73748
package/{mesa3d, mesa3d-headers}: bump version to 17.3.3
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-01-22 22:26:36 +01:00
Bernd Kuhls
c425a925b4
package/{mesa3d, mesa3d-headers}: bump version to 17.3.2
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-01-10 20:15:56 +01:00
Romain Naour
202ad747f5
package/{mesa3d, mesa3d-headers}: bump version to 17.3.1
...
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-12-22 15:33:00 +01:00
Bernd Kuhls
a77f665f3d
package/{mesa3d, mesa3d-headers}: bump version to 17.3.0
...
Fixed path for current license hash and added another one.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-12-10 20:57:14 +01:00
Bernd Kuhls
0ddfa00194
package/{mesa3d, mesa3d-headers}: bump version to 17.2.6
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-11-27 09:32:23 +01:00
Bernd Kuhls
91bc13cc98
package/{mesa3d, mesa3d-headers}: bump version to 17.2.5
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-11-11 23:34:16 +01:00
Bernd Kuhls
82ec2e13d0
package/{mesa3d, mesa3d-headers}: bump version to 17.2.4
...
Added license hash.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-11-01 10:53:37 +01:00
Bernd Kuhls
e749c770a7
package/{mesa3d, mesa3d-headers}: bump version to 17.2.3
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-10-21 08:21:55 +02:00
Bernd Kuhls
1f8e9045a5
package/{mesa3d, mesa3d-headers}: bump version to 17.2.2
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-10-03 14:17:44 +02:00
Bernd Kuhls
e25705ffa9
package/{mesa3d, mesa3d-headers}: bump version to 17.2.1
...
Added all hashes provided by upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-09-19 14:04:55 +02:00
Bernd Kuhls
0dea780436
package/mesa3d-headers: bump version to 17.2.0
...
Forgot to bump this package in
https://git.buildroot.net/buildroot/commit/package/mesa3d?id=88b5e583a3b9389159c0b008f140aaa1cf578a3c
Fixes
http://autobuild.buildroot.net/results/ef2/ef23996ba10a2143087c3ff0b7549f4acbbe6777/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-09-07 09:20:48 +02:00
Bernd Kuhls
a24609104c
package/{mesa3d, mesa3d-headers}: bump version to 17.1.8
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-08-30 22:13:12 +02:00
Bernd Kuhls
7d952d1b05
package/{mesa3d, mesa3d-headers}: bump version to 17.1.7
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-08-21 23:26:52 +02:00
Bernd Kuhls
3b713c771c
package/{mesa3d, mesa3d-headers}: bump version to 17.1.6
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2017-08-09 23:56:04 +02:00
Bernd Kuhls
9a3e677548
package/{mesa3d, mesa3d-headers}: bump version to 17.1.5
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-07-15 11:36:53 +02:00
Bernd Kuhls
d561a02dba
package/{mesa3d, mesa3d-headers}: bump version to 17.1.4
...
Removed patch 0001, applied upstream:
https://cgit.freedesktop.org/mesa/mesa/commit/?h=17.1&id=0069a613ac3b6ca75315cbb2fd3d86b0f6c9ede4
Renumbered remaining patches.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-07-01 10:12:27 +02:00
Fabio Estevam
49529e61e5
package/{mesa3d, mesa3d-headers}: bump version to 17.1.3
...
Patch 0006 is no longer needed as the fix is already upstream.
Confirmed that the colors are displayed correctly when running the
Qt5CinematicDemo application on i.mx6.
Patch 0007 is already applied upstream.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-06-22 12:02:12 +02:00
Vicente Olivert Riera
3e5926555b
package/{mesa3d, mesa3d-headers}: bump version to 17.1.2
...
Patch 0005 tweaked to apply on this release.
Patch 0006 already included in this release:
https://cgit.freedesktop.org/mesa/mesa/commit/?id=e75001811e3b66986b4ede165a0fdde703d4f05b
zlib is now a mandatory dependency.
https://cgit.freedesktop.org/mesa/mesa/commit/?h=17.1&id=85a9b1b562b6a73b9494b3fad25172da3dc90fc2
[Bernd: added in v2]
- bump to mesa3d version 17.1.2
- squashed mesa3d-headers bump for bisectability
- renumbered patch 0007
- added zlib link in patch message
- Vulkan Intel driver does not depend on the i965 dri driver anymore
https://cgit.freedesktop.org/mesa/mesa/commit/configure.ac?h=17.1&id=9aebdb5d082ec640fe8a14704201952bddb50a88
- Gallium vc4 driver depends on NEON support
https://cgit.freedesktop.org/mesa/mesa/commit/?h=17.1&id=4d30024238efa829cabc72c1601beeee18c3dbf2
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-06-10 23:01:44 +02:00
Bernd Kuhls
d50e7db378
package/mesa3d: bump version to 17.0.7
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-06-06 21:46:42 +02:00
Bernd Kuhls
9a2f7fbeb3
package/{mesa3d, mesa3d-headers}: bump version to 17.0.6
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-05-13 14:59:49 +02:00