multimarkdown: add upstream patch for newer cmake support

This commit is contained in:
Joachim Mairböck
2025-08-23 17:22:16 +02:00
parent 5593b88907
commit 0ebe6fc8ea
2 changed files with 42 additions and 10 deletions

View File

@@ -1,9 +1,8 @@
SUMMARY="Lightweight markup processor to produce HTML, LaTeX, and more"
DESCRIPTION="MultiMarkdown, or MMD, is a tool to help turn minimally marked-up \
plain text into well formatted documents, including HTML, PDF (by way of LaTeX), \
OPML, or OpenDocument (specifically, Flat OpenDocument or .fodt, which can \
in turn be converted into RTF, Microsoft Word, or virtually any other \
word-processing format)."
DESCRIPTION="MultiMarkdown, or MMD, is a tool to help turn minimally marked-up plain text into \
well formatted documents, including HTML, PDF (by way of LaTeX), OPML, or OpenDocument \
(specifically, Flat OpenDocument or .fodt, which can in turn be converted into RTF, Microsoft \
Word, or virtually any other word-processing format)."
HOMEPAGE="https://fletcherpenney.net/multimarkdown/"
COPYRIGHT="2016-2018 Fletcher T. Penney
2005-2016 Troy D. Hanson

View File

@@ -1,11 +1,11 @@
From a2aaa543e764c2e92dfa30353e60debfbec857ba Mon Sep 17 00:00:00 2001
From 329481e758d2be42cf0a73b424c55fbf749a6d94 Mon Sep 17 00:00:00 2001
From: Begasus <begasus@gmail.com>
Date: Fri, 6 Oct 2023 18:35:39 +0200
Subject: Fix installation paths
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f51d94c..512b908 100644
index f51d94c..fa9ec8c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -570,14 +570,14 @@ else (hasParent)
@@ -26,10 +26,10 @@ index f51d94c..512b908 100644
PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ
)
--
2.37.3
2.50.1
From 3f4bb90858c11f3de75741efb2a146e8b40bbe88 Mon Sep 17 00:00:00 2001
From 932a5f9efe8dd79835eee0acffa458832ee99ec0 Mon Sep 17 00:00:00 2001
From: Begasus <begasus@gmail.com>
Date: Fri, 6 Oct 2023 18:46:28 +0200
Subject: Fix path for perl tests
@@ -46,5 +46,38 @@ index 36b25d7..cdefc90 100755
#
# MarkdownTester -- Run tests for Markdown implementations
--
2.37.3
2.50.1
From c31e5a6fb994e8746e777e3e3dd8e64da3a0523f Mon Sep 17 00:00:00 2001
From: "Fletcher T. Penney" <fletcher@fletcherpenney.net>
Date: Sat, 20 Jul 2024 16:42:23 -0400
Subject: UPDATED: Increase required CMake version to silence warning
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fa9ec8c..e0bf9e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,7 @@
# See the LICENSE file for copyright and licensing information.
#
-cmake_minimum_required(VERSION 2.9)
+cmake_minimum_required(VERSION 3.5)
# ===================
diff --git a/lemon/CMakeLists.txt b/lemon/CMakeLists.txt
index 87b42fc..27d8b0f 100644
--- a/lemon/CMakeLists.txt
+++ b/lemon/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 2.6)
+cmake_minimum_required (VERSION 3.5)
# Quick file to build lemon parser generator
--
2.50.1