From owner-svn-ports-all@FreeBSD.ORG Tue Nov 13 14:09:47 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 6E78748A; Tue, 13 Nov 2012 14:09:47 +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 3A1B78FC12; Tue, 13 Nov 2012 14:09:47 +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 qADE9lgN058922; Tue, 13 Nov 2012 14:09:47 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qADE9lVu058920; Tue, 13 Nov 2012 14:09:47 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201211131409.qADE9lVu058920@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Tue, 13 Nov 2012 14:09:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307375 - head/irc/py-irclib 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.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:09:47 -0000 Author: rm Date: Tue Nov 13 14:09:46 2012 New Revision: 307375 URL: http://svnweb.freebsd.org/changeset/ports/307375 Log: - 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] Feature safe: yes Modified: head/irc/py-irclib/Makefile head/irc/py-irclib/pkg-descr Modified: head/irc/py-irclib/Makefile ============================================================================== --- head/irc/py-irclib/Makefile Tue Nov 13 14:05:23 2012 (r307374) +++ head/irc/py-irclib/Makefile Tue Nov 13 14:09:46 2012 (r307375) @@ -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: head/irc/py-irclib/pkg-descr ============================================================================== --- head/irc/py-irclib/pkg-descr Tue Nov 13 14:05:23 2012 (r307374) +++ head/irc/py-irclib/pkg-descr Tue Nov 13 14:09:46 2012 (r307375) @@ -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/