Accepting request 1093080 from home:favogt:branches:devel:libraries:c_c++
- Update to version 8.13.14: * Many data changes * Removal of unused leading_zero_possible proto field in phonemetadata.proto and all generated code * https://github.com/google/libphonenumber/blob/v8.13.14/release_notes.txt - Depends on abseil now - Turn metadata regeneration off explicitly, wasn't done previously either. This allows dropping the java dependency. - Add patches to fix building: * 0001-Build-with-C-17.patch * 0001-Revert-Fix-typo-in-arguments-to-add_metadata_gen_tar.patch - protobuf got fixed, builds fine with 22 now OBS-URL: https://build.opensuse.org/request/show/1093080 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libphonenumber?expand=0&rev=14
This commit is contained in:
parent
084ba90ff2
commit
d2f7ac0a7b
29
0001-Build-with-C-17.patch
Normal file
29
0001-Build-with-C-17.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
From 027de3b5d44f6291bd4785ec7530661ac98cbf53 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Fabian Vogt <fvogt@suse.de>
|
||||||
|
Date: Wed, 14 Jun 2023 09:06:02 +0200
|
||||||
|
Subject: [PATCH] Build with C++17
|
||||||
|
|
||||||
|
Recent abseil requires C++14 and TW builds it with C++17, so just use 17
|
||||||
|
directly.
|
||||||
|
---
|
||||||
|
cpp/CMakeLists.txt | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
|
||||||
|
index cdd7a08..bc331aa 100644
|
||||||
|
--- a/cpp/CMakeLists.txt
|
||||||
|
+++ b/cpp/CMakeLists.txt
|
||||||
|
@@ -19,8 +19,8 @@ cmake_minimum_required (VERSION 3.11)
|
||||||
|
project (libphonenumber VERSION 8.13.0)
|
||||||
|
|
||||||
|
# Pick the C++ standard to compile with.
|
||||||
|
-# Abseil currently supports C++11, C++14, and C++17.
|
||||||
|
-set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard used to compile this project")
|
||||||
|
+# Abseil currently supports C++14, and C++17.
|
||||||
|
+set(CMAKE_CXX_STANDARD 17 CACHE STRING "C++ standard used to compile this project")
|
||||||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
|
||||||
|
|
||||||
|
--
|
||||||
|
2.41.0
|
||||||
|
|
@ -0,0 +1,27 @@
|
|||||||
|
From f5684c3a2c220fde377c277dbe7784afbc0013cb Mon Sep 17 00:00:00 2001
|
||||||
|
From: Fabian Vogt <fvogt@suse.de>
|
||||||
|
Date: Wed, 14 Jun 2023 09:35:29 +0200
|
||||||
|
Subject: [PATCH] Revert "Fix typo in arguments to add_metadata_gen_target()
|
||||||
|
(#2874)"
|
||||||
|
|
||||||
|
This reverts commit 0ecc3d9af734d96d5b01cdf52f0ecdf848a33d68.
|
||||||
|
---
|
||||||
|
cpp/CMakeLists.txt | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
|
||||||
|
index bc331aa..5b7d2b2 100644
|
||||||
|
--- a/cpp/CMakeLists.txt
|
||||||
|
+++ b/cpp/CMakeLists.txt
|
||||||
|
@@ -394,7 +394,7 @@ add_metadata_gen_target (
|
||||||
|
${TEST_METADATA_TARGET}
|
||||||
|
"${RESOURCES_DIR}/PhoneNumberMetadataForTesting.xml"
|
||||||
|
"test_metadata"
|
||||||
|
- "test_metadata"
|
||||||
|
+ "metadata"
|
||||||
|
)
|
||||||
|
list (APPEND TESTING_LIBRARY_SOURCES "src/phonenumbers/test_metadata.cc")
|
||||||
|
|
||||||
|
--
|
||||||
|
2.41.0
|
||||||
|
|
2
_service
2
_service
@ -2,7 +2,7 @@
|
|||||||
<service name="obs_scm" mode="disabled">
|
<service name="obs_scm" mode="disabled">
|
||||||
<param name="url">https://github.com/google/libphonenumber.git</param>
|
<param name="url">https://github.com/google/libphonenumber.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">v8.12.23</param>
|
<param name="revision">v8.13.14</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<!-- Contains binary .jars with legally questionable content -->
|
<!-- Contains binary .jars with legally questionable content -->
|
||||||
|
BIN
libphonenumber-8.12.23.obscpio
(Stored with Git LFS)
BIN
libphonenumber-8.12.23.obscpio
(Stored with Git LFS)
Binary file not shown.
3
libphonenumber-8.13.14.obscpio
Normal file
3
libphonenumber-8.13.14.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2d689259be77afea39d97951bb59199926f5b4a086079f7c68dab7d06adb87fd
|
||||||
|
size 90168846
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 14 06:51:08 UTC 2023 - Fabian Vogt <fvogt@suse.com>
|
||||||
|
|
||||||
|
- Update to version 8.13.14:
|
||||||
|
* Many data changes
|
||||||
|
* Removal of unused leading_zero_possible proto field in
|
||||||
|
phonemetadata.proto and all generated code
|
||||||
|
* https://github.com/google/libphonenumber/blob/v8.13.14/release_notes.txt
|
||||||
|
- Depends on abseil now
|
||||||
|
- Turn metadata regeneration off explicitly, wasn't done previously
|
||||||
|
either. This allows dropping the java dependency.
|
||||||
|
- Add patches to fix building:
|
||||||
|
* 0001-Build-with-C-17.patch
|
||||||
|
* 0001-Revert-Fix-typo-in-arguments-to-add_metadata_gen_tar.patch
|
||||||
|
- protobuf got fixed, builds fine with 22 now
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 13 16:03:57 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Tue Jun 13 16:03:57 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
name: libphonenumber
|
name: libphonenumber
|
||||||
version: 8.12.23
|
version: 8.13.14
|
||||||
mtime: 1620724866
|
mtime: 1686216784
|
||||||
commit: 8767b3e904f2864c1874f3b8e39eeb8bca7d7238
|
commit: 17b157870a5382eb314f5b436383e89cc21558c4
|
||||||
|
|
||||||
|
@ -17,26 +17,30 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libphonenumber
|
Name: libphonenumber
|
||||||
Version: 8.12.23
|
Version: 8.13.14
|
||||||
Release: 0
|
Release: 0
|
||||||
%define lib_ver 8
|
%define lib_ver 8
|
||||||
%define lib_ver2 8.12
|
%define lib_ver2 8.13
|
||||||
Summary: Library for parsing, formatting, and validating international phone numbers
|
Summary: Library for parsing, formatting, and validating international phone numbers
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: https://github.com/google/libphonenumber
|
URL: https://github.com/google/libphonenumber
|
||||||
Source: %{name}-%{version}.tar.xz
|
Source: %{name}-%{version}.tar.xz
|
||||||
|
# PATCH-FIX-DOWNSTREAM (for using system abseil)
|
||||||
|
Patch1: 0001-Build-with-C-17.patch
|
||||||
|
# PATCH-FIX-DOWNSTREAM (see https://github.com/google/libphonenumber/pull/2874)
|
||||||
|
Patch2: 0001-Revert-Fix-typo-in-arguments-to-add_metadata_gen_tar.patch
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: java
|
|
||||||
BuildRequires: libboost_date_time-devel
|
BuildRequires: libboost_date_time-devel
|
||||||
BuildRequires: libboost_system-devel
|
BuildRequires: libboost_system-devel
|
||||||
BuildRequires: libboost_thread-devel
|
BuildRequires: libboost_thread-devel
|
||||||
|
# Actual version requirement unknown
|
||||||
|
BuildRequires: cmake(absl)
|
||||||
BuildRequires: pkgconfig(gtest)
|
BuildRequires: pkgconfig(gtest)
|
||||||
BuildRequires: pkgconfig(icu-i18n) >= 4.4
|
BuildRequires: pkgconfig(icu-i18n) >= 4.4
|
||||||
BuildRequires: pkgconfig(icu-uc) >= 4.4
|
BuildRequires: pkgconfig(icu-uc) >= 4.4
|
||||||
# not compatible with v22 due to https://protobuf.dev/news/2022-08-03/#cpp-changes
|
BuildRequires: pkgconfig(protobuf) >= 2.4
|
||||||
BuildRequires: (pkgconfig(protobuf) >= 2.4 with pkgconfig(protobuf) < 22)
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
||||||
@ -56,7 +60,7 @@ for running on smartphones, and is used by the Android framework since 4.0
|
|||||||
Summary: Library for parsing, formatting, and validating international phone numbers
|
Summary: Library for parsing, formatting, and validating international phone numbers
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{name}%{lib_ver} = %{version}
|
Requires: %{name}%{lib_ver} = %{version}
|
||||||
Requires: (pkgconfig(protobuf) >= 2.4 with pkgconfig(protobuf) < 22)
|
Requires: pkgconfig(protobuf) >= 2.4
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
||||||
@ -75,7 +79,7 @@ that use libphonenumber.
|
|||||||
cd cpp
|
cd cpp
|
||||||
# Enabling the geocoder breaks quite a lot due to broken cmakelists
|
# Enabling the geocoder breaks quite a lot due to broken cmakelists
|
||||||
# (https://github.com/google/libphonenumber/pull/2556)
|
# (https://github.com/google/libphonenumber/pull/2556)
|
||||||
%cmake -DBUILD_STATIC_LIB=OFF -DBUILD_SHARED_LIB=ON -DBUILD_TESTING=ON -DBUILD_GEOCODER=OFF
|
%cmake -DBUILD_STATIC_LIB=OFF -DBUILD_SHARED_LIB=ON -DBUILD_TESTING=ON -DBUILD_GEOCODER=OFF -DREGENERATE_METADATA=OFF
|
||||||
%make_jobs
|
%make_jobs
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -97,5 +101,7 @@ cd cpp/build
|
|||||||
%files devel
|
%files devel
|
||||||
%{_libdir}/libphonenumber.so
|
%{_libdir}/libphonenumber.so
|
||||||
%{_includedir}/phonenumbers/
|
%{_includedir}/phonenumbers/
|
||||||
|
%dir %{_libdir}/cmake/
|
||||||
|
%{_libdir}/cmake/libphonenumber/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user