Commits
Joshua Root authored fd7faa24ab3
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-macholib |
7 - | version 1.10 |
7 + | version 1.11 |
8 8 | categories-append devel |
9 9 | license MIT |
10 10 | maintainers {jmr @jmroot} openmaintainer |
11 11 | description Mach-O header analysis and editing |
12 12 | long_description \ |
13 13 | macholib can be used to analyze and edit Mach-O headers, the executable \ |
14 14 | format used by Mac OS X. \ |
15 15 | It is typically used as a dependency analysis tool, and also to rewrite \ |
16 16 | dylib references in Mach-O headers to be @executable_path relative. \ |
17 17 | Though this tool targets a platform specific file format, it is pure \ |
18 18 | python code that is platform and endian independent. |
19 19 | |
20 20 | platforms darwin |
21 21 | supported_archs noarch |
22 22 | |
23 23 | homepage http://undefined.org/python/#macholib |
24 24 | master_sites pypi:m/macholib/ |
25 25 | distname macholib-${version} |
26 26 | |
27 - | checksums rmd160 1569abb24f211fb778ebcae82bbc685ed7f71c06 \ |
28 - | sha256 9485686b89d357f4a99fda5a12349b261ecf2baedd526d2c9b6397167a507e90 |
27 + | checksums rmd160 968f0799f8fd8fa13747cb3a4735b370bdefcb5a \ |
28 + | sha256 c4180ffc6f909bf8db6cd81cff4b6f601d575568f4d5dee148c830e9851eb9db |
29 29 | |
30 30 | python.versions 27 33 34 35 36 37 |
31 31 | |
32 32 | if {$subport ne $name} { |
33 33 | depends_lib port:py${python.version}-modulegraph |
34 34 | livecheck.type none |
35 35 | } |