diff --git a/.gitignore b/.gitignore index ab34b74..e777b6b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,22 @@ -SOURCES/pandoc-2.0.6.tar.gz +/pandoc-1.6.0.1.tar.gz +/pandoc-1.8.1.1.tar.gz +/pandoc-1.8.1.2.tar.gz +/pandoc-1.8.2.1.tar.gz +/pandoc-1.9.1.1.tar.gz +/pandoc-1.9.1.2.tar.gz +/pandoc-1.9.2.tar.gz +/pandoc-1.9.4.1.tar.gz +/pandoc-1.9.4.2.tar.gz +/pandoc-1.9.4.5.tar.gz +/pandoc-1.10.1.tar.gz +/pandoc-1.11.1.tar.gz +/pandoc-1.12.3.1.tar.gz +/pandoc-1.12.3.3.tar.gz +/pandoc-1.13.2.tar.gz +/pandoc-1.16.0.2.tar.gz +/pandoc-1.17.1.tar.gz +/pandoc-1.17.0.3.tar.gz +/pandoc-1.19.1.tar.gz +/doctemplates-0.1.0.2.tar.gz +/pandoc-1.19.2.4.tar.gz /pandoc-2.0.6.tar.gz diff --git a/pandoc.spec b/pandoc.spec index b79624a..b8da3d1 100644 --- a/pandoc.spec +++ b/pandoc.spec @@ -11,7 +11,7 @@ Name: %{pkg_name} Version: 2.0.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Conversion between markup formats License: GPLv2+ @@ -34,7 +34,7 @@ BuildRequires: ghc-blaze-html-devel BuildRequires: ghc-blaze-markup-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-case-insensitive-devel -BuildRequires: ghc-cmark-gfm-devel +BuildRequires: ghc-cmark-gfm-devel >= 0.2.3 BuildRequires: ghc-containers-devel BuildRequires: ghc-data-default-devel BuildRequires: ghc-deepseq-devel @@ -209,6 +209,10 @@ install -m 0644 -p -D man/pandoc.1 %{buildroot}%{_mandir}/man1/pandoc.1 %changelog +* Thu Apr 14 2022 Jens Petersen - 2.0.6-6 +- rebuild with ghc-cmark-gfm-0.2.3 for CVE-2022-24724 (#2060667) +- https://github.com/github/cmark-gfm/security/advisories/GHSA-mc3g-88wq-6f4x + * Mon Dec 14 2020 Jens Petersen - 2.0.6-5 - rebuild with ghc-cmark-gfm-0.2.2 (#1865911) diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..91e222d --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,14 @@ +--- +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-basic + required_packages: + - pandoc + tests: + - help: + run: pandoc --help + - html: + run: echo -e "# Hello\n## There\nIndeed" | pandoc +...