summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorhauke <hauke@pkgsrc.org>2012-01-12 12:23:58 +0000
committerhauke <hauke@pkgsrc.org>2012-01-12 12:23:58 +0000
commitfaf33e64bdec787b8951adaba6586aaaba110c68 (patch)
tree86f3aba12304a203d1cf770c7ea1a9e673bf442b /www
parentbc87b158d345a9d848f85a6ab1ead0b21e3d0601 (diff)
downloadpkgsrc-faf33e64bdec787b8951adaba6586aaaba110c68.tar.gz
Upgrade package to 1.5.2. From WHATSNEW:
What's new in 1.5.2 (December 2011) =================================== Pertinent to users: 1. Fixed a warning that pops up when doing ``pip install pyblosxom`` 2. Removed debug logging from pycategories What's new in 1.5.1 (December 2011) =================================== Pertinent to users: ------------------- 1. Fixed a problem with the manifest so ``python setup.py install`` works again. 2. Fixed the WHATSNEW so it shows correct version and date for 1.5 release. What's new in 1.5 (December 2011) ================================= Pertinent to users: ------------------- 1. Renamed the project from PyBlosxom to Pyblosxom (no more CamelCase). 2. I moved all the plugins again. This time, instead of being in ``plugins/``, they're now in ``Pyblosxom/plugins/``. You no longer have to copy core plugins into your plugins directory. Instead of copying core plugin files, refer to the plugins in your ``config.py`` file using their full Python path in the Pyblosxom package. For example, the pycalendar plugin is now in ``Pyblosxom/plugins/pycalendar.py`` and thus its Pyblosxom package path is ``Pyblosxom.plugins.pycalendar``. Your ``config.py`` file would look have this:: py["load_plugins"] = [ ... "Pyblosxom.plugins.pycalendar", ... ] If you do this, then the next time you upgrade PyBlosxom, the plugins will be upgraded automatically. Further, documentation for plugins is at the top of the individual plugin files, but also in the documentation. This includes a list of the plugins available in the core. .. only:: text You can see the plugin documentation in docs/plugins/. .. only:: html You can see the plugin documentation at :ref:`part-two`. 3. Plugins added: markdown_parser, readmore 4. Plugins changed: pages * Fixed documentation and error messages for ``pagesdir``. * Fixed frontpage checking. Should catch / as well as /index now. * Adds more examples to documentation. tags * Increased tag cloud range from 3 sizes to 5. * Adds truncate support. * Fixes problems with initialization when building tags so that it initializes plugins allowing them to do startup things. This fixes problems with plugins that augment entry parsers. rst * renamed it to rst_parser so it's clearer what it is pycategories * fixed category_start/category_begin behavior for root category * fixed the first example of settings in the documentation the rest of the plugins: pep8 fixes and documentation updates 5. Plugins removed from Pyblosxom: commentAPI 6. Fixes error handling for loading plugins. When doing ``pyblosxom-cmd test`` and a plugin fails to load, it'll now tell you. When using the debug renderer and a plugin fails to load, it'll now tell you. 7. Lot of work on simplifying and improving the documentation. 8. Added a ``static_yearindexes`` setting. Set it to True to generate year indexes and False to not generate year indexes. Pertinent to developers ----------------------- 1. I removed all the extra infrastructure for testing plugins. Plugins that come with the core are now in the Pyblosxom package and their tests are in ``Pyblosxom/tests/``. 2. Adds *generate* subcommand to pyblosxom-cmd. This makes it easier to test blogs and plugins that do things with entries. 3. Renamed ``PyBlosxomWSGIApp`` class to ``PyblosxomWSGIApp``. 4. Renamed ``PyBlosxom`` class to ``Pyblosxom``. 5. Moved the project from gitorious to github. The new git repository is at `<http://github.com/willkg/pyblosxom>`_. 6. Removed ``VERSION_DATE`` and ``VERSION_SPLIT``. They're kind of silly and don't really help much. I moved the version to ``Pyblosxom/_version.py``. Use it like this:: from Pyblosxom import __version__ print __version__ I updated the documentation accordingly.
Diffstat (limited to 'www')
-rw-r--r--www/py-blosxom/Makefile9
-rw-r--r--www/py-blosxom/PLIST303
-rw-r--r--www/py-blosxom/distinfo8
3 files changed, 143 insertions, 177 deletions
diff --git a/www/py-blosxom/Makefile b/www/py-blosxom/Makefile
index 008f9fdbd0a..30afb4b582f 100644
--- a/www/py-blosxom/Makefile
+++ b/www/py-blosxom/Makefile
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.6 2011/07/08 14:38:33 hauke Exp $
+# $NetBSD: Makefile,v 1.7 2012/01/12 12:23:58 hauke Exp $
#
-PYBLOXSOMVERS= 1.5
-DISTNAME= pyblosxom-${PYBLOXSOMVERS}rc3
+PYBLOXSOMVERS= 1.5.2
+DISTNAME= pyblosxom-${PYBLOXSOMVERS}
PKGNAME= ${PYPKGPREFIX}-blosxom-${PYBLOXSOMVERS}
-PKGREVISION= 2
CATEGORIES= www
MASTER_SITES= http://pyblosxom.bluesock.org/download/
@@ -19,7 +18,7 @@ PKG_DESTDIR_SUPPORT= user-destdir
DIST_SUBDIR= ${DISTNAME} # upstream reissued tarball with no changes
DOC_SUBDIR= share/doc/pyblosxom
DOCDIR= ${PREFIX}/${DOC_SUBDIR}
-DOCFILES= INSTALL LICENSE README THANKS UPGRADE WHATSNEW
+DOCFILES= AUTHORS INSTALL LICENSE README.rst UPGRADE WHATSNEW
INSTALLATION_DIRS= ${DOC_SUBDIR}
diff --git a/www/py-blosxom/PLIST b/www/py-blosxom/PLIST
index c6f9887c8f8..0b92a8fe0e9 100644
--- a/www/py-blosxom/PLIST
+++ b/www/py-blosxom/PLIST
@@ -1,8 +1,11 @@
-@comment $NetBSD: PLIST,v 1.3 2011/07/08 14:38:33 hauke Exp $
+@comment $NetBSD: PLIST,v 1.4 2012/01/12 12:23:58 hauke Exp $
bin/pyblosxom-cmd
${PYSITELIB}/Pyblosxom/__init__.py
${PYSITELIB}/Pyblosxom/__init__.pyc
${PYSITELIB}/Pyblosxom/__init__.pyo
+${PYSITELIB}/Pyblosxom/_version.py
+${PYSITELIB}/Pyblosxom/_version.pyc
+${PYSITELIB}/Pyblosxom/_version.pyo
${PYSITELIB}/Pyblosxom/cache/__init__.py
${PYSITELIB}/Pyblosxom/cache/__init__.pyc
${PYSITELIB}/Pyblosxom/cache/__init__.pyo
@@ -60,6 +63,90 @@ ${PYSITELIB}/Pyblosxom/flavours/rss20.flav/story
${PYSITELIB}/Pyblosxom/plugin_utils.py
${PYSITELIB}/Pyblosxom/plugin_utils.pyc
${PYSITELIB}/Pyblosxom/plugin_utils.pyo
+${PYSITELIB}/Pyblosxom/plugins/__init__.py
+${PYSITELIB}/Pyblosxom/plugins/__init__.pyc
+${PYSITELIB}/Pyblosxom/plugins/__init__.pyo
+${PYSITELIB}/Pyblosxom/plugins/acronyms.py
+${PYSITELIB}/Pyblosxom/plugins/acronyms.pyc
+${PYSITELIB}/Pyblosxom/plugins/acronyms.pyo
+${PYSITELIB}/Pyblosxom/plugins/akismetcomments.py
+${PYSITELIB}/Pyblosxom/plugins/akismetcomments.pyc
+${PYSITELIB}/Pyblosxom/plugins/akismetcomments.pyo
+${PYSITELIB}/Pyblosxom/plugins/check_blacklist.py
+${PYSITELIB}/Pyblosxom/plugins/check_blacklist.pyc
+${PYSITELIB}/Pyblosxom/plugins/check_blacklist.pyo
+${PYSITELIB}/Pyblosxom/plugins/check_javascript.py
+${PYSITELIB}/Pyblosxom/plugins/check_javascript.pyc
+${PYSITELIB}/Pyblosxom/plugins/check_javascript.pyo
+${PYSITELIB}/Pyblosxom/plugins/check_nonhuman.py
+${PYSITELIB}/Pyblosxom/plugins/check_nonhuman.pyc
+${PYSITELIB}/Pyblosxom/plugins/check_nonhuman.pyo
+${PYSITELIB}/Pyblosxom/plugins/comments.py
+${PYSITELIB}/Pyblosxom/plugins/comments.pyc
+${PYSITELIB}/Pyblosxom/plugins/comments.pyo
+${PYSITELIB}/Pyblosxom/plugins/conditionalhttp.py
+${PYSITELIB}/Pyblosxom/plugins/conditionalhttp.pyc
+${PYSITELIB}/Pyblosxom/plugins/conditionalhttp.pyo
+${PYSITELIB}/Pyblosxom/plugins/disqus.py
+${PYSITELIB}/Pyblosxom/plugins/disqus.pyc
+${PYSITELIB}/Pyblosxom/plugins/disqus.pyo
+${PYSITELIB}/Pyblosxom/plugins/entrytitle.py
+${PYSITELIB}/Pyblosxom/plugins/entrytitle.pyc
+${PYSITELIB}/Pyblosxom/plugins/entrytitle.pyo
+${PYSITELIB}/Pyblosxom/plugins/firstdaydiv.py
+${PYSITELIB}/Pyblosxom/plugins/firstdaydiv.pyc
+${PYSITELIB}/Pyblosxom/plugins/firstdaydiv.pyo
+${PYSITELIB}/Pyblosxom/plugins/flavourfiles.py
+${PYSITELIB}/Pyblosxom/plugins/flavourfiles.pyc
+${PYSITELIB}/Pyblosxom/plugins/flavourfiles.pyo
+${PYSITELIB}/Pyblosxom/plugins/magicword.py
+${PYSITELIB}/Pyblosxom/plugins/magicword.pyc
+${PYSITELIB}/Pyblosxom/plugins/magicword.pyo
+${PYSITELIB}/Pyblosxom/plugins/markdown_parser.py
+${PYSITELIB}/Pyblosxom/plugins/markdown_parser.pyc
+${PYSITELIB}/Pyblosxom/plugins/markdown_parser.pyo
+${PYSITELIB}/Pyblosxom/plugins/no_old_comments.py
+${PYSITELIB}/Pyblosxom/plugins/no_old_comments.pyc
+${PYSITELIB}/Pyblosxom/plugins/no_old_comments.pyo
+${PYSITELIB}/Pyblosxom/plugins/pages.py
+${PYSITELIB}/Pyblosxom/plugins/pages.pyc
+${PYSITELIB}/Pyblosxom/plugins/pages.pyo
+${PYSITELIB}/Pyblosxom/plugins/paginate.py
+${PYSITELIB}/Pyblosxom/plugins/paginate.pyc
+${PYSITELIB}/Pyblosxom/plugins/paginate.pyo
+${PYSITELIB}/Pyblosxom/plugins/pyarchives.py
+${PYSITELIB}/Pyblosxom/plugins/pyarchives.pyc
+${PYSITELIB}/Pyblosxom/plugins/pyarchives.pyo
+${PYSITELIB}/Pyblosxom/plugins/pycalendar.py
+${PYSITELIB}/Pyblosxom/plugins/pycalendar.pyc
+${PYSITELIB}/Pyblosxom/plugins/pycalendar.pyo
+${PYSITELIB}/Pyblosxom/plugins/pycategories.py
+${PYSITELIB}/Pyblosxom/plugins/pycategories.pyc
+${PYSITELIB}/Pyblosxom/plugins/pycategories.pyo
+${PYSITELIB}/Pyblosxom/plugins/pyfilenamemtime.py
+${PYSITELIB}/Pyblosxom/plugins/pyfilenamemtime.pyc
+${PYSITELIB}/Pyblosxom/plugins/pyfilenamemtime.pyo
+${PYSITELIB}/Pyblosxom/plugins/readmore.py
+${PYSITELIB}/Pyblosxom/plugins/readmore.pyc
+${PYSITELIB}/Pyblosxom/plugins/readmore.pyo
+${PYSITELIB}/Pyblosxom/plugins/rst_parser.py
+${PYSITELIB}/Pyblosxom/plugins/rst_parser.pyc
+${PYSITELIB}/Pyblosxom/plugins/rst_parser.pyo
+${PYSITELIB}/Pyblosxom/plugins/tags.py
+${PYSITELIB}/Pyblosxom/plugins/tags.pyc
+${PYSITELIB}/Pyblosxom/plugins/tags.pyo
+${PYSITELIB}/Pyblosxom/plugins/trackback.py
+${PYSITELIB}/Pyblosxom/plugins/trackback.pyc
+${PYSITELIB}/Pyblosxom/plugins/trackback.pyo
+${PYSITELIB}/Pyblosxom/plugins/w3cdate.py
+${PYSITELIB}/Pyblosxom/plugins/w3cdate.pyc
+${PYSITELIB}/Pyblosxom/plugins/w3cdate.pyo
+${PYSITELIB}/Pyblosxom/plugins/xmlrpc_pingback.py
+${PYSITELIB}/Pyblosxom/plugins/xmlrpc_pingback.pyc
+${PYSITELIB}/Pyblosxom/plugins/xmlrpc_pingback.pyo
+${PYSITELIB}/Pyblosxom/plugins/yeararchives.py
+${PYSITELIB}/Pyblosxom/plugins/yeararchives.pyc
+${PYSITELIB}/Pyblosxom/plugins/yeararchives.pyo
${PYSITELIB}/Pyblosxom/pyblosxom.py
${PYSITELIB}/Pyblosxom/pyblosxom.pyc
${PYSITELIB}/Pyblosxom/pyblosxom.pyo
@@ -78,9 +165,12 @@ ${PYSITELIB}/Pyblosxom/renderers/debug.pyo
${PYSITELIB}/Pyblosxom/tests/__init__.py
${PYSITELIB}/Pyblosxom/tests/__init__.pyc
${PYSITELIB}/Pyblosxom/tests/__init__.pyo
-${PYSITELIB}/Pyblosxom/tests/helpers.py
-${PYSITELIB}/Pyblosxom/tests/helpers.pyc
-${PYSITELIB}/Pyblosxom/tests/helpers.pyo
+${PYSITELIB}/Pyblosxom/tests/test_acronyms.py
+${PYSITELIB}/Pyblosxom/tests/test_acronyms.pyc
+${PYSITELIB}/Pyblosxom/tests/test_acronyms.pyo
+${PYSITELIB}/Pyblosxom/tests/test_akismetcomments.py
+${PYSITELIB}/Pyblosxom/tests/test_akismetcomments.pyc
+${PYSITELIB}/Pyblosxom/tests/test_akismetcomments.pyo
${PYSITELIB}/Pyblosxom/tests/test_backwards_compatibility.py
${PYSITELIB}/Pyblosxom/tests/test_backwards_compatibility.pyc
${PYSITELIB}/Pyblosxom/tests/test_backwards_compatibility.pyo
@@ -90,194 +180,71 @@ ${PYSITELIB}/Pyblosxom/tests/test_blog.pyo
${PYSITELIB}/Pyblosxom/tests/test_blosxom_renderer.py
${PYSITELIB}/Pyblosxom/tests/test_blosxom_renderer.pyc
${PYSITELIB}/Pyblosxom/tests/test_blosxom_renderer.pyo
+${PYSITELIB}/Pyblosxom/tests/test_check_blacklist.py
+${PYSITELIB}/Pyblosxom/tests/test_check_blacklist.pyc
+${PYSITELIB}/Pyblosxom/tests/test_check_blacklist.pyo
+${PYSITELIB}/Pyblosxom/tests/test_check_javascript.py
+${PYSITELIB}/Pyblosxom/tests/test_check_javascript.pyc
+${PYSITELIB}/Pyblosxom/tests/test_check_javascript.pyo
+${PYSITELIB}/Pyblosxom/tests/test_check_nonhuman.py
+${PYSITELIB}/Pyblosxom/tests/test_check_nonhuman.pyc
+${PYSITELIB}/Pyblosxom/tests/test_check_nonhuman.pyo
+${PYSITELIB}/Pyblosxom/tests/test_comments.py
+${PYSITELIB}/Pyblosxom/tests/test_comments.pyc
+${PYSITELIB}/Pyblosxom/tests/test_comments.pyo
${PYSITELIB}/Pyblosxom/tests/test_entries.py
${PYSITELIB}/Pyblosxom/tests/test_entries.pyc
${PYSITELIB}/Pyblosxom/tests/test_entries.pyo
${PYSITELIB}/Pyblosxom/tests/test_entryparser.py
${PYSITELIB}/Pyblosxom/tests/test_entryparser.pyc
${PYSITELIB}/Pyblosxom/tests/test_entryparser.pyo
+${PYSITELIB}/Pyblosxom/tests/test_entrytitle.py
+${PYSITELIB}/Pyblosxom/tests/test_entrytitle.pyc
+${PYSITELIB}/Pyblosxom/tests/test_entrytitle.pyo
+${PYSITELIB}/Pyblosxom/tests/test_pages.py
+${PYSITELIB}/Pyblosxom/tests/test_pages.pyc
+${PYSITELIB}/Pyblosxom/tests/test_pages.pyo
${PYSITELIB}/Pyblosxom/tests/test_pathinfo.py
${PYSITELIB}/Pyblosxom/tests/test_pathinfo.pyc
${PYSITELIB}/Pyblosxom/tests/test_pathinfo.pyo
+${PYSITELIB}/Pyblosxom/tests/test_pycalendar.py
+${PYSITELIB}/Pyblosxom/tests/test_pycalendar.pyc
+${PYSITELIB}/Pyblosxom/tests/test_pycalendar.pyo
+${PYSITELIB}/Pyblosxom/tests/test_pycategories.py
+${PYSITELIB}/Pyblosxom/tests/test_pycategories.pyc
+${PYSITELIB}/Pyblosxom/tests/test_pycategories.pyo
+${PYSITELIB}/Pyblosxom/tests/test_pyfilenamemtime.py
+${PYSITELIB}/Pyblosxom/tests/test_pyfilenamemtime.pyc
+${PYSITELIB}/Pyblosxom/tests/test_pyfilenamemtime.pyo
+${PYSITELIB}/Pyblosxom/tests/test_readmore.py
+${PYSITELIB}/Pyblosxom/tests/test_readmore.pyc
+${PYSITELIB}/Pyblosxom/tests/test_readmore.pyo
+${PYSITELIB}/Pyblosxom/tests/test_tags.py
+${PYSITELIB}/Pyblosxom/tests/test_tags.pyc
+${PYSITELIB}/Pyblosxom/tests/test_tags.pyo
${PYSITELIB}/Pyblosxom/tests/test_tools.py
${PYSITELIB}/Pyblosxom/tests/test_tools.pyc
${PYSITELIB}/Pyblosxom/tests/test_tools.pyo
+${PYSITELIB}/Pyblosxom/tests/test_w3cdate.py
+${PYSITELIB}/Pyblosxom/tests/test_w3cdate.pyc
+${PYSITELIB}/Pyblosxom/tests/test_w3cdate.pyo
+${PYSITELIB}/Pyblosxom/tests/test_yeararchives.py
+${PYSITELIB}/Pyblosxom/tests/test_yeararchives.pyc
+${PYSITELIB}/Pyblosxom/tests/test_yeararchives.pyo
${PYSITELIB}/Pyblosxom/tests/testrunner.py
${PYSITELIB}/Pyblosxom/tests/testrunner.pyc
${PYSITELIB}/Pyblosxom/tests/testrunner.pyo
${PYSITELIB}/Pyblosxom/tools.py
${PYSITELIB}/Pyblosxom/tools.pyc
${PYSITELIB}/Pyblosxom/tools.pyo
-${PYSITELIB}/plugins/__init__.py
-${PYSITELIB}/plugins/__init__.pyc
-${PYSITELIB}/plugins/__init__.pyo
-${PYSITELIB}/plugins/archives/__init__.py
-${PYSITELIB}/plugins/archives/__init__.pyc
-${PYSITELIB}/plugins/archives/__init__.pyo
-${PYSITELIB}/plugins/archives/pyarchives.py
-${PYSITELIB}/plugins/archives/pyarchives.pyc
-${PYSITELIB}/plugins/archives/pyarchives.pyo
-${PYSITELIB}/plugins/archives/yeararchives.py
-${PYSITELIB}/plugins/archives/yeararchives.pyc
-${PYSITELIB}/plugins/archives/yeararchives.pyo
-${PYSITELIB}/plugins/category/__init__.py
-${PYSITELIB}/plugins/category/__init__.pyc
-${PYSITELIB}/plugins/category/__init__.pyo
-${PYSITELIB}/plugins/category/pycategories.py
-${PYSITELIB}/plugins/category/pycategories.pyc
-${PYSITELIB}/plugins/category/pycategories.pyo
-${PYSITELIB}/plugins/comments/__init__.py
-${PYSITELIB}/plugins/comments/__init__.pyc
-${PYSITELIB}/plugins/comments/__init__.pyo
-${PYSITELIB}/plugins/comments/akismet.py
-${PYSITELIB}/plugins/comments/akismet.pyc
-${PYSITELIB}/plugins/comments/akismet.pyo
-${PYSITELIB}/plugins/comments/akismetcomments.py
-${PYSITELIB}/plugins/comments/akismetcomments.pyc
-${PYSITELIB}/plugins/comments/akismetcomments.pyo
-${PYSITELIB}/plugins/comments/check_blacklist.py
-${PYSITELIB}/plugins/comments/check_blacklist.pyc
-${PYSITELIB}/plugins/comments/check_blacklist.pyo
-${PYSITELIB}/plugins/comments/check_javascript.py
-${PYSITELIB}/plugins/comments/check_javascript.pyc
-${PYSITELIB}/plugins/comments/check_javascript.pyo
-${PYSITELIB}/plugins/comments/check_nonhuman.py
-${PYSITELIB}/plugins/comments/check_nonhuman.pyc
-${PYSITELIB}/plugins/comments/check_nonhuman.pyo
-${PYSITELIB}/plugins/comments/commentAPI.py
-${PYSITELIB}/plugins/comments/commentAPI.pyc
-${PYSITELIB}/plugins/comments/commentAPI.pyo
-${PYSITELIB}/plugins/comments/comments.py
-${PYSITELIB}/plugins/comments/comments.pyc
-${PYSITELIB}/plugins/comments/comments.pyo
-${PYSITELIB}/plugins/comments/magicword.py
-${PYSITELIB}/plugins/comments/magicword.pyc
-${PYSITELIB}/plugins/comments/magicword.pyo
-${PYSITELIB}/plugins/comments/no_old_comments.py
-${PYSITELIB}/plugins/comments/no_old_comments.pyc
-${PYSITELIB}/plugins/comments/no_old_comments.pyo
-${PYSITELIB}/plugins/comments/trackback.py
-${PYSITELIB}/plugins/comments/trackback.pyc
-${PYSITELIB}/plugins/comments/trackback.pyo
-${PYSITELIB}/plugins/comments/xmlrpc_pingback.py
-${PYSITELIB}/plugins/comments/xmlrpc_pingback.pyc
-${PYSITELIB}/plugins/comments/xmlrpc_pingback.pyo
-${PYSITELIB}/plugins/content/__init__.py
-${PYSITELIB}/plugins/content/__init__.pyc
-${PYSITELIB}/plugins/content/__init__.pyo
-${PYSITELIB}/plugins/content/pages.py
-${PYSITELIB}/plugins/content/pages.pyc
-${PYSITELIB}/plugins/content/pages.pyo
-${PYSITELIB}/plugins/date/__init__.py
-${PYSITELIB}/plugins/date/__init__.pyc
-${PYSITELIB}/plugins/date/__init__.pyo
-${PYSITELIB}/plugins/date/firstdaydiv.py
-${PYSITELIB}/plugins/date/firstdaydiv.pyc
-${PYSITELIB}/plugins/date/firstdaydiv.pyo
-${PYSITELIB}/plugins/date/pycalendar.py
-${PYSITELIB}/plugins/date/pycalendar.pyc
-${PYSITELIB}/plugins/date/pycalendar.pyo
-${PYSITELIB}/plugins/date/pyfilenamemtime.py
-${PYSITELIB}/plugins/date/pyfilenamemtime.pyc
-${PYSITELIB}/plugins/date/pyfilenamemtime.pyo
-${PYSITELIB}/plugins/date/w3cdate.py
-${PYSITELIB}/plugins/date/w3cdate.pyc
-${PYSITELIB}/plugins/date/w3cdate.pyo
-${PYSITELIB}/plugins/display/__init__.py
-${PYSITELIB}/plugins/display/__init__.pyc
-${PYSITELIB}/plugins/display/__init__.pyo
-${PYSITELIB}/plugins/display/entrytitle.py
-${PYSITELIB}/plugins/display/entrytitle.pyc
-${PYSITELIB}/plugins/display/entrytitle.pyo
-${PYSITELIB}/plugins/display/paginate.py
-${PYSITELIB}/plugins/display/paginate.pyc
-${PYSITELIB}/plugins/display/paginate.pyo
-${PYSITELIB}/plugins/headers/__init__.py
-${PYSITELIB}/plugins/headers/__init__.pyc
-${PYSITELIB}/plugins/headers/__init__.pyo
-${PYSITELIB}/plugins/headers/conditionalhttp.py
-${PYSITELIB}/plugins/headers/conditionalhttp.pyc
-${PYSITELIB}/plugins/headers/conditionalhttp.pyo
-${PYSITELIB}/plugins/tags/__init__.py
-${PYSITELIB}/plugins/tags/__init__.pyc
-${PYSITELIB}/plugins/tags/__init__.pyo
-${PYSITELIB}/plugins/tags/tags.py
-${PYSITELIB}/plugins/tags/tags.pyc
-${PYSITELIB}/plugins/tags/tags.pyo
-${PYSITELIB}/plugins/testrunner.py
-${PYSITELIB}/plugins/testrunner.pyc
-${PYSITELIB}/plugins/testrunner.pyo
-${PYSITELIB}/plugins/tests/__init__.py
-${PYSITELIB}/plugins/tests/__init__.pyc
-${PYSITELIB}/plugins/tests/__init__.pyo
-${PYSITELIB}/plugins/tests/archives/__init__.py
-${PYSITELIB}/plugins/tests/archives/__init__.pyc
-${PYSITELIB}/plugins/tests/archives/__init__.pyo
-${PYSITELIB}/plugins/tests/archives/test_yeararchives.py
-${PYSITELIB}/plugins/tests/archives/test_yeararchives.pyc
-${PYSITELIB}/plugins/tests/archives/test_yeararchives.pyo
-${PYSITELIB}/plugins/tests/categories/__init__.py
-${PYSITELIB}/plugins/tests/categories/__init__.pyc
-${PYSITELIB}/plugins/tests/categories/__init__.pyo
-${PYSITELIB}/plugins/tests/categories/test_pycategories.py
-${PYSITELIB}/plugins/tests/categories/test_pycategories.pyc
-${PYSITELIB}/plugins/tests/categories/test_pycategories.pyo
-${PYSITELIB}/plugins/tests/comments/__init__.py
-${PYSITELIB}/plugins/tests/comments/__init__.pyc
-${PYSITELIB}/plugins/tests/comments/__init__.pyo
-${PYSITELIB}/plugins/tests/comments/test_akismetcomments.py
-${PYSITELIB}/plugins/tests/comments/test_akismetcomments.pyc
-${PYSITELIB}/plugins/tests/comments/test_akismetcomments.pyo
-${PYSITELIB}/plugins/tests/comments/test_check_blacklist.py
-${PYSITELIB}/plugins/tests/comments/test_check_blacklist.pyc
-${PYSITELIB}/plugins/tests/comments/test_check_blacklist.pyo
-${PYSITELIB}/plugins/tests/comments/test_check_javascript.py
-${PYSITELIB}/plugins/tests/comments/test_check_javascript.pyc
-${PYSITELIB}/plugins/tests/comments/test_check_javascript.pyo
-${PYSITELIB}/plugins/tests/comments/test_check_nonhuman.py
-${PYSITELIB}/plugins/tests/comments/test_check_nonhuman.pyc
-${PYSITELIB}/plugins/tests/comments/test_check_nonhuman.pyo
-${PYSITELIB}/plugins/tests/comments/test_comments.py
-${PYSITELIB}/plugins/tests/comments/test_comments.pyc
-${PYSITELIB}/plugins/tests/comments/test_comments.pyo
-${PYSITELIB}/plugins/tests/display/__init__.py
-${PYSITELIB}/plugins/tests/display/__init__.pyc
-${PYSITELIB}/plugins/tests/display/__init__.pyo
-${PYSITELIB}/plugins/tests/display/test_entrytitle.py
-${PYSITELIB}/plugins/tests/display/test_entrytitle.pyc
-${PYSITELIB}/plugins/tests/display/test_entrytitle.pyo
-${PYSITELIB}/plugins/tests/tags/__init__.py
-${PYSITELIB}/plugins/tests/tags/__init__.pyc
-${PYSITELIB}/plugins/tests/tags/__init__.pyo
-${PYSITELIB}/plugins/tests/tags/test_tags.py
-${PYSITELIB}/plugins/tests/tags/test_tags.pyc
-${PYSITELIB}/plugins/tests/tags/test_tags.pyo
-${PYSITELIB}/plugins/tests/test_base.py
-${PYSITELIB}/plugins/tests/test_base.pyc
-${PYSITELIB}/plugins/tests/test_base.pyo
-${PYSITELIB}/plugins/tests/text/__init__.py
-${PYSITELIB}/plugins/tests/text/__init__.pyc
-${PYSITELIB}/plugins/tests/text/__init__.pyo
-${PYSITELIB}/plugins/tests/text/test_acronyms.py
-${PYSITELIB}/plugins/tests/text/test_acronyms.pyc
-${PYSITELIB}/plugins/tests/text/test_acronyms.pyo
-${PYSITELIB}/plugins/text/__init__.py
-${PYSITELIB}/plugins/text/__init__.pyc
-${PYSITELIB}/plugins/text/__init__.pyo
-${PYSITELIB}/plugins/text/acronyms.py
-${PYSITELIB}/plugins/text/acronyms.pyc
-${PYSITELIB}/plugins/text/acronyms.pyo
-${PYSITELIB}/plugins/text/rst.py
-${PYSITELIB}/plugins/text/rst.pyc
-${PYSITELIB}/plugins/text/rst.pyo
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+share/doc/pyblosxom/AUTHORS
share/doc/pyblosxom/INSTALL
share/doc/pyblosxom/LICENSE
-share/doc/pyblosxom/README
-share/doc/pyblosxom/THANKS
+share/doc/pyblosxom/README.rst
share/doc/pyblosxom/UPGRADE
share/doc/pyblosxom/WHATSNEW
diff --git a/www/py-blosxom/distinfo b/www/py-blosxom/distinfo
index fa5cf605d14..5c0c0053019 100644
--- a/www/py-blosxom/distinfo
+++ b/www/py-blosxom/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2011/07/08 09:59:19 hauke Exp $
+$NetBSD: distinfo,v 1.5 2012/01/12 12:23:58 hauke Exp $
-SHA1 (pyblosxom-1.5rc3/pyblosxom-1.5rc3.tar.gz) = 976a7aeba086a0b83958d129e2d5c9250918a80f
-RMD160 (pyblosxom-1.5rc3/pyblosxom-1.5rc3.tar.gz) = 32c1a6e8a4a37507a86e53cbaf8b9f852522bb7f
-Size (pyblosxom-1.5rc3/pyblosxom-1.5rc3.tar.gz) = 187605 bytes
+SHA1 (pyblosxom-1.5.2/pyblosxom-1.5.2.tar.gz) = 9d19d2dbc8c13ff1ed685d2cd0515b85ccdecf9d
+RMD160 (pyblosxom-1.5.2/pyblosxom-1.5.2.tar.gz) = 5d5251b6e28e082f0e53c677276bad697ec7debf
+Size (pyblosxom-1.5.2/pyblosxom-1.5.2.tar.gz) = 206032 bytes