[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openpkg-cvs
Subject:    [CVS] OpenPKG: openpkg-re/vcheck/ vc.geoip openpkg-src/geoip/ geoip.pa...
From:       "Ralf S. Engelschall" <rse () openpkg ! org>
Date:       2003-09-29 7:48:46
[Download RAW message or body]

  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  ____________________________________________________________________________

  Server: cvs.openpkg.org                  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs                   Email:  rse@openpkg.org
  Module: openpkg-src openpkg-web openpkg$ Date:   29-Sep-2003 09:48:45
  Branch: HEAD                             Handle: 2003092908484302

  Added files:
    openpkg-src/geoip       geoip.patch
  Modified files:
    openpkg-re/vcheck       vc.geoip
    openpkg-src/geoip       geoip.spec
    openpkg-web             news.txt

  Log:
    upgrading package: geoip 1.2.2 -> 1.3.0

  Summary:
    Revision    Changes     Path
    1.32        +1  -1      openpkg-re/vcheck/vc.geoip
    1.10        +45 -0      openpkg-src/geoip/geoip.patch
    1.38        +4  -2      openpkg-src/geoip/geoip.spec
    1.6778      +1  -0      openpkg-web/news.txt
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-re/vcheck/vc.geoip
  ============================================================================
  $ cvs diff -u -r1.31 -r1.32 vc.geoip
  --- openpkg-re/vcheck/vc.geoip	12 Sep 2003 07:28:31 -0000	1.31
  +++ openpkg-re/vcheck/vc.geoip	29 Sep 2003 07:48:43 -0000	1.32
  @@ -2,7 +2,7 @@
   }
   
   prog geoip = {
  -  version   = 1.2.2
  +  version   = 1.3.0
     url       = http://maxmind.com/download/geoip/api/c/
     regex     = GeoIP-(__VER__)\.tar\.gz
   }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/geoip/geoip.patch
  ============================================================================
  $ cvs diff -u -r0 -r1.10 geoip.patch
  --- /dev/null	2003-09-29 09:48:45.000000000 +0200
  +++ geoip.patch	2003-09-29 09:48:45.000000000 +0200
  @@ -0,0 +1,45 @@
  +Index: libGeoIP/GeoIP.c
  +--- libGeoIP/GeoIP.c.orig	2003-09-16 06:36:30.000000000 +0200
  ++++ libGeoIP/GeoIP.c	2003-09-29 09:47:08.000000000 +0200
  +@@ -34,7 +34,11 @@
  + #endif
  + 
  + #include <netinet/in.h> /* For ntohl */
  ++#if defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  + #include <stdint.h>     /* For uint32_t */
  ++#else
  ++#define uint32_t unsigned long
  ++#endif
  + 
  + #define COUNTRY_BEGIN 16776960
  + #define STATE_BEGIN_REV0 16700000
  +Index: libGeoIP/GeoIPCity.c
  +--- libGeoIP/GeoIPCity.c.orig	2003-09-23 21:30:41.000000000 +0200
  ++++ libGeoIP/GeoIPCity.c	2003-09-29 09:47:17.000000000 +0200
  +@@ -26,7 +26,11 @@
  + #include <winsock.h>
  + #endif
  + #include <netinet/in.h> /* For ntohl */
  ++#if defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  + #include <stdint.h>     /* For uint32_t */
  ++#else
  ++#define uint32_t unsigned long
  ++#endif
  + 
  + const int FULL_RECORD_LENGTH = 50;
  + 
  +Index: test/test-geoip-region.c
  +--- test/test-geoip-region.c.orig	2003-09-15 06:02:20.000000000 +0200
  ++++ test/test-geoip-region.c	2003-09-29 09:47:41.000000000 +0200
  +@@ -20,7 +20,11 @@
  + 
  + #include <GeoIP.h>
  + #include <netdb.h>  /* For gethostbyname */
  ++#if defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  + #include <stdint.h> /* For uint32_t */
  ++#else
  ++#define uint32_t unsigned long
  ++#endif
  + #include <netinet/in.h> /* For ntohl */
  + #include <assert.h>
  + 
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/geoip/geoip.spec
  ============================================================================
  $ cvs diff -u -r1.37 -r1.38 geoip.spec
  --- openpkg-src/geoip/geoip.spec	12 Sep 2003 07:28:33 -0000	1.37
  +++ openpkg-src/geoip/geoip.spec	29 Sep 2003 07:48:45 -0000	1.38
  @@ -24,7 +24,7 @@
   ##
   
   #   package version
  -%define       V_api_c   1.2.2
  +%define       V_api_c   1.3.0
   %define       V_api_pl  1.21
   
   #   package information
  @@ -37,7 +37,7 @@
   Group:        Network
   License:      GPL
   Version:      %{V_api_c}
  -Release:      20030912
  +Release:      20030929
   
   #   package options
   %option       with_perl   no
  @@ -45,6 +45,7 @@
   #   list of sources
   Source0:      http://www.maxmind.com/download/geoip/api/c/GeoIP-%{V_api_c}.tar.gz
   Source1:      http://www.cpan.org/modules/by-module/Geo/Geo-IP-%{V_api_pl}.tar.gz
  +Patch0:       geoip.patch
   
   #   build information
   Prefix:       %{l_prefix}
  @@ -64,6 +65,7 @@
   
   %prep
       %setup -q -n GeoIP-%{V_api_c}
  +    %patch -p0
   %if "%{with_perl}" == "yes"
       %setup -q -D -T -a 1 -n GeoIP-%{V_api_c}
   %endif
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  ============================================================================
  $ cvs diff -u -r1.6777 -r1.6778 news.txt
  --- openpkg-web/news.txt	29 Sep 2003 06:58:57 -0000	1.6777
  +++ openpkg-web/news.txt	29 Sep 2003 07:48:44 -0000	1.6778
  @@ -1,3 +1,4 @@
  +29-Sep-2003: Upgraded package: P<geoip-1.3.0-20030929>
   29-Sep-2003: Upgraded package: P<cvsd-1.0.0-20030929>
   29-Sep-2003: Upgraded package: P<docbook-4.2-20030929>
   29-Sep-2003: Upgraded package: P<perl-db-20030929-20030929>
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     openpkg-cvs@openpkg.org
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic