mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* add gpp, update qemu Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add homepage, add lzfse Signed-off-by: Satadru Pramanik <satadru@gmail.com> * rebuild gpp, qemu Signed-off-by: Satadru Pramanik <satadru@gmail.com> * suggested changes Signed-off-by: Satadru Pramanik <satadru@gmail.com> * fixup Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
16 lines
327 B
Ruby
16 lines
327 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_idna < Pip
|
|
description 'IDNA provides internationalized domain names for Python.'
|
|
homepage 'https://github.com/kjd/idna/'
|
|
@_ver = '3.7'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|