mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* py3_identify -> 2.6.18-py3.14 in updater-py3_identify-2.6.18-py3.14 * Mark packages from successful builds as automatically buildable. * updater-py3_identify-2.6.18-py3.14: Package File Update Run on linux/386 container. * updater-py3_identify-2.6.18-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_identify-2.6.18-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>
15 lines
311 B
Ruby
15 lines
311 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_identify < Pip
|
|
description 'File identification library for Python'
|
|
homepage 'https://github.com/pre-commit/identify'
|
|
version "2.6.18-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|