Fabian Vogt
63d4a360ca
* Updated metadata - Use mode="manual" in _service OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libphonenumber?expand=0&rev=24
109 lines
3.7 KiB
RPMSpec
109 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package libphonenumber
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lib_ver 8
|
|
%define lib_ver2 8.13
|
|
Name: libphonenumber
|
|
Version: 8.13.40
|
|
Release: 0
|
|
Summary: Library for parsing, formatting, and validating international phone numbers
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/C and C++
|
|
URL: https://github.com/google/libphonenumber
|
|
Source: %{name}-%{version}.tar.xz
|
|
# PATCH-FIX-DOWNSTREAM (see https://github.com/google/libphonenumber/pull/2874)
|
|
Patch2: 0001-Revert-Fix-typo-in-arguments-to-add_metadata_gen_tar.patch
|
|
Patch3: 0001-Add-support-to-protobuf-3.25.1.patch
|
|
Patch4: 0002-Avoid-intermediate-proto-object-library.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libboost_date_time-devel >= 1.40.0
|
|
BuildRequires: libboost_system-devel >= 1.40.0
|
|
BuildRequires: libboost_thread-devel >= 1.40.0
|
|
BuildRequires: pkgconfig
|
|
# Actual version requirement unknown
|
|
BuildRequires: cmake(absl)
|
|
BuildRequires: pkgconfig(gtest)
|
|
BuildRequires: pkgconfig(icu-i18n) >= 4.4
|
|
BuildRequires: pkgconfig(icu-uc) >= 4.4
|
|
BuildRequires: pkgconfig(protobuf) >= 2.4
|
|
|
|
%description
|
|
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
|
and validating international phone numbers.
|
|
|
|
%package -n %{name}%{lib_ver}
|
|
Summary: Library for parsing, formatting, and validating international phone numbers
|
|
Group: System/Libraries
|
|
|
|
%description -n %{name}%{lib_ver}
|
|
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
|
and validating international phone numbers. The Java version is optimized
|
|
for running on smartphones, and is used by the Android framework since 4.0
|
|
(Ice Cream Sandwich).
|
|
|
|
%package devel
|
|
Summary: Library for parsing, formatting, and validating international phone numbers
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name}%{lib_ver} = %{version}
|
|
Requires: cmake(absl)
|
|
Requires: pkgconfig(protobuf) >= 2.4
|
|
|
|
%description devel
|
|
Google's common Java, C++ and JavaScript library for parsing, formatting,
|
|
and validating international phone numbers. The Java version is optimized
|
|
for running on smartphones, and is used by the Android framework since 4.0
|
|
(Ice Cream Sandwich).
|
|
|
|
This package provides libraries and header files for developing applications
|
|
that use libphonenumber.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
cd cpp
|
|
# Enabling the geocoder breaks quite a lot due to broken cmakelists
|
|
# (https://github.com/google/libphonenumber/pull/2556)
|
|
%cmake -DBUILD_STATIC_LIB=OFF -DBUILD_SHARED_LIB=ON -DBUILD_TESTING=ON -DBUILD_GEOCODER=OFF -DREGENERATE_METADATA=OFF
|
|
%make_jobs
|
|
|
|
%install
|
|
cd cpp
|
|
%cmake_install
|
|
|
|
%check
|
|
cd cpp/build
|
|
%make_jobs tests
|
|
|
|
%post -n %{name}%{lib_ver} -p /sbin/ldconfig
|
|
%postun -n %{name}%{lib_ver} -p /sbin/ldconfig
|
|
|
|
%files -n %{name}%{lib_ver}
|
|
%license LICENSE*
|
|
%{_libdir}/libphonenumber.so.%{lib_ver}
|
|
%{_libdir}/libphonenumber.so.%{lib_ver2}
|
|
|
|
%files devel
|
|
%{_libdir}/libphonenumber.so
|
|
%{_includedir}/phonenumbers/
|
|
%dir %{_libdir}/cmake/
|
|
%{_libdir}/cmake/libphonenumber/
|
|
|
|
%changelog
|