wxwidgets & filezilla rebuild & omnibus update (#8761)

* update dav1d, libfilezilla

* update libavif

* rebuild libheif with newer dav1d

* rebuild ffmpeg with newer dav1d

* update libva

* update deps

* update deps

* add some x86_64 builds

* fixes

* cleanup deps

* cleanup deps

* update deps pulling in gtk2

* adjust deps for itstool

* pipewire update to 0.3.81

* add pipewire manifests

* add x86_64 binaries

* add x86_64 binaries

* security fix for libcue

* add arm binary

* add arm binaries

* add filezilla binaries

* revert webkit changes without arm builds and leave those for future PR once those builds are complete
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2023-10-10 12:54:11 -04:00
committed by GitHub
parent cc010d461f
commit 49377ca1e4
54 changed files with 611 additions and 2439 deletions

View File

@@ -3,36 +3,48 @@ require 'package'
class Filezilla < Package
description 'FileZilla Client is a free FTP solution.'
homepage 'https://filezilla-project.org/'
version '3.65.0'
version '3.65.0-1'
license 'GPL-2'
compatibility 'aarch64,armv7l,x86_64'
compatibility 'x86_64 aarch64 armv7l'
source_url 'https://download.filezilla-project.org/client/FileZilla_3.65.0_src.tar.xz'
source_sha256 'd2bce4dbaa80fe035836db19441e90befcbabdef5556e9a4b3d4dd233638bdea'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/filezilla/3.65.0_armv7l/filezilla-3.65.0-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/filezilla/3.65.0_armv7l/filezilla-3.65.0-chromeos-armv7l.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/filezilla/3.65.0_x86_64/filezilla-3.65.0-chromeos-x86_64.tar.zst'
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/filezilla/3.65.0-1_armv7l/filezilla-3.65.0-1-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/filezilla/3.65.0-1_armv7l/filezilla-3.65.0-1-chromeos-armv7l.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/filezilla/3.65.0-1_x86_64/filezilla-3.65.0-1-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: 'f49b082757566af7af6e8ba163646e92c3e34eaf24805ee1714734781888f820',
armv7l: 'f49b082757566af7af6e8ba163646e92c3e34eaf24805ee1714734781888f820',
x86_64: '410919de0ec45804e14177d0f79f754d469b66b95e62ac87e787852cb7b4d123'
aarch64: '352fdaf2d1c2d6fd7f3487dd3650a75b6695a046b8cf14b5d5fe15f54c01b14f',
armv7l: '352fdaf2d1c2d6fd7f3487dd3650a75b6695a046b8cf14b5d5fe15f54c01b14f',
x86_64: '5f5276b73062447835af8cdc05a2e36c7f570ef3256f648389590034b796533a'
})
depends_on 'boost'
depends_on 'dbus'
depends_on 'gnome_icon_theme'
depends_on 'hicolor_icon_theme'
depends_on 'libfilezilla'
depends_on 'libidn2'
depends_on 'sqlite'
depends_on 'wxwidgets30'
depends_on 'xdg_utils'
depends_on 'libwebp'
depends_on 'wayland_protocols'
depends_on 'mesa'
depends_on 'xcb_util'
depends_on 'at_spi2_core' # R
depends_on 'boost' => :build
depends_on 'cairo' # R
depends_on 'dbus' # R
depends_on 'gcc_lib' # R
depends_on 'gdk_pixbuf' # R
depends_on 'glibc' # R
depends_on 'glib' # R
depends_on 'gnome_icon_theme' # L
depends_on 'gtk3' # R
depends_on 'harfbuzz' # R
depends_on 'hicolor_icon_theme' # L
depends_on 'libfilezilla' # L
depends_on 'libidn2' => :build
depends_on 'libwebp' => :build
depends_on 'mesa' => :build
depends_on 'nettle' # R
depends_on 'pango' # R
depends_on 'sqlite' => :build
depends_on 'sqlite' # R
depends_on 'wayland_protocols' => :build
depends_on 'wxwidgets' # R
depends_on 'xcb_util' => :build
depends_on 'xdg_utils' => :build
depends_on 'zlibpkg' # R
def self.patch
system 'filefix'
@@ -45,9 +57,9 @@ class Filezilla < Package
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
File.write 'filezilla', <<~EOF
File.write 'filezilla', <<~FILEZILLA_EOF
alias filezilla="WAYLAND_DISPLAY=wayland-0 DISPLAY='' GDK_BACKEND=wayland filezilla"
EOF
FILEZILLA_EOF
FileUtils.install 'filezilla', "#{CREW_DEST_PREFIX}/etc/env.d/10-filezilla", mode: 0o644
end