From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Nov 29 23:20:11 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D3621065672 for ; Mon, 29 Nov 2010 23:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5BAC48FC12 for ; Mon, 29 Nov 2010 23:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oATNKBNV021123 for ; Mon, 29 Nov 2010 23:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oATNKBEp021122; Mon, 29 Nov 2010 23:20:11 GMT (envelope-from gnats) Resent-Date: Mon, 29 Nov 2010 23:20:11 GMT Resent-Message-Id: <201011292320.oATNKBEp021122@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sofian Brabez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6881106564A for ; Mon, 29 Nov 2010 23:13:36 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 6BA5D8FC14 for ; Mon, 29 Nov 2010 23:13:36 +0000 (UTC) Received: by wwf26 with SMTP id 26so821356wwf.31 for ; Mon, 29 Nov 2010 15:13:35 -0800 (PST) Received: by 10.227.146.149 with SMTP id h21mr6777395wbv.139.1291072414354; Mon, 29 Nov 2010 15:13:34 -0800 (PST) Received: from localhost (mna75-2-81-57-226-6.fbx.proxad.net [81.57.226.6]) by mx.google.com with ESMTPS id m10sm757982wbc.4.2010.11.29.15.13.33 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 29 Nov 2010 15:13:33 -0800 (PST) Message-Id: <4cf4339d.8a1ce30a.3b09.47b8@mx.google.com> Date: Mon, 29 Nov 2010 15:13:33 -0800 (PST) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/152690: New port: devel/py26-bitstring: Simple construction, analysis and modification of binary data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 23:20:11 -0000 >Number: 152690 >Category: ports >Synopsis: New port: devel/py26-bitstring: Simple construction, analysis and modification of binary data >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 29 23:20:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd81 8.1-STABLE FreeBSD 8.1-STABLE #1: Tue Aug 31 22:46:46 CEST 2010 >Description: bitstring is a pure Python module designed to help make the creation and analysis of binary data as simple and natural as possible. BitStrings can be constructed from integers (big and little endian), hex, octal, binary, strings or files. They can be sliced, joined, reversed, inserted into, overwritten, etc. with simple functions or slice notation. They can also be read from, searched and replaced, and navigated in, similar to a file or stream. bitstring is open source software, and has been released under the MIT licence. WWW: http://pypi.python.org/pypi/bitstring Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py26-bitstring-2.0.3.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-bitstring # py-bitstring/Makefile # py-bitstring/pkg-descr # py-bitstring/distinfo # echo c - py-bitstring mkdir -p py-bitstring > /dev/null 2>&1 echo x - py-bitstring/Makefile sed 's/^X//' >py-bitstring/Makefile << 'e848f4ba5a9fcc56a0d4daefbcd59819' X# New ports collection makefile for: py-bitstring X# Date created: 2010-11-29 X# Whom: Sofian Brabez X# X# $FreeBSD$ X# X XPORTNAME= bitstring XPORTVERSION= 2.0.3 XCATEGORIES= devel python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= sbrabez@gmail.com XCOMMENT= Simple construction, analysis and modification of binary data X XUSE_PYTHON= 2.6+ XUSE_PYDISTUTILS= yes XUSE_ZIP= yes X XPLIST_FILES= %%PYTHON_SITELIBDIR%%/${PORTNAME}.py \ X %%PYTHON_SITELIBDIR%%/${PORTNAME}.pyc \ X %%PYTHON_SITELIBDIR%%/${PORTNAME}.pyo X XDOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} X XPORTDOCS= PKG-INFO README.txt release_notes.txt X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} X.endif X Xregression-test: X @(cd ${WRKSRC}/test && ${PYTHON_CMD} test_${PORTNAME}.py) X X.include e848f4ba5a9fcc56a0d4daefbcd59819 echo x - py-bitstring/pkg-descr sed 's/^X//' >py-bitstring/pkg-descr << '066f44db1eeddb075f00e6d2238bcae8' Xbitstring is a pure Python module designed to help make the creation and Xanalysis of binary data as simple and natural as possible. X XBitStrings can be constructed from integers (big and little endian), hex, octal, Xbinary, strings or files. They can be sliced, joined, reversed, inserted into, Xoverwritten, etc. with simple functions or slice notation. They can also be Xread from, searched and replaced, and navigated in, similar to a file or stream. X Xbitstring is open source software, and has been released under the MIT licence. X XWWW: http://pypi.python.org/pypi/bitstring 066f44db1eeddb075f00e6d2238bcae8 echo x - py-bitstring/distinfo sed 's/^X//' >py-bitstring/distinfo << '21e048c6b207adccb0c08d648f1664c4' XSHA256 (bitstring-2.0.3.zip) = 4ad523c537a229b6350f24bc20c7a61fec115480f211acbe2e0503173fea9231 XSIZE (bitstring-2.0.3.zip) = 487048 21e048c6b207adccb0c08d648f1664c4 exit --- py26-bitstring-2.0.3.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: