]> git.pld-linux.org Git - packages/GeoIP-db-City.git/blobdiff - GeoIP-db-City.spec
updated to 2018.10.31
[packages/GeoIP-db-City.git] / GeoIP-db-City.spec
index f6cbd7f247ec58c2e86130b2c2380b38c9e2e2ca..dc8c328f591e1a1c27daa3ebd36df3f112408ee1 100644 (file)
@@ -2,14 +2,14 @@ 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:       2014.09.04
+Version:       2018.10.31
 Release:       1
 License:       CC 3.0 BY-SA
 Group:         Applications/Databases
 Source0:       http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.xz?/GeoLiteCity-%{version}.dat.xz
-# Source0-md5: 6ef0210b66ae4e7c9bcbc04622308603
+# Source0-md5: e672c69ed91151a9541123c7ad778c1e
 Source1:       http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz?/GeoLiteCityv6-%{version}.dat.gz
-# Source1-md5: a6f71e608f93fdb69e0ed23c81d29195
+# Source1-md5: f6dff70c99f8449af1b7a33073eaa743
 URL:           http://dev.maxmind.com/geoip/legacy/geolite/
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
@@ -30,7 +30,7 @@ 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/>.
+przez MaxMind, dostępne z <http://www.maxmind.com/>.
 
 %prep
 %setup -qcT
@@ -40,7 +40,22 @@ cp -p %{SOURCE1} .
 xz -d GeoLiteCity-%{version}.dat.xz
 gunzip GeoLiteCityv6-%{version}.dat.gz
 
-ver=$(TZ=GMT stat -c '%y' GeoLiteCity-%{version}.dat | awk '{print $1}' | tr - .)
+%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
+
+ver=$(echo $d | tr - .)
 if [ "$ver" != %{version} ]; then
        exit 1
 fi
This page took 0.04154 seconds and 4 git commands to generate.