Hello community,

here is the log from the commit of package MultiMarkdown-6 for openSUSE:Factory 
checked in at 2017-11-04 19:29:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/MultiMarkdown-6 (Old)
 and      /work/SRC/openSUSE:Factory/.MultiMarkdown-6.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "MultiMarkdown-6"

Sat Nov  4 19:29:25 2017 rev:1 rq:538617 version:6.2.2

Changes:
--------
New Changes file:

--- /dev/null   2017-10-14 16:26:57.428140955 +0200
+++ /work/SRC/openSUSE:Factory/.MultiMarkdown-6.new/MultiMarkdown-6.changes     
2017-11-04 19:29:31.308611086 +0100
@@ -0,0 +1,79 @@
+-------------------------------------------------------------------
+Fri Nov  3 09:25:51 UTC 2017 - [email protected]
+
+- Conflict with MultiMarkdown-5
+- Provide virtual package markdown
+
+-------------------------------------------------------------------
+Thu Oct 19 13:37:22 UTC 2017 - [email protected]
+
+- New package MultiMarkdown-6 based on MultiMarkdown-5
+
+-------------------------------------------------------------------
+Thu Jun 22 14:10:24 UTC 2017 - [email protected]
+
+- Enable tests
+- Update alernatives handling according to current guidelines
+
+-------------------------------------------------------------------
+Fri Oct 28 13:30:26 UTC 2016 - [email protected]
+
+- Fix typo and add more comments
+
+-------------------------------------------------------------------
+Tue Oct 18 06:55:11 UTC 2016 - [email protected]
+
+- Use update alternatives to allow parallel installation with discount
+- Avoid conflict with mtools
+
+-------------------------------------------------------------------
+Sun Oct 16 08:18:28 UTC 2016 - [email protected]
+
+- Update to version 5.4.0:
+  * Improve accuracy and performance of strong/emph
+  * CHANGED: Update greg
+  * 5.3.0
+  * CHANGED: Update README
+  * ADDED: Move static library options to separate make target
+  * FIXED: Fix crash with empty table label
+  * ADDED: Add email address to cpack settings (addresses #31)
+  * CHANGED: Increase list of syntax structures that are evaluated for 
abbreviations (Thanks, David!)
+  * FIXED: Avoids problem mentioned on github (#30), but doesn't actually 
solve it. Any help appreciated!
+  * version bump 5.4.0
+
+-------------------------------------------------------------------
+Sat Jul 09 16:58:27 UTC 2016 - [email protected]
+
+- Update to version 5.3.0:
+  * FIXED: Don't allow math spans inside strong/emph
+  * FIXED: Fix slow parsing of complex strong/emph (Fixes #18)
+  * CHANGED: Update test suite
+  * FIXED: Improve performance; FIXED: Fix additional edge case in emph/strong 
parser
+  * Improve accuracy and performance of strong/emph
+  * CHANGED: Update greg
+  * 5.3.0
+
+-------------------------------------------------------------------
+Wed Jul 06 19:28:15 UTC 2016 - [email protected]
+
+- Fix building on linux (needs static glibc and -D_GNU_SOURCE)
+
+-------------------------------------------------------------------
+Sun May 01 10:57:35 UTC 2016 - [email protected]
+
+- Update to version 5.2.0:
+  * ADDED: Add support for 'HTML FOOTER' metadata -- appended at very end of 
HTML documents (after footnotes)
+  * CHANGED: Update documentation for HTML Footer metadata
+  * CHANGED: Update Math test suite
+  * FIXED: Improve accuracy of strong/emph parsing; CHANGED: Allow nested 
strong/emph spans (though effect of output is not defined for all formats)
+  * ADDED: Add additional test cases
+  * CHANGED: recursive support for CriticMarkup syntax (e.g. an addition can 
be included inside a substitution).
+  * FIXED: Remove debugging statement in recent CriticMarkup changes
+  * CHANGED: Update test suite
+  * Version bump 5.2.0
+
+-------------------------------------------------------------------
+Sun May  1 10:42:27 UTC 2016 - [email protected]
+
+- Initial package
+

New:
----
  MultiMarkdown-6-6.2.2.tar.xz
  MultiMarkdown-6.changes
  MultiMarkdown-6.spec
  _service

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ MultiMarkdown-6.spec ++++++
#
# spec file for package MultiMarkdown-6
#
# Copyright (c) 2017 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           MultiMarkdown-6
Version:        6.2.2
Release:        0
Summary:        Reference implementation of MultiMarkdown
License:        MIT
Group:          Productivity/Publishing/Other
Url:            http://fletcherpenney.net/multimarkdown
# We have to use tarball generated via _service as released ones are
# missing submodules that are necessary for building
Source:         %{name}-%{version}.tar.xz
BuildRequires:  cmake
BuildRequires:  fdupes
BuildRequires:  gcc-c++
BuildRequires:  texlive-filesystem
Conflicts:      MultiMarkdown-5
Provides:       markdown
Requires:       texlive-filesystem
Requires(post): update-alternatives
Requires(postun): update-alternatives

%description
MultiMarkdown is a derivative of Markdown that adds new syntax features,
such as footnotes, tables, and metadata. Additionally, it offers mechanisms
to convert plain text into LaTeX in addition to HTML.

%prep
%setup -q

%build
%cmake
%make_jobs

%install
%cmake_install
# Avoid conflict with mtools
mv %{buildroot}%{_bindir}/mmd  %{buildroot}%{_bindir}/%{name}-mmd
# multimarkdown is provided by other packages thus we use
# update-alternatives
mv %{buildroot}%{_bindir}/markdown %{buildroot}%{_bindir}/%{name}-markdown
install -d %{buildroot}%{_sysconfdir}/alternatives
touch %{buildroot}%{_sysconfdir}/alternatives/markdown
ln -sf %{_sysconfdir}/alternatives/markdown %{buildroot}%{_bindir}/markdown
%fdupes %{buildroot}

%check
%ctest

%post
update-alternatives \
        --install %{_bindir}/markdown markdown %{_bindir}/%{name}-markdown 40

%postun
if [ ! -f %{_bindir}/%{name}-markdown ] ; then
        update-alternatives --remove markdown %{_bindir}/%{name}-markdown
fi

%files
%doc LICENSE.txt README.md
%ghost %{_sysconfdir}/alternatives/markdown
%{_bindir}/markdown
%{_bindir}/%{name}-markdown
%{_bindir}/%{name}-mmd
%{_bindir}/mmd2all
%{_bindir}/mmd2opml
%{_bindir}/mmd2pdf
%{_bindir}/mmd2tex
%{_bindir}/multimarkdown
%{_bindir}/mmd2epub
%{_bindir}/mmd2fodt
%{_bindir}/mmd2odt
%dir %{_datadir}/texmf/tex/latex/mmd6
%{_datadir}/texmf/tex/latex/mmd6/*

%changelog
++++++ _service ++++++
<services>
  <service mode="disabled" name="tar_scm">
    <param name="url">https://github.com/fletcher/MultiMarkdown-6.git</param>
    <param name="scm">git</param>
    <param name="changesgenerate">enable</param>
    <param name="filename">MultiMarkdown-6</param>
    <param name="versionformat">6.2.2</param>
    <param name="revision">6.2.2</param>
  </service>
  <service mode="disabled" name="recompress">
    <param name="file">*.tar</param>
    <param name="compression">xz</param>
  </service>
  <service mode="disabled" name="set_version"/>
</services>

Reply via email to