From owner-svn-ports-all@FreeBSD.ORG Tue Nov 13 14:49:14 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53ECCE24; Tue, 13 Nov 2012 14:49:14 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1FDCA8FC14; Tue, 13 Nov 2012 14:49:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qADEnD1J065219; Tue, 13 Nov 2012 14:49:13 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qADEnDKG065217; Tue, 13 Nov 2012 14:49:13 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201211131449.qADEnDKG065217@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Tue, 13 Nov 2012 14:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r307378 - branches/RELENG_9_1_0/irc/py-irclib X-SVN-Group: ports-branches 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.14 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: Tue, 13 Nov 2012 14:49:14 -0000 Author: rm Date: Tue Nov 13 14:49:13 2012 New Revision: 307378 URL: http://svnweb.freebsd.org/changeset/ports/307378 Log: MFH r307375 - add missing build dependency on devel/py-hgtools. This should fix build on pointyhat [1] - bump PORTREVISION because of dependency change while here: - trim Makefile header - remove trailing whitespace in pkg-descr PR: 173507 [1] PR: 173501 [2] Submitted by: William Grzybowski (maintainer) Reported by: bdrewery [2] Approved by: portmgr (beat) Feature safe: yes Modified: branches/RELENG_9_1_0/irc/py-irclib/Makefile branches/RELENG_9_1_0/irc/py-irclib/pkg-descr Directory Properties: branches/RELENG_9_1_0/ (props changed) Modified: branches/RELENG_9_1_0/irc/py-irclib/Makefile ============================================================================== --- branches/RELENG_9_1_0/irc/py-irclib/Makefile Tue Nov 13 14:45:01 2012 (r307377) +++ branches/RELENG_9_1_0/irc/py-irclib/Makefile Tue Nov 13 14:49:13 2012 (r307378) @@ -1,12 +1,9 @@ -# New ports collection makefile for: py-irclib -# Date created: 25 April 2001 -# Whom: Hye-Shik Chang -# +# Created by: Hye-Shik Chang # $FreeBSD$ -# PORTNAME= irclib PORTVERSION= 0.6.4 +PORTREVISION= 1 CATEGORIES= irc python MASTER_SITES= SF/python-${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -23,7 +20,8 @@ PYDISTUTILS_NOEGGINFO=yes # TODO: irclib have some weird install script bundled and use of # USE_PYDISTUTILS=easy_install would break it -BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools +BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools \ + ${PYTHON_PKGNAMEPREFIX}hgtools>0:${PORTSDIR}/devel/py-hgtools PLIST_SUB= VERSION=${PORTVERSION} PYVER=${PYTHON_VERSION:S/python//} Modified: branches/RELENG_9_1_0/irc/py-irclib/pkg-descr ============================================================================== --- branches/RELENG_9_1_0/irc/py-irclib/pkg-descr Tue Nov 13 14:45:01 2012 (r307377) +++ branches/RELENG_9_1_0/irc/py-irclib/pkg-descr Tue Nov 13 14:49:13 2012 (r307378) @@ -1,6 +1,6 @@ -This library is intended to encapsulate the IRC protocol at a quite -low level. It provides an event-driven IRC client framework. It has -a fairly thorough support for the basic IRC protocol, CTCP and DCC. +This library is intended to encapsulate the IRC protocol at a quite +low level. It provides an event-driven IRC client framework. It has +a fairly thorough support for the basic IRC protocol, CTCP and DCC. It actually does CTCP parsing exactly as the CTCP specifications describe it. WWW: http://sourceforge.net/projects/python-irclib/