Overview

Request 644278 accepted

- Add fix-python3-incompatibility.patch with fix for
gh#getpelican/pelican#2409.
- convert the package to singlespec
- update to version 3.7.1:
* Fix locale issues in Quickstart script
* Specify encoding for README and CHANGELOG in setup.py
- update to version 3.7.0:
* Atom feeds output in addition to
* Atom feeds use for the original publication date
and for modifications
* Simplify Atom feed ID generation and support URL fragments
* Produce category feeds with category-specific titles
* RSS feeds now default to summary instead of full content — set
RSS_FEED_SUMMARY_ONLY = False to revert to previous behavior
* Replace MD_EXTENSIONS with MARKDOWN setting
* Replace JINJA_EXTENSIONS with more-robust JINJA_ENVIRONMENT
setting
* Improve summary truncation logic to handle special characters
and tags that span multiple lines, using HTML parser instead
of regular expressions
* Include summary when looking for intra-site link substitutions
* Link to authors and index via {author}name and {index} syntax
* Override widget names via LINKS_WIDGET_NAME and
SOCIAL_WIDGET_NAME
* Add INDEX_SAVE_AS option to override default index.html value
* Remove PAGES context variable for themes in favor of pages
* SLUG_SUBSTITUTIONS now accepts 3-tuple elements, allowing URL
slugs to contain non-alphanumeric characters
* Tag and category slugs can be controlled with greater
precision using the TAG_SUBSTITUTIONS and
CATEGORY_SUBSTITUTIONS settings
* Author slugs can be controlled with greater precision using
the AUTHOR_SUBSTITUTIONS setting
* DEFAULT_DATE can be defined as a string
* Use mtime instead of ctime when DEFAULT_DATE = 'fs'
* Add --fatal=errors|warnings option for use with continuous
integration
* When using generator-level caching, ensure previously-cached
files are processed instead of just new files
* Add Python and Pelican version information to debug output
* Improve compatibility with Python 3.5
* Comply with and enforce PEP8 guidelines
* Replace tables in settings documentation with data:: directives
- additionnal changes from version 3.6.3:
* Fix permissions issue in release tarball
- update source url to https://files.pythonhosted.org
- update version required for feedgenerator and six
- Require python-python-dateutil. package was renamed
- update to version 3.6.2:
* Fix installation errors related to Unicode in tests
* Don't show pagination in notmyidea theme if there's only one
page
* Make hidden pages available in context
* Improve URLWrapper comparison
- update to version 3.6.0:
* Disable caching by default in order to prevent potential
confusion
* Improve caching behavior, replacing pickle with cpickle
* Allow Markdown or reST content in metadata fields other than
summary
* Support semicolon-separated author/tag lists
* Improve flexibility of article sorting
* Add --relative-urls argument
* Support devserver listening on addresses other than localhost
* Unify HTTP server handlers to pelican.server throughout
* Handle intra-site links to draft posts
* Move tag_cloud from core to plugin
* Load default theme’s external resources via HTTPS
* Import drafts from WordPress XML
* Improve support for Windows users
* Enhance logging and test suite
* Clean up and refactor codebase
* New signals: all_generators_finalized and page_writer_finalized
- update to pelican 3.5.0
* Introduce ARTICLE_ORDER_BY and PAGE_ORDER_BY settings
to control the order of articles and pages
* Include time zone information in dates rendered in templates
* Expose the reader name in the metadata for articles and pages
* Add the ability to store static files along with content in the
same directory as articles and pages using {attach} in the path
* Prevent Pelican from raising an exception when there are
duplicate pieces of metadata in a Markdown file
* Introduce the TYPOGRIFY_IGNORE_TAGS setting to add HTML tags
to be ignored by Typogrify
* Add the ability to use - in date formats to strip leading zeros
* Ensure feed generation is correctly disabled during quickstart
configuration
* Fix PAGE_EXCLUDES and ARTICLE_EXCLUDES from incorrectly
matching sub-directories
* Introduce STATIC_EXCLUDE setting to add static file excludes
* Fix an issue when using PAGINATION_PATTERNS while RELATIVE_URLS
is enabled
* Fix feed generation causing links to use the wrong language for
month names when using other locales
* Fix an issue where the authors list in the simple template
wasn't correctly formatted
* Fix an issue when parsing non-string URLs from settings
* Improve consistency of debug and warning messages
- add the requires as buildrequires to guarantee they are available
- update to pelican 3.4.0
* Speed up content generation via new caching mechanism
* Add selective post generation (instead of always building
entire site)
* Many documentation improvements, including switching to
prettier RtD theme
* Add support for multiple content and plugin paths
* Add :modified: metadata field to complement :date:
* Add support for multiple authors via new :authors: metadata
field
* Watch for changes in static directories when in
auto-regeneration mode
* Add filters to limit log output when desired
* Add language support to drafts
* Add ``SLUGIFY_SOURCE`` setting to control how post slugs are
generated
* Fix many issues relating to locale and encoding
* Apply Typogrify filter to post summary
* Preserve file metadata (e.g. time stamps) when copying static
files to output
* Move AsciiDoc support from Pelican core into separate plugin
* Produce inline links instead of reference-style links when
importing content
* Improve handling of ``IGNORE_FILES`` setting behavior
* Properly escape symbol characters in tag names (e.g. C++)
* Minor tweaks for Python 3.4 compatibility
* Add several new signals
- add new runtime dependency: python-dateutil
- switch to the real package name for Markdown
- add package documentation
- use update-alternatives for pelican binaries
- switch from distribute to setuptools
- remove useless CFLAGS="%{optflags}"
- Update to pelican 3.3
* Add Fabfile so Fabric can be used for workflow automation
instead of Make
* OUTPUT_RETENTION setting can be used to preserve metadata
(e.g., VCS data such as .hg and .git) from being removed from
output directory
* Tumblr import
* Improve logic and consistency when cleaning output folder
* Improve documentation versioning and release automation
* Improve pagination flexibility
* Rename signals for better consistency (some plugins may need
to be updated)
* Move metadata extraction from generators to readers; metadata
extraction no longer article-specific
* Deprecate FILES_TO_COPY in favor of STATIC_PATHS and
EXTRA_PATH_METADATA
* Summaries in Markdown posts no longer include footnotes
* Remove unnecessary whitespace in output via lstrip_blocks Jinja
parameter
* Move PDF generation from core to plugin
* Replace MARKUP setting with READERS
* Add warning if img tag is missing alt attribute
* Add support for {} in relative links syntax, besides ||
* Add support for {tag} and {category} relative links
* Add a content_written signal
- Require python-Jinja2 >= 2.7
- Require python-feedgenerator >= 1.6
- update to pelican 3.2.2
- update to pelican 3.2
- suggest additional python packages instead of recommending them
- remove useless shebang in python files
- initial package with version 3.1.1

