commit: b980daeece8bde256a99e1dfa303a9d84bb9471e
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 6 08:22:57 2017 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Jul 6 09:48:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b980daee
dev-libs/libbytesize: Initial commit.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-libs/libbytesize/Manifest | 1 +
dev-libs/libbytesize/libbytesize-0.10.ebuild | 55 ++++++++++++++++++++++++++++
dev-libs/libbytesize/metadata.xml | 11 ++++++
3 files changed, 67 insertions(+)
diff --git a/dev-libs/libbytesize/Manifest b/dev-libs/libbytesize/Manifest
new file mode 100644
index 00000000000..87670dcaf65
--- /dev/null
+++ b/dev-libs/libbytesize/Manifest
@@ -0,0 +1 @@
+DIST libbytesize-0.10.tar.gz 67461 SHA256
6178bebe3d966ef477c9507a7b8da5c7fb5ff52e792763270286a42e6b892aee SHA512
26dcca781c70b5fdc0c0ef973ce65db2c4ce4520bb413b2e0137e3c8a0ccef0b0b47f46e50e13035fb74c3bd2a16ab8faad8c4fb843f33419a5e5d70dae73587
WHIRLPOOL
c91b63e76a368aff4434cc09f546b1ee2265afa95fa6ef6ad25e6ed3554262361342c60ff7fddcc9887b3ddb53c2d5c6890dd28427e35be4af9c12fdc1dc6d53
diff --git a/dev-libs/libbytesize/libbytesize-0.10.ebuild
b/dev-libs/libbytesize/libbytesize-0.10.ebuild
new file mode 100644
index 00000000000..9a089877335
--- /dev/null
+++ b/dev-libs/libbytesize/libbytesize-0.10.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit autotools python-single-r1
+
+DESCRIPTION="Tiny library providing a C \"class\" for working with arbitrary
big sizes in bytes"
+HOMEPAGE="https://github.com/rhinstaller/libbytesize"
+SRC_URI="https://github.com/rhinstaller/${PN}/archive/${PV}.tar.gz ->
${P}.tar.gz"
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+CDEPEND="
+ ${PYTHON_DEPS}
+ dev-libs/gmp:0=
+ >=dev-libs/libpcre-8.32
+"
+
+DEPEND="
+ ${CDEPEND}
+ sys-devel/gettext
+ doc? ( dev-util/gtk-doc )
+ test? (
+ dev-python/pocketlint
+ dev-python/polib
+ )
+"
+
+RDEPEND="
+ ${CDEPEND}
+"
+
+# https://github.com/rhinstaller/libbytesize/issues/27
+RESTRICT="test"
+
+pkg_setup() {
+ python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with doc gtk-doc)
+ )
+ econf "${myeconfargs[@]}"
+}
diff --git a/dev-libs/libbytesize/metadata.xml
b/dev-libs/libbytesize/metadata.xml
new file mode 100644
index 00000000000..19b3c25b5bd
--- /dev/null
+++ b/dev-libs/libbytesize/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>[email protected]</email>
+ <name>Lars Wendler</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">rhinstaller/libbytesize</remote-id>
+ </upstream>
+</pkgmetadata>