pghmcfc pushed to GeoIP (el5). "- Update to 1.4.5 (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Tue Apr 14 07:36:56 UTC 2015


>From 01eefafe42acaa2e0a9d347ca82a23ccf84a5992 Mon Sep 17 00:00:00 2001
From: Michael Fleming <mfleming at fedoraproject.org>
Date: Fri, 28 Nov 2008 23:55:43 +0000
Subject: - Update to 1.4.5 - Fix database URL locations in Perl helper scripts


diff --git a/.cvsignore b/.cvsignore
index 8722994..2411988 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-GeoIP-1.4.4.tar.gz
+GeoIP-1.4.5.tar.gz
diff --git a/GeoIP.spec b/GeoIP.spec
index 2ceef7f..3c65974 100644
--- a/GeoIP.spec
+++ b/GeoIP.spec
@@ -1,12 +1,12 @@
 Name: GeoIP           
-Version: 1.4.4
-Release: 2%{?dist}
+Version: 1.4.5
+Release: 1%{?dist}
 Summary: C library for country/city/organization to IP address or hostname mapping     
 Group: Development/Libraries         
 License: LGPLv2+
 URL: http://www.maxmind.com/app/c            
 Source0: http://www.maxmind.com/download/geoip/api/c/GeoIP-%{version}.tar.gz 
-Source1: http://www.maxmind.com/download/geoip/database/LICENSE.txt
+Source1: LICENSE.txt
 Source2: fetch-geoipdata-city.pl
 Source3: fetch-geoipdata.pl
 Source4: README.Fedora
@@ -79,6 +79,10 @@ rm -rf %{buildroot}
 %{_libdir}/libGeoIPUpdate.so
 
 %changelog
+* Sat Nov 29 2008 Michael Fleming <mfleming+rpm at enlartenment.com> 1.4.5-1
+- Update to 1.4.5
+- Fix database URL locations in Perl helper scripts
+
 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng at fedoraproject.org> - 1.4.4-2
 - Autorebuild for GCC 4.3
 
diff --git a/LICENSE.txt b/LICENSE.txt
index 2380c54..01c2910 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -8,7 +8,7 @@ the COPYING file.
 
 OPEN DATA LICENSE (GeoLite Country and GeoLite City databases)
 
-Copyright (c) 2005 MaxMind LLC.  All Rights Reserved.
+Copyright (c) 2008 MaxMind, Inc.  All Rights Reserved.
 
 All advertising materials and documentation mentioning features or use of
 this database must display the following acknowledgment:
@@ -27,48 +27,13 @@ http://maxmind.com/"
 3. "MaxMind" may not be used to endorse or promote products derived from this
 database without specific prior written permission.
 
-THIS DATABASE IS PROVIDED BY MAXMIND.COM ``AS IS'' AND ANY 
+THIS DATABASE IS PROVIDED BY MAXMIND, INC ``AS IS'' AND ANY 
 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
-DISCLAIMED. IN NO EVENT SHALL MAXMIND.COM BE LIABLE FOR ANY 
+DISCLAIMED. IN NO EVENT SHALL MAXMIND BE LIABLE FOR ANY 
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
 DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-Some parts of this software distribution are derived from the APNIC, ARIN and
-RIPE databases (copyright details below). The author of this module makes no
-claims of ownership on those parts.
-
-APNIC conditions of use:
-
-The files are freely available for download and use on the condition that APNIC
-will not be held responsible for any loss or damage arising from the application
-of the information contained in these reports.
-
-APNIC endeavours to the best of its ability to ensure the accuracy of these
-reports; however, APNIC makes no guarantee in this regard.
-
-In particular, it should be noted that these reports seek to indicate the
-country where resources were first allocated or assigned. It is not intended
-that these reports be considered as an authoritative statement of the location
-in which any specific resource may currently be in use.
-
-ARIN database copyright:
-
-Copyright (c) American Registry for Internet Numbers. All rights reserved.
-
-RIPE database copyright:
-
-The information in the RIPE Database is available to the public for agreed
-Internet operation purposes, but is under copyright. The copyright statement is:
-
-"Except for agreed Internet operational purposes, no part of this publication
-may be reproduced, stored in a retrieval system, or transmitted, in any form or
-by any means, electronic, mechanical, recording, or otherwise, without prior
-permission of the RIPE NCC on behalf of the copyright holders. Any use of this
-material to target advertising or similar activities is explicitly forbidden and
-may be prosecuted. The RIPE NCC requests to be notified of any such activities
-or suspicions thereof."
diff --git a/fetch-geoipdata-city.pl b/fetch-geoipdata-city.pl
index eef67e5..cb28f74 100644
--- a/fetch-geoipdata-city.pl
+++ b/fetch-geoipdata-city.pl
@@ -10,7 +10,7 @@ use Carp;
 my $ipdb     = "GeoLiteCity.dat";
 my $datadir  = "/usr/share/GeoIP/";
 my $fullpath = $datadir . $ipdb;
-my $url = "http://www.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz";
+my $url = "http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz";
 my $date = strftime "%Y%m%d", localtime;
 
 # Do we have an existing IP database?
diff --git a/fetch-geoipdata.pl b/fetch-geoipdata.pl
index 0c0c36c..770bbc2 100644
--- a/fetch-geoipdata.pl
+++ b/fetch-geoipdata.pl
@@ -10,7 +10,7 @@ use Carp;
 my $ipdb     = 'GeoIP.dat';
 my $datadir  = '/usr/share/GeoIP/';
 my $fullpath = $datadir . $ipdb;
-my $url      = 'http://www.maxmind.com/download/geoip/database/GeoIP.dat.gz';
+my $url      = 'http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz';
 my $date     = strftime '%Y%m%d', localtime;
 
 # Do we have an existing IP database?
diff --git a/sources b/sources
index ae8e3c6..1a884e0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-27c1320e41e67b9ddcf4118e4eaccd1d  GeoIP-1.4.4.tar.gz
+d95c34cf8ebd48e357b1812db5d75cf1  GeoIP-1.4.5.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/GeoIP.git/commit/?h=el5&id=01eefafe42acaa2e0a9d347ca82a23ccf84a5992


More information about the scm-commits mailing list