mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Adjust const.rb and packages to use generated version constants. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gem binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update update scripts. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Libxml2 => 2.13.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust install.sh to handle new gem package versioning suffix. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update openimageio Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update py3_ruff Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add pip binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Move activesupport gem behind requre_gem function. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust file path in ruby_pry. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.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.11-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '470df0ac923fa97e48c1f093c2aeaf3aac580e609d81efb8fdf24392940e04c3',
|
|
armv7l: '470df0ac923fa97e48c1f093c2aeaf3aac580e609d81efb8fdf24392940e04c3',
|
|
i686: '4fdd75f9fb347dd62af96879dded6e49a4329880a922684ae388981efacf60d0',
|
|
x86_64: '46ee7235b348f7d168ad7f521b7211e1d33c4a778d642336cd5977fc17d69cd2'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|