From owner-svn-ports-all@freebsd.org Tue Feb 18 20:18:28 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7254D24521F; Tue, 18 Feb 2020 20:18:28 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48MXH739bGz4HR2; Tue, 18 Feb 2020 20:18:27 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 21262257A0; Tue, 18 Feb 2020 20:18:27 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01IKIQkX032305; Tue, 18 Feb 2020 20:18:26 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01IKIQDu032300; Tue, 18 Feb 2020 20:18:26 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202002182018.01IKIQDu032300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Tue, 18 Feb 2020 20:18:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526473 - in head/devel: . py-filebytes X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/devel: . py-filebytes X-SVN-Commit-Revision: 526473 X-SVN-Commit-Repository: ports 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.29 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: Tue, 18 Feb 2020 20:18:28 -0000 Author: 0mp Date: Tue Feb 18 20:18:26 2020 New Revision: 526473 URL: https://svnweb.freebsd.org/changeset/ports/526473 Log: New port: devel/py-filebytes: Library to read and edit ELF, PE, Mach-O and OAT This is a dependency for required for Ropper. Added: head/devel/py-filebytes/ head/devel/py-filebytes/Makefile (contents, props changed) head/devel/py-filebytes/distinfo (contents, props changed) head/devel/py-filebytes/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Feb 18 19:58:31 2020 (r526472) +++ head/devel/Makefile Tue Feb 18 20:18:26 2020 (r526473) @@ -4354,6 +4354,7 @@ SUBDIR += py-fastimport SUBDIR += py-fastnumbers SUBDIR += py-fbprophet + SUBDIR += py-filebytes SUBDIR += py-filemagic SUBDIR += py-first SUBDIR += py-five.formlib Added: head/devel/py-filebytes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-filebytes/Makefile Tue Feb 18 20:18:26 2020 (r526473) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= filebytes +DISTVERSION= 0.10.2 +CATEGORIES= devel python security +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Library to read and edit ELF, PE, Mach-O and OAT + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-filebytes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-filebytes/distinfo Tue Feb 18 20:18:26 2020 (r526473) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582056509 +SHA256 (filebytes-0.10.2.tar.gz) = 764202f74d79e7587f04b6ad46f7c50485d8f32c4aeddd02200f1651a0892741 +SIZE (filebytes-0.10.2.tar.gz) = 20358 Added: head/devel/py-filebytes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-filebytes/pkg-descr Tue Feb 18 20:18:26 2020 (r526473) @@ -0,0 +1,8 @@ +Python classes/types to read and edit the following file formats: + +- Executable and Linking Format (ELF), +- Portable Executable (PE) and +- MachO +- OAT (Android Runtime) + +WWW: https://scoding.de/filebytes-introduction/