You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
9cbbf73b0f
- add checksums - enable tests - add noarch
49 lines
1.6 KiB
Tcl
49 lines
1.6 KiB
Tcl
# -*- 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
|
|
|
|
name py-pdbpp
|
|
version 0.10.2
|
|
revision 1
|
|
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license BSD
|
|
maintainers nomaintainer
|
|
|
|
description pdb++, a drop-in replacement for pdb
|
|
long_description This module is an extension of the pdb module of the standard library. \
|
|
It is meant to be fully compatible with its predecessor, \
|
|
yet it introduces a number of new features \
|
|
to make your debugging experience as nice as possible.
|
|
|
|
homepage https://github.com/pdbpp/pdbpp
|
|
|
|
checksums rmd160 065b1e7e92ff2b461af73ad3ec0e4ca42612cfd8 \
|
|
sha256 73ff220d5006e0ecdc3e2705d8328d8aa5ac27fef95cc06f6e42cd7d22d55eb8 \
|
|
size 62282
|
|
|
|
python.versions 37 38
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools_scm
|
|
|
|
depends_build-append \
|
|
port:py${python.version}-fancycompleter \
|
|
port:py${python.version}-pygments \
|
|
port:py${python.version}-wmctrl
|
|
|
|
depends_test-append \
|
|
port:py${python.version}-funcsigs \
|
|
port:py${python.version}-pytest
|
|
|
|
test.run yes
|
|
test.cmd py.test-${python.branch}
|
|
test.target
|
|
test.env PYTHONPATH=${worksrcpath}/build/lib
|
|
|
|
livecheck.type none
|
|
}
|