mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-11 08:28:01 -05:00
* Rearrange python2 and 3, seperate pip * rename python27 => python2 * merge master into pip * touch up * make old setuptools package fake * lib/const.rb: bump version * Fix py2_setuptools * Add runtime dependencies to python2 * reorder depends * python2 minor change * packages/setuptools.rb: Fix ugly version * Add binaries Co-authored-by: satmandu <satadru@umich.edu> Co-authored-by: satmandu <satadru@gmail.com>
14 lines
217 B
Ruby
14 lines
217 B
Ruby
require 'package'
|
|
|
|
class Python27 < Package
|
|
description 'A compatibility package for python2.'
|
|
homepage 'https://www.python.org/'
|
|
version '2.7.18-1'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'python2'
|
|
|
|
end
|