From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Nov 29 23:10:13 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 87C671065675 for ; Mon, 29 Nov 2010 23:10:13 +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 45F378FC14 for ; Mon, 29 Nov 2010 23:10:13 +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 oATNADKJ010288 for ; Mon, 29 Nov 2010 23:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oATNADqk010287; Mon, 29 Nov 2010 23:10:13 GMT (envelope-from gnats) Resent-Date: Mon, 29 Nov 2010 23:10:13 GMT Resent-Message-Id: <201011292310.oATNADqk010287@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 7A8341065672 for ; Mon, 29 Nov 2010 23:06:54 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0EE918FC1B for ; Mon, 29 Nov 2010 23:06:53 +0000 (UTC) Received: by wyf19 with SMTP id 19so4943998wyf.13 for ; Mon, 29 Nov 2010 15:06:53 -0800 (PST) Received: by 10.216.87.131 with SMTP id y3mr1130793wee.3.1291071937497; Mon, 29 Nov 2010 15:05:37 -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 x59sm2683029weq.38.2010.11.29.15.03.33 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 29 Nov 2010 15:03:33 -0800 (PST) Message-Id: <4cf43145.51edd80a.160d.ffffef8b@mx.google.com> Date: Mon, 29 Nov 2010 15:03:33 -0800 (PST) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/152688: 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:10:13 -0000 >Number: 152688 >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:10:12 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: