mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt py3_wcwidth to updater-py3_wcwidth-0.2.14 * updater-py3_wcwidth-0.2.14: Package File Update Run on linux/386 container. * updater-py3_wcwidth-0.2.14: Package File Update Run on linux/amd64 container. * updater-py3_wcwidth-0.2.14: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
714 B
Ruby
23 lines
714 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_wcwidth < Pip
|
|
description 'WCWidth measures the displayed width of unicode strings in a terminal.'
|
|
homepage 'https://github.com/jquast/wcwidth/'
|
|
version "0.2.14-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '482742f86105570a3eaf55fd95e2eb0c339a7a9dd426debf4ebb9949c897b7bc',
|
|
armv7l: '482742f86105570a3eaf55fd95e2eb0c339a7a9dd426debf4ebb9949c897b7bc',
|
|
i686: 'f0f506d633f2ecf9da3cf6cc612dfb1d3cc3f84eddd798b10723fa3e0ee6c7c7',
|
|
x86_64: '1dd02d1e00a9e81c196869b3f8b784678f2ee08a93903eedaa19c029e7e27b3d'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|