View | Details | Raw Unified | Return to bug 229947 | Differences between
and this patch

Collapse All | Expand All

(-)devel/py-macholib/Makefile (+19 lines)
Line 0 Link Here
1
# $FreeBSD
2
3
PORTNAME=		macholib
4
PORTVERSION=		1.9
5
CATEGORIES=		devel python
6
7
MASTER_SITES=		CHEESESHOP
8
PKGNAMEPREFIX=		${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=		ndowens.fbsd@yandex.com
11
COMMENT=		Can be used to analyze and edit Mach-O headers
12
13
LICENSE=		MIT
14
LICENSE_FILE=		${WRKSRC}/LICENSE		
15
16
USES=			python
17
USE_PYTHON=		autoplist distutils
18
19
.include <bsd.port.mk>
(-)devel/py-macholib/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1532240419
2
SHA256 (macholib-1.9.tar.gz) = 9aeec52d7da59912b15445d08b08d95cee48414f01dd035be06f04a825973c08
3
SIZE (macholib-1.9.tar.gz) = 578425
(-)devel/py-macholib/pkg-descr (+11 lines)
Line 0 Link Here
1
macholib can be used to analyze and edit Mach-O headers, 
2
the executable format used by Mac OS X.
3
4
It’s typically used as a dependency analysis tool, and 
5
also to rewrite dylib references in Mach-O headers to be 
6
@executable_path relative.
7
8
Though this tool targets a platform specific file format, 
9
it is pure python code that is platform and endian independent.
10
11
WWW:https://pypi.org/project/macholib/

Return to bug 229947