From owner-svn-ports-all@FreeBSD.ORG Fri May 9 15:53:57 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A31D1E8; Fri, 9 May 2014 15:53:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D70834B; Fri, 9 May 2014 15:53:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s49Frvbq027077; Fri, 9 May 2014 15:53:57 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s49Fruta027070; Fri, 9 May 2014 15:53:56 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201405091553.s49Fruta027070@svn.freebsd.org> From: Antoine Brodin Date: Fri, 9 May 2014 15:53:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353470 - in head/devel: . py-pyelftools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 15:53:57 -0000 Author: antoine Date: Fri May 9 15:53:56 2014 New Revision: 353470 URL: http://svnweb.freebsd.org/changeset/ports/353470 QAT: https://qat.redports.org/buildarchive/r353470/ Log: New port: devel/py-pyelftools pyelftools is a pure-Python library for parsing and analyzing ELF files and DWARF debugging information WWW: https://github.com/eliben/pyelftools Added: head/devel/py-pyelftools/ head/devel/py-pyelftools/Makefile (contents, props changed) head/devel/py-pyelftools/distinfo (contents, props changed) head/devel/py-pyelftools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 9 15:42:29 2014 (r353469) +++ head/devel/Makefile Fri May 9 15:53:56 2014 (r353470) @@ -3749,6 +3749,7 @@ SUBDIR += py-pycparser SUBDIR += py-pydasm SUBDIR += py-pyechonest + SUBDIR += py-pyelftools SUBDIR += py-pyev SUBDIR += py-pyflakes SUBDIR += py-pygit2 Added: head/devel/py-pyelftools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyelftools/Makefile Fri May 9 15:53:56 2014 (r353470) @@ -0,0 +1,28 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= pyelftools +PORTVERSION= 0.22 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library for analyzing ELF files and DWARF debugging information + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +PORTEXAMPLES= * + +OPTIONS_DEFINE= EXAMPLES + +post-install: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/devel/py-pyelftools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyelftools/distinfo Fri May 9 15:53:56 2014 (r353470) @@ -0,0 +1,2 @@ +SHA256 (pyelftools-0.22.tar.gz) = 9f7dd617b8a577a3834e7dd7f34f49df21c0670e67a48b21add19abe1adffb60 +SIZE (pyelftools-0.22.tar.gz) = 395525 Added: head/devel/py-pyelftools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyelftools/pkg-descr Fri May 9 15:53:56 2014 (r353470) @@ -0,0 +1,4 @@ +pyelftools is a pure-Python library for parsing and analyzing ELF files +and DWARF debugging information + +WWW: https://github.com/eliben/pyelftools