From owner-svn-ports-head@FreeBSD.ORG Wed Feb 25 14:31:45 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5BB716A; Wed, 25 Feb 2015 14:31:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5427E9E; Wed, 25 Feb 2015 14:31:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1PEVjnG039288; Wed, 25 Feb 2015 14:31:45 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1PEVimv039284; Wed, 25 Feb 2015 14:31:44 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201502251431.t1PEVimv039284@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Wed, 25 Feb 2015 14:31:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379918 - in head/net: . py-pygeoip X-SVN-Group: ports-head 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.18-1 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: Wed, 25 Feb 2015 14:31:46 -0000 Author: nobutaka Date: Wed Feb 25 14:31:44 2015 New Revision: 379918 URL: https://svnweb.freebsd.org/changeset/ports/379918 QAT: https://qat.redports.org/buildarchive/r379918/ Log: Add py-pygeoip, pure Python GeoIP API. Added: head/net/py-pygeoip/ head/net/py-pygeoip/Makefile (contents, props changed) head/net/py-pygeoip/distinfo (contents, props changed) head/net/py-pygeoip/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Feb 25 14:27:11 2015 (r379917) +++ head/net/Makefile Wed Feb 25 14:31:44 2015 (r379918) @@ -922,6 +922,7 @@ SUBDIR += py-pcs SUBDIR += py-port-for SUBDIR += py-pybeanstalk + SUBDIR += py-pygeoip SUBDIR += py-pynsq SUBDIR += py-pypcap SUBDIR += py-pysendfile Added: head/net/py-pygeoip/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pygeoip/Makefile Wed Feb 25 14:31:44 2015 (r379918) @@ -0,0 +1,26 @@ +# Created by: Nobutaka Mantani +# $FreeBSD$ + +PORTNAME= pygeoip +PORTVERSION= 0.3.1 +CATEGORIES= net python geography +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nobutaka@FreeBSD.org +COMMENT= Pure Python GeoIP API + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USE_GITHUB= yes +USES= python +USE_PYTHON= distutils autoplist + +GH_ACCOUNT= appliedsec +GH_PROJECT= pygeoip +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 5538231 + +OPTIONS_DEFINE= DOCS + +.include Added: head/net/py-pygeoip/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pygeoip/distinfo Wed Feb 25 14:31:44 2015 (r379918) @@ -0,0 +1,2 @@ +SHA256 (pygeoip-0.3.1.tar.gz) = 2e043c324df51be244d3b4f84d65c01e7c77321f8f4a236afc367f6301bf5ed0 +SIZE (pygeoip-0.3.1.tar.gz) = 30968 Added: head/net/py-pygeoip/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pygeoip/pkg-descr Wed Feb 25 14:31:44 2015 (r379918) @@ -0,0 +1,5 @@ +Pure Python GeoIP API + +This library is based on Maxmind's GeoIP C API. + +WWW: https://github.com/appliedsec/pygeoip