From 38efae7f3eb932ed41510139679efd5c1e2f5eda Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 4 Jan 2025 06:31:29 +0000 Subject: gentoo auto-resync : 04:01:2025 - 06:31:29 --- app-text/cmark/Manifest | 2 +- app-text/cmark/cmark-0.31.1-r1.ebuild | 37 +++++++++++++++++++++++++++++++++++ app-text/cmark/cmark-0.31.1.ebuild | 37 ----------------------------------- 3 files changed, 38 insertions(+), 38 deletions(-) create mode 100644 app-text/cmark/cmark-0.31.1-r1.ebuild delete mode 100644 app-text/cmark/cmark-0.31.1.ebuild (limited to 'app-text/cmark') diff --git a/app-text/cmark/Manifest b/app-text/cmark/Manifest index 433e54ef655c..243a78e50fca 100644 --- a/app-text/cmark/Manifest +++ b/app-text/cmark/Manifest @@ -2,5 +2,5 @@ AUX cmark-0.31.0_fix_api_test.patch 635 BLAKE2B 8dab955156da6958fb80acfa88bf6eb6 DIST cmark-0.31.0.tar.gz 251922 BLAKE2B 9532255066cd21e99de430787f261b3014c4d270e8243aa258bb9c90cf2ccfd7138dcff2e15f576cc28ee6b6b7901c0f321f5ead6a9202e06b4223288f326897 SHA512 768d456147cb8f5cf36e8122213ad053098201e118109a316518a6a5e721ac94f62af29abe1e69120c84bdc227a5c320803ea2cf320c6d9a719d62909b6533bd DIST cmark-0.31.1.tar.gz 264170 BLAKE2B c1de1cf035ff5c706455889413c8cfdaa4b5da39a333d21ed77e2091d1a2f5ef9c90c34100c18be62426aea68c2d5ce157719964a761312f7e4b11e05dae0024 SHA512 3b4f8b47d8ea270078ab986aa22fc32b227786459bd33c7225aac578d8dd014e3d8788a6add60ea10571fdb4c7dc6a1ece960815a02f04f153b1775c73ccff8f EBUILD cmark-0.31.0.ebuild 805 BLAKE2B df315aaf9288f605d214043eb5ab8d52850c1e9c938ac4360acf894262e2d64425e97f12f43e96afd1392711da5f72e3e1d5851886da52135ccd458e77f08b7c SHA512 0c3ab8e1b097d3c2c9f22ce2f0582bc203c59f242d8533ceb1e95893fc846112de25768013e9ed20761fca1e1e04c51c49bd2d7da4c9cbca11020cca03b0b20a -EBUILD cmark-0.31.1.ebuild 811 BLAKE2B 1fae5937022184bd75f39bb52bdbeabbf0077871620c9c0647d8a1eb6f778926bbfd76cba08e8680ec2af620c355941c15f2022a42d5e41c3b83e47de1a00857 SHA512 aee645b878bebb3b1df72b93d80241cae0b7fba0f29fbd8c4e07908b809d936a8ef8856fcc38987eb06a9b4c3fb89664cda041724424de55bcf86a6e8b56a14c +EBUILD cmark-0.31.1-r1.ebuild 811 BLAKE2B 7d0c12f5a02b626decca4faeb533d83e06216fd889b986cb79069e2d44bf55a9fed8565c2133e944f0d00efd4de75d73a88425678a37e9e88f4f3402b0ea449c SHA512 9417f9ed5498a8f8540d8ddca0dfc284500af12ab60fe5e49f322d797553778ee6e1d509336d66d7072ccce8c4be14fb68fe03c32bda601ce9303cc554a213e0 MISC metadata.xml 504 BLAKE2B 5b9b29ddcf02b115bc37aeb217236e5092363991b75247f7d7c5da7e7fe0c5bf15ff0a397b332faefd2b150ff9cc239d4996caf6131306240efd641bffe52431 SHA512 f2ebd2271483a1847c63df11e0e6fa057abe8f19323d86f0632904e03ae321b1e689a98ab941e4d7ebaa50ee9220242f1488b35b08f73cec736df5c0a0024713 diff --git a/app-text/cmark/cmark-0.31.1-r1.ebuild b/app-text/cmark/cmark-0.31.1-r1.ebuild new file mode 100644 index 000000000000..66e1ac7da6e6 --- /dev/null +++ b/app-text/cmark/cmark-0.31.1-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..13} ) + +inherit cmake python-any-r1 + +DESCRIPTION="CommonMark parsing and rendering library and program in C" +HOMEPAGE="https://github.com/commonmark/cmark" +SRC_URI="https://github.com/commonmark/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0/0.31.1" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( ${PYTHON_DEPS} )" + +PATCHES=( + "${FILESDIR}/cmark-0.31.0_fix_api_test.patch" +) + +pkg_setup() { + use test && python-any-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DCMARK_LIB_FUZZER=OFF + -DBUILD_SHARED_LIBS=ON + -DBUILD_TESTING="$(usex test)" + ) + cmake_src_configure +} diff --git a/app-text/cmark/cmark-0.31.1.ebuild b/app-text/cmark/cmark-0.31.1.ebuild deleted file mode 100644 index ae89bcc8e095..000000000000 --- a/app-text/cmark/cmark-0.31.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..13} ) - -inherit cmake python-any-r1 - -DESCRIPTION="CommonMark parsing and rendering library and program in C" -HOMEPAGE="https://github.com/commonmark/cmark" -SRC_URI="https://github.com/commonmark/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0/0.31.0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( ${PYTHON_DEPS} )" - -PATCHES=( - "${FILESDIR}/cmark-0.31.0_fix_api_test.patch" -) - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DCMARK_LIB_FUZZER=OFF - -DBUILD_SHARED_LIBS=ON - -DBUILD_TESTING="$(usex test)" - ) - cmake_src_configure -} -- cgit v1.2.3