mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Pip updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add wheel upload capability to crew. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * reupload i686 binary of py3_twine Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add :in_install. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mention uri in uri download failed message. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Have gem maintenance use cleanup instead of pristine. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries for py3_importlib_metadata Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update scripts... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * dogfooding build_updated_packages script to make more updates... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More changes to use CREW_GITLAB_PKG_REPO. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes and tools updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Added a :prerelease property to buildsystems/pip because properties from package.rb are not seen by buildsystems/pip.rb Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update i686 hash Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update last hash Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
34 lines
1.2 KiB
Ruby
34 lines
1.2 KiB
Ruby
# Only a meson build creates the pkgconfig files needed for other builds.
|
|
require 'buildsystems/meson'
|
|
|
|
class Py3_pygobject < Meson
|
|
description 'PyGObject is a Python package which provides bindings for GObject based libraries such as GTK+, GStreamer, WebKitGTK+, GLib, GIO and many more.'
|
|
homepage 'https://pygobject.gnome.org/'
|
|
version '3.50.0-py3.12'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://gitlab.gnome.org/GNOME/pygobject.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '72cbf0f724ded24fad94328c4a1df9e3ba6521d6596674ebb7ba83dbb56fca55',
|
|
armv7l: '72cbf0f724ded24fad94328c4a1df9e3ba6521d6596674ebb7ba83dbb56fca55',
|
|
x86_64: 'f0cc97eae5d6f31fa8e638d1b5cc85bbb9ea493eb522f30c75d6cf3d62770d0c'
|
|
})
|
|
|
|
depends_on 'cairo' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gobject_introspection' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libffi' # R
|
|
depends_on 'py3_meson_python' => :build
|
|
depends_on 'py3_pycairo' => :build
|
|
depends_on 'python3' # R
|
|
depends_on 'wayland' => :build
|
|
|
|
meson_options '-Dtests=false'
|
|
end
|