Diff cmark-0.31.1-r1 with a cmark-0.31.2
| /usr/portage/app-text/cmark/cmark-0.31.2.ebuild 2026-05-20 19:17:03.617579945 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 1 |
# Copyright 1999-2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| 5 | 5 | |
| 6 |
PYTHON_COMPAT=( python3_{10..13} )
|
|
| 6 |
PYTHON_COMPAT=( python3_{10..14} )
|
|
| 7 | 7 | |
| 8 | 8 |
inherit cmake python-any-r1 |
| 9 | 9 | |
| ... | ... | |
| 12 | 12 |
SRC_URI="https://github.com/commonmark/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
| 13 | 13 | |
| 14 | 14 |
LICENSE="BSD-2" |
| 15 |
SLOT="0/0.31.1" |
|
| 16 |
KEYWORDS="amd64 ~arm arm64 ~loong ppc ppc64 ~riscv x86" |
|
| 15 |
SLOT="0/0.31.2" |
|
| 16 |
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" |
|
| 17 | 17 |
IUSE="test" |
| 18 | 18 |
RESTRICT="!test? ( test )" |
| 19 | 19 | |
| 20 | 20 |
BDEPEND="test? ( ${PYTHON_DEPS} )"
|
| 21 | 21 | |
| 22 | 22 |
PATCHES=( |
| 23 |
"${FILESDIR}/cmark-0.31.0_fix_api_test.patch"
|
|
| 23 |
"${FILESDIR}/cmark-0.31.2_python-3.14.patch"
|
|
| 24 | 24 |
) |
| 25 | 25 | |
| 26 | 26 |
pkg_setup() {
|