1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

- Update to 3.1

PR:		ports/68538
Submitted by:	Matthew X. Economou <xenophon@irtnog.org>
This commit is contained in:
Pav Lucistnik 2004-07-02 08:56:51 +00:00
parent 98ad22aa96
commit 46ff090155
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112757
3 changed files with 23 additions and 15 deletions

View File

@ -7,22 +7,19 @@
#
PORTNAME= feedparser
PORTVERSION= 2.76
PORTVERSION= 3.1
CATEGORIES= textproc python
MASTER_SITES= http://diveintomark.org/projects/feed_parser/
EXTRACT_SUFX= .py
DISTNAME= ${PORTNAME}
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= feedparser
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT= An RSS feed parser
COMMENT= An RSS feed parser written in Python
EXTRACT_CMD= ${CP}
EXTRACT_BEFORE_ARGS= #
EXTRACT_AFTER_ARGS= .
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
NO_WRKSUBDIR= yes
USE_PYTHON= yes
USE_ZIP= yes
PLIST_FILES= ${PYTHON_SITELIBDIR:S,^${PREFIX}/,,}/${PORTNAME}.py

View File

@ -1,2 +1,2 @@
MD5 (feedparser.py) = b233c80826705aacaab5b50819b277e7
SIZE (feedparser.py) = 57429
MD5 (feedparser-3.1.zip) = 1e499c6195b9f5a5aecc1fce14aa2189
SIZE (feedparser-3.1.zip) = 1205563

View File

@ -1,5 +1,16 @@
This is a "universal" feed parser, suitable for reading syndicated feeds as
produced by weblogs, news sites, wikis, and many other types of sites. It
handles Atom feeds, and the 9 different versions of RSS.
Universal Feed Parser is a Python module for downloading and parsing
syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, Userland
RSS 0.91, RSS 0.92, RSS 0.93, RSS 0.94, RSS 1.0, RSS 2.0, Atom, and
CDF feeds.
WWW: http://diveintomark.org/projects/feed_parser/
To use Universal Feed Parser, you will need Python 2.1 or later.
Universal Feed Parser is not meant to run standalone; it is a module
for you to use as part of a larger Python program.
Universal Feed Parser is easy to use; the module is self-contained in
a single file, feedparser.py, and it has only one public function,
parse. parse takes a number of arguments, but only one is required,
and it can be a URL, a local filename, or a raw string containing feed
data in any format.
WWW: http://feedparser.org/