re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-28 14:33:24 +02:00
parent 3762b81d29
commit 4518e04b64
3 changed files with 41 additions and 3 deletions

22
.gitignore vendored
View File

@ -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

View File

@ -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 <petersen@redhat.com> - 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 <petersen@redhat.com> - 2.0.6-5
- rebuild with ghc-cmark-gfm-0.2.2 (#1865911)

14
tests/tests.yml Normal file
View File

@ -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
...