svn commit: r490064 - in head/devel: . py-macholib

Martin Wilke miwi at FreeBSD.org
Sat Jan 12 16:53:42 UTC 2019


Author: miwi
Date: Sat Jan 12 16:53:40 2019
New Revision: 490064
URL: https://svnweb.freebsd.org/changeset/ports/490064

Log:
  Macholib can be used to analyze and edit Mach-O headers,
  the executable format used by Mac OS X.
  
  It is typically used as a dependency analysis tool, and
  also to rewrite dylib references in Mach-O headers to be
  @executable_path relative.
  
  Though this tool targets a platform specific file format,
  it is pure python code that is platform and endian independent.
  
  WWW: https://pypi.org/project/macholib/
  
  PR:		229947
  Submitted by:	ndowens at yahoo.com
  Sponsored by:	iXsystems Inc.

Added:
  head/devel/py-macholib/
  head/devel/py-macholib/Makefile   (contents, props changed)
  head/devel/py-macholib/distinfo   (contents, props changed)
  head/devel/py-macholib/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jan 12 16:36:16 2019	(r490063)
+++ head/devel/Makefile	Sat Jan 12 16:53:40 2019	(r490064)
@@ -4687,6 +4687,7 @@
     SUBDIR += py-logutils
     SUBDIR += py-louie
     SUBDIR += py-lxml
+    SUBDIR += py-macholib
     SUBDIR += py-magic
     SUBDIR += py-mailcap-fix
     SUBDIR += py-manuel

Added: head/devel/py-macholib/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-macholib/Makefile	Sat Jan 12 16:53:40 2019	(r490064)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	macholib
+PORTVERSION=	1.11
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ndowens at yahoo.com
+COMMENT=	Used to analyze and edit Mach-O headers
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-macholib/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-macholib/distinfo	Sat Jan 12 16:53:40 2019	(r490064)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1537579840
+SHA256 (macholib-1.11.tar.gz) = c4180ffc6f909bf8db6cd81cff4b6f601d575568f4d5dee148c830e9851eb9db
+SIZE (macholib-1.11.tar.gz) = 485878

Added: head/devel/py-macholib/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-macholib/pkg-descr	Sat Jan 12 16:53:40 2019	(r490064)
@@ -0,0 +1,11 @@
+Macholib can be used to analyze and edit Mach-O headers, 
+the executable format used by Mac OS X.
+
+It is typically used as a dependency analysis tool, and 
+also to rewrite dylib references in Mach-O headers to be 
+ at executable_path relative.
+
+Though this tool targets a platform specific file format, 
+it is pure python code that is platform and endian independent.
+
+WWW: https://pypi.org/project/macholib/


More information about the svn-ports-head mailing list