mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt py3_filelock to updater-py3_filelock-3.20.1-py3.14 * updater-py3_filelock-3.20.1-py3.14: Package File Update Run on linux/386 container. * updater-py3_filelock-3.20.1-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_filelock-3.20.1-py3.14: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
727 B
Ruby
23 lines
727 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_filelock < Pip
|
|
description 'FileLock implements a platform independent file lock in Python.'
|
|
homepage 'https://github.com/benediktschmitt/py-filelock/'
|
|
version "3.20.1-#{CREW_PY_VER}"
|
|
license 'Unlicense'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '198d235b60c191ff4d4c7e9e8ea8205188b6f5d63161a2282f21e098afac52ad',
|
|
armv7l: '198d235b60c191ff4d4c7e9e8ea8205188b6f5d63161a2282f21e098afac52ad',
|
|
i686: '1ed762438a26a4f267d0dc4fb6f1f219ed746824d14546a130393fee124db932',
|
|
x86_64: '2700f73909967c5a50fd60239e1810f1ca300b30a2e5a5678338426d9bdcb5b8'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|