Logoj0ke.net Open Build Service > Projects > devel:libs > GeoIP > Changes
Sign Up | Log In

Changes of Revision 12

[-] Changed GeoIP.changes
x
 
1
@@ -1,4 +1,41 @@
2
 -------------------------------------------------------------------
3
+Wed Jul 23 17:13:38 UTC 2014 - cs@linux-administrator.com
4
+
5
+- update to release 1.5.1
6
+  * Update time_zone for Ontario, Canada ( Boris Zentner )
7
+  * geoiplookup and geoiplookup6 exit code is 0 when user asked for help ( Jan Safranek )
8
+  * Added -h option to geoiplookup6 ( Jan Safranek )
9
+  * Do not load the database file if nodes and file size do not make sense. ( Boris Zentner )
10
+  * Keep README and man pages in pure ascii. ( Boris Zentner )
11
+  * It doesn't make sense to use GEOIP_INDEX_MODE with small databases like GEOIP_COUNTRY_EDITION. Instead of undefined behaviour we handle it silently as GEOIP_MEMORY_MODE ( Boris Zentner )
12
+  * Update FIPS codes for Greece ( Boris Zentner )
13
+
14
+- changes from 1.5.0
15
+  * Rename custom_directory to GeoIP_custom_directory. ( Boris Zentner )
16
+  * Make sure the database match the requested type. This is helpful for Databases with the same default name and the general geoiplookup form ( geoiplookup without a specific database ) ( Boris Zentner )
17
+  * apps/geoiplookup6.c use the ipnum instead of the hostname for lookups. ( Boris Zentner )
18
+  * Use configure.ac instead of configure.in ( Boris Zentner )
19
+  * Region lookup is a bit faster ( Boris Zentner )
20
+  * Add pkg-config file ( Bastien Nocera )
21
+  * Updates required to build a Windows DLL under MinGW ( Gerald Combs )
22
+  * Make API thread safe ( Boris Zentner )
23
+  * geoiplookup's default charset is UTF8 -l change the charset back to iso8859-1 ( Boris Zentner )
24
+  * geoipupdate skips \r otherwise it might be part of the last product_id ( Boris Zentner )
25
+  * Update time zones ( Boris Zentner )
26
+  * Update Region codes ( Boris Zentner )
27
+  * Remove the unused CITYCONFIDENCE* database types ( Boris Zentner )
28
+  * bootstrap rebuilds ltmain.sh ( Boris Zentner )
29
+  * Update README.OSX for Lion ( Boris Zentner )
30
+  * Change Macedonia to Macedonia, The Former Yugoslav Republic of ( Boris Zentner )
31
+  * Add region_name to geoiplookup GEOIP_CITY_EDITION_REV1 ( Boris Zentner )
32
+  * Add region_name to geoiplookup GEOIP_CITY_EDITION_REV0 ( Chris Johnson )
33
+  * Add a --disable-data-files option. This allows you to build and install the library without having a data/GeoIP.dat file. This is useful when building the library from a checkout of the source tree, rather than a tarball ( Dave Rolsky )
34
+  * Add GEOIP_ACCURACYRADIUS_EDITION and GEOIP_ACCURACYRADIUS_EDITION_V6 ( Boris Zentner )
35
+  * Add more database types GEOIP_COUNTRYCONF_EDITION, GEOIP_CITYCONF_EDITION, GEOIP_REGIONCONF_EDITION and GEOIP_POSTALCONF_EDITION ( Boris Zentner )
36
+  * Fix default filenames for GEOIP_NETSPEED_EDITION_REV1 and GEOIP_NETSPEED_EDITION_REV1_V6 ( Boris Zentner )
37
+
38
+
39
+-------------------------------------------------------------------
40
 Fri Dec 16 20:59:50 UTC 2011 - cs@linux-administrator.com
41
 
42
 - update to release 1.4.8 
43
[-] Changed GeoIP.spec ^
69
 
1
@@ -1,5 +1,5 @@
2
 #
3
-# spec file for package GeoIP (Version 1.4.8)
4
+# spec file for package GeoIP
5
 #
6
 # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
7
 # This file and all modifications and additions to the pristine
8
@@ -9,20 +9,22 @@
9
 #
10
 
11
 # norootforbuild
12
-
13
+%define pkgname    geoip-api-c
14
 Name:           GeoIP
15
-Version:        1.4.8
16
-Release:        1
17
+Version:        1.5.1
18
+Release:        10
19
 #
20
 License:        LGPL v2.1 or later
21
 Group:          Development/Libraries/C and C++
22
 #
23
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
24
 BuildRequires:  zlib-devel
25
+BuildRequires: autoconf automake
26
 #
27
 Url:            http://www.maxmind.com/
28
-Source:        http://www.maxmind.com/download/geoip/api/c/%{name}-%{version}.tar.bz2
29
+Source:        http://www.maxmind.com/download/geoip/api/c/%{pkgname}-%{version}.tar.bz2
30
 Source1:        LICENSE.txt
31
+Source2:   GeoIP.dat.gz
32
 #
33
 Summary:        Library to find the country that any IP address originates from
34
 
35
@@ -96,9 +98,15 @@
36
 %endif
37
 
38
 %prep
39
-%setup
40
+%setup -n %{pkgname}-%{version}
41
+zcat %{S:2} > data/GeoIP.dat
42
 
43
 %build
44
+if [ ! -f configure ] ; then
45
+ if [ -x bootstrap ] ; then
46
+  ./bootstrap
47
+ fi
48
+fi
49
 %configure --disable-static --with-pic
50
 %{__make} %{?jobs:-j%jobs}
51
 
52
@@ -133,7 +141,7 @@
53
 %files -n libGeoIP1
54
 %defattr(-, root, root, -)
55
 %{_libdir}/libGeoIP.so.1
56
-%{_libdir}/libGeoIP.so.1.4.8
57
+%{_libdir}/libGeoIP.so.1.5.1
58
 %{_libdir}/libGeoIPUpdate.so.0
59
 %{_libdir}/libGeoIPUpdate.so.0.0.0
60
 
61
@@ -144,6 +152,7 @@
62
 %{_includedir}/GeoIPUpdate.h
63
 %{_libdir}/libGeoIP.so
64
 %{_libdir}/libGeoIPUpdate.so
65
+%{_libdir}/pkgconfig/geoip.pc
66
 
67
 %changelog
68
 * Mon Oct 20 2008 Carsten Schoene <cs@linux-administrator.com>
69
Added GeoIP.dat.gz ^
Added geoip-api-c-1.5.1.tar.bz2 ^