X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=GeoIP-db-City.spec;h=da43a80fefc176e3be248671d831400aa380bc9e;hb=2c6bd9623fc5ae06eb990e469e28c662cc58d5c9;hp=445057be326e29d65d84df936db4f0e4fdf2ae6f;hpb=c023e5637096073ef3a55f2c4d08b8a95fdbed36;p=packages%2FGeoIP-db-City.git diff --git a/GeoIP-db-City.spec b/GeoIP-db-City.spec index 445057b..da43a80 100644 --- a/GeoIP-db-City.spec +++ b/GeoIP-db-City.spec @@ -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: 2015.07.24 +Version: 2018.09.26 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: bf521ddc38791505915fe1123f0432c6 +# Source0-md5: e672c69ed91151a9541123c7ad778c1e Source1: http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz?/GeoLiteCityv6-%{version}.dat.gz -# Source1-md5: 99c90bed6644a2fc55950e121cd18d87 +# Source1-md5: 06f703e2c49edc67f44650b9b583e05e 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 . +przez MaxMind, dostępne z . %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