Files
chromebrew/packages/py3_dbus_python.rb
Maximilian Downey Twiss eb14c41653 Remove compatibility from packages with incompatible dependencies (#9458)
* Remove i686 compatibility from packages with dependencies incompatible with i686

* Remove armv7l compatibility from packages with dependencies incompatible with arvm7l

* Abort builds/installs if the package has incompatible dependencies
2024-03-11 13:09:12 -04:00

20 lines
477 B
Ruby

require 'buildsystems/pip'
class Py3_dbus_python < Pip
description 'libdbus language binding (wrapper) for CPython'
homepage 'https://gitlab.freedesktop.org/dbus/dbus-python'
@_ver = '1.2.18'
version "#{@_ver}-py3.12"
license 'MIT'
compatibility 'x86_64 aarch64 armv7l'
source_url 'SKIP'
depends_on 'autoconf_archive' => :build
depends_on 'dbus' # R
depends_on 'glibc' # R
depends_on 'glib' # R
depends_on 'python3' => :build
no_compile_needed
end