summaryrefslogtreecommitdiff
path: root/www/py-blosxom/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2012-08-10The pyblosxom maintainer changed, and with him the project's home.hauke1-3/+4
XXX Pull-up candidate, I guess?
2012-04-08Remove python24 and all traces of it from pkgsrc.wiz1-3/+1
Remove devel/py-ctypes (only needed by and supporting python24). Remove PYTHON_VERSIONS_ACCEPTED and PYTHON_VERSIONS_INCOMPATIBLE lines that just mirror defaults now. Miscellaneous cleanup while editing all these files.
2012-01-27Any of compiler languages are not required to build.obache1-1/+4
2012-01-26pyblosxom 1.5 requires Python 2.[5..7]hauke1-1/+3
2012-01-12Upgrade package to 1.5.2. From WHATSNEW:hauke1-5/+4
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.
2011-07-08Better catch the PLIST changes, too...hauke1-2/+2
2011-07-08Update to Blosxom 1.5rc3.hauke1-6/+3
What's new in 1.5 rc3 ===================== Pertinent to users: ------------------- 1. PyBlosxom shows an error page if it crashes rather than forcing you to go figure out what happened by finding the web server logs. This should make configuring and debugging much easier. 2. Bunch of new plugins. 3. Bunch of fixes to the comments plugin, tags and pycalendar plugins. Tags plugin gains tags cloud functionality. Comments plugin gains comment_disable_after_x_days feature. If you're using them, update to the latest versions. 4. Bunch of fixes to the documentation. If you see errors or things that are unclear, let us know. The documentation for the comments plugin still needs to be overhauled. 5. Bunch of other bug fixes. 6. Bunch of new plugins: magicword, pages, rst, check_nonhuman, and check_blacklist.
2011-07-03Set DIST_SUBDIR. For some reason upstream reissued the same tarball withdholland1-1/+2
a different timestamp in the gzip header. grr
2011-07-03check-interpreter fix.jym1-2/+3
XXX There's a reproducible CHECKSUM error on distfile. As I am not the maintainer, distinfo file remains untouched.
2010-08-06Update to 1.5rc2.hauke1-3/+7
From CHANGELOG: 21. The following plugins have been added to the pyblosxom release tarball: * archives/ * pyarchives * yeararchives (was wbgarchives) * categories/ * pycategories * comments/plugins/ * akismetcomments * comments * no_old_comments * trackback * xmlrpc_pingback * date/ * pycalendar * firstdaydiv * pyfilenamemtime * w3cdate * display/ * paginate (was wbgpager) * entrytitle * headers/ * conditionalhttp * tags/ * tags (was wbgtags) * text/ * acronyms If you have older versions of these plugins, better to switch to the new versions.
2010-06-25'cvs rm' www/pyblosxom, and re-import as py-blosxom, to stay in linehauke1-0/+35
with pkgsrc conventions. While we are here, fix python egg installer related PLIST entries.