Gnome43/Libjpeg_turbo/ICU72.1 (#7508)

* crew: cache builds

* Initial Gnome43/Libjpeg_turbo/ICU72 commits squashed

* fix lint error

* update packages.yaml

* Vulkan packages -> 1.3.231

* add packages to packages.yaml

* add more to packages.yaml

* update libxshmfence

* pixman -> 0.42.0

* libpciaccess -> 0.17.0

* update libxau

* update libxfont2

* update libxcb

* many updates

* updates

* baobab updates

* add libshumate

* update gnome_calculator

* update dfonf_editor

* update evince

* add libpanel

* update libpeas

* update libgweather

* update libgudev gnome_maps

* update upower and libxfixes

* style update

* update gnome_session

* update gnome_settings_daemon

* temporary partial webkit2gtk upload

* update packages.yaml

* fix ruby file perms

* update folks

* move webkit2gtk_4 back to 2.38.0

* update icu4c, change webkit2gtk build

* add updated webkit2gtk_5 file

* update js102

* add x86 builds for webkit2gtk_4

* add mozjs exclusion to icu4c postinstall

* add builds for evolution_data_server

* update gemacs

* update webkit2gtk packages

* update emacs

* add folks fix

* loosen icu4c postinstall check

* rebuild libportal with gtk3

* update epiphany

* openssh -> 9.1

* add x86 webkit2gtk_4 binaries

* add postinstall to webkit2gtk_4

* update svt_av1

* update libavif

* linting fix

* curl -> 7.86.0

* git -> 2.38.1

* add postinstall to gnome_console

* add gcc10 for armv7l

* add gcc10 binaries

* lint gcc10

* rebase fix

* Add WIP webkit2gtk builds

* add back postintall to gnome_maps

* gstreamer version change

* cleanup geocode_glib, and fix gnome_maps depend

* s/@_ver.to_s/@_ver/

* add mpv build and gtk4 -> 4.8.2

* bump curl version to 7.86.0

* remove other version binaries from webkit2gtk builds

* add i686 build

* adjust compatibility for gemacs... for now.

* Add code to sommelier to adjust for whether scripts are sourced or run.

* make -> 4.4

* bump version
This commit is contained in:
Satadru Pramanik
2022-11-01 13:23:38 -04:00
committed by GitHub
parent 38021ef867
commit 194b87b188
199 changed files with 5069 additions and 2479 deletions

43
packages/seatd.rb Normal file
View File

@@ -0,0 +1,43 @@
# Adapted from Arch Linux seatd PKGBUILD at:
# https://github.com/archlinux/svntogit-community/raw/packages/seatd/trunk/PKGBUILD
require 'package'
class Seatd < Package
description 'A minimal seat management daemon, and a universal seat management library'
homepage 'https://sr.ht/~kennylevinsen/seatd/'
version '0.7.0'
license 'MIT'
compatibility 'x86_64 armv7l aarch64'
source_url 'https://git.sr.ht/~kennylevinsen/seatd/archive/0.7.0.tar.gz'
source_sha256 '210ddf8efa1149cde4dd35908bef8e9e63c2edaa0cdb5435f2e6db277fafff3c'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/seatd/0.7.0_armv7l/seatd-0.7.0-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/seatd/0.7.0_armv7l/seatd-0.7.0-chromeos-armv7l.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/seatd/0.7.0_x86_64/seatd-0.7.0-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: 'd2517776467070422094fb45abb5e10505b3180b45f913bae61ea016201ce14a',
armv7l: 'd2517776467070422094fb45abb5e10505b3180b45f913bae61ea016201ce14a',
x86_64: '52baaf5104897a144e2fe4e83057a5ed6ad1b0aa5e471c66cf1945eb7c4be18a'
})
depends_on 'glibc' # R
def self.build
system "meson #{CREW_MESON_OPTIONS} \
-Dlibseat-logind=disabled \
-Dlibseat-seatd=enabled \
-Dlibseat-builtin=enabled \
-Dexamples=disabled \
-Dserver=enabled \
builddir"
system 'meson configure builddir'
system 'ninja -C builddir'
end
def self.install
system "DESTDIR=#{CREW_DEST_DIR} ninja install -C builddir"
end
end