From owner-svn-ports-head@freebsd.org Fri Sep 28 12:35:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D433A10AFD4E; Fri, 28 Sep 2018 12:35:43 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 89A5D71C2A; Fri, 28 Sep 2018 12:35:43 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7FDC9150E6; Fri, 28 Sep 2018 12:35:43 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8SCZhxq028389; Fri, 28 Sep 2018 12:35:43 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8SCZgv2028386; Fri, 28 Sep 2018 12:35:42 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201809281235.w8SCZgv2028386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 28 Sep 2018 12:35:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480857 - in head/net: GeoIP geoipupdate X-SVN-Group: ports-head X-SVN-Commit-Author: adamw X-SVN-Commit-Paths: in head/net: GeoIP geoipupdate X-SVN-Commit-Revision: 480857 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2018 12:35:44 -0000 Author: adamw Date: Fri Sep 28 12:35:42 2018 New Revision: 480857 URL: https://svnweb.freebsd.org/changeset/ports/480857 Log: Make the GeoIP and geoipupdate descriptions reflect reality The difference is no longer paid vs. unpaid. There are free versions of the GeoIP2 databases, and they are preferred when supported. Modified: head/net/GeoIP/pkg-descr head/net/geoipupdate/Makefile head/net/geoipupdate/pkg-descr Modified: head/net/GeoIP/pkg-descr ============================================================================== --- head/net/GeoIP/pkg-descr Fri Sep 28 12:08:54 2018 (r480856) +++ head/net/GeoIP/pkg-descr Fri Sep 28 12:35:42 2018 (r480857) @@ -1,14 +1,15 @@ GeoIP is a C library that enables the user to find the country that any -IP address or hostname originates from. It uses a file based database -that is accurate as of March 2002. This database simply contains IP blocks -as keys, and countries as values. This database should be more complete and -accurate than using reverse DNS lookups. +IP address or hostname originates from. This library supports the legacy +GeoIP database. Although it is kept up-to-date, the non-legacy database +(net/libmaxminddb) is preferable when supported. This module can be used to automatically select the geographically closest mirror, to analyze your web server logs to determine the countries of your visitors, for credit card fraud detection, and for software export controls. This port includes a helper script, geoipupdate.sh, to help you keep the -library up-to-date. +library up-to-date. The helper script will only update the legacy +database. To update GeoIP2 databases, install the geoipupdate port from +net/geoipupdate. WWW: http://dev.maxmind.com/geoip/legacy Modified: head/net/geoipupdate/Makefile ============================================================================== --- head/net/geoipupdate/Makefile Fri Sep 28 12:08:54 2018 (r480856) +++ head/net/geoipupdate/Makefile Fri Sep 28 12:35:42 2018 (r480857) @@ -7,7 +7,7 @@ CATEGORIES= net geography MASTER_SITES= https://github.com/maxmind/geoipupdate/releases/download/v${PORTVERSION}/ MAINTAINER= adamw@FreeBSD.org -COMMENT= Fetch the latest copies of the paid GeoIP database +COMMENT= Fetch the latest copies of the paid GeoIP2 databases LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE Modified: head/net/geoipupdate/pkg-descr ============================================================================== --- head/net/geoipupdate/pkg-descr Fri Sep 28 12:08:54 2018 (r480856) +++ head/net/geoipupdate/pkg-descr Fri Sep 28 12:35:42 2018 (r480857) @@ -1,10 +1,8 @@ -This program is used to fetch the GeoIP2 and GeoIP databases. It requires -an active GeoIP subscription. +This program is used to fetch and update the GeoIP2 databases. By +default it fetches the free databases, but it can also manage +the paid databases with an active GeoIP subscription. -Please see https://www.maxmind.com/en/geolocation_landing for details about -obtaining a subscription. - -If you wish to install the free versions of the GeoIP databases, please -use the geoipudate.sh script provided in net/GeoIP. +Please see https://www.maxmind.com/en/geolocation_landing for details +about obtaining an optional subscription. WWW: https://github.com/maxmind/geoipupdate