From owner-svn-ports-all@freebsd.org Sat Mar 19 17:12:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA445AD6054; Sat, 19 Mar 2016 17:12:00 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id 680DEDC2; Sat, 19 Mar 2016 17:12:00 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2JHBxgI055309; Sat, 19 Mar 2016 17:11:59 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2JHBxmZ055303; Sat, 19 Mar 2016 17:11:59 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603191711.u2JHBxmZ055303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 19 Mar 2016 17:11:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411415 - in head: . devel devel/py-icu devel/py-pyicu science/gramps sysutils/py-freenas.cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Mar 2016 17:12:00 -0000 Author: feld Date: Sat Mar 19 17:11:58 2016 New Revision: 411415 URL: https://svnweb.freebsd.org/changeset/ports/411415 Log: Move devel/py-icu to devel/py-pyicu * PORTNAME devel/py-pyicu should be used rather than devel/py-icu, per policy [1] * Add LICENSE=MIT as per LICENSE file contained in distfile * Tidy up MAKE_ENV variable assignment (pet portlint) * Update WWW in pkg-descr to point to PyPI site, since the old site is down * Update other ports which depend on devel/py-icu to point to devel/py-pyicu [1] https://wiki.freebsd.org/Python/PortsPolicy PR: 207367 Approved by: maintainer timeout Added: head/devel/py-pyicu/ - copied from r411414, head/devel/py-icu/ Deleted: head/devel/py-icu/ Modified: head/MOVED head/devel/Makefile head/devel/py-pyicu/Makefile head/devel/py-pyicu/pkg-descr head/science/gramps/Makefile head/sysutils/py-freenas.cli/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sat Mar 19 17:02:45 2016 (r411414) +++ head/MOVED Sat Mar 19 17:11:58 2016 (r411415) @@ -8234,3 +8234,4 @@ security/openvas-libnasl|security/openva security/openvas-server|security/openvas-scanner|2016-03-17|Renamed security/openvas-plugins|security/openvas-scanner|2016-03-17|Merged security/openvas-client||2016-03-17|Discontinued, try security/greenbone-security-assistant +devel/py-icu|devel/py-pyicu|2016-03-19|Renamed to match upstream (PyPI) name Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 19 17:02:45 2016 (r411414) +++ head/devel/Makefile Sat Mar 19 17:11:58 2016 (r411415) @@ -4109,7 +4109,6 @@ SUBDIR += py-hypothesis SUBDIR += py-icalendar SUBDIR += py-ice - SUBDIR += py-icu SUBDIR += py-iniparse SUBDIR += py-initgroups SUBDIR += py-instant @@ -4268,6 +4267,7 @@ SUBDIR += py-pygit2 SUBDIR += py-pygithub SUBDIR += py-pygpx + SUBDIR += py-pyicu SUBDIR += py-pyinotify SUBDIR += py-pyinstaller SUBDIR += py-pykde4 Modified: head/devel/py-pyicu/Makefile ============================================================================== --- head/devel/py-icu/Makefile Sat Mar 19 17:02:45 2016 (r411414) +++ head/devel/py-pyicu/Makefile Sat Mar 19 17:11:58 2016 (r411415) @@ -1,9 +1,9 @@ # Created by: bland@FreeBSD.org # $FreeBSD$ -PORTNAME= icu +PORTNAME= pyicu PORTVERSION= 1.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,13 +12,15 @@ DISTNAME= PyICU-${PORTVERSION} MAINTAINER= bland@FreeBSD.org COMMENT= Python extension wrapping IBM's ICU C++ API +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + USES= python USE_PYTHON= distutils autoplist -MAKE_ENV+= \ - PYICU_INCLUDES="${PREFIX}/include" \ - PYICU_CFLAGS="-w:-DPYICU_VER=\"$(PORTVERSION)\"" \ - PYICU_LFLAGS="-L${PREFIX}/lib" +MAKE_ENV+= PYICU_INCLUDES="${PREFIX}/include" \ + PYICU_CFLAGS="-w:-DPYICU_VER=\"${PORTVERSION}\"" \ + PYICU_LFLAGS="-L${PREFIX}/lib" LIB_DEPENDS+= libicudata.so:${PORTSDIR}/devel/icu Modified: head/devel/py-pyicu/pkg-descr ============================================================================== --- head/devel/py-icu/pkg-descr Sat Mar 19 17:02:45 2016 (r411414) +++ head/devel/py-pyicu/pkg-descr Sat Mar 19 17:11:58 2016 (r411415) @@ -1,4 +1,4 @@ PyICU is a python extension wrapping IBM's ICU C++ API. PyICU is supported on Mac OS X, Linux (32- and 64-bit) and Windows. -WWW: http://pyicu.osafoundation.org/ +WWW: https://pypi.python.org/pypi/PyICU/ Modified: head/science/gramps/Makefile ============================================================================== --- head/science/gramps/Makefile Sat Mar 19 17:02:45 2016 (r411414) +++ head/science/gramps/Makefile Sat Mar 19 17:11:58 2016 (r411415) @@ -3,7 +3,7 @@ PORTNAME= gramps PORTVERSION= 3.4.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= science gnome python MASTER_SITES= SF/${PORTNAME}/Stable/${PORTVERSION} @@ -14,7 +14,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsddb>0:${PORTSDIR}/databases/py-bsddb \ - ${PYTHON_PKGNAMEPREFIX}icu>=1.8:${PORTSDIR}/devel/py-icu + ${PYTHON_PKGNAMEPREFIX}pyicu>=1.8:${PORTSDIR}/devel/py-pyicu NO_ARCH= yes USE_BDB= 5+ Modified: head/sysutils/py-freenas.cli/Makefile ============================================================================== --- head/sysutils/py-freenas.cli/Makefile Sat Mar 19 17:02:45 2016 (r411414) +++ head/sysutils/py-freenas.cli/Makefile Sat Mar 19 17:11:58 2016 (r411415) @@ -2,6 +2,7 @@ PORTNAME= freenas.cli PORTVERSION= 10.2a6 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +12,7 @@ COMMENT= FreeNAS Command Line Interface BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}freenas.utils>0:${PORTSDIR}/devel/py-freenas.utils RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}columnize>0:${PORTSDIR}/devel/py-columnize \ - ${PYTHON_PKGNAMEPREFIX}icu>0:${PORTSDIR}/devel/py-icu \ + ${PYTHON_PKGNAMEPREFIX}pyicu>0:${PORTSDIR}/devel/py-pyicu \ ${PYTHON_PKGNAMEPREFIX}natural>0:${PORTSDIR}/devel/py-natural \ ${PYTHON_PKGNAMEPREFIX}ply>0:${PORTSDIR}/devel/py-ply \ ${PYTHON_PKGNAMEPREFIX}termcolor>0:${PORTSDIR}/devel/py-termcolor \