pkgsrc/net/py-irclib/Makefile
imil b97a349750 Updated to version 8.9
8.9
    Documentation is now published at https://pythonhosted.org/irc.

8.8
    Issue #35: Removed the mutex during process_once.
    Issue #37: Deprecated buffer.LineBuffer for Python 3.

8.7
    Issue #34: Introduced buffer.LenientDecodingLineBuffer for handling input
    in a more lenient way, preferring UTF-8 but falling back to latin-1 if the
    content cannot be decoded as UTF-8.

8.6
    Introduced 'Manifold' as an alias for irc.client.IRC. This better name will
    replace the IRC name in a future version.
    Introduced the 'manifold' property of SimpleIRCClient as an alias for
    ircobj.
    Added 'manifold_class' property to the client.SimpleIRCClient to allow
    consumers to provide a customized Manifold.
2014-05-09 21:37:03 +00:00

33 lines
864 B
Makefile

# $NetBSD: Makefile,v 1.9 2014/05/09 21:37:03 imil Exp $
#
IRCVERS= 8.9
DISTNAME= irc-${IRCVERS}
PKGNAME= ${PYPKGPREFIX}-irclib-${IRCVERS}
CATEGORIES= net python
MASTER_SITES= http://pypi.python.org/packages/source/i/irc/
EXTRACT_SUFX= .zip
MAINTAINER= imil@NetBSD.org
HOMEPAGE= https://bitbucket.org/jaraco/irc
COMMENT= Internet Relay Chat (IRC) protocol client library
LICENSE= gnu-gpl-v2
USE_LANGUAGES= # none
DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six
DEPENDS+= ${PYPKGPREFIX}-jaraco_util>=10.0.2:../../devel/py-jaraco_util
BUILD_DEPENDS+= ${PYPKGPREFIX}-hgtools>=2.0.2:../../devel/py-hgtools
.include "../../lang/python/distutils.mk"
PLIST_VARS+= requires
.if ${PYVERSSUFFIX} == "2.5" || ${PYVERSSUFFIX} == "2.6"
PLIST.requires= yes
.endif
post-extract:
cd ${WRKSRC} && ${CHMOD} ${SHAREMODE} irc.egg-info/*
.include "../../mk/bsd.pkg.mk"