15
0

Accepting request 306662 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/306662
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Markups?expand=0&rev=4
This commit is contained in:
Stephan Kulow
2015-05-15 05:43:44 +00:00
committed by Git OBS Bridge
4 changed files with 56 additions and 8 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0aab138698035e699fad1c88bebb3fa5e90a1876bc7d8fefb3491513fe13f16b
size 8827

3
Markups-0.6.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f3d6f7b85ac9ddcb936b8b2b6fa15a42ddc9dfc22a075d83d9160b5d59f6d84
size 19116

View File

@@ -1,3 +1,48 @@
-------------------------------------------------------------------
Thu May 7 16:12:55 UTC 2015 - benoit.monin@gmx.fr
- update to version 0.6.1:
* PyMarkups now uses warnings system instead of printing messages
to stderr
* Improvements to Markdown markup:
+ Fixed parsing math that contains nested environments
+ Fixed crash on extensions names starting with dot
* Miscellaneous fixes
- additional changes from version 0.6:
* Custom markups are now normal Python modules
* Web module no longer supports Python 2.x
* Refactor the code related to Markdown extensions to make it
work with upcoming Python-Markdown releases
* MathJax extension is now in a separate module
- additional changes from version 0.5.2:
* Fixed loading of Markdown extensions with options
- additional changes from version 0.5.1:
* Fixed Markdown markup crash on empty files
* Include documentation in the tarballs
* Testsuite improvements
- additional changes from version 0.5:
* Improvements to Markdown markup:
+ All math delimeters except $...$ are now enabled by default
+ remove_extra extension now disables formulas support
+ It is now possible to specify required extensions in the
first line of the file
* Add Sphinx documentation
- additional changes from version 0.4:
* Add Textile markup
* reStructuredText markup now supports file names and settings
overrides
* Web module now raises WebUpdateError when updating fails
- additional changes from version 0.3:
* MathJax support in Markdown has been improved and no longer
relies on tex2jax extension
* It is now possible to pass extensions list to MarkdownMarkup
constructor
* Pygments style is now configurable
* Testsuite improvements
- update project URL
- add python-importlib as a dependency for SLE11
- rename README to README.rst: changed upstream
-------------------------------------------------------------------
Wed Feb 6 09:42:28 UTC 2013 - saschpe@suse.de

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-Markups
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -13,19 +13,22 @@
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-Markups
Version: 0.2.4
Version: 0.6.1
Release: 0
License: BSD-3-Clause
Summary: A wrapper around various text markups
Url: http://launchpad.net/python-markups
License: BSD-3-Clause
Group: Development/Languages/Python
Url: https://github.com/mitya57/pymarkups
Source: http://pypi.python.org/packages/source/M/Markups/Markups-%{version}.tar.gz
BuildRequires: python-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
BuildRequires: python-importlib
Requires: python-importlib
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
@@ -46,7 +49,7 @@ python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc LICENSE README examples
%doc LICENSE README.rst examples
%{python_sitelib}/*
%changelog