public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/bitarray/
@ 2012-06-29 11:38 Justin Lecher
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher @ 2012-06-29 11:38 UTC (permalink / raw
  To: gentoo-commits

commit:     c02ee37662b4bb98a7617e246fd5ea7653a2e888
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 29 11:37:52 2012 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jun 29 11:37:52 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c02ee376

dev-python/bitarray: New package requested by jamasi on irc

(Portage version: 2.2.0_alpha114/git/Linux x86_64, unsigned Manifest commit)

---
 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/ChangeLog
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 <jlec@gentoo.org> +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/bitarray/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=4
+
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS=1
+
+inherit distutils
+
+DESCRIPTION="efficient arrays of booleans -- C extension"
+HOMEPAGE="https://github.com/ilanschnell/bitarray http://pypi.python.org/pypi/bitarray"
+SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="PSF-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""

diff --git a/dev-python/bitarray/metadata.xml b/dev-python/bitarray/metadata.xml
new file mode 100644
index 0000000..2eeceee
--- /dev/null
+++ b/dev-python/bitarray/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>sci</herd>
+	<longdescription>
+This module provides an object type which efficiently represents an array of 
+booleans. Bitarrays are sequence types and behave very much like usual lists. 
+Eight bits are represented by one byte in a contiguous block of memory. The 
+user can select between two representations; little-endian and big-endian. 
+Most of the functionality is implemented in C. Methods for accessing the 
+machine representation are provided. This can be useful when bit level access 
+to binary files is required, such as portable bitmap image files (.pbm). Also, 
+when dealing with compressed data which uses variable bit length encoding, 
+you may find this module useful.
+</longdescription>
+</pkgmetadata>



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/bitarray/
@ 2012-07-04  7:42 Justin Lecher
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher @ 2012-07-04  7:42 UTC (permalink / raw
  To: gentoo-commits

commit:     de209ad3bb273f7fdbce3e421c188e5484158d53
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 29 11:39:55 2012 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jun 29 11:39:55 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=de209ad3

Moved to tree

---
 dev-python/bitarray/ChangeLog             |   10 ----------
 dev-python/bitarray/bitarray-0.8.0.ebuild |   19 -------------------
 dev-python/bitarray/metadata.xml          |   16 ----------------
 3 files changed, 0 insertions(+), 45 deletions(-)

diff --git a/dev-python/bitarray/ChangeLog b/dev-python/bitarray/ChangeLog
deleted file mode 100644
index df39977..0000000
--- a/dev-python/bitarray/ChangeLog
+++ /dev/null
@@ -1,10 +0,0 @@
-# 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 <jlec@gentoo.org> +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/bitarray/bitarray-0.8.0.ebuild
deleted file mode 100644
index 7a9068d..0000000
--- a/dev-python/bitarray/bitarray-0.8.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS=1
-
-inherit distutils
-
-DESCRIPTION="efficient arrays of booleans -- C extension"
-HOMEPAGE="https://github.com/ilanschnell/bitarray http://pypi.python.org/pypi/bitarray"
-SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="PSF-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""

diff --git a/dev-python/bitarray/metadata.xml b/dev-python/bitarray/metadata.xml
deleted file mode 100644
index 2eeceee..0000000
--- a/dev-python/bitarray/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<herd>sci</herd>
-	<longdescription>
-This module provides an object type which efficiently represents an array of 
-booleans. Bitarrays are sequence types and behave very much like usual lists. 
-Eight bits are represented by one byte in a contiguous block of memory. The 
-user can select between two representations; little-endian and big-endian. 
-Most of the functionality is implemented in C. Methods for accessing the 
-machine representation are provided. This can be useful when bit level access 
-to binary files is required, such as portable bitmap image files (.pbm). Also, 
-when dealing with compressed data which uses variable bit length encoding, 
-you may find this module useful.
-</longdescription>
-</pkgmetadata>



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-07-04  7:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-29 11:38 [gentoo-commits] proj/sci:master commit in: dev-python/bitarray/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2012-07-04  7:42 Justin Lecher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox