9b91067581
changes: fixes for issues: -invalid text in XML declaration causes sanitizer to crash -sanitization can be bypassed by malformed XML comments -sanitizer doesn't strip unsafe URI schemes -add test target
23 lines
589 B
Makefile
23 lines
589 B
Makefile
# $NetBSD: Makefile,v 1.17 2011/03/16 16:43:35 drochner Exp $
|
|
#
|
|
|
|
DISTNAME= feedparser-5.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= http://feedparser.googlecode.com/files/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= http://feedparser.googlecode.com/
|
|
COMMENT= Parse RSS and Atom feeds in Python
|
|
|
|
# XXXschmonz: python 2.4 -> 3.1
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PYDISTUTILSPKG= yes
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/feedparser && ${PYTHONBIN} feedparsertest.py
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|