From 3dd4703e3ef27e00a149429fcf13b60806cb7239 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Wed, 10 Jan 2024 01:07:44 +0300 Subject: [PATCH] import cmark-0.29.0-4.el9 --- .cmark.metadata | 1 + .gitignore | 1 + SPECS/cmark.spec | 176 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 178 insertions(+) create mode 100644 .cmark.metadata create mode 100644 .gitignore create mode 100644 SPECS/cmark.spec diff --git a/.cmark.metadata b/.cmark.metadata new file mode 100644 index 0000000..943e97c --- /dev/null +++ b/.cmark.metadata @@ -0,0 +1 @@ +d294240c6f889beb14936f75f8183a2bc19a1ab8 SOURCES/cmark-0.29.0.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7f11b9a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/cmark-0.29.0.tar.gz diff --git a/SPECS/cmark.spec b/SPECS/cmark.spec new file mode 100644 index 0000000..da816e9 --- /dev/null +++ b/SPECS/cmark.spec @@ -0,0 +1,176 @@ +# html_normalization and roundtriptest_library failing +%bcond_with tests + +Name: cmark +Version: 0.29.0 +Release: 4%{?dist} +Summary: CommonMark parsing and rendering + +License: BSD and MIT +URL: https://github.com/jgm/cmark +Source0: https://github.com/jgm/cmark/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: cmake +BuildRequires: gcc-c++ + +%description +`cmark` is the C reference implementation of CommonMark, +a rationalized version of Markdown syntax with a spec. + +It provides a shared library (`libcmark`) with functions for parsing +CommonMark documents to an abstract syntax tree (AST), manipulating +the AST, and rendering the document to HTML, groff man, LaTeX, +CommonMark, or an XML representation of the AST. It also provides a +command-line program (`cmark`) for parsing and rendering CommonMark +documents. + + +%package devel +Summary: Development files for cmark +Requires: cmark-lib = %{version}-%{release} + +%description devel +This package provides the development files for cmark. + + + +%package lib +Summary: CommonMark parsing and rendering library + +%description lib +This package provides the cmark library. + + + +%prep +%setup -q + + +%build +%cmake %{?_without_tests:-DCMARK_TESTS=OFF} +%cmake_build + + +%install +%cmake_install + +rm %{buildroot}%{_libdir}/libcmark.a + + +%check +%if %{with tests} +%cmake_build --target test +%endif + + +%ldconfig_scriptlets lib + + +%files +%license COPYING +%{_bindir}/cmark +%{_mandir}/man1/cmark.1.gz + + +%files lib +%license COPYING +%{_libdir}/libcmark.so.%{version} + + +%files devel +%doc README.md +%{_includedir}/cmark.h +%{_includedir}/cmark_export.h +%{_includedir}/cmark_version.h +%{_libdir}/libcmark.so +%{_libdir}/pkgconfig/libcmark.pc +%{_mandir}/man3/cmark.3.gz +%{_libdir}/cmake/cmark*.cmake + + +%changelog +* Wed Jan 10 2024 MSVSphere Packaging Team - 0.29.0-4 +- Rebuilt for MSVSphere 9.3 + +* Tue Jan 26 2021 Fedora Release Engineering - 0.29.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering - 0.29.0-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 0.29.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat Feb 1 2020 Jens Petersen - 0.29.0-1 +- https://github.com/commonmark/cmark/releases/tag/0.29.0 +- disable tests for F32: https://github.com/commonmark/cmark/issues/331 + +* Tue Jan 28 2020 Fedora Release Engineering - 0.28.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Wed Jul 24 2019 Fedora Release Engineering - 0.28.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Jan 31 2019 Fedora Release Engineering - 0.28.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Jul 12 2018 Fedora Release Engineering - 0.28.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Apr 2 2018 Jens Petersen - 0.28.3-3 +- run tests on Fedora and RHEL7 (#1561473) + +* Wed Feb 07 2018 Fedora Release Engineering - 0.28.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Dec 11 2017 Jens Petersen - 0.28.3-1 +- update to 0.28.3 (#1516914) + https://github.com/commonmark/cmark/releases + +* Sun Aug 06 2017 Björn Esser - 0.27.1-4 +- Rebuilt for AutoReq cmake-filesystem + +* Wed Aug 02 2017 Fedora Release Engineering - 0.27.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.27.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Feb 22 2017 Jens Petersen - 0.27.1-1 +- update to 0.27.1 + +* Tue Feb 7 2017 Jens Petersen - 0.25.2-3 +- drop lib64 patch + +* Sun Feb 5 2017 Jens Petersen - 0.25.2-2 +- fix libdir in libcmark.pc for pkgconf (#1416426) +- use bcond for tests + +* Fri Apr 29 2016 John Dulaney - 0.25.2-1 +- Update to 0.25.2 + +* Thu Feb 4 2016 Jens Petersen - 0.24.1-1 +- update to 0.24.1 + +* Wed Feb 03 2016 Fedora Release Engineering - 0.23.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jan 28 2016 Jens Petersen - 0.23.0-4 +- BR c++ explicitly +- disable tests for EPEL6 since no python3 + +* Mon Jan 25 2016 Jens Petersen - 0.23.0-3 +- include license in lib (#1266429) + +* Thu Jan 21 2016 Jens Petersen - 0.23.0-2 +- tweak the github release source url (#1266429) + +* Wed Jan 20 2016 Jens Petersen - 0.23.0-1 +- update to 0.23.0 +- cmake include GNUInstallDirs (Marco Driusso, #1266429) + +* Fri Sep 25 2015 Jens Petersen - 0.22.0-1 +- initial packaging +- force lib64 +- run tests