dev-libs/yyjson: drop 0.11.1

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2025-10-08 12:42:08 +03:00
parent abd4cc5bc3
commit e9c8f0a0b3
2 changed files with 0 additions and 41 deletions

View File

@@ -1,2 +1 @@
DIST yyjson-0.11.1.tar.gz 1592503 BLAKE2B 0f86c84a73270496b60feb18df7f0902b3aaf68de950d865be30302f04114655d205d9de2d0a9bae1f1199626b9b5832d1c3cd951f7cb005981af9be4d0d1994 SHA512 26c93768e96080ca88e9c9acf6620ca26c54a7198bb7a5efe0294bf89102ab30e15f196597a79171b7e51f3dca1b5b0075136701007ecdc142293156031e21de
DIST yyjson-0.12.0.tar.gz 1620674 BLAKE2B 11a1dc05e02c385de4f14c1931b8e6af72285bb75273cf591666d0e5e0eb0a0c39d0b91b4c570343973589841ff21985ee333e8b8544195460c2f2407decf0b9 SHA512 a468477544f40a13595eb0afa74857b669b0cf0bf3258678541368863cc3a27fa6f43cc2ef1f4c6103c81b798cea2f67cc14268789de3965e1315a44972c713f

View File

@@ -1,40 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Fast JSON library in C"
HOMEPAGE="https://github.com/ibireme/yyjson https://ibireme.github.io/yyjson/doc/doxygen/html/"
SRC_URI="https://github.com/ibireme/yyjson/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT test? ( BSD )"
SLOT="0/0"
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
BDEPEND="doc? ( app-text/doxygen )"
PATCHES=(
"${FILESDIR}"/${PN}-0.7.0-disable-werror.patch
)
src_configure() {
local mycmakeargs=(
-DYYJSON_BUILD_DOC=$(usex doc)
-DYYJSON_BUILD_TESTS=$(usex test)
-DYYJSON_ENABLE_VALGRIND=OFF
)
cmake_src_configure
}
src_install() {
cmake_src_install
use doc && dodoc -r "${BUILD_DIR}"/doxygen/html
}