Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbytesize/
Date: Thu, 02 May 2019 15:37:59
Message-Id: 1556811471.d59f1699c05bd3646790aa25cf14e217d51518df.polynomial-c@gentoo
1 commit: d59f1699c05bd3646790aa25cf14e217d51518df
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 2 15:37:24 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu May 2 15:37:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d59f1699
7
8 dev-libs/libbytesize: Removed old.
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 dev-libs/libbytesize/Manifest | 1 -
14 dev-libs/libbytesize/libbytesize-1.3-r1.ebuild | 64 --------------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/dev-libs/libbytesize/Manifest b/dev-libs/libbytesize/Manifest
18 index 2716ed0115f..b1044dd8c45 100644
19 --- a/dev-libs/libbytesize/Manifest
20 +++ b/dev-libs/libbytesize/Manifest
21 @@ -1,4 +1,3 @@
22 DIST libbytesize-1.2.tar.gz 70598 BLAKE2B e136b1274703da7b3596e7583cea1ac773c1594af09c626f4dbb481dfcc23a3186b03ebdc54bba67d0a063c5d6587f6b7f8b610828c461cfd114eea1388dd193 SHA512 a8151e7440d0ec43d10239ddf08a9924827cdf08f20a16dff6177b444c1022fab905a0567384531e7610d854998111adb77f9a6a98e2d9648c02521f84ea2bf2
23 -DIST libbytesize-1.3.tar.gz 71648 BLAKE2B 40794a38af8ee1fcc03ef8000b20123c0e02e208f329a75e7da3a18b224e4a8456ce5982d72e4eefa2ff9d9dcd90b98142037dd37be6bc31f25e2ff347010829 SHA512 a50f5d4ea07a295909e09168518f8fc25da8dcd52859beca9c9c3b8c8c180b025c774c730d449ffbd4c7fd5aba07b5d071b6d9ad36f9d9ebc96bb06699aa08f3
24 DIST libbytesize-1.4.tar.gz 80943 BLAKE2B d4c6c34d81be01bf7db2c37b0660886d99eff3c0a87024f5fbc12cc3606dc01e772b81dfbcacbf76c62213120253a9e7bda90adbc749b6d4c3e31e1ed3ae7702 SHA512 5dd13cf52a1674be776220ee1863f42261a47dc53af1ce4a31460d6d02ce87e19c5a52260f700928af98f1d9d7a96de7c11d8f384907b3187ef2effc10cbb593
25 DIST libbytesize-2.0.tar.gz 84673 BLAKE2B cbe439bafc5b6a5ee1fbba6ba3e78f6a2b080394eb1da57b14945edc9180cff179a0eafb9de29a9639dfcbd6abf86158aa84121b81704d9270a93e4331d98eea SHA512 5adc7f529bebab2a568b623f876c9b65e58cd1f19dcfb2cc0c068b03a4e0cbe6a527c9cef3417e442b5eb8c00c963f325090356474c69083793a55edb54a7001
26
27 diff --git a/dev-libs/libbytesize/libbytesize-1.3-r1.ebuild b/dev-libs/libbytesize/libbytesize-1.3-r1.ebuild
28 deleted file mode 100644
29 index 46301df5958..00000000000
30 --- a/dev-libs/libbytesize/libbytesize-1.3-r1.ebuild
31 +++ /dev/null
32 @@ -1,64 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -PYTHON_COMPAT=( python{2_7,3_{5,6}} )
39 -
40 -inherit autotools python-r1
41 -
42 -DESCRIPTION="Tiny library providing a C \"class\" for working with arbitrary big sizes in bytes"
43 -HOMEPAGE="https://github.com/rhinstaller/libbytesize"
44 -SRC_URI="https://github.com/rhinstaller/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -LICENSE="LGPL-2+"
46 -SLOT="0"
47 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
48 -IUSE="doc test"
49 -
50 -RDEPEND="
51 - ${PYTHON_DEPS}
52 - dev-libs/gmp:0=
53 - dev-libs/mpfr:=
54 - >=dev-libs/libpcre-8.32
55 -"
56 -
57 -DEPEND="
58 - ${RDEPEND}
59 - sys-devel/gettext
60 - doc? ( dev-util/gtk-doc )
61 - test? (
62 - dev-python/pocketlint
63 - dev-python/polib
64 - )
65 -"
66 -
67 -RESTRICT="test"
68 -
69 -pkg_setup() {
70 - python_setup
71 -}
72 -
73 -src_prepare() {
74 - default
75 - eautoreconf
76 -}
77 -
78 -src_configure() {
79 - local myeconfargs=(
80 - --without-python3 #634840
81 - $(use_with doc gtk-doc)
82 - )
83 - econf "${myeconfargs[@]}"
84 -}
85 -
86 -src_install() {
87 - emake install DESTDIR="${D}"
88 -
89 - python_install() {
90 - emake -C src/python install DESTDIR="${D}"
91 - python_optimize
92 - }
93 - python_foreach_impl python_install
94 -
95 - find "${ED}" -name "*.la*" -delete || die
96 -}