Files

63 lines
2.4 KiB
Tcl
Raw Permalink Normal View History

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup python 1.0
PortGroup select 1.0
2016-05-26 18:15:03 +00:00
PortGroup github 1.0
2019-11-25 12:08:15 -05:00
github.setup bpython bpython 0.18 "" -release
2016-05-26 18:15:03 +00:00
name py-${name}
2019-11-25 12:08:15 -05:00
revision 0
platforms darwin
supported_archs noarch
maintainers {aronnax @lpsinger} openmaintainer
2012-11-30 22:04:57 +00:00
license MIT
description fancy interface to the Python interpreter
long_description a fancy interface to the Python interpreter for \
Unix-like operating systems
2018-03-25 19:05:24 -05:00
homepage https://www.bpython-interpreter.org
2019-11-25 12:08:15 -05:00
checksums rmd160 acf93ffbe983cb522fac59eb23861c81bf0acb6e \
sha256 eae3fd5c722cecfa002edfa27374a96004a1b6efa8015c991da995c0a3595da2 \
size 204788
2019-11-25 12:08:15 -05:00
python.versions 27 35 36 37
if {${name} ne ${subport}} {
livecheck.type none
2016-10-15 15:30:23 +00:00
depends_lib-append port:py${python.version}-curtsies \
2015-12-02 19:51:39 +00:00
port:py${python.version}-greenlet \
port:py${python.version}-parsing \
port:py${python.version}-pygments \
2015-12-02 19:51:39 +00:00
port:py${python.version}-requests \
port:py${python.version}-setuptools \
port:py${python.version}-six
2016-10-15 15:30:23 +00:00
depends_build-append port:py${python.version}-babel \
port:py${python.version}-sphinx
2016-10-15 15:30:23 +00:00
depends_run-append port:py${python.version}-jedi \
port:py${python.version}-urwid \
port:py${python.version}-watchdog \
port:bpython_select
select.group bpython
select.file ${filespath}/bpython${python.version}
2019-11-25 12:08:15 -05:00
post-destroot {
set themedir ${destroot}${python.prefix}/share/themes
xinstall -d ${themedir}
xinstall -W ${worksrcpath} sample.theme light.theme \
${themedir}
}
notes "
To make the Python ${python.branch} version of bpython the one that is run\
when you execute the commands without a version suffix, e.g. 'bpython', run:
port select --set ${select.group} [file tail ${select.file}]
"
}