diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2024-03-18 18:57:50 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2024-03-18 18:57:50 +0100 |
commit | f36584ce4deac8bd39643a86a36955c92b1965c1 (patch) | |
tree | 6fd0b6479f2e3f0f84c562d9f2153b216f7662ad /dev-ada | |
parent | dev-ada/spawn: add 24.0.0 (diff) | |
download | gentoo-f36584ce4deac8bd39643a86a36955c92b1965c1.tar.gz gentoo-f36584ce4deac8bd39643a86a36955c92b1965c1.tar.bz2 gentoo-f36584ce4deac8bd39643a86a36955c92b1965c1.zip |
dev-ada/markdown: add 24.0.0
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ada')
-rw-r--r-- | dev-ada/markdown/Manifest | 1 | ||||
-rw-r--r-- | dev-ada/markdown/markdown-24.0.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-ada/markdown/Manifest b/dev-ada/markdown/Manifest index 7a078cbed0b5..e38034505b8f 100644 --- a/dev-ada/markdown/Manifest +++ b/dev-ada/markdown/Manifest @@ -1 +1,2 @@ DIST markdown-23.0.0.tar.gz 29626 BLAKE2B 146c980635aec06e8b806f3b00ef8a66b2a34de0a5aebf3ff1a83d3f99187b97c714c81a5a7054dd75d3fa87e6682b260636c12044fce05dc79ddf52d2fe56a5 SHA512 13497f8762d360190d158bbcbbb3a0efaaedad0c67b69d0df63c31029ed482c5b6a169152433fb3fd267e97bebc1950d0a8307fc849945a1b7f68892feb496c0 +DIST markdown-24.0.0.tar.gz 44043 BLAKE2B c8ae36d9bb628298a61ca91f15c3c937c1b5d192c90f38fbf85a7a2b193664abd7dcad50a61c75f91160475774f6ddf2ecdb7b47ad9f454223795fd6983afb01 SHA512 beb6adc41d86a2b18debbc21bdafbd069cfef72bd2cd52d5b18630316744f25fc6c71450d87dc8a87830a9a40458a494132dec61c10587d5d81418f58c6e0f73 diff --git a/dev-ada/markdown/markdown-24.0.0.ebuild b/dev-ada/markdown/markdown-24.0.0.ebuild new file mode 100644 index 000000000000..7b04a6f1cd8e --- /dev/null +++ b/dev-ada/markdown/markdown-24.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ADA_COMPAT=( gnat_2021 gcc_12 gcc_13 ) +inherit ada multiprocessing + +DESCRIPTION="Provides a markdown parser written in Ada" +HOMEPAGE="https://github.com/AdaCore/markdown" +SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="test" + +RDEPEND="${ADA_DEPS} + dev-ada/gprbuild[${ADA_USEDEP}] + dev-ada/VSS[${ADA_USEDEP}]" +DEPEND="${RDEPEND}" + +src_compile() { + gprbuild -v -p -j$(makeopts_jobs) -XBUILD_MODE=dev gnat/markdown.gpr -cargs ${ADAFLAGS} +} |