Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libphonenumber/
Date: Fri, 21 Jan 2022 13:00:06
Message-Id: 1642769917.e56d9345977e4e0bb7ba4c019decdea864d72e38.asturm@gentoo
1 commit: e56d9345977e4e0bb7ba4c019decdea864d72e38
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 21 12:58:37 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 12:58:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56d9345
7
8 dev-libs/libphonenumber: Drop 8.12.37
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/libphonenumber/Manifest | 1 -
14 .../libphonenumber/libphonenumber-8.12.37.ebuild | 48 ----------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/dev-libs/libphonenumber/Manifest b/dev-libs/libphonenumber/Manifest
18 index f36cd6e03e0d..9295664efd96 100644
19 --- a/dev-libs/libphonenumber/Manifest
20 +++ b/dev-libs/libphonenumber/Manifest
21 @@ -1,2 +1 @@
22 -DIST libphonenumber-8.12.37.tar.gz 11005274 BLAKE2B 2bcffe898ca7aa667a35e9a7340a54f880cdb9f290e807e9ff7f6ee778df83dd80023703595781a97355a43a8096bdc957a7f79336b5bf9d892ada26e35ae025 SHA512 420ea841679c1ff420289b3fea0bb6d86d4d1e99525fce00cc90025c8ade99e56e2dcbb7fca64190437ff0a889cdc7373f182e7699db20a072c32e984b8dff33
23 DIST libphonenumber-8.12.39.tar.gz 11007180 BLAKE2B 27a47b35497772740da04cb9b79e1a6b4fd6f9b0d4a89768e1ba9212672f1a0fd06c5837aa8858a4680b5c47ef16721c6ef145d8d2cd77dccbe27bb4b0897dcf SHA512 82570c60b132022a713c0664de2c29997cff0ab8c3ab97dbec0f8d1cd1782090ba92ca7d2f044760f523c986660f13b70aacf8a9c247a3b80eb19d35227bc2a8
24
25 diff --git a/dev-libs/libphonenumber/libphonenumber-8.12.37.ebuild b/dev-libs/libphonenumber/libphonenumber-8.12.37.ebuild
26 deleted file mode 100644
27 index f613d7a4ab4b..000000000000
28 --- a/dev-libs/libphonenumber/libphonenumber-8.12.37.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -CMAKE_MAKEFILE_GENERATOR="emake" # broken w/ ninja
37 -inherit cmake
38 -
39 -DESCRIPTION="Library for parsing, formatting, and validating international phone numbers"
40 -HOMEPAGE="https://github.com/google/libphonenumber"
41 -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -CMAKE_USE_DIR="${WORKDIR}"/${P}/cpp
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="amd64 arm64 ~ppc64 x86"
47 -IUSE="test"
48 -
49 -RESTRICT="test !test? ( test )"
50 -
51 -DEPEND="
52 - dev-libs/icu:=
53 - dev-libs/protobuf:=
54 - dev-libs/boost:=
55 -"
56 -RDEPEND="${DEPEND}"
57 -BDEPEND="
58 - virtual/pkgconfig
59 - test? ( dev-cpp/gtest )
60 -"
61 -
62 -PATCHES=(
63 - # it is either this, or disable BUILD_GEOCODER
64 - # https://github.com/google/libphonenumber/pull/2556
65 - "${FILESDIR}"/${P}-cmake.patch
66 - # see also https://github.com/google/libphonenumber/pull/2459
67 - # using a stripped-down patch w/ BUILD_TESTING
68 - "${FILESDIR}"/${P}-testing.patch
69 -)
70 -
71 -src_configure() {
72 - local mycmakeargs=(
73 - -DBUILD_STATIC_LIB=OFF
74 - -DBUILD_TESTING=$(usex test)
75 - -DREGENERATE_METADATA=OFF # avoid JRE dependency
76 - )
77 - cmake_src_configure
78 -}