# -*- 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-dill version 0.3.1.1 revision 0 platforms darwin supported_archs noarch license BSD maintainers {petr @petrrr} openmaintainer description serialize all of python extends python's pickle module long_description \ dill extends python's pickle module for serializing and de-serializing \ python objects to the majority of the built-in python types. It provides \ the user the same interface as the pickle module, and also includes some \ additional features. In addition to pickling python objects, dill \ provides the ability to save the state of an interpreter session in a \ single command. homepage https://github.com/uqfoundation/dill distname ${python.rootname}-${version} master_sites pypi:[string index ${python.rootname} 0]/${python.rootname}/ checksums rmd160 5a41ea4d418625373da7f21d2741c13b2f36b574 \ sha256 42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c \ size 151986 python.versions 27 35 36 37 38 if {${name} ne ${subport}} { depends_build-append \ port:py${python.version}-setuptools depends_test-append \ port:py${python.version}-pytest test.run yes test.dir ${build.dir}/tests test.cmd ${python.bin} __main__.py test.target test.env PYTHONPATH=${worksrcpath}/build/lib post-destroot { set docdir ${prefix}/share/doc/${subport} xinstall -d ${destroot}${docdir} xinstall -m 0644 -W ${worksrcpath} LICENSE README README.md \ ${destroot}${docdir} } livecheck.type none }