Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
mistune: Autospec creation for update from version 0.8.3 to version 0…
Browse files Browse the repository at this point in the history
….8.4

Hsiaoming Yang (10):
      Merge pull request #150 from lazyfrosch/pipe-char-in-table
      Merge pull request #152 from frostming/hetero-list
      Merge pull request #153 from hugovk/patch-1
      Fix spaces between = in HTML tags
      Add changelog for v0.8.4
      Add max_recursive_depth for list and blockquote.
      Fix fences code block.
      Add test cases for nested blockquote and list
      Build without cython
      Version bump 0.8.4

Hugo (3):
      Update Python versions
      Update Python versions
      Remove redundant version check

Hyunwoo Park (1):
      Fix minors in tests (#175)

Markus Frosch (1):
      Support an escaped pipe char in a table cell

frostming (3):
      Fix parsing error #151 on heterogeneous list
      hetero list test case
      newlines at EOF

Version 0.8.4
~~~~~~~~~~~~~

Released on Oct. 11, 2018

* Support an escaped pipe char in a table cell. `#150`_
* Fix ordered and unordered list. `#152`_
* Fix spaces between = in HTML tags
* Add max_recursive_depth for list and blockquote.
* Fix fences code block.

.. _`#150`: lepture/mistune#150
.. _`#152`: lepture/mistune#152
  • Loading branch information
phmccarty authored and clear autopackage committed Oct 12, 2018
1 parent 5b2b8b0 commit 3c1c61f
Show file tree
Hide file tree
Showing 9 changed files with 66 additions and 24 deletions.
13 changes: 13 additions & 0 deletions .gitignore
@@ -0,0 +1,13 @@
.*~
*~
*.swp
.repo-index
*.log
build.log.round*
*.tar.*
*.tgz
!*.tar.*.*
*.zip
commitmsg
results/
rpms/
14 changes: 14 additions & 0 deletions ChangeLog
Expand Up @@ -3,6 +3,20 @@ Changelog

Here is the full history of mistune.

Version 0.8.4
~~~~~~~~~~~~~

Released on Oct. 11, 2018

* Support an escaped pipe char in a table cell. `#150`_
* Fix ordered and unordered list. `#152`_
* Fix spaces between = in HTML tags
* Add max_recursive_depth for list and blockquote.
* Fix fences code block.

.. _`#150`: https://github.com/lepture/mistune/pull/150
.. _`#152`: https://github.com/lepture/mistune/pull/152

Version 0.8.3
~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
PKG_NAME := mistune
URL = http://pypi.debian.net/mistune/mistune-0.8.3.tar.gz
URL = https://files.pythonhosted.org/packages/2d/a4/509f6e7783ddd35482feda27bc7f72e65b5e7dc910eca4ab2164daf9c577/mistune-0.8.4.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 2 additions & 0 deletions buildreq_cache
@@ -0,0 +1,2 @@
0.8.4
nose
47 changes: 29 additions & 18 deletions mistune.spec
Expand Up @@ -3,32 +3,37 @@
# Generated by: autospec.py
#
Name : mistune
Version : 0.8.3
Release : 18
URL : http://pypi.debian.net/mistune/mistune-0.8.3.tar.gz
Source0 : http://pypi.debian.net/mistune/mistune-0.8.3.tar.gz
Version : 0.8.4
Release : 19
URL : https://files.pythonhosted.org/packages/2d/a4/509f6e7783ddd35482feda27bc7f72e65b5e7dc910eca4ab2164daf9c577/mistune-0.8.4.tar.gz
Source0 : https://files.pythonhosted.org/packages/2d/a4/509f6e7783ddd35482feda27bc7f72e65b5e7dc910eca4ab2164daf9c577/mistune-0.8.4.tar.gz
Summary : The fastest markdown parser in pure Python
Group : Development/Tools
License : BSD-3-Clause
Requires: mistune-python3
Requires: mistune-python
BuildRequires : nose-python
BuildRequires : pbr
BuildRequires : pip

BuildRequires : python3-dev
BuildRequires : setuptools
Requires: mistune-license = %{version}-%{release}
Requires: mistune-python = %{version}-%{release}
Requires: mistune-python3 = %{version}-%{release}
BuildRequires : buildreq-distutils3
BuildRequires : nose

%description
=======

The fastest markdown parser in pure Python with renderer features,
inspired by marked_.

%package license
Summary: license components for the mistune package.
Group: Default

%description license
license components for the mistune package.


%package python
Summary: python components for the mistune package.
Group: Default
Requires: mistune-python3
Requires: mistune-python3 = %{version}-%{release}

%description python
python components for the mistune package.
Expand All @@ -44,31 +49,37 @@ python3 components for the mistune package.


%prep
%setup -q -n mistune-0.8.3
%setup -q -n mistune-0.8.4

%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C
export SOURCE_DATE_EPOCH=1523292110
python3 setup.py build -b py3
export SOURCE_DATE_EPOCH=1539293909
python3 setup.py build

%check
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
PYTHONPATH=%{buildroot}/usr/lib/python3.6/site-packages python3 setup.py test
PYTHONPATH=%{buildroot}/usr/lib/python3.7/site-packages python3 setup.py test
%install
rm -rf %{buildroot}
python3 -tt setup.py build -b py3 install --root=%{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/mistune
cp LICENSE %{buildroot}/usr/share/package-licenses/mistune/LICENSE
python3 -tt setup.py build install --root=%{buildroot}
echo ----[ mark ]----
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :
echo ----[ mark ]----

%files
%defattr(-,root,root,-)

%files license
%defattr(0644,root,root,0755)
/usr/share/package-licenses/mistune/LICENSE

%files python
%defattr(-,root,root,-)

Expand Down
4 changes: 3 additions & 1 deletion options.conf
@@ -1,6 +1,6 @@
[package]
name = mistune
url = http://pypi.debian.net/mistune/mistune-0.8.3.tar.gz
url = https://files.pythonhosted.org/packages/2d/a4/509f6e7783ddd35482feda27bc7f72e65b5e7dc910eca4ab2164daf9c577/mistune-0.8.4.tar.gz
archives =
giturl = https://github.com/lepture/mistune.git

Expand All @@ -21,6 +21,8 @@ broken_parallel_build = false
compat = false
# set conservative build flags
conservative_flags = false
# dev package requires the extras to be installed
dev_requires_extras = false
# pass -ffast-math to compiler
fast-math = false
# optimize build for speed over size
Expand Down
2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
18
19
4 changes: 2 additions & 2 deletions testresults
@@ -1,5 +1,5 @@
Total : 67
Pass : 67
Total : 70
Pass : 70
Fail : 0
Skip : 0
XFail : 0
2 changes: 1 addition & 1 deletion upstream
@@ -1 +1 @@
993c67443f393f9645d5f969492a8a107d9edc5f/mistune-0.8.3.tar.gz
fd210c038fa7b0f2dffad6847b17dc139e7dd9fe/mistune-0.8.4.tar.gz

0 comments on commit 3c1c61f

Please sign in to comment.