Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/bitarray/
Date: Fri, 29 Jun 2012 11:38:56
Message-Id: 1340969872.c02ee37662b4bb98a7617e246fd5ea7653a2e888.jlec@gentoo
1 commit: c02ee37662b4bb98a7617e246fd5ea7653a2e888
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 29 11:37:52 2012 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 29 11:37:52 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c02ee376
7
8 dev-python/bitarray: New package requested by jamasi on irc
9
10 (Portage version: 2.2.0_alpha114/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 dev-python/bitarray/ChangeLog | 10 ++++++++++
14 dev-python/bitarray/bitarray-0.8.0.ebuild | 19 +++++++++++++++++++
15 dev-python/bitarray/metadata.xml | 16 ++++++++++++++++
16 3 files changed, 45 insertions(+), 0 deletions(-)
17
18 diff --git a/dev-python/bitarray/ChangeLog b/dev-python/bitarray/ChangeLog
19 new file mode 100644
20 index 0000000..df39977
21 --- /dev/null
22 +++ b/dev-python/bitarray/ChangeLog
23 @@ -0,0 +1,10 @@
24 +# ChangeLog for dev-python/bitarray
25 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
26 +# $Header: $
27 +
28 +*bitarray-0.8.0 (29 Jun 2012)
29 +
30 + 29 Jun 2012; Justin Lecher <jlec@g.o> +bitarray-0.8.0.ebuild,
31 + +metadata.xml:
32 + New package requested by jamasi on irc
33 +
34
35 diff --git a/dev-python/bitarray/bitarray-0.8.0.ebuild b/dev-python/bitarray/bitarray-0.8.0.ebuild
36 new file mode 100644
37 index 0000000..7a9068d
38 --- /dev/null
39 +++ b/dev-python/bitarray/bitarray-0.8.0.ebuild
40 @@ -0,0 +1,19 @@
41 +# Copyright 1999-2012 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Header: $
44 +
45 +EAPI=4
46 +
47 +PYTHON_DEPEND="2"
48 +SUPPORT_PYTHON_ABIS=1
49 +
50 +inherit distutils
51 +
52 +DESCRIPTION="efficient arrays of booleans -- C extension"
53 +HOMEPAGE="https://github.com/ilanschnell/bitarray http://pypi.python.org/pypi/bitarray"
54 +SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz"
55 +
56 +SLOT="0"
57 +LICENSE="PSF-2"
58 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
59 +IUSE=""
60
61 diff --git a/dev-python/bitarray/metadata.xml b/dev-python/bitarray/metadata.xml
62 new file mode 100644
63 index 0000000..2eeceee
64 --- /dev/null
65 +++ b/dev-python/bitarray/metadata.xml
66 @@ -0,0 +1,16 @@
67 +<?xml version="1.0" encoding="UTF-8"?>
68 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
69 +<pkgmetadata>
70 + <herd>sci</herd>
71 + <longdescription>
72 +This module provides an object type which efficiently represents an array of
73 +booleans. Bitarrays are sequence types and behave very much like usual lists.
74 +Eight bits are represented by one byte in a contiguous block of memory. The
75 +user can select between two representations; little-endian and big-endian.
76 +Most of the functionality is implemented in C. Methods for accessing the
77 +machine representation are provided. This can be useful when bit level access
78 +to binary files is required, such as portable bitmap image files (.pbm). Also,
79 +when dealing with compressed data which uses variable bit length encoding,
80 +you may find this module useful.
81 +</longdescription>
82 +</pkgmetadata>