mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Adjust sed logic and update i686 hashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to sed * Add built packages for linux/arm/v7 to sed --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
15 lines
391 B
Ruby
15 lines
391 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_smartypants < Pip
|
|
description 'Smartypants translates plain ASCII punctuation characters into "smart" typographic punctuation HTML entities.'
|
|
homepage 'https://github.com/leohemsted/smartypants.py/'
|
|
version "2.0.2-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|