Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbytesize/
Date: Sun, 01 Oct 2017 22:49:38
Message-Id: 1506898155.ea43afc62f1b2a3c814081dca21e6d8ec3dc288c.whissi@gentoo
1 commit: ea43afc62f1b2a3c814081dca21e6d8ec3dc288c
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 1 22:11:00 2017 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 1 22:49:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea43afc6
7
8 dev-libs/libbytesize: Bump to v1.2
9
10 Package-Manager: Portage-2.3.10, Repoman-2.3.3
11
12 dev-libs/libbytesize/Manifest | 1 +
13 dev-libs/libbytesize/libbytesize-1.2.ebuild | 50 +++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-libs/libbytesize/Manifest b/dev-libs/libbytesize/Manifest
17 index 63a492e7d97..f04e54b0310 100644
18 --- a/dev-libs/libbytesize/Manifest
19 +++ b/dev-libs/libbytesize/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libbytesize-0.11.tar.gz 68322 SHA256 3eff9a4b3350420b5e1ecfff523a739049d000b34485e3e1ccf4a4d7685490cb SHA512 3275116a74ead484508da494934062e77d19b50dcd124d7b309137e52a416474099685c39ddc63090d6ed124a667c7fc8c2a7a5844712b33f277703bb52d54ec WHIRLPOOL 717b33b11739747245f74cb6a9b33cbf6cc0e421c5464f253254642e82dfbf55dad26fcf440db3c345dfad7c721c10e0501be409f7b6f8ebcbc6bb0c276687c7
22 DIST libbytesize-1.1.tar.gz 70495 SHA256 1d17e8ab347e0496d7976b840c9ce230896674b8dc913cad7a9faa3cea92c193 SHA512 3d376dd0f9a10974f2392e3417e8e99ac57313be3ec945eeb7c84f72ddd51a5f29b61c7268c8c870dbe941eebf8d9027f8f5b7e0140790510bd8fb6b2c8db35b WHIRLPOOL f0da803649188ad631f10948ab4795d19771ee88d74e7398b78c81c34f966584ef97a542d0d85d7dd8269dd001107bd5731fb38fb3949055dd11286b7814fd38
23 +DIST libbytesize-1.2.tar.gz 70598 SHA256 20b91adcb216b1cdc99ade5cfa953cd3e10f848ec21436df2fd68f6437c7b744 SHA512 a8151e7440d0ec43d10239ddf08a9924827cdf08f20a16dff6177b444c1022fab905a0567384531e7610d854998111adb77f9a6a98e2d9648c02521f84ea2bf2 WHIRLPOOL 4565837f8564e17a6a1b51d96f99d043bd7d859539692b1f52c39d18d6a5321554e11c04890e1faf83546033b2fc97e73855edb2b3167481a011b99f2de989a7
24
25 diff --git a/dev-libs/libbytesize/libbytesize-1.2.ebuild b/dev-libs/libbytesize/libbytesize-1.2.ebuild
26 new file mode 100644
27 index 00000000000..61b601fbd62
28 --- /dev/null
29 +++ b/dev-libs/libbytesize/libbytesize-1.2.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
37 +
38 +inherit autotools python-single-r1
39 +
40 +DESCRIPTION="Tiny library providing a C \"class\" for working with arbitrary big sizes in bytes"
41 +HOMEPAGE="https://github.com/rhinstaller/libbytesize"
42 +SRC_URI="https://github.com/rhinstaller/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +LICENSE="LGPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="doc test"
47 +
48 +RDEPEND="
49 + ${PYTHON_DEPS}
50 + dev-libs/gmp:0=
51 + >=dev-libs/libpcre-8.32
52 +"
53 +
54 +DEPEND="
55 + ${RDEPEND}
56 + sys-devel/gettext
57 + doc? ( dev-util/gtk-doc )
58 + test? (
59 + dev-python/pocketlint
60 + dev-python/polib
61 + )
62 +"
63 +
64 +RESTRICT="test"
65 +
66 +pkg_setup() {
67 + python-single-r1_pkg_setup
68 +}
69 +
70 +src_prepare() {
71 + default
72 + eautoreconf
73 +}
74 +
75 +src_configure() {
76 + local myeconfargs=(
77 + $(use_with doc gtk-doc)
78 + )
79 + econf "${myeconfargs[@]}"
80 +}