From a26c14c06a5f5964e168be9b171e92b6a3cd4bd0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Jan 2016 11:06:57 +0900 Subject: [PATCH] import (#1266429) --- .gitignore | 1 + cmark-lib64.patch | 10 +++++ cmark.spec | 107 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 119 insertions(+) create mode 100644 cmark-lib64.patch create mode 100644 cmark.spec diff --git a/.gitignore b/.gitignore index e69de29..2fdac19 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/cmark-0.23.0.tar.gz diff --git a/cmark-lib64.patch b/cmark-lib64.patch new file mode 100644 index 0000000..9696d50 --- /dev/null +++ b/cmark-lib64.patch @@ -0,0 +1,10 @@ +--- cmark-0.22.0/CMakeLists.txt~ 2015-08-24 13:55:21.000000000 +0900 ++++ cmark-0.22.0/CMakeLists.txt 2015-09-25 17:18:52.119872504 +0900 +@@ -1,6 +1,7 @@ + project(cmark) + cmake_minimum_required(VERSION 2.8.9) + include("FindAsan.cmake") ++include(GNUInstallDirs) + + if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}") + message(FATAL_ERROR "Do not build in-source.\nPlease remove CMakeCache.txt and the CMakeFiles/ directory.\nThen: mkdir build ; cd build ; cmake .. ; make") diff --git a/cmark.spec b/cmark.spec new file mode 100644 index 0000000..d344f94 --- /dev/null +++ b/cmark.spec @@ -0,0 +1,107 @@ +Name: cmark +Version: 0.23.0 +Release: 3%{?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 +Patch1: cmark-lib64.patch + +BuildRequires: cmake + +%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 +%patch1 -p1 -b .orig + + +%build +mkdir build +cd build +%cmake .. +make %{?_smp_mflags} + + +%install +cd build +make install DESTDIR=%{buildroot} + +rm %{buildroot}%{_libdir}/libcmark.a + + +%check +cd build +ctest -V %{?_smp_mflags} + + +%post lib -p /sbin/ldconfig + + +%postun lib -p /sbin/ldconfig + + +%files +%license COPYING +%{_bindir}/cmark +%{_mandir}/man1/cmark.1.gz + + +%files lib +%license COPYING +%{_libdir}/libcmark.so.%{version} + + +%files devel +%{_includedir}/cmark.h +%{_includedir}/cmark_export.h +%{_includedir}/cmark_version.h +%{_libdir}/libcmark.so +%{_libdir}/pkgconfig/libcmark.pc +%{_mandir}/man3/cmark.3.gz +%doc README.md + + +%changelog +* 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 diff --git a/sources b/sources index e69de29..1efc910 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +a0714dad1248e14b4d1bd6162b27e458 cmark-0.23.0.tar.gz