Advertisement
fspkwon

portfile for py-anytree

Jan 16th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. # -*- 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
  2.  
  3. PortSystem 1.0
  4. PortGroup python 1.0
  5.  
  6. name py-anytree
  7. version 2.12.1
  8. revision 0
  9.  
  10. categories-append devel
  11. supported_archs noarch
  12. platforms {darwin any}
  13. license MIT
  14. maintainers nomaintainer
  15.  
  16. description Python tree data library
  17. long_description {*}${description}
  18.  
  19. homepage https://github.com/c0fec0de/anytree
  20.  
  21. checksums rmd160 0223dc2c96bdd3773e957daa69ca60dd6729f970 \
  22. sha256 244def434ccf31b668ed282954e5d315b4e066c4940b94aff4a7962d85947830 \
  23. size 31110
  24.  
  25. python.versions 39 310 311 312
  26.  
  27. python.pep517_backend poetry
  28.  
  29. if {${name} ne ${subport}} {
  30. depends_lib-append \
  31. port:py${python.version}-six
  32.  
  33. post-destroot {
  34. set docdir ${prefix}/share/doc/${subport}
  35. xinstall -d ${destroot}${docdir}
  36. xinstall -m 0644 -W ${worksrcpath} README.rst \
  37. LICENSE ${destroot}${docdir}
  38. }
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement