David Demelier <mark...@malikania.fr> wrote: > Hi, > > This is an update for pelican-4.7.1, while here take maintainership.
I don't use pelican, but at glance there are three things to fix in the proposed diff: - remove REVISION: it's incremented every time a port is changed (security patches or changes to some fields like COMMENT or the description) without changing the port' version. When bumping the version, revision rewinds back to the empty string (by removing the variable) - this bit of the diff looks odd: > lib/python${MODPY_VERSION}/site-packages/pelican/themes/notmyidea/templates/authors.html > lib/python${MODPY_VERSION}/site-packages/pelican/themes/notmyidea/templates/base.html >+@mode >+lib/python${MODPY_VERSION}/site-packages/pelican/themes/notmyidea/templates/categories.html >+@mode 644 > lib/python${MODPY_VERSION}/site-packages/pelican/themes/notmyidea/templates/category.html > lib/python${MODPY_VERSION}/site-packages/pelican/themes/notmyidea/templates/comments.html it's likely that categories.html needs the same permissions as the other html files. - `make test' needs some love: git is still needed as TEST_DEPENDS and the patch needs to be adjusted. some tests fails, but overall it's not that bad :) % make test ... Ran 263 tests in 25.432s FAILED (failures=8, errors=2, skipped=21) Test failed: <unittest.runner.TextTestResult run=263 errors=2 failures=8> Here's an updated diff with the points above adressed. Cheers, Omar Polo Index: Makefile =================================================================== RCS file: /home/cvs/ports/www/pelican/Makefile,v retrieving revision 1.18 diff -u -p -r1.18 Makefile --- Makefile 11 Mar 2022 20:10:42 -0000 1.18 +++ Makefile 5 May 2022 22:23:38 -0000 @@ -2,15 +2,15 @@ COMMENT = static site generator written MODPY_EGG_VERSION = ${GH_TAGNAME} DISTNAME = pelican-${MODPY_EGG_VERSION} -REVISION = 2 GH_ACCOUNT = getpelican GH_PROJECT = pelican -GH_TAGNAME = 4.0.1 +GH_TAGNAME = 4.7.2 CATEGORIES = www HOMEPAGE = https://blog.getpelican.com/ +MAINTAINER = David Demelier <mark...@malikania.fr> # GPLv3 PERMIT_PACKAGE = Yes @@ -20,6 +20,7 @@ MODPY_SETUPTOOLS = Yes RUN_DEPENDS = devel/py-blinker${MODPY_FLAVOR} \ devel/py-dateutil${MODPY_FLAVOR} \ + devel/py-rich${MODPY_FLAVOR} \ devel/py-six${MODPY_FLAVOR} \ devel/py-tz${MODPY_FLAVOR} \ textproc/py-markdown${MODPY_FLAVOR} \ @@ -32,8 +33,8 @@ RUN_DEPENDS = devel/py-blinker${MODPY_F # Else setuptools skips filenames containing UTF8 chars MAKE_ENV += LC_CTYPE=en_US.UTF-8 -TEST_DEPENDS = devel/git \ - devel/py-mock${MODPY_FLAVOR} +TEST_DEPENDS = ${RUN_DEPENDS} \ + devel/git pre-configure: ${SUBST_CMD} ${WRKSRC}/pelican/tests/test_pelican.py Index: distinfo =================================================================== RCS file: /home/cvs/ports/www/pelican/distinfo,v retrieving revision 1.6 diff -u -p -r1.6 distinfo --- distinfo 23 Jun 2019 14:01:52 -0000 1.6 +++ distinfo 5 May 2022 21:53:51 -0000 @@ -1,2 +1,2 @@ -SHA256 (pelican-4.0.1.tar.gz) = 4UHZ5g79Gxy+Mg/zKCcCyu4WNRUtVw/EBK/Eqx0WzZI= -SIZE (pelican-4.0.1.tar.gz) = 1314716 +SHA256 (pelican-4.7.2.tar.gz) = tYW+rnts6OM3C5+tShxTQ3DU2mivxfhpD3mZvs/4Mpo= +SIZE (pelican-4.7.2.tar.gz) = 1401737 Index: patches/patch-pelican_tests_test_pelican_py =================================================================== RCS file: /home/cvs/ports/www/pelican/patches/patch-pelican_tests_test_pelican_py,v retrieving revision 1.4 diff -u -p -r1.4 patch-pelican_tests_test_pelican_py --- patches/patch-pelican_tests_test_pelican_py 11 Mar 2022 20:10:42 -0000 1.4 +++ patches/patch-pelican_tests_test_pelican_py 5 May 2022 22:25:27 -0000 @@ -1,12 +1,12 @@ Index: pelican/tests/test_pelican.py --- pelican/tests/test_pelican.py.orig +++ pelican/tests/test_pelican.py -@@ -62,7 +62,7 @@ class TestPelican(LoggedTestCase): +@@ -56,7 +56,7 @@ class TestPelican(LoggedTestCase): def assertDirsEqual(self, left_path, right_path): out, err = subprocess.Popen( -- ['git', 'diff', '--no-ext-diff', '--exit-code', -+ ['${LOCALBASE}/bin/git', 'diff', '--no-ext-diff', '--exit-code', +- ['git', '--no-pager', 'diff', '--no-ext-diff', '--exit-code', ++ ['${LOCALBASE}/bin/git', '--no-pager', 'diff', '--no-ext-diff', '--exit-code', '-w', left_path, right_path], - env={str('PAGER'): str('')}, stdout=subprocess.PIPE, + stderr=subprocess.PIPE Index: pkg/PLIST =================================================================== RCS file: /home/cvs/ports/www/pelican/pkg/PLIST,v retrieving revision 1.7 diff -u -p -r1.7 PLIST --- pkg/PLIST 11 Mar 2022 20:10:42 -0000 1.7 +++ pkg/PLIST 5 May 2022 21:55:09 -0000 @@ -1,5 +1,6 @@ bin/pelican bin/pelican-import +bin/pelican-plugins bin/pelican-quickstart bin/pelican-themes lib/python${MODPY_VERSION}/site-packages/pelican/ @@ -11,8 +12,10 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pelican-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt lib/python${MODPY_VERSION}/site-packages/pelican-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt lib/python${MODPY_VERSION}/site-packages/pelican/__init__.py +lib/python${MODPY_VERSION}/site-packages/pelican/__main__.py ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/${MODPY_PYCACHE}/ lib/python${MODPY_VERSION}/site-packages/pelican/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pelican/${MODPY_PYCACHE}cache.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pelican/${MODPY_PYCACHE}contents.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pelican/${MODPY_PYCACHE}generators.${MODPY_PYC_MAGIC_TAG}pyc @@ -31,11 +34,457 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pelican/generators.py lib/python${MODPY_VERSION}/site-packages/pelican/log.py lib/python${MODPY_VERSION}/site-packages/pelican/paginator.py +lib/python${MODPY_VERSION}/site-packages/pelican/plugins/ +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/plugins/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/pelican/plugins/${MODPY_PYCACHE}_utils.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/plugins/${MODPY_PYCACHE}signals.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/plugins/_utils.py +lib/python${MODPY_VERSION}/site-packages/pelican/plugins/signals.py lib/python${MODPY_VERSION}/site-packages/pelican/readers.py lib/python${MODPY_VERSION}/site-packages/pelican/rstdirectives.py lib/python${MODPY_VERSION}/site-packages/pelican/server.py lib/python${MODPY_VERSION}/site-packages/pelican/settings.py lib/python${MODPY_VERSION}/site-packages/pelican/signals.py +lib/python${MODPY_VERSION}/site-packages/pelican/tests/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/bad_page.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/draft_page.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/draft_page_markdown.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/draft_page_with_template.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/hidden_page.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/hidden_page_markdown.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/hidden_page_with_template.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/page.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/page_markdown.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/page_used_for_sorting_test.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/page_with_category_and_tag_links.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/page_with_static_links.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/TestPages/page_with_template.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/__init__.py +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}default_conf.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}support.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_cache.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_cli.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_contents.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_generators.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_importer.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_log.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_paginator.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_pelican.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_plugins.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_readers.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_rstdirectives.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_server.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_settings.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_testsuite.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_urlwrappers.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/${MODPY_PYCACHE}test_utils.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/2012-11-29_rst_w_filename_meta#foo-bar.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/2012-11-30_md_w_filename_meta#foo-bar.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/TestCategory/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/TestCategory/article_with_category.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/TestCategory/article_without_category.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_draft.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_hidden.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_attributes_containing_double_quotes.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_capitalized_metadata.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_code_block.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_comments.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_duplicate_tags_authors.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_inline_svg.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_keywords.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_and_empty_tags.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_and_footnote.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_and_nested_metadata.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_and_nonascii_summary.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_and_summary_metadata_multi.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_and_summary_metadata_single.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_extension.markdown +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_markdown_markup_extensions.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_md_extension.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata_and_contents.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata_explicit_date_implicit_modified.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata_explicit_dates.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata_implicit_date_explicit_modified.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_metadata_implicit_dates.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_mkd_extension.mkd +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_multiple_authors.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_multiple_authors.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_multiple_authors_list.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_multiple_authors_semicolon.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_multiple_metadata_tags.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_nonconformant_meta_tags.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_null_attributes.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_template.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_typogrify_dashes.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_typogrify_dashes.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_uppercase_metadata.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_with_uppercase_metadata.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/article_without_category.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/bloggerexport.xml +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/empty.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/empty_with_bom.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/content/wordpressexport.xml +lib/python${MODPY_VERSION}/site-packages/pelican/tests/cyclic_intersite_links/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/cyclic_intersite_links/first-article.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/cyclic_intersite_links/second-article.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/cyclic_intersite_links/third-article.rst +lib/python${MODPY_VERSION}/site-packages/pelican/tests/default_conf.py +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/pelican/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/pelican/plugins/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/pelican/plugins/ns_plugin/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/pelican/plugins/ns_plugin/__init__.py +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/pelican/plugins/ns_plugin/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/namespace_plugin/pelican/plugins/ns_plugin/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_plugin/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_plugin/__init__.py +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_plugin/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_plugin/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_plugin/${MODPY_PYCACHE}submodule.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_plugin/submodule.py +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/__init__.py +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/${MODPY_PYCACHE}subplugin.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subpackage/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subpackage/__init__.py +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subpackage/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subpackage/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subpackage/${MODPY_PYCACHE}subpackage.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subpackage/subpackage.py +lib/python${MODPY_VERSION}/site-packages/pelican/tests/dummy_plugins/normal_plugin/normal_submodule_plugin/subplugin.py +lib/python${MODPY_VERSION}/site-packages/pelican/tests/mixed_content/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/mixed_content/short_page.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/nested_content/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/nested_content/maindir/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/nested_content/maindir/maindir.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/nested_content/maindir/subdir/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/nested_content/maindir/subdir/subdir.md +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/a-markdown-powered-article.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/archives.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/article-1.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/article-2.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/article-3.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/author/ +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/author/alexis-metaireau.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/authors.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/categories.html +lib/python${MODPY_VERSION}/site-packages/pelican/tests/output/basic/categ