Files
chromebrew/packages/py3_atspi.rb
Satadru Pramanik, DO, MPH, MEng 1c3167abb5 py3_updates — py3_atspi (#12335)
* atspi => 2.57.0

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* py3_updates: Build Run on linux/arm/v7.

* py3_updates: Build Run on linux/amd64.

* py3_updates: Package File Update Run on linux/amd64 container.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2025-08-04 17:52:27 +00:00

26 lines
904 B
Ruby

# Adapted from Arch Linux pyatspi PKGBUILD at:
# https://github.com/archlinux/svntogit-packages/raw/packages/pyatspi/trunk/PKGBUILD
require 'buildsystems/meson'
class Py3_atspi < Meson
description 'Python bindings for D-Bus AT-SPI'
homepage 'https://wiki.linuxfoundation.org/accessibility/atk/at-spi/at-spi_on_d-bus'
version "2.57.0-#{CREW_PY_VER}"
license 'GPL2'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://gitlab.gnome.org/GNOME/pyatspi2.git'
git_hashtag version.split('-').first
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'f703b5998188de9a3bbbc0a7d18980e25248ebf91d192704f1e3b1fabdccc196',
armv7l: 'f703b5998188de9a3bbbc0a7d18980e25248ebf91d192704f1e3b1fabdccc196',
x86_64: '1083d20bc9c59e3b4e103d237399fd4beae866f49f589b5f2eecbec03ed47c16'
})
depends_on 'py3_pygobject'
depends_on 'at_spi2_core'
depends_on 'python3' => :build
end