commit: a941adc64ae402d5f3dbf8451f7a7905c7988cde Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org> AuthorDate: Sat Mar 15 16:39:41 2025 +0000 Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org> CommitDate: Sat Mar 15 17:09:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a941adc6
app-text/cmark: drop 0.31.0 Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org> app-text/cmark/Manifest | 1 - app-text/cmark/cmark-0.31.0.ebuild | 37 ------------------------------------- 2 files changed, 38 deletions(-) diff --git a/app-text/cmark/Manifest b/app-text/cmark/Manifest index d5714805b99b..fc24a0327a8d 100644 --- a/app-text/cmark/Manifest +++ b/app-text/cmark/Manifest @@ -1,2 +1 @@ -DIST cmark-0.31.0.tar.gz 251922 BLAKE2B 9532255066cd21e99de430787f261b3014c4d270e8243aa258bb9c90cf2ccfd7138dcff2e15f576cc28ee6b6b7901c0f321f5ead6a9202e06b4223288f326897 SHA512 768d456147cb8f5cf36e8122213ad053098201e118109a316518a6a5e721ac94f62af29abe1e69120c84bdc227a5c320803ea2cf320c6d9a719d62909b6533bd DIST cmark-0.31.1.tar.gz 264170 BLAKE2B c1de1cf035ff5c706455889413c8cfdaa4b5da39a333d21ed77e2091d1a2f5ef9c90c34100c18be62426aea68c2d5ce157719964a761312f7e4b11e05dae0024 SHA512 3b4f8b47d8ea270078ab986aa22fc32b227786459bd33c7225aac578d8dd014e3d8788a6add60ea10571fdb4c7dc6a1ece960815a02f04f153b1775c73ccff8f diff --git a/app-text/cmark/cmark-0.31.0.ebuild b/app-text/cmark/cmark-0.31.0.ebuild deleted file mode 100644 index f6fdacd7aa06..000000000000 --- a/app-text/cmark/cmark-0.31.0.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..12} ) - -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/${PV}" -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 -}