Request History
Matej Cepl's avatar

mcepl created request

- Add fix-python3-incompatibility.patch with fix for
gh#getpelican/pelican#2409.
- convert the package to singlespec
- update to version 3.7.1:
* Fix locale issues in Quickstart script
* Specify encoding for README and CHANGELOG in setup.py
- update to version 3.7.0:
* Atom feeds output in addition to
* Atom feeds use for the original publication date
and for modifications
* Simplify Atom feed ID generation and support URL fragments
* Produce category feeds with category-specific titles
* RSS feeds now default to summary instead of full content — set
RSS_FEED_SUMMARY_ONLY = False to revert to previous behavior
* Replace MD_EXTENSIONS with MARKDOWN setting
* Replace JINJA_EXTENSIONS with more-robust JINJA_ENVIRONMENT
setting
* Improve summary truncation logic to handle special characters
and tags that span multiple lines, using HTML parser instead
of regular expressions
* Include summary when looking for intra-site link substitutions
* Link to authors and index via {author}name and {index} syntax
* Override widget names via LINKS_WIDGET_NAME and
SOCIAL_WIDGET_NAME
* Add INDEX_SAVE_AS option to override default index.html value
* Remove PAGES context variable for themes in favor of pages
* SLUG_SUBSTITUTIONS now accepts 3-tuple elements, allowing URL
slugs to contain non-alphanumeric characters
* Tag and category slugs can be controlled with greater
precision using the TAG_SUBSTITUTIONS and
CATEGORY_SUBSTITUTIONS settings
* Author slugs can be controlled with greater precision using
the AUTHOR_SUBSTITUTIONS setting
* DEFAULT_DATE can be defined as a string
* Use mtime instead of ctime when DEFAULT_DATE = 'fs'
* Add --fatal=errors|warnings option for use with continuous
integration
* When using generator-level caching, ensure previously-cached
files are processed instead of just new files
* Add Python and Pelican version information to debug output
* Improve compatibility with Python 3.5
* Comply with and enforce PEP8 guidelines
* Replace tables in settings documentation with data:: directives
- additionnal changes from version 3.6.3:
* Fix permissions issue in release tarball
- update source url to https://files.pythonhosted.org
- update version required for feedgenerator and six
- Require python-python-dateutil. package was renamed
- update to version 3.6.2:
* Fix installation errors related to Unicode in tests
* Don't show pagination in notmyidea theme if there's only one
page
* Make hidden pages available in context
* Improve URLWrapper comparison
- update to version 3.6.0:
* Disable caching by default in order to prevent potential
confusion
* Improve caching behavior, replacing pickle with cpickle
* Allow Markdown or reST content in metadata fields other than
summary
* Support semicolon-separated author/tag lists
* Improve flexibility of article sorting
* Add --relative-urls argument
* Support devserver listening on addresses other than localhost
* Unify HTTP server handlers to pelican.server throughout
* Handle intra-site links to draft posts
* Move tag_cloud from core to plugin
* Load default theme’s external resources via HTTPS
* Import drafts from WordPress XML
* Improve support for Windows users
* Enhance logging and test suite
* Clean up and refactor codebase
* New signals: all_generators_finalized and page_writer_finalized
- update to pelican 3.5.0
* Introduce ARTICLE_ORDER_BY and PAGE_ORDER_BY settings
to control the order of articles and pages
* Include time zone information in dates rendered in templates
* Expose the reader name in the metadata for articles and pages
* Add the ability to store static files along with content in the
same directory as articles and pages using {attach} in the path
* Prevent Pelican from raising an exception when there are
duplicate pieces of metadata in a Markdown file
* Introduce the TYPOGRIFY_IGNORE_TAGS setting to add HTML tags
to be ignored by Typogrify
* Add the ability to use - in date formats to strip leading zeros
* Ensure feed generation is correctly disabled during quickstart
configuration
* Fix PAGE_EXCLUDES and ARTICLE_EXCLUDES from incorrectly
matching sub-directories
* Introduce STATIC_EXCLUDE setting to add static file excludes
* Fix an issue when using PAGINATION_PATTERNS while RELATIVE_URLS
is enabled
* Fix feed generation causing links to use the wrong language for
month names when using other locales
* Fix an issue where the authors list in the simple template
wasn't correctly formatted
* Fix an issue when parsing non-string URLs from settings
* Improve consistency of debug and warning messages
- add the requires as buildrequires to guarantee they are available
- update to pelican 3.4.0
* Speed up content generation via new caching mechanism
* Add selective post generation (instead of always building
entire site)
* Many documentation improvements, including switching to
prettier RtD theme
* Add support for multiple content and plugin paths
* Add :modified: metadata field to complement :date:
* Add support for multiple authors via new :authors: metadata
field
* Watch for changes in static directories when in
auto-regeneration mode
* Add filters to limit log output when desired
* Add language support to drafts
* Add ``SLUGIFY_SOURCE`` setting to control how post slugs are
generated
* Fix many issues relating to locale and encoding
* Apply Typogrify filter to post summary
* Preserve file metadata (e.g. time stamps) when copying static
files to output
* Move AsciiDoc support from Pelican core into separate plugin
* Produce inline links instead of reference-style links when
importing content
* Improve handling of ``IGNORE_FILES`` setting behavior
* Properly escape symbol characters in tag names (e.g. C++)
* Minor tweaks for Python 3.4 compatibility
* Add several new signals
- add new runtime dependency: python-dateutil
- switch to the real package name for Markdown
- add package documentation
- use update-alternatives for pelican binaries
- switch from distribute to setuptools
- remove useless CFLAGS="%{optflags}"
- Update to pelican 3.3
* Add Fabfile so Fabric can be used for workflow automation
instead of Make
* OUTPUT_RETENTION setting can be used to preserve metadata
(e.g., VCS data such as .hg and .git) from being removed from
output directory
* Tumblr import
* Improve logic and consistency when cleaning output folder
* Improve documentation versioning and release automation
* Improve pagination flexibility
* Rename signals for better consistency (some plugins may need
to be updated)
* Move metadata extraction from generators to readers; metadata
extraction no longer article-specific
* Deprecate FILES_TO_COPY in favor of STATIC_PATHS and
EXTRA_PATH_METADATA
* Summaries in Markdown posts no longer include footnotes
* Remove unnecessary whitespace in output via lstrip_blocks Jinja
parameter
* Move PDF generation from core to plugin
* Replace MARKUP setting with READERS
* Add warning if img tag is missing alt attribute
* Add support for {} in relative links syntax, besides ||
* Add support for {tag} and {category} relative links
* Add a content_written signal
- Require python-Jinja2 >= 2.7
- Require python-feedgenerator >= 1.6
- update to pelican 3.2.2
- update to pelican 3.2
- suggest additional python packages instead of recommending them
- remove useless shebang in python files
- initial package with version 3.1.1


Factory Auto's avatar

factory-auto added opensuse-review-team as a reviewer

Please review sources


Factory Auto's avatar

factory-auto added repo-checker as a reviewer

Please review build success


Factory Auto's avatar

factory-auto accepted review

Check script succeeded


Saul Goodman's avatar

licensedigger accepted review

ok


Staging Bot's avatar

staging-bot added openSUSE:Factory:Staging:adi:11 as a reviewer

Being evaluated by staging project "openSUSE:Factory:Staging:adi:11"


Staging Bot's avatar

staging-bot accepted review

Picked openSUSE:Factory:Staging:adi:11


Ismail Dönmez's avatar

namtrac accepted review


Repo Checker's avatar

repo-checker accepted review

cycle and install check passed


Staging Bot's avatar

staging-bot accepted review

ready to accept


Staging Bot's avatar

staging-bot approved review

ready to accept


Dominique Leuenberger's avatar

dimstar_suse accepted request

Accept to openSUSE:Factory

openSUSE Build Service is sponsored by