]> git.pld-linux.org Git - packages/GeoIP-db-City.git/blobdiff - GeoIP-db-City.spec
use newest file date as package version
[packages/GeoIP-db-City.git] / GeoIP-db-City.spec
index 1710a77c818c893cf78e57d5077733d464c4bfef..760d582837d569a1d818f40695fcc2a3877648ee 100644 (file)
@@ -1,51 +1,77 @@
 Summary:       GeoLite City - City database for GeoIP
+Summary(pl.UTF-8):     GeoLite City - baza danych miast dla GeoIP
 Name:          GeoIP-db-City
 # Updated every month:
-Version:       2007.08.01
-Release:       1
-License:       OPEN DATA LICENSE (see LICENSE.txt)
+Version:       2015.07.24
+Release:       2
+License:       CC 3.0 BY-SA
 Group:         Applications/Databases
-Source0:       http://www.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
-# Source0-md5: ce03b15a08e26c88ec2fd8f5c08f8e4b
-Source1:       http://www.maxmind.com/download/geoip/database/LICENSE.txt
-# Source1-md5: 8c0bc6e8ebe6ec3bc1580021edb4bba1
-URL:           http://www.maxmind.com/app/geolitecity
+Source0:       http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.xz?/GeoLiteCity-%{version}.dat.xz
+# Source0-md5: bf521ddc38791505915fe1123f0432c6
+Source1:       http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz?/GeoLiteCityv6-%{version}.dat.gz
+# Source1-md5: 99c90bed6644a2fc55950e121cd18d87
+URL:           http://dev.maxmind.com/geoip/legacy/geolite/
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
 BuildArch:     noarch
-Requires:      GeoIP-libs
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-GeoIP is a C library that enables the user to find the country that
-any IP address or hostname originates from. It uses a file based
-database that is accurate as of March 2003. This database simply
-contains IP blocks as keys, and countries as values. This database
-should be more complete and accurate than using reverse DNS lookups.
+Determine country, state/region, city, US postal code, US area code,
+metro code, latitude, and longitude information for IP addresses
+worldwide.
 
-GeoLite City is similar to the GeoIP City database, but is not as accurate.
-Should you require greater accuracy, GeoIP City is a drop-in replacement
-for GeoLite City.
+License disclaimer: this product includes GeoLite data created by
+MaxMind, available from <http://www.maxmind.com/>.
 
-License disclaimer:
-This product includes GeoLite data created by MaxMind, available from
-http://www.maxmind.com/.
+%description -l pl.UTF-8
+Znajdź państwo, stan/region, miasto, kod pocztowy, kod regionu, kod
+miejski, szerokość i wysokość geograficzną dla adresów IP z całego
+świata.
+
+Informacja licencyjna: ten produkt zawiera dane GeoLite stworzone
+przez MaxWind, dostępne z <http://www.maxwind.com/>.
 
 %prep
-%setup -q -c -T
-cp %{SOURCE0} .
-cp %{SOURCE1} .
+%setup -qcT
+cp -p %{SOURCE0} .
+cp -p %{SOURCE1} .
+
+xz -d GeoLiteCity-%{version}.dat.xz
+gunzip GeoLiteCityv6-%{version}.dat.gz
+
+%build
+# get file DATE in GMT timezone
+filedate() {
+       TZ=GMT stat -c '%y' "$1" | awk '{print $1}'
+}
+
+# use newest file date as version
+d1=$(filedate GeoLiteCity-%{version}.dat)
+d2=$(filedate GeoLiteCityv6-%{version}.dat)
+if [ "$(echo $d1 | tr -d -)" -gt "$(echo $d2 | tr -d -)" ]; then
+       d=$d1
+else
+       d=$d2
+fi
 
-gunzip GeoLiteCity.dat.gz
+ver=$(echo $d | tr - .)
+if [ "$ver" != %{version} ]; then
+       exit 1
+fi
 
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{_datadir}/GeoIP
+cp -p GeoLiteCity-%{version}.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoLiteCity.dat
+ln -s GeoLiteCity.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoIPCity.dat
 
-install GeoLiteCity.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP
+cp -p GeoLiteCityv6-%{version}.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoLiteCityv6.dat
+ln -s GeoLiteCityv6.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoIPCityv6.dat
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc *.txt
 %{_datadir}/GeoIP/*.dat
This page took 0.03563 seconds and 4 git commands to generate.