forked from pool/libmaxminddb
0618ee85bb
- update to 1.5.2: * With `libmaxminddb` on Windows and `mmdblookup` generally, there were instances where the return value of `calloc` was not checked, which could lead to issues in low memory situations or when resource limits had been set. * The formatting of the manpages has been improved and the script that generates them now supports `lowdown` in addition to `pandoc`. OBS-URL: https://build.opensuse.org/request/show/876087 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmaxminddb?expand=0&rev=21
110 lines
3.4 KiB
RPMSpec
110 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package libmaxminddb
|
|
#
|
|
# Copyright (c) 2021 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 lname libmaxminddb0
|
|
Name: libmaxminddb
|
|
Version: 1.5.2
|
|
Release: 0
|
|
Summary: C library for the MaxMind DB file format
|
|
License: Apache-2.0
|
|
URL: https://dev.maxmind.com/
|
|
Source: https://github.com/maxmind/libmaxminddb/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
Source99: baselibs.conf
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
The libmaxminddb library provides a C library for reading MaxMind DB
|
|
files, including the GeoIP2 databases from MaxMind. This is a
|
|
custom binary format designed to facilitate fast lookups of IP
|
|
addresses while allowing for great flexibility in the type of
|
|
data associated with an address.
|
|
|
|
%package -n %{lname}
|
|
Summary: C library for the MaxMind DB file format
|
|
|
|
%description -n %{lname}
|
|
The libmaxminddb library provides a C library for reading MaxMind DB
|
|
files, including the GeoIP2 databases from MaxMind. This is a
|
|
custom binary format designed to facilitate fast lookups of IP
|
|
addresses while allowing for great flexibility in the type of
|
|
data associated with an address.
|
|
|
|
%package -n mmdblookup
|
|
Summary: An utility to look up an IP address in a MaxMind DB file
|
|
|
|
%description -n mmdblookup
|
|
The libmaxminddb library provides a C library for reading MaxMind DB
|
|
files, including the GeoIP2 databases from MaxMind. This is a
|
|
custom binary format designed to facilitate fast lookups of IP
|
|
addresses while allowing for great flexibility in the type of
|
|
data associated with an address.
|
|
|
|
This package contains the mmdblookup binary.
|
|
|
|
%package devel
|
|
Summary: Development files for the MaxMind DB file format library
|
|
Requires: %{lname} = %{version}
|
|
|
|
%description devel
|
|
The libmaxminddb library provides a C library for reading MaxMind DB
|
|
files, including the GeoIP2 databases from MaxMind. This is a
|
|
custom binary format designed to facilitate fast lookups of IP
|
|
addresses while allowing for great flexibility in the type of
|
|
data associated with an address.
|
|
|
|
This package contains the development files for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make %{?_smp_mflags} check
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
%fdupes -s %{buildroot}/%{_prefix}
|
|
|
|
%post -n %{lname} -p /sbin/ldconfig
|
|
%postun -n %{lname} -p /sbin/ldconfig
|
|
|
|
%files -n %{lname}
|
|
%license LICENSE
|
|
%{_libdir}/%{name}.so.*
|
|
|
|
%files -n mmdblookup
|
|
%doc doc/mmdblookup.md
|
|
%{_bindir}/mmdblookup
|
|
%{_mandir}/man1/mmdblookup.*
|
|
|
|
%files devel
|
|
%doc Changes.md NOTICE README.md doc/mmdblookup.md doc/libmaxminddb.md
|
|
%license LICENSE
|
|
%{_includedir}/*
|
|
%{_libdir}/%{name}.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|