123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- Summary: Helper library for geocoding services
- Name: geocode-glib
- Version: 3.26.2
- Release: 1%{?_dist_release}
- Vendor: Project Vine
- Distribution: Vine Linux
- License: GPLv2
- URL: https://git.gnome.org/browse/geocode-glib
- %global shortver %(echo %{version} | sed -e 's/\.[0-9]*$//')
- Source0: https://download.gnome.org/sources/%{name}/%{shortver}/%{name}-%{version}.tar.xz
- BuildRequires: meson
- BuildRequires: glib2-devel >= 2.34
- BuildRequires: json-glib-devel >= 0.16.2
- BuildRequires: libsoup-devel
- BuildRequires: gobject-introspection-devel
- BuildRequires: gtk-doc
- %description
- geocode-glib is a convenience library for the geocoding (finding longitude,
- and latitude from an address) and reverse geocoding (finding an address from
- coordinates). It uses Nominatim service to achieve that. It also caches
- (reverse-)geocoding requests for faster results and to avoid unnecessary server
- load.
- %package devel
- Summary: Development tools for %{name}
- Summary(ja): %{name} の開発環境
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- Header files and libraries for building a extension library for the %{name}.
- %package docs
- Summary: Documentation for %{name}
- Summary(ja): %{name} 用のドキュメント
- Group: Documentation
- Requires: %{name} = %{version}-%{release}
- BuildArch: noarch
- %description docs
- This package contains documentation for %{name}.
- %prep
- %setup -q
- %build
- export LANG=ja_JP.UTF-8
- %meson \
- -Denable-installed-tests=false
- %meson_build
- %install
- export LANG=ja_JP.UTF-8
- rm -rf %{buildroot}
- %meson_install
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %license COPYING.LIB
- %doc ChangeLog NEWS README
- %{_libdir}/libgeocode-glib.so.*
- %{_libdir}/girepository-1.0/GeocodeGlib-1.0.typelib
- %{_datadir}/icons/gnome/scalable/places/*.svg
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/%{name}-1.0
- %{_libdir}/libgeocode-glib.so
- %{_libdir}/pkgconfig/%{name}-1.0.pc
- %{_datadir}/gir-1.0/GeocodeGlib-1.0.gir
- %files docs
- %defattr(-,root,root,-)
- %{_datadir}/gtk-doc/html/%{name}
- %changelog
- * Tue Aug 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.26.2-1
- - new upstream release.
- * Mon Dec 31 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.26.0-1
- - new upstream release.
- * Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.20.1-1
- - new upstream release
- * Sat Oct 31 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.0-1
- - new upstream release
- * Sat May 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.2-1
- - new upstream release
- * Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.0-1
- - new upstream release
- * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.0-1
- - new upstream release
- * Sat May 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.2-1
- - new upstream release
- * Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.0-1
- - new upstream release
- * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-2
- - rebuild with VineSeed environment
- * Sun Oct 27 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-1
- - initial build
|