mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
AutoBuild: x started at 2025-06-18-00UTC (#12056)
* x updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add package updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libxtrans hashes, workaround docker sed issues. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/arm/v7 to x * work arount ENOENT error Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do crew update before all unit tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do crew update before all unit tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do crew update before all unit tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * cleanup Signed-off-by: Satadru Pramanik <satadru@gmail.com> * debug Signed-off-by: Satadru Pramanik <satadru@gmail.com> * adjust deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Ed Reel <edreel@gmail.com>
This commit is contained in:
committed by
GitHub
parent
770a4b8067
commit
075a7eda36
File diff suppressed because it is too large
Load Diff
@@ -67,7 +67,7 @@
|
||||
/usr/local/lib/libGLX_mesa.so
|
||||
/usr/local/lib/libGLX_mesa.so.0
|
||||
/usr/local/lib/libGLX_mesa.so.0.0.0
|
||||
/usr/local/lib/libgallium-25.1.2.so
|
||||
/usr/local/lib/libgallium-25.1.3.so
|
||||
/usr/local/lib/libgbm.so
|
||||
/usr/local/lib/libgbm.so.1
|
||||
/usr/local/lib/libgbm.so.1.0.0
|
||||
|
||||
10
manifest/i686/x/libxtrans.filelist
Normal file
10
manifest/i686/x/libxtrans.filelist
Normal file
@@ -0,0 +1,10 @@
|
||||
/usr/local/include/X11/Xtrans/Xtrans.c
|
||||
/usr/local/include/X11/Xtrans/Xtrans.h
|
||||
/usr/local/include/X11/Xtrans/Xtransint.h
|
||||
/usr/local/include/X11/Xtrans/Xtranslcl.c
|
||||
/usr/local/include/X11/Xtrans/Xtranssock.c
|
||||
/usr/local/include/X11/Xtrans/Xtransutil.c
|
||||
/usr/local/include/X11/Xtrans/transport.c
|
||||
/usr/local/share/aclocal/xtrans.m4
|
||||
/usr/local/share/doc/xtrans/xtrans.xml
|
||||
/usr/local/share/pkgconfig/xtrans.pc
|
||||
File diff suppressed because it is too large
Load Diff
@@ -30,7 +30,7 @@
|
||||
/usr/local/lib64/libGLX_mesa.so
|
||||
/usr/local/lib64/libGLX_mesa.so.0
|
||||
/usr/local/lib64/libGLX_mesa.so.0.0.0
|
||||
/usr/local/lib64/libgallium-25.1.2.so
|
||||
/usr/local/lib64/libgallium-25.1.3.so
|
||||
/usr/local/lib64/libgbm.so
|
||||
/usr/local/lib64/libgbm.so.1
|
||||
/usr/local/lib64/libgbm.so.1.0.0
|
||||
|
||||
@@ -1,36 +1,29 @@
|
||||
require 'package'
|
||||
require 'buildsystems/meson'
|
||||
|
||||
class Libwacom < Package
|
||||
class Libwacom < Meson
|
||||
description 'libwacom is a wrapper library for evdev devices.'
|
||||
homepage 'https://github.com/linuxwacom/libwacom'
|
||||
version '1.12'
|
||||
version '2.16.1'
|
||||
license 'MIT'
|
||||
compatibility 'aarch64 armv7l x86_64'
|
||||
source_url 'https://github.com/linuxwacom/libwacom.git'
|
||||
git_hashtag "libwacom-#{version}"
|
||||
binary_compression 'tpxz'
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: 'f7c3aa3b6f959b942e83ac4906ec57e70d1af52db9d9896684a3be2451353f65',
|
||||
armv7l: 'f7c3aa3b6f959b942e83ac4906ec57e70d1af52db9d9896684a3be2451353f65',
|
||||
x86_64: '4ea8c93a5be266921a869d1aa39600bf19aec35a2481ed71415ee2c74ba8840a'
|
||||
aarch64: '30d4606dd3fe8a983451479a6094daea97f26df503b7d106dca57ac7c67e9670',
|
||||
armv7l: '30d4606dd3fe8a983451479a6094daea97f26df503b7d106dca57ac7c67e9670',
|
||||
x86_64: 'be1cfb9fa6642b601c0de5526a24098be60150071459357d2f69f9f27d62cdd8'
|
||||
})
|
||||
|
||||
depends_on 'libgudev'
|
||||
depends_on 'eudev'
|
||||
depends_on 'glib' # R
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'libevdev'
|
||||
depends_on 'libgudev'
|
||||
depends_on 'py3_libevdev' => :build
|
||||
depends_on 'py3_pyudev' => :build
|
||||
depends_on 'py3_pytest' => :build
|
||||
|
||||
def self.build
|
||||
system "meson setup #{CREW_MESON_OPTIONS} \
|
||||
-Dtests=disabled \
|
||||
builddir"
|
||||
system 'samu -C builddir'
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "DESTDIR=#{CREW_DEST_DIR} samu -C builddir install"
|
||||
end
|
||||
meson_options '-Dtests=disabled'
|
||||
end
|
||||
|
||||
@@ -1,28 +1,19 @@
|
||||
require 'package'
|
||||
require 'buildsystems/autotools'
|
||||
|
||||
class Libxtrans < Package
|
||||
description 'transpot library for the X window system'
|
||||
class Libxtrans < Autotools
|
||||
description 'transport library for the X window system'
|
||||
homepage 'https://x.org/wiki/'
|
||||
version '1.4.0'
|
||||
version '1.6.0'
|
||||
license 'custom'
|
||||
compatibility 'all'
|
||||
source_url 'https://www.x.org/archive/individual/lib/xtrans-1.4.0.tar.bz2'
|
||||
source_sha256 '377c4491593c417946efcd2c7600d1e62639f7a8bbca391887e2c4679807d773'
|
||||
binary_compression 'tar.xz'
|
||||
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxtrans.git'
|
||||
git_hashtag "xtrans-#{version}"
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '85980bd143e9f4e68fa5ce02ab684acf4c982b2ec1c187395136c286a46fb966',
|
||||
armv7l: '85980bd143e9f4e68fa5ce02ab684acf4c982b2ec1c187395136c286a46fb966',
|
||||
i686: '18c80adc947824ea4222f53d4790e1d01fb747c3c4086211c8902ef79d6d6f3b',
|
||||
x86_64: '71e27f8f9fd0f03bd71e10def7d1efb7b7ee0f453d2579dce5acbc43dc6dcaae'
|
||||
aarch64: 'f3367979fb252be087276d57c964fd02e2dd174ed33b9d2c0618c8ab1dcd908b',
|
||||
armv7l: 'f3367979fb252be087276d57c964fd02e2dd174ed33b9d2c0618c8ab1dcd908b',
|
||||
i686: 'e5e01cd320bdc3e1a37e6307dc0e637fadc750d558801076f9a39104e4f3a43c',
|
||||
x86_64: '860a1fa44f884f453c4de4cf40d0ad1ebb27c34421e2c66545ece78c6419535b'
|
||||
})
|
||||
|
||||
def self.build
|
||||
system "./configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
|
||||
system 'make'
|
||||
end
|
||||
|
||||
def self.install
|
||||
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
||||
end
|
||||
end
|
||||
|
||||
@@ -3,7 +3,7 @@ require 'buildsystems/meson'
|
||||
class Mesa < Meson
|
||||
description 'Open-source implementation of the OpenGL specification'
|
||||
homepage 'https://www.mesa3d.org'
|
||||
version "25.1.2-#{CREW_LLVM_VER}"
|
||||
version "25.1.3-#{CREW_LLVM_VER}"
|
||||
license 'MIT'
|
||||
compatibility 'aarch64 armv7l x86_64'
|
||||
source_url 'https://gitlab.freedesktop.org/mesa/mesa.git'
|
||||
@@ -11,9 +11,9 @@ class Mesa < Meson
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '46879446079df4aa8f95217b14695e2cee0341289057a25bc0c790f8b5af3a68',
|
||||
armv7l: '46879446079df4aa8f95217b14695e2cee0341289057a25bc0c790f8b5af3a68',
|
||||
x86_64: 'f84483c028f2b5aa02b60dea4bc69edca9310ba12d009dab11d159456c7f10a1'
|
||||
aarch64: '3ad0bdd62084c3a2b69f50d125bfd0d7f8b1d1eccb7ef66c8d5bc1812ac87546',
|
||||
armv7l: '3ad0bdd62084c3a2b69f50d125bfd0d7f8b1d1eccb7ef66c8d5bc1812ac87546',
|
||||
x86_64: '46b7ce9065d3ea6ef18136990a3808cc3a1f8f6b87c3a278097b1827179ae3b3'
|
||||
})
|
||||
|
||||
depends_on 'elfutils' # R
|
||||
|
||||
@@ -3,7 +3,7 @@ require 'package'
|
||||
class Xorg_server < Package
|
||||
description 'The Xorg Server is the core of the X Window system.'
|
||||
homepage 'https://www.x.org/wiki/'
|
||||
version '21.1.14'
|
||||
version '21.1.17'
|
||||
license 'BSD-3, MIT, BSD-4, MIT-with-advertising, ISC and custom'
|
||||
compatibility 'aarch64 armv7l x86_64'
|
||||
source_url 'https://gitlab.freedesktop.org/xorg/xserver.git'
|
||||
@@ -11,14 +11,15 @@ class Xorg_server < Package
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '09c2ecbe391a6d40b3f120024e5b5c4ec396ad86680c759f6cdfe9c0a730374a',
|
||||
armv7l: '09c2ecbe391a6d40b3f120024e5b5c4ec396ad86680c759f6cdfe9c0a730374a',
|
||||
x86_64: 'b86b5ebcb1fff6c2c2167a85374271f88c04b73bd5d6036abdc2976466a43e55'
|
||||
aarch64: '8a008bef4e1832e8f55b2ec81b861a841bae52744b98b392565af8e22951f0e3',
|
||||
armv7l: '8a008bef4e1832e8f55b2ec81b861a841bae52744b98b392565af8e22951f0e3',
|
||||
x86_64: '8bcc211cac01df61840dc5817ab23f0fbaf7a29e6fcd96d167c8a5f94a8f6d7f'
|
||||
})
|
||||
|
||||
depends_on 'dbus' # R
|
||||
depends_on 'eudev' # R
|
||||
depends_on 'font_util' => :build
|
||||
depends_on 'gcc_lib' # R
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'glproto' => :build
|
||||
depends_on 'graphite' => :build
|
||||
|
||||
@@ -3,7 +3,7 @@ require 'buildsystems/meson'
|
||||
class Xwayland < Meson
|
||||
description 'X server configured to work with weston or sommelier'
|
||||
homepage 'https://x.org/wiki/'
|
||||
version '24.1.4'
|
||||
version '24.1.7'
|
||||
license 'MIT-with-advertising, ISC, BSD-3, BSD and custom'
|
||||
compatibility 'aarch64 armv7l x86_64'
|
||||
source_url 'https://gitlab.freedesktop.org/xorg/xserver.git'
|
||||
@@ -11,9 +11,9 @@ class Xwayland < Meson
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: 'a4939fb6b205d76fa74b06042cde4715dd22f5abb4a6f1cf45b52b42a0324522',
|
||||
armv7l: 'a4939fb6b205d76fa74b06042cde4715dd22f5abb4a6f1cf45b52b42a0324522',
|
||||
x86_64: 'f069bb9b0ed77a16065d3e19d1845ff9366c779652c3103295c3fdeb05722b37'
|
||||
aarch64: '4c30a3ed6b09f07aa6c0b6cbba84fb74e46fd70c266f98f83526233da50a49ab',
|
||||
armv7l: '4c30a3ed6b09f07aa6c0b6cbba84fb74e46fd70c266f98f83526233da50a49ab',
|
||||
x86_64: '581df932a21ab099159f8d96ed7a0256f2ba637b8499beff6ef8682c7179f134'
|
||||
})
|
||||
|
||||
no_env_options
|
||||
|
||||
Reference in New Issue
Block a user