public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/geoip: ChangeLog geoip-1.4.8-r3.ebuild
@ 2013-02-04 13:07 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2013-02-04 13:07 UTC (permalink / raw
  To: gentoo-commits

jer         13/02/04 13:07:18

  Modified:             ChangeLog
  Added:                geoip-1.4.8-r3.ebuild
  Log:
  Install GeoLiteCity.dat (bug #455340 by nandhp).
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.152                dev-libs/geoip/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?r1=1.151&r2=1.152

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	4 Feb 2013 10:11:50 -0000	1.151
+++ ChangeLog	4 Feb 2013 13:07:18 -0000	1.152
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/geoip
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.151 2013/02/04 10:11:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.152 2013/02/04 13:07:18 jer Exp $
+
+*geoip-1.4.8-r3 (04 Feb 2013)
+
+  04 Feb 2013; Jeroen Roovers <jer@gentoo.org> +geoip-1.4.8-r3.ebuild:
+  Install GeoLiteCity.dat (bug #455340 by nandhp).
 
   04 Feb 2013; Agostino Sarubbo <ago@gentoo.org> geoip-1.4.8-r2.ebuild:
   Stable for alpha, wrt bug #453404



1.1                  dev-libs/geoip/geoip-1.4.8-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?rev=1.1&content-type=text/plain

Index: geoip-1.4.8-r3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v 1.1 2013/02/04 13:07:18 jer Exp $

EAPI=4
inherit autotools

MY_P=${P/geoip/GeoIP}

DESCRIPTION="easily lookup countries by IP addresses, even when Reverse DNS entries don't exist"
HOMEPAGE="http://www.maxmind.com/app/ip-location"
SRC_URI="
	http://www.maxmind.com/download/geoip/api/c/${MY_P}.tar.gz
	http://geolite.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz
	http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
	ipv6? ( http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
		http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz )
"

# GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
LICENSE="LGPL-2.1 GPL-2 MaxMind2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
IUSE="ipv6 perl-geoipupdate static-libs"

DEPEND="sys-libs/zlib"
RDEPEND="
	${DEPEND}
	perl-geoipupdate? (
		dev-perl/PerlIO-gzip
		dev-perl/libwww-perl
	)
"

S=${WORKDIR}/${MY_P}

src_prepare() {
	sed -e "s:usr local share GeoIP:usr share GeoIP:" \
		-e "s:usr local etc:etc:" \
		-i apps/geoipupdate-pureperl.pl || die
	sed -e 's|yahoo.com|98.139.183.24|g' \
		-i test/country_test_name.txt test/region_test.txt || die

	eautoreconf
}

src_configure() {
	econf $(use_enable static-libs static)
}

src_install() {
	default
	use perl-geoipupdate && dobin apps/geoipupdate-pureperl.pl
	dodoc AUTHORS ChangeLog README TODO conf/GeoIP.conf.default
	rm "${ED}/etc/GeoIP.conf.default"
	if ! use static-libs; then
		rm -f "${ED}"/usr/lib*/lib*.la
	fi

	insinto /usr/share/GeoIP
	doins "${WORKDIR}/GeoIPASNum.dat"
	doins "${WORKDIR}/GeoLiteCity.dat"

	if use ipv6; then
		doins "${WORKDIR}/GeoIPv6.dat"
		doins "${WORKDIR}/GeoLiteCityv6.dat"
	fi

	newsbin "${FILESDIR}/geoipupdate-r2.sh" geoipupdate.sh
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-libs/geoip: ChangeLog geoip-1.4.8-r3.ebuild
@ 2013-02-18 13:29 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-02-18 13:29 UTC (permalink / raw
  To: gentoo-commits

aballier    13/02/18 13:29:06

  Modified:             ChangeLog geoip-1.4.8-r3.ebuild
  Log:
   keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.155                dev-libs/geoip/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?rev=1.155&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?rev=1.155&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?r1=1.154&r2=1.155

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog	6 Feb 2013 19:41:34 -0000	1.154
+++ ChangeLog	18 Feb 2013 13:29:06 -0000	1.155
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/geoip
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.154 2013/02/06 19:41:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.155 2013/02/18 13:29:06 aballier Exp $
+
+  18 Feb 2013; Alexis Ballier <aballier@gentoo.org> geoip-1.4.8-r3.ebuild:
+  keyword ~amd64-fbsd
 
   06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> geoip-1.4.8-r2.ebuild:
   Stable for sparc, wrt bug #453404



1.3                  dev-libs/geoip/geoip-1.4.8-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?r1=1.2&r2=1.3

Index: geoip-1.4.8-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- geoip-1.4.8-r3.ebuild	4 Feb 2013 19:44:59 -0000	1.2
+++ geoip-1.4.8-r3.ebuild	18 Feb 2013 13:29:06 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v 1.2 2013/02/04 19:44:59 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v 1.3 2013/02/18 13:29:06 aballier Exp $
 
 EAPI=4
 inherit autotools
@@ -23,7 +23,7 @@
 # GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
 LICENSE="LGPL-2.1 GPL-2 MaxMind2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
 IUSE="city ipv6 perl-geoipupdate static-libs"
 
 DEPEND="sys-libs/zlib"





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-libs/geoip: ChangeLog geoip-1.4.8-r3.ebuild
@ 2013-03-10 14:13 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2013-03-10 14:13 UTC (permalink / raw
  To: gentoo-commits

jer         13/03/10 14:13:23

  Modified:             ChangeLog geoip-1.4.8-r3.ebuild
  Log:
  Stable for HPPA (bug #461094).
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.161                dev-libs/geoip/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?rev=1.161&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?rev=1.161&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/ChangeLog?r1=1.160&r2=1.161

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ChangeLog	10 Mar 2013 13:37:53 -0000	1.160
+++ ChangeLog	10 Mar 2013 14:13:23 -0000	1.161
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/geoip
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.160 2013/03/10 13:37:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.161 2013/03/10 14:13:23 jer Exp $
+
+  10 Mar 2013; Jeroen Roovers <jer@gentoo.org> geoip-1.4.8-r3.ebuild:
+  Stable for HPPA (bug #461094).
 
   10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> geoip-1.4.8-r3.ebuild:
   Stable for x86, wrt bug #461094



1.6                  dev-libs/geoip/geoip-1.4.8-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild?r1=1.5&r2=1.6

Index: geoip-1.4.8-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- geoip-1.4.8-r3.ebuild	10 Mar 2013 13:37:53 -0000	1.5
+++ geoip-1.4.8-r3.ebuild	10 Mar 2013 14:13:23 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v 1.5 2013/03/10 13:37:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r3.ebuild,v 1.6 2013/03/10 14:13:23 jer Exp $
 
 EAPI=4
 inherit autotools
@@ -23,7 +23,7 @@
 # GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
 LICENSE="LGPL-2.1 GPL-2 MaxMind2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
 IUSE="city ipv6 perl-geoipupdate static-libs"
 
 DEPEND="sys-libs/zlib"





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-10 14:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 13:07 [gentoo-commits] gentoo-x86 commit in dev-libs/geoip: ChangeLog geoip-1.4.8-r3.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2013-02-18 13:29 Alexis Ballier (aballier)
2013-03-10 14:13 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox