From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SkZXL-0000vw-SO for garchives@archives.gentoo.org; Fri, 29 Jun 2012 11:38:56 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAAA4E0652; Fri, 29 Jun 2012 11:38:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A7B75E0652 for ; Fri, 29 Jun 2012 11:38:48 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A727C1B407C for ; Fri, 29 Jun 2012 11:38:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4944AE5432 for ; Fri, 29 Jun 2012 11:38:46 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1340969872.c02ee37662b4bb98a7617e246fd5ea7653a2e888.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/bitarray/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/bitarray/ChangeLog dev-python/bitarray/bitarray-0.8.0.ebuild dev-python/bitarray/metadata.xml X-VCS-Directories: dev-python/bitarray/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c02ee37662b4bb98a7617e246fd5ea7653a2e888 X-VCS-Branch: master Date: Fri, 29 Jun 2012 11:38:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 27d32e71-54dd-497a-b996-81fa9f1d8420 X-Archives-Hash: 57a9a49c92338360a08ffbcd24d90708 commit: c02ee37662b4bb98a7617e246fd5ea7653a2e888 Author: Justin Lecher gentoo org> AuthorDate: Fri Jun 29 11:37:52 2012 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Jun 29 11:37:52 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Dc02ee376 dev-python/bitarray: New package requested by jamasi on irc (Portage version: 2.2.0_alpha114/git/Linux x86_64, unsigned Manifest comm= it) --- dev-python/bitarray/ChangeLog | 10 ++++++++++ dev-python/bitarray/bitarray-0.8.0.ebuild | 19 +++++++++++++++++++ dev-python/bitarray/metadata.xml | 16 ++++++++++++++++ 3 files changed, 45 insertions(+), 0 deletions(-) diff --git a/dev-python/bitarray/ChangeLog b/dev-python/bitarray/ChangeLo= g new file mode 100644 index 0000000..df39977 --- /dev/null +++ b/dev-python/bitarray/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/bitarray +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*bitarray-0.8.0 (29 Jun 2012) + + 29 Jun 2012; Justin Lecher +bitarray-0.8.0.ebuild, + +metadata.xml: + New package requested by jamasi on irc + diff --git a/dev-python/bitarray/bitarray-0.8.0.ebuild b/dev-python/bitar= ray/bitarray-0.8.0.ebuild new file mode 100644 index 0000000..7a9068d --- /dev/null +++ b/dev-python/bitarray/bitarray-0.8.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +PYTHON_DEPEND=3D"2" +SUPPORT_PYTHON_ABIS=3D1 + +inherit distutils + +DESCRIPTION=3D"efficient arrays of booleans -- C extension" +HOMEPAGE=3D"https://github.com/ilanschnell/bitarray http://pypi.python.o= rg/pypi/bitarray" +SRC_URI=3D"mirror://pypi/b/${PN}/${P}.tar.gz" + +SLOT=3D"0" +LICENSE=3D"PSF-2" +KEYWORDS=3D"~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE=3D"" diff --git a/dev-python/bitarray/metadata.xml b/dev-python/bitarray/metad= ata.xml new file mode 100644 index 0000000..2eeceee --- /dev/null +++ b/dev-python/bitarray/metadata.xml @@ -0,0 +1,16 @@ + + + + sci + +This module provides an object type which efficiently represents an arra= y of=20 +booleans. Bitarrays are sequence types and behave very much like usual l= ists.=20 +Eight bits are represented by one byte in a contiguous block of memory. = The=20 +user can select between two representations; little-endian and big-endia= n.=20 +Most of the functionality is implemented in C. Methods for accessing the= =20 +machine representation are provided. This can be useful when bit level a= ccess=20 +to binary files is required, such as portable bitmap image files (.pbm).= Also,=20 +when dealing with compressed data which uses variable bit length encodin= g,=20 +you may find this module useful. + +