mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
* Add unbuilt updated pip packages to updates-2025-05-30-00-21 * Adjust build workflow to avoid dond. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-05-30-00-21 * Add built packages for linux/amd64 to updates-2025-05-30-00-21 * Add built packages for linux/arm/v7 to updates-2025-05-30-00-21 * Move workflows to the M136 container images. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
23 lines
707 B
Ruby
23 lines
707 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_libevdev < Pip
|
|
description 'Libevdev is a Python wrapper around the libevdev C library.'
|
|
homepage 'https://python-libevdev.readthedocs.io/'
|
|
version "0.12-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '24d0374f29bf7ee310ec0a02e2a00b862899911e8d4c054d477db3cd9b3ed59e',
|
|
armv7l: '24d0374f29bf7ee310ec0a02e2a00b862899911e8d4c054d477db3cd9b3ed59e',
|
|
i686: '954789cc502589668460813e32da86b9b4a57bfe991d73dc4fd46e1033976253',
|
|
x86_64: '26c8dbcf65e3fea19203a2b1f9bba5ffa93e5c037b09a1afd20500348212775d'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|