From ee26150e7111d942b984c7208bbf5cd617a018f428bc7977398f4fd64d5cfe42 Mon Sep 17 00:00:00 2001
From: Denisart Benjamin
Date: Fri, 21 Feb 2014 14:09:01 +0000
Subject: [PATCH] Accepting request 223300 from
home:benoit_monin:branches:devel:languages:python
- update to version 2.4
- fix CRLF in all files: upstream converted to DOS encoding
OBS-URL: https://build.opensuse.org/request/show/223300
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Markdown?expand=0&rev=7
---
Markdown-2.3.1.tar.gz | 3 ---
Markdown-2.4.tar.gz | 3 +++
python-Markdown.changes | 17 +++++++++++++++++
python-Markdown.spec | 4 ++--
4 files changed, 22 insertions(+), 5 deletions(-)
delete mode 100644 Markdown-2.3.1.tar.gz
create mode 100644 Markdown-2.4.tar.gz
diff --git a/Markdown-2.3.1.tar.gz b/Markdown-2.3.1.tar.gz
deleted file mode 100644
index 017200f..0000000
--- a/Markdown-2.3.1.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ffebd9385717aba00ff4e95b705b7693ddf12a7d483483d441218b6d3f4cf290
-size 267131
diff --git a/Markdown-2.4.tar.gz b/Markdown-2.4.tar.gz
new file mode 100644
index 0000000..56fea61
--- /dev/null
+++ b/Markdown-2.4.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b8370fce4fbcd6b68b6b36c0fb0f4ec24d6ba37ea22988740f4701536611f1ae
+size 260026
diff --git a/python-Markdown.changes b/python-Markdown.changes
index 0e99bae..d444a31 100644
--- a/python-Markdown.changes
+++ b/python-Markdown.changes
@@ -1,3 +1,20 @@
+-------------------------------------------------------------------
+Mon Feb 17 20:35:51 UTC 2014 - benoit.monin@gmx.fr
+
+- update to version 2.4:
+ * the "force_linenos" config setting of the CodeHilite extension
+ has been marked as Deprecated.
+ * URLs are no longer percent-encoded.
+ * the Smarty Extension has been added, which implements
+ SmartyPants.
+ * the Table of Contents Extension now supports new permalink
+ option for creating Sphinx-style anchor links.
+ * it is now possible to enable Markdown formatting inside HTML
+ blocks by appending `markdown=1` to opening tag attributes.
+ * The code blocks now support emphasizing some of the code lines.
+ * Various bug fixes have been made.
+- fix CRLF in all files: upstream converted to DOS encoding
+
-------------------------------------------------------------------
Wed Jan 15 21:36:39 UTC 2014 - benoit.monin@gmx.fr
diff --git a/python-Markdown.spec b/python-Markdown.spec
index df0487c..95cf937 100644
--- a/python-Markdown.spec
+++ b/python-Markdown.spec
@@ -17,7 +17,7 @@
Name: python-Markdown
-Version: 2.3.1
+Version: 2.4
Release: 0
Summary: Python implementation of Markdown
License: BSD-3-Clause
@@ -47,7 +47,7 @@ supported by the [Available Extensions][].
%prep
%setup -q -n Markdown-%{version}
# Fix encoding
-sed -i "s|\r||" docs/release-2.2.0.txt
+find . -type f -not -name py.png -print0 | xargs -0 sed -i "s|\r$||"
%build
python setup.py build