Compare commits

...

No commits in common. "c8" and "c8s" have entirely different histories.
c8 ... c8s

7 changed files with 61 additions and 2 deletions

23
.gitignore vendored
View File

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

@ -1 +0,0 @@
441c604691a13c39ce72da7e01df2477702bce5c SOURCES/pandoc-2.0.6.tar.gz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

18
rpminspect.yaml Normal file
View File

@ -0,0 +1,18 @@
---
xml:
# the rendering of libraries source code has anchors with
ignore:
- "/usr/share/pandoc-*/data/templates/*"
elf:
# 14 libs for base, rts, & unix have objects built without -fPIC on x86_64.
# ghc's runtime has this intentionally for performance optimization.
ignore:
- "/usr/lib64/ghc-*/*/libHS*.a"
runpath:
# Technically the /usr/lib64 one should be fixed in the build, but
# the other one should be allowed for the ghc ecosystem.
allowed_paths:
- /usr/lib64
- /usr/lib64/ghc-8.8.4/rts

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (pandoc-2.0.6.tar.gz) = a1e59fbedc8efbeaa482a90392beff3e6b93c5ee52f2955c57eba83baadfc10c76f474c1254de22daf7c0d250dc9114331d878f56ebf2e90cdd5bf75ecd6f208

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