mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
Compare commits
19 Commits
4171f67c17
...
a9b15fef8d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a9b15fef8d | ||
|
|
3b4c3a85a8 | ||
|
|
603bc78a51 | ||
|
|
43314c461e | ||
|
|
719f30d7ba | ||
|
|
3af0aa6d14 | ||
|
|
e04b0cf93b | ||
|
|
3fa00fae2e | ||
|
|
54a90b574d | ||
|
|
84c2f9a01f | ||
|
|
3f262a1b2c | ||
|
|
f0f48b8d91 | ||
|
|
dd25e1b09a | ||
|
|
b39a39672b | ||
|
|
7683c3b55f | ||
|
|
1482bacd64 | ||
|
|
db13e47268 | ||
|
|
191a94a83b | ||
|
|
90f928de08 |
@@ -58,3 +58,9 @@ LICENSE="|| ( Apache-2.0 MIT )"
|
||||
LICENSE+=" AGPL-3 MIT Unicode-3.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RESTRICT="test" # requires non default target
|
||||
|
||||
QA_FLAGS_IGNORED="
|
||||
usr/bin/flip-link
|
||||
"
|
||||
|
||||
@@ -1,4 +1,2 @@
|
||||
DIST idf-component-manager-2.4.2.gh.tar.gz 328411 BLAKE2B 26dda6f11bcc1d36ddc51b79e0bfa9b7c537e1f7e116f0c8df57cbd395d196e6b0d54d7039024e4fdef4f37c7d6e3275f7b22471f2595b9a6eafda9f3b62ba4e SHA512 437c79a18c1cad50aa61486dce1a8d5b690a2ff4fd525084d4ef02ff6b2db7b0ab986f5e64ff6bc2cb635a22e2c835db71b9334d1061511f85ced55f3f3dcb5a
|
||||
DIST idf-component-manager-2.4.6.gh.tar.gz 336846 BLAKE2B ef1c6bd3b6591b9b796dcd31ef8c2eee1a87eb1680730e0281bab3ad3ed11a0a81ebc9bbd9d774426b7b7845d72ca5c93b059c5b9f92820ffc15610c2d3ec0a5 SHA512 93bfd0179b9b98ea8b40cc73be6f2394ed358a682f1a0c3ad278269f39a78385a074b997412b1a83bb66ea284f5ca96898995daf3614ccf85b2e360aa21ab82c
|
||||
DIST idf-component-manager-3.0.0.gh.tar.gz 341925 BLAKE2B 505bfedb91ee3658b77a3542b896975e830ee42150763e7736ec3b5e06298fbdef26829bb3efd27a69278abf6051330c85ccd7830d2c3b6eec6bd568410d6263 SHA512 6b01c407ec9ea4e5be4d688fc1606c34d0f20c870553bef7b6759ae6401472ef49cbfc78a236062eaf1c62843e586ae9e21e6d6e8d36f00e359de33b398f5c58
|
||||
DIST idf-component-manager-3.0.2.gh.tar.gz 345743 BLAKE2B 93f300f0b182070914d7899f0f09ca38377ad4262307d8bdb9c11abfe876bc9ed90d365aab21588145f072d08525ce2df56c4762af9120bb4b4a1e078c6561b3 SHA512 6f0cb69c114fa521bed6d6e0cae98196a2192e908e3e59904b1937104ec9c0e968f0936c9826a5099654bd973d761ca17aa9b1897bd2845d87307d35bfe4b944
|
||||
|
||||
@@ -1,77 +0,0 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{12..13} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Tool for installing ESP-IDF components"
|
||||
HOMEPAGE="https://github.com/espressif/idf-component-manager"
|
||||
SRC_URI="https://github.com/espressif/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/requests-mock[${PYTHON_USEDEP}]
|
||||
dev-python/jsonschema[${PYTHON_USEDEP}]
|
||||
dev-python/vcrpy[${PYTHON_USEDEP}]
|
||||
dev-python/filelock[${PYTHON_USEDEP}]
|
||||
dev-vcs/git
|
||||
)
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/cachecontrol[${PYTHON_USEDEP}]
|
||||
dev-python/click[${PYTHON_USEDEP}]
|
||||
dev-python/colorama[${PYTHON_USEDEP}]
|
||||
dev-python/jsonref[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/pydantic[${PYTHON_USEDEP}]
|
||||
dev-python/pydantic-settings[${PYTHON_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/requests-toolbelt[${PYTHON_USEDEP}]
|
||||
dev-python/requests-file[${PYTHON_USEDEP}]
|
||||
dev-python/ruamel-yaml[${PYTHON_USEDEP}]
|
||||
dev-python/schema[${PYTHON_USEDEP}]
|
||||
dev-python/tqdm[${PYTHON_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
# Requires networking or additional files not available in the tarball
|
||||
EPYTEST_DESELECT=(
|
||||
tests/core/test_upload_component.py::test_check_only_upload_component
|
||||
tests/test_component_manager.py::test_pack_component_with_examples_errors
|
||||
tests/test_component_manager.py::test_pack_component_with_dest_dir
|
||||
tests/test_profile.py::TestMultiStorageClient::test_registry_storage_url
|
||||
tests/test_profile.py::TestMultiStorageClient::test_storage_clients_precedence
|
||||
tests/test_mirror_sync.py::test_sync_dependency_with_matches
|
||||
tests/test_mirror_sync.py::test_sync_dependency_with_rules
|
||||
tests/test_mirror_sync.py::test_update_existing_local_mirror
|
||||
tests/test_mirror_sync.py::test_registry_sync_latest_with_two_requirements
|
||||
tests/cli/test_manifest_command.py::test_add_git_dependency
|
||||
tests/cli/test_manifest_command.py::test_add_git_dependency_invalid
|
||||
tests/cli/test_manifest_command.py::test_manifest_keeps_comments
|
||||
tests/cli/test_module.py::test_raise_exception_on_warnings
|
||||
tests/cli/test_registry_command.py::test_logout_from_registry_revoked_token
|
||||
tests/sources/test_git.py::test_versions_component_hash
|
||||
|
||||
tests/test_lock.py::TestLockManager::test_lock_dump_with_solution
|
||||
tests/test_lock.py::TestLockManager::test_lock_dump_with_dictionary
|
||||
tests/test_lock.py::TestLockManager::test_lock_dump
|
||||
)
|
||||
|
||||
# network access
|
||||
EPYTEST_IGNORE=(
|
||||
tests/test_api_client.py
|
||||
tests/test_prepare_dep_dirs.py
|
||||
)
|
||||
|
||||
EPYTEST_PLUGINS=( pytest-mock )
|
||||
distutils_enable_tests pytest
|
||||
@@ -20,7 +20,6 @@ BDEPEND="
|
||||
test? (
|
||||
dev-python/filelock[${PYTHON_USEDEP}]
|
||||
dev-python/jsonschema[${PYTHON_USEDEP}]
|
||||
dev-python/psutil[${PYTHON_USEDEP}]
|
||||
dev-python/requests-mock[${PYTHON_USEDEP}]
|
||||
dev-python/vcrpy[${PYTHON_USEDEP}]
|
||||
dev-vcs/git
|
||||
@@ -33,6 +32,7 @@ RDEPEND="
|
||||
dev-python/colorama[${PYTHON_USEDEP}]
|
||||
dev-python/jsonref[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/psutil[${PYTHON_USEDEP}]
|
||||
dev-python/pydantic[${PYTHON_USEDEP}]
|
||||
dev-python/pydantic-settings[${PYTHON_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_USEDEP}]
|
||||
@@ -1,9 +1,9 @@
|
||||
DIST swift-5.10.1-r6.gpkg.tar 582164480 BLAKE2B 06a6e54c0f00ad59d260fabaabf3b590465bb762df929f51b9e90957ae29cbef8fd55f1932c67f74174152e8eb5f5c35c619cb72a3ca8a6455473a80f76c62fa SHA512 7541d756554565a9f759aada5e1375fd3ed89bfc371134081a4a4e0a54253d88eb7b013285dac356397d09bead957d952c96dd0ad5dc5f178a4ae7c5fef7b81c
|
||||
DIST swift-6.2.3.gpkg.tar 732385280 BLAKE2B 35d2e7f514ae519aba5fa11d918f114726740b855a4c237655eabe0e56241735bf9598d2c3a9162ea9b5252c32737a7c3e14f246ef3f0ef85a8cdc602dd55628 SHA512 b8d6e6383c41255f733e3fe0991cc5d38630b5d2e461c253b3f4af5e936752d6a76a44b7f8050b158ec37a070cc739e909935d6d8882bc07d569945a1d856703
|
||||
DIST swift-6.2.4.gpkg.tar 732160000 BLAKE2B d586fdc0ac5f84cf1cc3ec91739cce410c347a291dc47c4cd022ceb6ea1207d2d7796b5460ff9cabcd8759c7337921724a0a515ddff570f497bacd7f2dc649dc SHA512 3f7a171ae5892f7e689095859ac6f4e053df35e7f2347e174e54ab7fe834a0f2b121cfed0a4e71dadc8ab518803e3f39eed2cf8db32fce916abcc396015f672d
|
||||
DIST swift-6.3-r1.gpkg.tar 768706560 BLAKE2B 3150d9f30f7a61e145b46fc66f9c465071d4b600fa3fff857ae8aa806f83051d2ed4ce8b2fef3eab6d4041f55da8b45fa60dd9550d7fdcf89fa8b588f4747b8b SHA512 ee8874afdefa5cd2c26d69ae1bc0f6cda4c27a4bd9ec5b911844fe0c3cb2e7fd92d8f2ec3ae46d3c99e42c3e1a8a7ba9b5fd16d849a85c2ac05e185887ae263a
|
||||
DIST swift-6.3.1-r1.gpkg.tar 768686080 BLAKE2B 95a30addf66ee48a74de88761bd76dc0cabcdda5d1d009a66c5f870de0b06b1383137c333c43f110992e2a25dbd73c2e34e78229fee1791867b7870766587655 SHA512 9629d0d2ea6400e91f1b58b00672e6bfad21880d7f4660ca3aecda6c38175e8150148e3ae3d4018386298c70685b0345aa0e4e64dacf24070d3121cafd41ceb6
|
||||
DIST swift-6.3-r2.gpkg.tar 768702464 BLAKE2B 12154bc501db0af99a8cfcd68f9328eac6dd25963d6137352fb213647c6d442eef13a1b2a0bdfa47a20800d1101e951e4a42f27d832885bd80434e32750fff1a SHA512 218d1babc9bbb741dfe8a7ba71711c28516803d20aba2a6a83b08eb2edfb66d0c21cd3690306ed1efaa7d0b740f874fdbb1d13dc6992500b6cdaf17bb549184c
|
||||
DIST swift-6.3.1-r2.gpkg.tar 768685568 BLAKE2B e0d1d388cd93e9fd0c6c4a123d72685047229a468628cbbf623cdda304d658e465199ac8833ac6de2dcf019655bad09c9208a1b7de86796c4b914c9665e8a4e5 SHA512 33acaeee8dfc9e441ad77acd1bd028d5fa88bd4d1540a6284ee61535f4b8dcae6641f3963bfdb793d8f1d875e923de324f99345bc918f059aa3a87a892baca7b
|
||||
DIST swift-6.3.1.gpkg.tar 768686080 BLAKE2B 95a30addf66ee48a74de88761bd76dc0cabcdda5d1d009a66c5f870de0b06b1383137c333c43f110992e2a25dbd73c2e34e78229fee1791867b7870766587655 SHA512 9629d0d2ea6400e91f1b58b00672e6bfad21880d7f4660ca3aecda6c38175e8150148e3ae3d4018386298c70685b0345aa0e4e64dacf24070d3121cafd41ceb6
|
||||
DIST swift-6.3.2-r1.gpkg.tar 773304320 BLAKE2B 1e2b5503938824ee57cc750e472704e334e5b60cd4ff783e17cdf2498f52bbf2fbbac630b0af79e7e9cafbccefda9890ca6b1ed839f9dfedaaafd3bcfbf6c53f SHA512 4e8affa1de858155b99554dd38e664da4f51921b1bed6bc1f0491b55260c035dd8ad85b0d82ac908b24bba1611e1253374fcaa90e166cc3e72857748153ce392
|
||||
DIST swift-6.3.2-r2.gpkg.tar 773304832 BLAKE2B 819b1544a00be3375ba60cc2778f4ef6fc36384cf843c18c773a6510b14967eaf67514d4862b33717b14fe58a68597299c826a6dc804b6186205751e83cfdf0b SHA512 1d8f6016a3bf8cadaabdd73d7e7704fb3af20f31f8c233506933deb5f4fe97bae1b8a24109f4a4fef4965737b48f3de474b13661d71d3e33a659897b58631721
|
||||
DIST swift-6.3.2.gpkg.tar 773304320 BLAKE2B 1e2b5503938824ee57cc750e472704e334e5b60cd4ff783e17cdf2498f52bbf2fbbac630b0af79e7e9cafbccefda9890ca6b1ed839f9dfedaaafd3bcfbf6c53f SHA512 4e8affa1de858155b99554dd38e664da4f51921b1bed6bc1f0491b55260c035dd8ad85b0d82ac908b24bba1611e1253374fcaa90e166cc3e72857748153ce392
|
||||
DIST swift-6.3.gpkg.tar 768706560 BLAKE2B 3150d9f30f7a61e145b46fc66f9c465071d4b600fa3fff857ae8aa806f83051d2ed4ce8b2fef3eab6d4041f55da8b45fa60dd9550d7fdcf89fa8b588f4747b8b SHA512 ee8874afdefa5cd2c26d69ae1bc0f6cda4c27a4bd9ec5b911844fe0c3cb2e7fd92d8f2ec3ae46d3c99e42c3e1a8a7ba9b5fd16d849a85c2ac05e185887ae263a
|
||||
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
|
||||
@@ -45,7 +45,8 @@ src_unpack() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mv "${SWIFT_PF}/image/usr" "${ED}"
|
||||
[[ -d "${SWIFT_PF}/image" ]] || die "Expected image directory not found in package"
|
||||
cp -R "${SWIFT_PF}/image/usr" "${ED}" || die "Copying prebuilt files failed"
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
|
||||
@@ -241,7 +241,7 @@ src_compile() {
|
||||
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||
if [[ "${swift_version}" != swift-* ]]; then
|
||||
# Swift may be unset; we can use the latest available.
|
||||
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
swift_version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
fi
|
||||
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||
|
||||
|
||||
@@ -243,7 +243,7 @@ src_compile() {
|
||||
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||
if [[ "${swift_version}" != swift-* ]]; then
|
||||
# Swift may be unset; we can use the latest available.
|
||||
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
swift_version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
fi
|
||||
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||
|
||||
|
||||
@@ -244,7 +244,7 @@ src_compile() {
|
||||
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||
if [[ "${swift_version}" != swift-* ]]; then
|
||||
# Swift may be unset; we can use the latest available.
|
||||
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
swift_version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
fi
|
||||
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||
|
||||
|
||||
@@ -246,7 +246,7 @@ src_compile() {
|
||||
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||
if [[ "${swift_version}" != swift-* ]]; then
|
||||
# Swift may be unset; we can use the latest available.
|
||||
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
swift_version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
fi
|
||||
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||
|
||||
|
||||
@@ -246,7 +246,7 @@ src_compile() {
|
||||
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||
if [[ "${swift_version}" != swift-* ]]; then
|
||||
# Swift may be unset; we can use the latest available.
|
||||
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
swift_version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
fi
|
||||
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||
|
||||
|
||||
@@ -246,7 +246,7 @@ src_compile() {
|
||||
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||
if [[ "${swift_version}" != swift-* ]]; then
|
||||
# Swift may be unset; we can use the latest available.
|
||||
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
swift_version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||
fi
|
||||
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
DIST libchdr-0_p20230230.tar.gz 1748513 BLAKE2B 03fc5507b7f598995fede477f26c8ab41cd16c658e4ca5c193e581840f14ead0db4ab8da3b888a2e03fb4c78c19af0f08cbab9feefe488dc230ec0fbd3941a91 SHA512 c25084b2257083c4bddd84d13e3dc0d30fea548a4e50a6beefd5282383480eaaa293c044647e2aff339d087dae87c3ef871137a43db766e08a1dffd8801c3367
|
||||
@@ -1,28 +0,0 @@
|
||||
# Copyright 2022-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
HASH_CHDR=fec8ab94212cc65d9d9a62cb3da924f5830c04b0
|
||||
|
||||
DESCRIPTION="Standalone library for reading MAME's CHDv1-v5 formats"
|
||||
HOMEPAGE="https://github.com/rtissera/libchdr/"
|
||||
SRC_URI="https://github.com/rtissera/libchdr/archive/${HASH_CHDR}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${HASH_CHDR}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="virtual/zlib:="
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_SYSTEM_ZLIB=yes
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>samuel.bauer@yahoo.fr</email>
|
||||
<name>Samuel BAUER</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">rtissera/libchdr</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -35,6 +35,7 @@ RDEPEND="
|
||||
( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[${PYTHON_USEDEP}] )
|
||||
( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[${PYTHON_USEDEP}] )
|
||||
( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[${PYTHON_USEDEP}] )
|
||||
( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[${PYTHON_USEDEP}] )
|
||||
)
|
||||
')
|
||||
"
|
||||
|
||||
@@ -35,6 +35,7 @@ RDEPEND="
|
||||
( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[${PYTHON_USEDEP}] )
|
||||
( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[${PYTHON_USEDEP}] )
|
||||
( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[${PYTHON_USEDEP}] )
|
||||
( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[${PYTHON_USEDEP}] )
|
||||
)
|
||||
')
|
||||
"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
DIST codex-0.137.0.tar.gz 8418800 BLAKE2B f35734a402bfd54123f49de9c83967b06c7a5f88c52a5e107b3efd3e9f5cba21f680522f4ca09410ef0647a1b735e5054428ac388f0a3a2be9232cfa90c6879b SHA512 46aad2244983c2857b4111bdb2edadfb86099161ded59cfd7b0522098f29827ad0eaf9991947c1fb19efc1cb811d8a0bf20ab7e1b21bb8282917f6edcad0b2d5
|
||||
DIST codex-0.138.0.tar.gz 8465543 BLAKE2B ae2e325aaa6bbd9fe1527bdaef1f761cda615547ceb82456f387743e22542863ae9d813e2351a382fb14b4cf0a4be306777c168fe2b173efd97cb90237c31422 SHA512 ff5acb4127df2abf68994a6149df3192cc687b7b493f88bb318ca2d5bc3fac8c6d4f4713808cc54ab45474b56526be2718dcb08f575bb8b0cba6c9a4f8699c6c
|
||||
DIST codex-rust-v0.137.0-crates.tar.xz 118988320 BLAKE2B 5af20cdd40fda730ee7cbd49704c2c11a49bc62db9af431682abac6202001144e91f6ee9cc15f9d7434d9ce98d83c4ce38c9c1ca812c694966e00ef03f60d8aa SHA512 1bd74084dd19690ad63d3835ba2da2cbca850d7079cf6a09ac854180175620f1e20548b6e032e12f1d70a8859d74a9a5e2535ba923d81fbafc03eac9857b740e
|
||||
DIST codex-0.139.0.tar.gz 8504781 BLAKE2B 1e2afd3cd83f0fca38169e9761b39e2a3fec3ca2524e89ce0860013f19a8aa7af37dfa61ddefd70d5e379dc235d66a19b91d659fa15d08af29a5754bf1d2305d SHA512 d923968f9a0d0d7d4fe085fb8c14aed5628bd682fc6685cd731127d41a8a846478f91d9e3c074a4fe0c83919fd0e1c3666e9bffc17aa277ba49d8063d6fd169b
|
||||
DIST codex-rust-v0.138.0-crates.tar.xz 118988320 BLAKE2B 5af20cdd40fda730ee7cbd49704c2c11a49bc62db9af431682abac6202001144e91f6ee9cc15f9d7434d9ce98d83c4ce38c9c1ca812c694966e00ef03f60d8aa SHA512 1bd74084dd19690ad63d3835ba2da2cbca850d7079cf6a09ac854180175620f1e20548b6e032e12f1d70a8859d74a9a5e2535ba923d81fbafc03eac9857b740e
|
||||
DIST codex-rust-v0.139.0-crates.tar.xz 121089128 BLAKE2B 7df8955f20e3b6ba5ab9e29aff78b6575d38c57f44b97866a74fa8c2204dbdc2daa767711f0b325eb5f286ded104bf6fdbc763acfc5eae4078fbcc3794f06b98 SHA512 83c391afb959521483a0640a4f9fbef63ed0d19ba89015fb5b7a0544cc2de30b0c32d806b84e3ff627dd7fc0c39aed5f6b55c7dcfd728b61267440b9114c87a6
|
||||
DIST crossterm-87db8bfa6dc99427fd3b071681b07fc31c6ce995.gh.tar.gz 129254 BLAKE2B 414dacc3a682c7a6dc5c9e43f185966255205d18f0522ee7eae73b5f113b4c3ea9b132e6dee81783d4ce160e4bf95aab784cf3601d666265bef4f889d5e46e68 SHA512 9dc7247d081a25d18776c9c0fd7fe3373f372950728b7fcf5ff43aaa6f7d69f11e1dbd91f92991cbe73007eb9e78c9a901b2388c27ddd6898553fdcef7fdaf44
|
||||
DIST nucleo-4253de9faabb4e5c6d81d946a5e35a90f87347ee.gh.tar.gz 86782 BLAKE2B a812a2d2f08df818ac7b13b800f51c4229ea1f968668b1224fbc1fd82fb4e045f6b2c536ec6d2647a579097efbddaf041f4b7b356107679156aaa3ca5a9d4068 SHA512 354061278efce55defb30b9ee2ef5cdab745ab56d7d113f6f47a8ac174b4215ec6efe15c15bef0e3d907350182c0d189071e9d7d17d40e807d4db5361682f4e0
|
||||
DIST ratatui-9b2ad1298408c45918ee9f8241a6f95498cdbed2.gh.tar.gz 566574 BLAKE2B 97f09fda6a798afb00067debab30b89d35aa00bfd284d2ef95fd6176aaa680121a8eee9b8dbe605e6230a6e72ead7b5d4e57ddf4892bcfe93f2fcbbafaba88d2 SHA512 b2ab8bcf19cfd649b8fbbc6752b628f69e79b09e8f8258ea9112ce4348dee512d9e718b5310fc73de65239b51b2b1b593942974f9698bd080616ab389093f4ef
|
||||
@@ -11,5 +11,9 @@ DIST rusty_v8_147.4.0_librusty_v8_release_aarch64-unknown-linux-musl.a.gz 285066
|
||||
DIST rusty_v8_147.4.0_librusty_v8_release_x86_64-unknown-linux-musl.a.gz 28963294 BLAKE2B 7f82d32e792a2369af969d1b02efe088ecabb90ced58746cfda2407a78ad72b83ac298e6bd4d4524fd9f10260878b9f2559f9697bd64b4010715475cdae4dfbd SHA512 06221f45db84e9eb41369761848d1067fcf5688b0c4559ffb27f773e7e6382b9f0f88cca55b1b2c81c4af99c6787261be06e3973b0124a864dad5b80315352e1
|
||||
DIST rusty_v8_147.4.0_src_binding_release_aarch64-unknown-linux-musl.rs 40798 BLAKE2B 67d760138c88eefcc0e90ff2989785628592d3f04eeeb188bc15bfb1ca8e28ea80bd6213da2e7a470e5e7cdc80aaef3dc03f1db842e137c975dbe3ff0aff27c4 SHA512 e60537dd2c24c9804b1d242a61f3c9e4a5d7ef3dc60dfb3dfc80c30f915f29fa8fd7021ba88db034c7fe6e467df6a945cc895404efbbbb4b97ef61ee7a858365
|
||||
DIST rusty_v8_147.4.0_src_binding_release_x86_64-unknown-linux-musl.rs 40798 BLAKE2B 67d760138c88eefcc0e90ff2989785628592d3f04eeeb188bc15bfb1ca8e28ea80bd6213da2e7a470e5e7cdc80aaef3dc03f1db842e137c975dbe3ff0aff27c4 SHA512 e60537dd2c24c9804b1d242a61f3c9e4a5d7ef3dc60dfb3dfc80c30f915f29fa8fd7021ba88db034c7fe6e467df6a945cc895404efbbbb4b97ef61ee7a858365
|
||||
DIST rusty_v8_149.2.0_librusty_v8_release_aarch64-unknown-linux-musl.a.gz 28184570 BLAKE2B 131df03ef7da75a66ad99b4558bbb5bf3873111dd565eadee9510223b381af8e94893ab47dcc03b16c7c50f3689385abe8e30c90a90e54e6f20c821bf8bf5ff0 SHA512 669a65e65fab2944a95568a3d31063156e8514d20612cff4f9094397d48bfa4bf2c099d4fc59627020c397eb5f954087286404fc15bdf94aca5643077169f88a
|
||||
DIST rusty_v8_149.2.0_librusty_v8_release_x86_64-unknown-linux-musl.a.gz 28806120 BLAKE2B a936b6c48f88e6d4773d9ed260a84b5165c68115fb295839fe13b5f5b32863d5f3e4cc9e2879ef27aa1aae1f5a4ff9755a0c47c9ff3de319dbb90e53b15f3c45 SHA512 68252ebb12e2b1699936c959ed1117d6dafaf9e00236fc3da87e650020448e245b8d87e6b6bf7c45de4cd7a938e15c19e2399e6461aef49299cceed55366e3de
|
||||
DIST rusty_v8_149.2.0_src_binding_release_aarch64-unknown-linux-musl.rs 39884 BLAKE2B 537e542d62d52145ad527d6d926c54a1bb789d504518bf5dd43430ad4dd481bbbe618533292b1c3d49484248424d5e86a7598958c6173cf97950eee59ddeb3e7 SHA512 4c41941b37ca1644fa8960c90db581a9c624865708b9a943369da56d80a7986e0f3c18c10b67129e65a19e4de7e707397d658b4a2cb259fb93d7788dfcafa7f8
|
||||
DIST rusty_v8_149.2.0_src_binding_release_x86_64-unknown-linux-musl.rs 39884 BLAKE2B 537e542d62d52145ad527d6d926c54a1bb789d504518bf5dd43430ad4dd481bbbe618533292b1c3d49484248424d5e86a7598958c6173cf97950eee59ddeb3e7 SHA512 4c41941b37ca1644fa8960c90db581a9c624865708b9a943369da56d80a7986e0f3c18c10b67129e65a19e4de7e707397d658b4a2cb259fb93d7788dfcafa7f8
|
||||
DIST tokio-tungstenite-132f5b39c862e3a970f731d709608b3e6276d5f6.gh.tar.gz 31620 BLAKE2B 139395aeb58bf9ad632efd3c9a8d58d888b55da14129529b453fbf3b49cf5323f0d89912a25b30bc238673b729f4d4ff243826c9a5a25426ba6d77913c42b041 SHA512 8784ff79f1f78be5884a085b1a89300257df2a1b7d82c6a226961fd949c9a5a6ba3d825db8db6bc5e314ee184fd2f3bd0a3bf36923744f6a708870ca7ddaf76b
|
||||
DIST tungstenite-rs-9200079d3b54a1ff51072e24d81fd354f085156f.gh.tar.gz 293929 BLAKE2B c3ce0b5f2939fc6dbbe5d0d539b3e7951e40cd646232086a023a8dba96c2160c6a5e61159463a071b1c97f6150a335cf844f53aa64c4751253eb7177c3720258 SHA512 44dd8c0dc60c86a5feb047002b8f9dae167a6ddf5c23e2ca8604018bfd0a24bfa2f1457a2715586c925d0639d0cfbb64931328addbc06a645c3744927fa76e2d
|
||||
|
||||
@@ -37,7 +37,7 @@ declare -A GIT_CRATES=(
|
||||
RUST_MIN_VER="1.95.0"
|
||||
|
||||
# python3 .github/scripts/rusty_v8_bazel.py resolved-v8-crate-version
|
||||
RUSTY_V8_TAG="147.4.0"
|
||||
RUSTY_V8_TAG="149.2.0"
|
||||
|
||||
inherit cargo check-reqs toolchain-funcs
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST gemini-cli-0.45.0.zip 20277548 BLAKE2B 1cfa71a9d6298a3b259282d8270a38f4ac994e00a87f759d5a6137c9a36d6c0f998a1ee3ca982a0b9f67e7ad0c5dde2fc9459d84817ded5f74cee019d7bc7061 SHA512 7a4d1c8fa52f44f546ebbdce1728db0285b83d7de7a3345d9f709e3ba8f0c9ab5b0cf53252822bd6a7b10dca6a7108f90592a3355003e63df0deb0c1dd261b4d
|
||||
DIST gemini-cli-0.45.2.zip 24187090 BLAKE2B d6c476d60d05397817d9a5db112b93db041153c38de82c269d9cb9174f5cf083648c270752ab3e3c9907563e2e0312d9caa724452ad394db91abdd6d9a1f64c0 SHA512 b594de804368d46e76f9bcb8901bcd15f2d62a465d2bc8f57eef003fcbeca63e0650dc018a4bfe2aa3d815024edff4ce67471923f87906d6c8f4b00a96e0ab09
|
||||
DIST gemini-cli-0.45.3.zip 24192548 BLAKE2B b74b04ebd7fc2b0d0024435d0054ad200178e2ee259df07a74888fbef567944165ca7f09af48f5fcda5c5dd6d24081a5f23bea0b10070d702ca8d847cd83d831 SHA512 8afa21aa13ca1b7137cf45f3b5ac821e50c7865a4e3f4056aa9696a6cbfa7d9bbd10e8d1c075e3ccd1af1313f7d26581340a05557264154200fa78aab80e3b2e
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2022-2025 Gentoo Authors
|
||||
# Copyright 2022-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@@ -23,9 +23,9 @@ IUSE="alsa ao lua opengl +openmp pulseaudio vulkan"
|
||||
DEPEND="
|
||||
dev-cpp/asio
|
||||
dev-cpp/websocketpp
|
||||
dev-libs/libchdr
|
||||
dev-libs/libzip
|
||||
dev-libs/xxhash
|
||||
media-libs/libchdr
|
||||
media-libs/libsdl2
|
||||
net-libs/miniupnpc
|
||||
virtual/zlib:=
|
||||
|
||||
@@ -222,6 +222,7 @@ DEPEND="
|
||||
app-arch/lz4:=
|
||||
x11-libs/libxkbcommon[wayland]
|
||||
dev-libs/wayland-protocols
|
||||
dev-libs/wayland
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
|
||||
@@ -34,6 +34,7 @@ DEPEND="
|
||||
app-arch/lz4:=
|
||||
x11-libs/libxkbcommon[wayland]
|
||||
dev-libs/wayland-protocols
|
||||
dev-libs/wayland
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST xdg-desktop-portal-termfilechooser-1.4.0.tar.gz 24802 BLAKE2B a0cc321c326dd843aee5b9e48da6f57c0054aff69866d7e5f3ea998a1beb1a18e4f3e522557fdf86b43106198e867070e22f922ee148e111d1ce1129b23917f5 SHA512 a490563ac4f78bf94784894595215f6eb7eaeaedb761f6b54649c2034d4ebec7e8808a1dc23e090d9effe27657a2c4a9de0d89c7baf76549da4fd7a5c294a0b5
|
||||
DIST xdg-desktop-portal-termfilechooser-1.4.1.tar.gz 24944 BLAKE2B 454fcedb85909ec9e8b24f78dac0c674ddaab4ab27b689b4b930b1d64e87233fc066ecef91ca825817010ee5b286ddd323ce37bdc47b9568b52af3a45e93e217 SHA512 b66d561fed77b7793fff2c48b843a4cc41347801cefb8fa262605762c4a7504615ab4cc27120fe38fbb5ea860bb0843e10c7187ed5c2dc4d17e01ff71fe8d5db
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
DIST beansprout-1.0.0.tar.gz 1159887 BLAKE2B d2e05a3e57eaef3c1ca631933b4bbc567ca1ebb375679ee8ae92fd6f82c81d8305bcf1fc8138469c1204cff2fb654f3a7af6cf9d88451f4474567ac0c788f227 SHA512 04fb90037bf4cf26837277c5f15491c09553ac75d03462e68ee70644957897f3f5f817248b87df6a1b85b6d1dd09a4422d26cc0a215ecc49c5fe46f46b814325
|
||||
DIST beansprout-1.1.1.tar.gz 1161432 BLAKE2B 6e04b2dcc375705abcb8b115cd7e467c8f44146828415a7c21b7000145d26b40de345844b585750bca375e79cf083c8da338289abbddd41a293901a5eef1fd68 SHA512 05b3efa1f3bb11a6e41ec4921050a2cd24716892e5dec7a423faa1759035eed49e2328c2e6f03aea01f2ffc63ae3be3918ba9165ad317b6a8be95165f3466620
|
||||
DIST fcft-3.0.0-zcx6CxQfAADhnwm8SjyCkQF-VFHGiVarigc2de3ciInC.tar.gz 4679 BLAKE2B e2004349ab3a679be8ce7ccdde8987695fbf90e5b5bf1b1174e775042f98c71e328d30bc505aa3e9e7739b66e0b413113ca6a336d5b51dc574585b4980accc6e SHA512 12e5e1e0632d89cab23734005d93c1a44537b29718d43e5cb2e76afa250d425d2ac3c85f625c07f9002cb85f82ce86d913f87f758f9ca940468b038aa777cfb5
|
||||
DIST kdl-0.0.0-8rilELAEAgCwhdgb36ZsWmGgtvrKaLmLI7eMlwBz8UDt.tar.gz 31310 BLAKE2B d0e0d666f7c898c00292dc73012ab78948141223ac7c179038fcc131d3215f3b70d75d69d4212322dbd2b2fa6bd5c09f64947c09d0cde5dc1252b7772ee14c78 SHA512 e89ca3f91b6b12e035bd46fd9cb8e3ef96002c36a9d71307a46511362a47f0bcc89fb9ed7a67962a3a9d046bea0a2632a4523e2ea154ddc6a80f8dbc7fa7e798
|
||||
DIST known_folders-0.0.0-Fy-PJk3KAACzUg2us_0JvQQmod1ZA8jBt7MuoKCihq88.tar.gz 11888 BLAKE2B b474430ac503363cc376b32154f36e654381943eb58b615b91b343dcf1a6f0dafa9b9d43c245d799b03cae2b51ec1b3d186e0696b73f73f1ac3ea400c4115d0c SHA512 e577d93d8c71d383e88129cfd8a982cb2accc1ab378f3edabb1c41941c570cf7533a555554669849e8fee9f47e3ff86efb036690b37685d8b3d1f5d370b4e488
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
ZIG_SLOT="0.15"
|
||||
ZIG_SLOT="0.16"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
EGIT_REPO_URI="https://codeberg.org/beansprout/beansprout.git"
|
||||
|
||||
@@ -7,7 +7,8 @@ INHERIT=cargo
|
||||
IUSE=debug
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=|| ( Apache-2.0 MIT ) AGPL-3 MIT Unicode-3.0
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.4.crate https://static.crates.io/crates/anstyle/anstyle-1.0.13.crate https://static.crates.io/crates/assert_cmd/assert_cmd-2.1.1.crate https://static.crates.io/crates/bstr/bstr-1.12.1.crate https://static.crates.io/crates/cfg-if/cfg-if-1.0.4.crate https://static.crates.io/crates/difflib/difflib-0.4.0.crate https://static.crates.io/crates/env_filter/env_filter-0.1.4.crate https://static.crates.io/crates/env_logger/env_logger-0.11.8.crate https://static.crates.io/crates/evalexpr/evalexpr-12.0.3.crate https://static.crates.io/crates/getrandom/getrandom-0.2.16.crate https://static.crates.io/crates/glob/glob-0.3.3.crate https://static.crates.io/crates/libc/libc-0.2.177.crate https://static.crates.io/crates/log/log-0.4.28.crate https://static.crates.io/crates/memchr/memchr-2.7.6.crate https://static.crates.io/crates/object/object-0.35.0.crate https://static.crates.io/crates/predicates-core/predicates-core-1.0.9.crate https://static.crates.io/crates/predicates-tree/predicates-tree-1.0.12.crate https://static.crates.io/crates/predicates/predicates-3.1.3.crate https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.103.crate https://static.crates.io/crates/quote/quote-1.0.41.crate https://static.crates.io/crates/regex-automata/regex-automata-0.4.13.crate https://static.crates.io/crates/regex-syntax/regex-syntax-0.8.8.crate https://static.crates.io/crates/regex/regex-1.12.2.crate https://static.crates.io/crates/relative-path/relative-path-1.9.3.crate https://static.crates.io/crates/rstest/rstest-0.19.0.crate https://static.crates.io/crates/rstest_macros/rstest_macros-0.19.0.crate https://static.crates.io/crates/rustc_version/rustc_version-0.4.1.crate https://static.crates.io/crates/semver/semver-1.0.27.crate https://static.crates.io/crates/serde/serde-1.0.228.crate https://static.crates.io/crates/serde_core/serde_core-1.0.228.crate https://static.crates.io/crates/serde_derive/serde_derive-1.0.228.crate https://static.crates.io/crates/syn/syn-2.0.109.crate https://static.crates.io/crates/termtree/termtree-0.5.1.crate https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.22.crate https://static.crates.io/crates/wait-timeout/wait-timeout-0.2.1.crate https://static.crates.io/crates/wasi/wasi-0.11.1+wasi-snapshot-preview1.crate https://github.com/knurling-rs/flip-link/archive/refs/tags/v0.1.12.tar.gz -> flip-link-0.1.12.tar.gz
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d
|
||||
_md5_=0c71a8aced7627bc0cbadde1961602df
|
||||
_md5_=69f7fb736db38899f995f24e97673de3
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
BDEPEND=test? ( dev-python/requests-mock[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/jsonschema[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/vcrpy[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/filelock[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-vcs/git ) test? ( dev-python/cachecontrol[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/colorama[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/jsonref[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/packaging[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pydantic[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pydantic-settings[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyparsing[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyyaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/requests-toolbelt[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/requests-file[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/ruamel-yaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/schema[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/tqdm[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/urllib3[python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pytest-mock[python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) >=dev-python/gpep517-16[python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_12(-)?,python_targets_python3_13(-)?]
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Tool for installing ESP-IDF components
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/espressif/idf-component-manager
|
||||
INHERIT=distutils-r1
|
||||
IUSE=test python_targets_python3_12 python_targets_python3_13
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-python/cachecontrol[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/colorama[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/jsonref[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/packaging[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pydantic[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pydantic-settings[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyparsing[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyyaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/requests-toolbelt[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/requests-file[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/ruamel-yaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/schema[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/tqdm[python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/urllib3[python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 )
|
||||
REQUIRED_USE=|| ( python_targets_python3_12 python_targets_python3_13 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/espressif/idf-component-manager/archive/refs/tags/v2.4.2.tar.gz -> idf-component-manager-2.4.2.gh.tar.gz
|
||||
_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d out-of-source-utils 8e5093bd27b7f541a1913271f25d633a multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf distutils-r1 fa417e51408bf16a2c13f1730b404226
|
||||
_md5_=d00f76957743a346e8b43095f53b7707
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=test? ( dev-python/filelock[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonschema[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/psutil[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-mock[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/vcrpy[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-vcs/git ) test? ( dev-python/cachecontrol[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/click[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonref[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic-settings[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyparsing[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-toolbelt[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-file[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ruamel-yaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/schema[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/tqdm[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/urllib3[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?]
|
||||
BDEPEND=test? ( dev-python/filelock[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonschema[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-mock[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/vcrpy[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-vcs/git ) test? ( dev-python/cachecontrol[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/click[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonref[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/psutil[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic-settings[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyparsing[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-toolbelt[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-file[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ruamel-yaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/schema[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/tqdm[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/urllib3[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?]
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Tool for installing ESP-IDF components
|
||||
EAPI=8
|
||||
@@ -7,10 +7,10 @@ INHERIT=distutils-r1
|
||||
IUSE=test python_targets_python3_12 python_targets_python3_13 python_targets_python3_14
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-python/cachecontrol[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/click[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonref[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic-settings[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyparsing[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-toolbelt[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-file[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ruamel-yaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/schema[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/tqdm[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/urllib3[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 )
|
||||
RDEPEND=dev-python/cachecontrol[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/click[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonref[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/psutil[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic-settings[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyparsing[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-toolbelt[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests-file[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ruamel-yaml[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/schema[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/tqdm[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/urllib3[python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 )
|
||||
REQUIRED_USE=|| ( python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/espressif/idf-component-manager/archive/refs/tags/v3.0.0.tar.gz -> idf-component-manager-3.0.0.gh.tar.gz
|
||||
SRC_URI=https://github.com/espressif/idf-component-manager/archive/refs/tags/v3.0.2.tar.gz -> idf-component-manager-3.0.2.gh.tar.gz
|
||||
_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d out-of-source-utils 8e5093bd27b7f541a1913271f25d633a multibuild 83db098a835f71feb71761f72a694aa2 multilib fc812e8eb2170022c28272d80a1f9e77 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-r1 5fdca77e34fc9af7d6eb47689f33f6bf distutils-r1 fa417e51408bf16a2c13f1730b404226
|
||||
_md5_=c49cf25a3ac9f3f8795d0912a6961374
|
||||
_md5_=e02c70c6a022b38522ac610404312425
|
||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
||||
SLOT=6/0
|
||||
SRC_URI=https://github.com/apple/swift-argument-parser/archive/refs/tags/1.2.3.tar.gz -> swift-argument-parser-1.2.3.tar.gz https://github.com/apple/swift-asn1/archive/refs/tags/1.0.0.tar.gz -> swift-asn1-1.0.0.tar.gz https://github.com/apple/swift-atomics/archive/refs/tags/1.2.0.tar.gz -> swift-atomics-1.2.0.tar.gz https://github.com/apple/swift-certificates/archive/refs/tags/1.0.1.tar.gz -> swift-certificates-1.0.1.tar.gz https://github.com/apple/swift-collections/archive/refs/tags/1.1.2.tar.gz -> swift-collections-1.1.2.tar.gz https://github.com/apple/swift-crypto/archive/refs/tags/3.0.0.tar.gz -> swift-crypto-3.0.0.tar.gz https://github.com/apple/swift-nio-ssl/archive/refs/tags/2.15.0.tar.gz -> swift-nio-ssl-2.15.0.tar.gz https://github.com/apple/swift-nio/archive/refs/tags/2.31.2.tar.gz -> swift-nio-2.31.2.tar.gz https://github.com/apple/swift-numerics/archive/refs/tags/1.0.2.tar.gz -> swift-numerics-1.0.2.tar.gz https://github.com/apple/swift-system/archive/refs/tags/1.3.0.tar.gz -> swift-system-1.3.0.tar.gz https://github.com/jpsim/Yams/archive/refs/tags/5.0.6.tar.gz -> Yams-5.0.6.tar.gz https://github.com/swiftlang/indexstore-db/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> indexstore-db-6.0.3.tar.gz https://github.com/swiftlang/llvm-project/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> llvm-project-6.0.3.tar.gz https://github.com/swiftlang/sourcekit-lsp/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> sourcekit-lsp-6.0.3.tar.gz https://github.com/swiftlang/swift-cmark/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-cmark-6.0.3.tar.gz https://github.com/swiftlang/swift-corelibs-foundation/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-corelibs-foundation-6.0.3.tar.gz https://github.com/swiftlang/swift-corelibs-libdispatch/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-corelibs-libdispatch-6.0.3.tar.gz https://github.com/swiftlang/swift-corelibs-xctest/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-corelibs-xctest-6.0.3.tar.gz https://github.com/swiftlang/swift-docc-render-artifact/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-docc-render-artifact-6.0.3.tar.gz https://github.com/swiftlang/swift-docc-symbolkit/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-docc-symbolkit-6.0.3.tar.gz https://github.com/swiftlang/swift-docc/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-docc-6.0.3.tar.gz https://github.com/swiftlang/swift-driver/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-driver-6.0.3.tar.gz https://github.com/swiftlang/swift-experimental-string-processing/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-experimental-string-processing-6.0.3.tar.gz https://github.com/swiftlang/swift-format/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-format-6.0.3.tar.gz https://github.com/swiftlang/swift-foundation-icu/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-foundation-icu-6.0.3.tar.gz https://github.com/swiftlang/swift-foundation/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-foundation-6.0.3.tar.gz https://github.com/swiftlang/swift-installer-scripts/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-installer-scripts-6.0.3.tar.gz https://github.com/swiftlang/swift-integration-tests/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-integration-tests-6.0.3.tar.gz https://github.com/swiftlang/swift-llbuild/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-llbuild-6.0.3.tar.gz https://github.com/swiftlang/swift-llvm-bindings/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-llvm-bindings-6.0.3.tar.gz https://github.com/swiftlang/swift-lmdb/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-lmdb-6.0.3.tar.gz https://github.com/swiftlang/swift-markdown/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-markdown-6.0.3.tar.gz https://github.com/swiftlang/swift-package-manager/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-package-manager-6.0.3.tar.gz https://github.com/swiftlang/swift-stress-tester/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-stress-tester-6.0.3.tar.gz https://github.com/swiftlang/swift-syntax/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-syntax-6.0.3.tar.gz https://github.com/swiftlang/swift-testing/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-testing-6.0.3.tar.gz https://github.com/swiftlang/swift-tools-support-core/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-tools-support-core-6.0.3.tar.gz https://github.com/swiftlang/swift/archive/refs/tags/swift-6.0.3-RELEASE.tar.gz -> swift-6.0.3.tar.gz
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=1395087d6441edcede97cd88983bff75
|
||||
_md5_=87c01f76c073d7b8be95a17c6e414a46
|
||||
|
||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
||||
SLOT=6/1
|
||||
SRC_URI=https://github.com/apple/swift-argument-parser/archive/refs/tags/1.4.0.tar.gz -> swift-argument-parser-1.4.0.tar.gz https://github.com/apple/swift-asn1/archive/refs/tags/1.0.0.tar.gz -> swift-asn1-1.0.0.tar.gz https://github.com/apple/swift-async-algorithms/archive/refs/tags/1.0.1.tar.gz -> swift-async-algorithms-1.0.0.tar.gz https://github.com/apple/swift-atomics/archive/refs/tags/1.2.0.tar.gz -> swift-atomics-1.2.0.tar.gz https://github.com/apple/swift-certificates/archive/refs/tags/1.0.1.tar.gz -> swift-certificates-1.0.1.tar.gz https://github.com/apple/swift-collections/archive/refs/tags/1.1.3.tar.gz -> swift-collections-1.1.3.tar.gz https://github.com/apple/swift-crypto/archive/refs/tags/3.0.0.tar.gz -> swift-crypto-3.0.0.tar.gz https://github.com/apple/swift-log/archive/refs/tags/1.5.4.tar.gz -> swift-log-1.5.4.tar.gz https://github.com/apple/swift-nio/archive/refs/tags/2.65.0.tar.gz -> swift-nio-2.65.0.tar.gz https://github.com/apple/swift-numerics/archive/refs/tags/1.0.2.tar.gz -> swift-numerics-1.0.2.tar.gz https://github.com/apple/swift-system/archive/refs/tags/1.3.0.tar.gz -> swift-system-1.3.0.tar.gz https://github.com/jpsim/Yams/archive/refs/tags/5.0.6.tar.gz -> Yams-5.0.6.tar.gz https://github.com/swiftlang/indexstore-db/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> indexstore-db-6.1.3.tar.gz https://github.com/swiftlang/llvm-project/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> llvm-project-6.1.3.tar.gz https://github.com/swiftlang/sourcekit-lsp/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> sourcekit-lsp-6.1.3.tar.gz https://github.com/swiftlang/swift-cmark/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-cmark-6.1.3.tar.gz https://github.com/swiftlang/swift-corelibs-foundation/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-corelibs-foundation-6.1.3.tar.gz https://github.com/swiftlang/swift-corelibs-libdispatch/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-corelibs-libdispatch-6.1.3.tar.gz https://github.com/swiftlang/swift-corelibs-xctest/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-corelibs-xctest-6.1.3.tar.gz https://github.com/swiftlang/swift-docc-render-artifact/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-docc-render-artifact-6.1.3.tar.gz https://github.com/swiftlang/swift-docc-symbolkit/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-docc-symbolkit-6.1.3.tar.gz https://github.com/swiftlang/swift-docc/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-docc-6.1.3.tar.gz https://github.com/swiftlang/swift-driver/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-driver-6.1.3.tar.gz https://github.com/swiftlang/swift-experimental-string-processing/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-experimental-string-processing-6.1.3.tar.gz https://github.com/swiftlang/swift-format/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-format-6.1.3.tar.gz https://github.com/swiftlang/swift-foundation-icu/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-foundation-icu-6.1.3.tar.gz https://github.com/swiftlang/swift-foundation/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-foundation-6.1.3.tar.gz https://github.com/swiftlang/swift-installer-scripts/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-installer-scripts-6.1.3.tar.gz https://github.com/swiftlang/swift-integration-tests/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-integration-tests-6.1.3.tar.gz https://github.com/swiftlang/swift-llbuild/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-llbuild-6.1.3.tar.gz https://github.com/swiftlang/swift-llvm-bindings/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-llvm-bindings-6.1.3.tar.gz https://github.com/swiftlang/swift-lmdb/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-lmdb-6.1.3.tar.gz https://github.com/swiftlang/swift-markdown/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-markdown-6.1.3.tar.gz https://github.com/swiftlang/swift-package-manager/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-package-manager-6.1.3.tar.gz https://github.com/swiftlang/swift-stress-tester/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-stress-tester-6.1.3.tar.gz https://github.com/swiftlang/swift-syntax/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-syntax-6.1.3.tar.gz https://github.com/swiftlang/swift-testing/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-testing-6.1.3.tar.gz https://github.com/swiftlang/swift-toolchain-sqlite/archive/refs/tags/1.0.1.tar.gz -> swift-toolchain-sqlite-1.0.1.tar.gz https://github.com/swiftlang/swift-tools-support-core/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-tools-support-core-6.1.3.tar.gz https://github.com/swiftlang/swift/archive/refs/tags/swift-6.1.3-RELEASE.tar.gz -> swift-6.1.3.tar.gz
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=c204b6db9ed4f6fa9be08e12cbf90f82
|
||||
_md5_=f2044f49bef4dbc95c5c1802e56d627a
|
||||
|
||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
||||
SLOT=6/2
|
||||
SRC_URI=https://github.com/apple/swift-argument-parser/archive/refs/tags/1.4.0.tar.gz -> swift-argument-parser-1.4.0.tar.gz https://github.com/apple/swift-asn1/archive/refs/tags/1.0.0.tar.gz -> swift-asn1-1.0.0.tar.gz https://github.com/apple/swift-async-algorithms/archive/refs/tags/1.0.1.tar.gz -> swift-async-algorithms-1.0.1.tar.gz https://github.com/apple/swift-atomics/archive/refs/tags/1.2.0.tar.gz -> swift-atomics-1.2.0.tar.gz https://github.com/apple/swift-certificates/archive/refs/tags/1.0.1.tar.gz -> swift-certificates-1.0.1.tar.gz https://github.com/apple/swift-collections/archive/refs/tags/1.1.3.tar.gz -> swift-collections-1.1.3.tar.gz https://github.com/apple/swift-crypto/archive/refs/tags/3.0.0.tar.gz -> swift-crypto-3.0.0.tar.gz https://github.com/apple/swift-log/archive/refs/tags/1.5.4.tar.gz -> swift-log-1.5.4.tar.gz https://github.com/apple/swift-nio/archive/refs/tags/2.65.0.tar.gz -> swift-nio-2.65.0.tar.gz https://github.com/apple/swift-numerics/archive/refs/tags/1.0.2.tar.gz -> swift-numerics-1.0.2.tar.gz https://github.com/apple/swift-system/archive/refs/tags/1.5.0.tar.gz -> swift-system-1.5.0.tar.gz https://github.com/microsoft/mimalloc/archive/refs/tags/v3.0.1.tar.gz -> mimalloc-v3.0.1.tar.gz https://github.com/swiftlang/indexstore-db/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> indexstore-db-6.2.4.tar.gz https://github.com/swiftlang/llvm-project/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> llvm-project-6.2.4.tar.gz https://github.com/swiftlang/sourcekit-lsp/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> sourcekit-lsp-6.2.4.tar.gz https://github.com/swiftlang/swift-build/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-build-6.2.4.tar.gz https://github.com/swiftlang/swift-cmark/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-cmark-6.2.4.tar.gz https://github.com/swiftlang/swift-corelibs-foundation/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-corelibs-foundation-6.2.4.tar.gz https://github.com/swiftlang/swift-corelibs-libdispatch/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-corelibs-libdispatch-6.2.4.tar.gz https://github.com/swiftlang/swift-corelibs-xctest/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-corelibs-xctest-6.2.4.tar.gz https://github.com/swiftlang/swift-docc-render-artifact/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-docc-render-artifact-6.2.4.tar.gz https://github.com/swiftlang/swift-docc-symbolkit/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-docc-symbolkit-6.2.4.tar.gz https://github.com/swiftlang/swift-docc/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-docc-6.2.4.tar.gz https://github.com/swiftlang/swift-driver/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-driver-6.2.4.tar.gz https://github.com/swiftlang/swift-experimental-string-processing/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-experimental-string-processing-6.2.4.tar.gz https://github.com/swiftlang/swift-format/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-format-6.2.4.tar.gz https://github.com/swiftlang/swift-foundation-icu/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-foundation-icu-6.2.4.tar.gz https://github.com/swiftlang/swift-foundation/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-foundation-6.2.4.tar.gz https://github.com/swiftlang/swift-installer-scripts/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-installer-scripts-6.2.4.tar.gz https://github.com/swiftlang/swift-integration-tests/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-integration-tests-6.2.4.tar.gz https://github.com/swiftlang/swift-llbuild/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-llbuild-6.2.4.tar.gz https://github.com/swiftlang/swift-llvm-bindings/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-llvm-bindings-6.2.4.tar.gz https://github.com/swiftlang/swift-lmdb/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-lmdb-6.2.4.tar.gz https://github.com/swiftlang/swift-markdown/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-markdown-6.2.4.tar.gz https://github.com/swiftlang/swift-package-manager/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-package-manager-6.2.4.tar.gz https://github.com/swiftlang/swift-stress-tester/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-stress-tester-6.2.4.tar.gz https://github.com/swiftlang/swift-syntax/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-syntax-6.2.4.tar.gz https://github.com/swiftlang/swift-testing/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-testing-6.2.4.tar.gz https://github.com/swiftlang/swift-toolchain-sqlite/archive/refs/tags/1.0.1.tar.gz -> swift-toolchain-sqlite-1.0.1.tar.gz https://github.com/swiftlang/swift-tools-support-core/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-tools-support-core-6.2.4.tar.gz https://github.com/swiftlang/swift/archive/refs/tags/swift-6.2.4-RELEASE.tar.gz -> swift-6.2.4.tar.gz
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=d87b16583504e61d4dda2c07e271b8f0
|
||||
_md5_=2aeb5302b44d4e2906f65a5042439c79
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -12,4 +12,4 @@ RESTRICT=strip
|
||||
SLOT=5/10
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-5.10.1-r6/swift-5.10.1-r6.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=b30ab4ee6c93fb7e5be6d0ee65158bec
|
||||
_md5_=86dc712cb9c6a4fa52a095a50bc1957b
|
||||
|
||||
@@ -12,4 +12,4 @@ RESTRICT=strip
|
||||
SLOT=6/2
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.2.3/swift-6.2.3.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=5b35a7e08f71805114433f9df6a27aab
|
||||
_md5_=51a2f91a12c82148707a999a4f0129c2
|
||||
|
||||
@@ -12,4 +12,4 @@ RESTRICT=strip
|
||||
SLOT=6/2
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.2.4/swift-6.2.4.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=5b35a7e08f71805114433f9df6a27aab
|
||||
_md5_=51a2f91a12c82148707a999a4f0129c2
|
||||
|
||||
@@ -12,4 +12,4 @@ RESTRICT=strip
|
||||
SLOT=6/2
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3/swift-6.3.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=5b35a7e08f71805114433f9df6a27aab
|
||||
_md5_=51a2f91a12c82148707a999a4f0129c2
|
||||
|
||||
@@ -10,6 +10,6 @@ RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ^^ ( llvm_slot_17 llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 )
|
||||
RESTRICT=strip
|
||||
SLOT=6/3
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3-r1/swift-6.3-r1.gpkg.tar
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3-r2/swift-6.3-r2.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=7404adcb3f3742714bfac8494276731e
|
||||
_md5_=b749b61c3889bac99e9c81bb2c4ccc3b
|
||||
@@ -12,4 +12,4 @@ RESTRICT=strip
|
||||
SLOT=6/2
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3.1/swift-6.3.1.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=5b35a7e08f71805114433f9df6a27aab
|
||||
_md5_=51a2f91a12c82148707a999a4f0129c2
|
||||
|
||||
@@ -10,6 +10,6 @@ RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ^^ ( llvm_slot_17 llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 )
|
||||
RESTRICT=strip
|
||||
SLOT=6/3
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3.2-r1/swift-6.3.2-r1.gpkg.tar
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3.1-r2/swift-6.3.1-r2.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=7404adcb3f3742714bfac8494276731e
|
||||
_md5_=b749b61c3889bac99e9c81bb2c4ccc3b
|
||||
@@ -12,4 +12,4 @@ RESTRICT=strip
|
||||
SLOT=6/2
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3.2/swift-6.3.2.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=5b35a7e08f71805114433f9df6a27aab
|
||||
_md5_=51a2f91a12c82148707a999a4f0129c2
|
||||
|
||||
@@ -10,6 +10,6 @@ RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ^^ ( llvm_slot_17 llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 )
|
||||
RESTRICT=strip
|
||||
SLOT=6/3
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3.1-r1/swift-6.3.1-r1.gpkg.tar
|
||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-6.3.2-r2/swift-6.3.2-r2.gpkg.tar
|
||||
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 unpacker a89c769f7dcf68bd2a6d23da9ede2ad2
|
||||
_md5_=7404adcb3f3742714bfac8494276731e
|
||||
_md5_=b749b61c3889bac99e9c81bb2c4ccc3b
|
||||
@@ -1,14 +0,0 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=virtual/zlib:=
|
||||
DESCRIPTION=Standalone library for reading MAME's CHDv1-v5 formats
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/rtissera/libchdr/
|
||||
INHERIT=cmake
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=virtual/zlib:=
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/rtissera/libchdr/archive/fec8ab94212cc65d9d9a62cb3da924f5830c04b0.tar.gz -> libchdr-0_p20230230.tar.gz
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c54f532543a549f7318d6c49aaf8e953
|
||||
_md5_=a118783d9deeebbfa5e0465ac3eede3e
|
||||
@@ -1,6 +1,6 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare setup test
|
||||
DEPEND=test? ( dev-build/scons ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ) )
|
||||
DEPEND=test? ( dev-build/scons ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_14(-)] ) ) )
|
||||
DESCRIPTION=plain-C Protocol Buffers for embedded/memory-constrained systems
|
||||
EAPI=8
|
||||
HOMEPAGE=https://jpa.kapsi.fi/nanopb/ https://github.com/nanopb/nanopb
|
||||
@@ -8,10 +8,10 @@ INHERIT=cmake flag-o-matic python-single-r1
|
||||
IUSE=+pb-malloc static-libs test python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=ZLIB
|
||||
RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ) )
|
||||
RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_14(-)] ) ) )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/nanopb/nanopb/archive/refs/tags/0.4.9.1.tar.gz -> nanopb-0.4.9.1.tar.gz
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c54f532543a549f7318d6c49aaf8e953 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=e0997d20f0c5595b5e98480e885d1d08
|
||||
_md5_=9664bd17e149d44b1503f9b293ccc09b
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 >=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=test? ( dev-build/scons ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ) )
|
||||
DEPEND=test? ( dev-build/scons ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_14(-)] ) ) )
|
||||
DESCRIPTION=plain-C Protocol Buffers for embedded/memory-constrained systems
|
||||
EAPI=8
|
||||
HOMEPAGE=https://jpa.kapsi.fi/nanopb/ https://github.com/nanopb/nanopb
|
||||
@@ -8,9 +8,9 @@ INHERIT=cmake flag-o-matic python-single-r1 git-r3
|
||||
IUSE=+pb-malloc static-libs test python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14
|
||||
LICENSE=ZLIB
|
||||
PROPERTIES=live
|
||||
RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ) )
|
||||
RDEPEND=python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_12(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_12(-)] ) ) ) python_single_target_python3_13? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_13(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_13(-)] ) ) ) python_single_target_python3_14? ( || ( ( =dev-libs/protobuf-29* =dev-python/protobuf-5*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-30* =dev-python/protobuf-6.30*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-31* =dev-python/protobuf-6.31*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-32* =dev-python/protobuf-6.32*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-33* =dev-python/protobuf-6.33*[python_targets_python3_14(-)] ) ( =dev-libs/protobuf-34* =dev-python/protobuf-7.34*[python_targets_python3_14(-)] ) ) )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c54f532543a549f7318d6c49aaf8e953 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 git-r3 2f8cdb10b033f92c3136aa6488a31c98
|
||||
_md5_=e5c49e983013e299f215abb3b55c76e4
|
||||
_md5_=b050608129f35af0cd6621dcb26cad9e
|
||||
|
||||
@@ -11,6 +11,6 @@ LICENSE=Apache-2.0 Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.
|
||||
RDEPEND=dev-libs/openssl:= sys-apps/dbus
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/openai/codex/archive/rust-v0.137.0.tar.gz -> codex-0.137.0.tar.gz https://github.com/gentoo-zh-drafts/codex/releases/download/rust-v0.137.0/codex-rust-v0.137.0-crates.tar.xz amd64? ( https://github.com/openai/codex/releases/download/rusty-v8-v147.4.0/librusty_v8_release_x86_64-unknown-linux-musl.a.gz -> rusty_v8_147.4.0_librusty_v8_release_x86_64-unknown-linux-musl.a.gz https://github.com/openai/codex/releases/download/rusty-v8-v147.4.0/src_binding_release_x86_64-unknown-linux-musl.rs -> rusty_v8_147.4.0_src_binding_release_x86_64-unknown-linux-musl.rs ) arm64? ( https://github.com/openai/codex/releases/download/rusty-v8-v147.4.0/librusty_v8_release_aarch64-unknown-linux-musl.a.gz -> rusty_v8_147.4.0_librusty_v8_release_aarch64-unknown-linux-musl.a.gz https://github.com/openai/codex/releases/download/rusty-v8-v147.4.0/src_binding_release_aarch64-unknown-linux-musl.rs -> rusty_v8_147.4.0_src_binding_release_aarch64-unknown-linux-musl.rs ) https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/helix-editor/nucleo/archive/4253de9faabb4e5c6d81d946a5e35a90f87347ee.tar.gz -> nucleo-4253de9faabb4e5c6d81d946a5e35a90f87347ee.gh.tar.gz https://github.com/helix-editor/nucleo/archive/4253de9faabb4e5c6d81d946a5e35a90f87347ee.tar.gz -> nucleo-4253de9faabb4e5c6d81d946a5e35a90f87347ee.gh.tar.gz https://github.com/dzbarsky/rules_rust/archive/b56cbaa8465e74127f1ea216f813cd377295ad81.tar.gz -> rules_rust-b56cbaa8465e74127f1ea216f813cd377295ad81.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/nornagon/ratatui/archive/9b2ad1298408c45918ee9f8241a6f95498cdbed2.tar.gz -> ratatui-9b2ad1298408c45918ee9f8241a6f95498cdbed2.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/nornagon/crossterm/archive/87db8bfa6dc99427fd3b071681b07fc31c6ce995.tar.gz -> crossterm-87db8bfa6dc99427fd3b071681b07fc31c6ce995.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/openai-oss-forks/tungstenite-rs/archive/9200079d3b54a1ff51072e24d81fd354f085156f.tar.gz -> tungstenite-rs-9200079d3b54a1ff51072e24d81fd354f085156f.gh.tar.gz https://github.com/openai-oss-forks/tokio-tungstenite/archive/132f5b39c862e3a970f731d709608b3e6276d5f6.tar.gz -> tokio-tungstenite-132f5b39c862e3a970f731d709608b3e6276d5f6.gh.tar.gz
|
||||
SRC_URI=https://github.com/openai/codex/archive/rust-v0.139.0.tar.gz -> codex-0.139.0.tar.gz https://github.com/gentoo-zh-drafts/codex/releases/download/rust-v0.139.0/codex-rust-v0.139.0-crates.tar.xz amd64? ( https://github.com/openai/codex/releases/download/rusty-v8-v149.2.0/librusty_v8_release_x86_64-unknown-linux-musl.a.gz -> rusty_v8_149.2.0_librusty_v8_release_x86_64-unknown-linux-musl.a.gz https://github.com/openai/codex/releases/download/rusty-v8-v149.2.0/src_binding_release_x86_64-unknown-linux-musl.rs -> rusty_v8_149.2.0_src_binding_release_x86_64-unknown-linux-musl.rs ) arm64? ( https://github.com/openai/codex/releases/download/rusty-v8-v149.2.0/librusty_v8_release_aarch64-unknown-linux-musl.a.gz -> rusty_v8_149.2.0_librusty_v8_release_aarch64-unknown-linux-musl.a.gz https://github.com/openai/codex/releases/download/rusty-v8-v149.2.0/src_binding_release_aarch64-unknown-linux-musl.rs -> rusty_v8_149.2.0_src_binding_release_aarch64-unknown-linux-musl.rs ) https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/helix-editor/nucleo/archive/4253de9faabb4e5c6d81d946a5e35a90f87347ee.tar.gz -> nucleo-4253de9faabb4e5c6d81d946a5e35a90f87347ee.gh.tar.gz https://github.com/helix-editor/nucleo/archive/4253de9faabb4e5c6d81d946a5e35a90f87347ee.tar.gz -> nucleo-4253de9faabb4e5c6d81d946a5e35a90f87347ee.gh.tar.gz https://github.com/dzbarsky/rules_rust/archive/b56cbaa8465e74127f1ea216f813cd377295ad81.tar.gz -> rules_rust-b56cbaa8465e74127f1ea216f813cd377295ad81.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/nornagon/ratatui/archive/9b2ad1298408c45918ee9f8241a6f95498cdbed2.tar.gz -> ratatui-9b2ad1298408c45918ee9f8241a6f95498cdbed2.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/nornagon/crossterm/archive/87db8bfa6dc99427fd3b071681b07fc31c6ce995.tar.gz -> crossterm-87db8bfa6dc99427fd3b071681b07fc31c6ce995.gh.tar.gz https://github.com/juberti-oai/rust-sdks/archive/e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.tar.gz -> rust-sdks-e2d1d1d230c6fc9df171ccb181423f957bb3c1f0.gh.tar.gz https://github.com/openai-oss-forks/tungstenite-rs/archive/9200079d3b54a1ff51072e24d81fd354f085156f.tar.gz -> tungstenite-rs-9200079d3b54a1ff51072e24d81fd354f085156f.gh.tar.gz https://github.com/openai-oss-forks/tokio-tungstenite/archive/132f5b39c862e3a970f731d709608b3e6276d5f6.tar.gz -> tokio-tungstenite-132f5b39c862e3a970f731d709608b3e6276d5f6.gh.tar.gz
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c
|
||||
_md5_=9b9ea577d4bdb5ebdbe7e6611716162c
|
||||
_md5_=f605497546b29843a8aa6559144bfa2d
|
||||
@@ -8,6 +8,6 @@ KEYWORDS=-* ~amd64 ~arm64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=net-libs/nodejs
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/google-gemini/gemini-cli/releases/download/v0.45.0/gemini-cli-bundle.zip -> gemini-cli-0.45.0.zip
|
||||
SRC_URI=https://github.com/google-gemini/gemini-cli/releases/download/v0.45.3/gemini-cli-bundle.zip -> gemini-cli-0.45.3.zip
|
||||
_eclasses_=wrapper ebaa3beeb43f7e533872b6c37168c7ad
|
||||
_md5_=ab48c698ed928ca0b8c76d9686ad0e29
|
||||
@@ -1,6 +1,6 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 >=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
||||
DEPEND=dev-cpp/asio dev-cpp/websocketpp dev-libs/libchdr dev-libs/libzip dev-libs/xxhash media-libs/libsdl2 net-libs/miniupnpc virtual/zlib:= alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) lua? ( lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) opengl? ( virtual/opengl ) openmp? ( sys-devel/gcc:*[openmp] ) pulseaudio? ( media-libs/libpulse ) vulkan? ( dev-util/glslang:= dev-util/spirv-headers )
|
||||
DEPEND=dev-cpp/asio dev-cpp/websocketpp dev-libs/libzip dev-libs/xxhash media-libs/libchdr media-libs/libsdl2 net-libs/miniupnpc virtual/zlib:= alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) lua? ( lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) opengl? ( virtual/opengl ) openmp? ( sys-devel/gcc:*[openmp] ) pulseaudio? ( media-libs/libpulse ) vulkan? ( dev-util/glslang:= dev-util/spirv-headers )
|
||||
DESCRIPTION=Sega Dreamcast, Naomi and Atomiswave emulator
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/flyinghead/flycast
|
||||
@@ -9,8 +9,8 @@ INHERIT=cmake flag-o-matic git-r3 lua-single xdg
|
||||
IUSE=alsa ao lua opengl +openmp pulseaudio vulkan +lua_single_target_lua5-4
|
||||
LICENSE=GPL-2
|
||||
PROPERTIES=live
|
||||
RDEPEND=dev-cpp/asio dev-cpp/websocketpp dev-libs/libchdr dev-libs/libzip dev-libs/xxhash media-libs/libsdl2 net-libs/miniupnpc virtual/zlib:= alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) lua? ( lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) opengl? ( virtual/opengl ) openmp? ( sys-devel/gcc:*[openmp] ) pulseaudio? ( media-libs/libpulse ) vulkan? ( dev-util/glslang:= dev-util/spirv-headers )
|
||||
RDEPEND=dev-cpp/asio dev-cpp/websocketpp dev-libs/libzip dev-libs/xxhash media-libs/libchdr media-libs/libsdl2 net-libs/miniupnpc virtual/zlib:= alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) lua? ( lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) ) opengl? ( virtual/opengl ) openmp? ( sys-devel/gcc:*[openmp] ) pulseaudio? ( media-libs/libpulse ) vulkan? ( dev-util/glslang:= dev-util/spirv-headers )
|
||||
REQUIRED_USE=|| ( opengl vulkan ) || ( ao alsa pulseaudio )
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c54f532543a549f7318d6c49aaf8e953 git-r3 2f8cdb10b033f92c3136aa6488a31c98 lua-utils 7c89927eda6f21c4c48136247077ab37 lua-single 75fe955a36b18e199213c8739eaebdbb xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=4eea64273b3d82835bb50573847b8113
|
||||
_md5_=1e81c72cf8803491103bb9518299ffdc
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
BDEPEND=app-text/scdoc || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile configure install postinst setup test unpack
|
||||
DEPEND=app-arch/lz4:= x11-libs/libxkbcommon[wayland] dev-libs/wayland-protocols
|
||||
DEPEND=app-arch/lz4:= x11-libs/libxkbcommon[wayland] dev-libs/wayland-protocols dev-libs/wayland
|
||||
DESCRIPTION=Efficient animated wallpaper daemon for wayland, controlled at runtime
|
||||
EAPI=8
|
||||
HOMEPAGE=https://codeberg.org/LGFae/awww
|
||||
@@ -8,7 +8,7 @@ INHERIT=cargo shell-completion git-r3
|
||||
IUSE=debug
|
||||
LICENSE=GPL-3 Apache-2.0-with-LLVM-exceptions BSD-2 BSD MIT MPL-2.0 Unicode-3.0 ZLIB
|
||||
PROPERTIES=live
|
||||
RDEPEND=app-arch/lz4:= x11-libs/libxkbcommon[wayland] dev-libs/wayland-protocols
|
||||
RDEPEND=app-arch/lz4:= x11-libs/libxkbcommon[wayland] dev-libs/wayland-protocols dev-libs/wayland
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d bash-completion-r1 9e91505e030725688d1e953321a47501 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 2f8cdb10b033f92c3136aa6488a31c98
|
||||
_md5_=e300673b8a269b99094f7784ffb4f551
|
||||
_md5_=c3973889c1cd6913a85889218d1c444b
|
||||
|
||||
@@ -9,6 +9,6 @@ KEYWORDS=~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=sys-apps/xdg-desktop-portal dev-libs/inih || ( sys-auth/elogind sys-apps/systemd sys-libs/basu )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/hunkyburrito/xdg-desktop-portal-termfilechooser/archive/refs/tags/v1.4.0.tar.gz -> xdg-desktop-portal-termfilechooser-1.4.0.tar.gz
|
||||
SRC_URI=https://github.com/hunkyburrito/xdg-desktop-portal-termfilechooser/archive/refs/tags/v1.4.1.tar.gz -> xdg-desktop-portal-termfilechooser-1.4.1.tar.gz
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 sysroot 4c36abaf94ebd3ab32f8abea9a444121 rust-toolchain 76468983281b0a7fc167ca224f84ecfd meson 12065b402c6d78a2aec926ed8dfd964f
|
||||
_md5_=33ee0423d1c16fa3aa95936510272a3c
|
||||
@@ -9,6 +9,6 @@ KEYWORDS=~amd64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=dev-libs/wayland media-libs/fcft x11-libs/libxkbcommon x11-libs/pixman
|
||||
SLOT=0
|
||||
SRC_URI=https://codeberg.org/beansprout/beansprout/archive/v1.0.0.tar.gz -> beansprout-1.0.0.tar.gz https://codeberg.org/ifreund/zig-pixman/archive/v0.3.0.tar.gz -> pixman-0.3.0-LClMnz2VAAAs7QSCGwLimV5VUYx0JFnX5xWU6HwtMuDX.tar.gz https://codeberg.org/ifreund/zig-wayland/archive/v0.6.0.tar.gz -> wayland-0.6.0-lQa1kqz8AQADQmdNJsNhLoNHcnEGEUjrOaPV-dtEnEmX.tar.gz https://codeberg.org/ifreund/zig-xkbcommon/archive/v0.4.0.tar.gz -> xkbcommon-0.4.0-VDqIe0i2AgDRsok2GpMFYJ8SVhQS10_PI2M_CnHXsJJZ.tar.gz https://github.com/rockorager/zeit/archive/refs/tags/v0.8.0.tar.gz -> zeit-0.6.0-5I6bk7q6AgBdMJxze3D4l9ylQhkviQ_BX9FigDt13MFn.tar.gz https://git.sr.ht/~novakane/zig-fcft/archive/4bf5be61c869d08d5bcb0306049c63a9cb0795a7.tar.gz -> fcft-3.0.0-zcx6CxQfAADhnwm8SjyCkQF-VFHGiVarigc2de3ciInC.tar.gz https://codeberg.org/desttinghim/zig-kdl/archive/22fa7655d70de1f447c864921ab847effec355f3.tar.gz -> kdl-0.0.0-8rilELAEAgCwhdgb36ZsWmGgtvrKaLmLI7eMlwBz8UDt.tar.gz https://github.com/ziglibs/known-folders/archive/d6d03830968cca6b7b9f24fd97ee348346a6905d.tar.gz -> known_folders-0.0.0-Fy-PJk3KAACzUg2us_0JvQQmod1ZA8jBt7MuoKCihq88.tar.gz
|
||||
SRC_URI=https://codeberg.org/beansprout/beansprout/archive/v1.1.1.tar.gz -> beansprout-1.1.1.tar.gz https://codeberg.org/ifreund/zig-pixman/archive/v0.3.0.tar.gz -> pixman-0.3.0-LClMnz2VAAAs7QSCGwLimV5VUYx0JFnX5xWU6HwtMuDX.tar.gz https://codeberg.org/ifreund/zig-wayland/archive/v0.6.0.tar.gz -> wayland-0.6.0-lQa1kqz8AQADQmdNJsNhLoNHcnEGEUjrOaPV-dtEnEmX.tar.gz https://codeberg.org/ifreund/zig-xkbcommon/archive/v0.4.0.tar.gz -> xkbcommon-0.4.0-VDqIe0i2AgDRsok2GpMFYJ8SVhQS10_PI2M_CnHXsJJZ.tar.gz https://github.com/rockorager/zeit/archive/refs/tags/v0.8.0.tar.gz -> zeit-0.6.0-5I6bk7q6AgBdMJxze3D4l9ylQhkviQ_BX9FigDt13MFn.tar.gz https://git.sr.ht/~novakane/zig-fcft/archive/4bf5be61c869d08d5bcb0306049c63a9cb0795a7.tar.gz -> fcft-3.0.0-zcx6CxQfAADhnwm8SjyCkQF-VFHGiVarigc2de3ciInC.tar.gz https://codeberg.org/desttinghim/zig-kdl/archive/22fa7655d70de1f447c864921ab847effec355f3.tar.gz -> kdl-0.0.0-8rilELAEAgCwhdgb36ZsWmGgtvrKaLmLI7eMlwBz8UDt.tar.gz https://github.com/ziglibs/known-folders/archive/d6d03830968cca6b7b9f24fd97ee348346a6905d.tar.gz -> known_folders-0.0.0-Fy-PJk3KAACzUg2us_0JvQQmod1ZA8jBt7MuoKCihq88.tar.gz
|
||||
_eclasses_=multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 edo a5e294016aa84979fcb2459749eb80b2 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 zig-utils cf2ce10a519a93e5074f21f58d06aaae zig fd63b54c5a3cec5302ed2c18a763a851
|
||||
_md5_=dafc1de329c8a602f6c1899011edb400
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=dev-libs/wayland-protocols app-text/scdoc >=dev-vcs/git-1.8.2.1[curl] || ( dev-lang/zig:0.15 dev-lang/zig-bin:0.15 ) virtual/pkgconfig
|
||||
BDEPEND=dev-libs/wayland-protocols app-text/scdoc >=dev-vcs/git-1.8.2.1[curl] || ( dev-lang/zig:0.16 dev-lang/zig-bin:0.16 ) virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=dev-libs/wayland media-libs/fcft x11-libs/libxkbcommon x11-libs/pixman
|
||||
DESCRIPTION=A tiling window manager for the river Wayland compositor
|
||||
@@ -10,4 +10,4 @@ PROPERTIES=live
|
||||
RDEPEND=dev-libs/wayland media-libs/fcft x11-libs/libxkbcommon x11-libs/pixman
|
||||
SLOT=0
|
||||
_eclasses_=git-r3 2f8cdb10b033f92c3136aa6488a31c98 multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 edo a5e294016aa84979fcb2459749eb80b2 toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d linux-info efd923656513c879204fec6638eadee5 zig-utils cf2ce10a519a93e5074f21f58d06aaae zig fd63b54c5a3cec5302ed2c18a763a851
|
||||
_md5_=3af195b93bbea711c3695a222c466ed7
|
||||
_md5_=9e46f6eb1f76a5ab9f184b85301ccfe9
|
||||
|
||||
16
metadata/md5-cache/net-im/teams-for-linux-2.11.1
Normal file
16
metadata/md5-cache/net-im/teams-for-linux-2.11.1
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=|| ( app-arch/rpm2targz >=app-arch/rpm-4.19.0[lzma(+)] )
|
||||
DEFINED_PHASES=configure install postinst postrm preinst prepare pretend setup unpack
|
||||
DESCRIPTION=Unofficial Microsoft Teams client for Linux. Binary precompiled version.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/IsmaelMartinez/teams-for-linux
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=chromium-2 desktop rpm xdg
|
||||
IUSE=+l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW
|
||||
KEYWORDS=-* ~amd64 ~arm ~arm64
|
||||
LICENSE=GPL-3 MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2 unRAR OFL-1.1 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
|
||||
RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-print/cups sys-apps/dbus virtual/libudev x11-libs/cairo x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libXrandr x11-libs/pango
|
||||
RESTRICT=bindist mirror
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v2.11.1/teams-for-linux-2.11.1.x86_64.rpm ) arm? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v2.11.1/teams-for-linux-2.11.1.armv7l.rpm ) arm64? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v2.11.1/teams-for-linux-2.11.1.aarch64.rpm )
|
||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 linux-info efd923656513c879204fec6638eadee5 chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd estack c61c368a76fdf3a82fdf8dbaebea3804 rpm 716d8645cb3f94e78951eda6c33e0546 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=45dc96dac5f610414a81882f4a912aa7
|
||||
@@ -558,7 +558,7 @@ dev-embedded/esp-idf-size 1.7.1 2.1.0 2.2.0: Firmware size analysis for ESP-IDF
|
||||
dev-embedded/flip-link 0.1.12: Flips the memory layout of embedded programs to protect against stack overflows
|
||||
dev-embedded/freertos-gdb 1.0.4: Python module for operating with freeRTOS-kernel objects in GDB
|
||||
dev-embedded/fwup 1.15.1 1.16.0: Configurable embedded Linux firmware update creator and runner
|
||||
dev-embedded/idf-component-manager 2.4.2 2.4.6 3.0.0 3.0.2: Tool for installing ESP-IDF components
|
||||
dev-embedded/idf-component-manager 2.4.6 3.0.2 3.0.2-r1: Tool for installing ESP-IDF components
|
||||
dev-embedded/imsprog 1.8.3_p20260518 1.8.5: I2C, MicroWire and SPI EEPROM/Flash chip Programmer
|
||||
dev-embedded/mv88e6xxx-dump 0.2.0_pre20210327: Dump information about Marvell mv88e6xxx Ethernet switches
|
||||
dev-embedded/nxp-gui-guider 1.10.1: GUI Guider is a user-friendly GUI development tool for LVGL
|
||||
@@ -606,7 +606,7 @@ dev-lang/opencilk 1.1 2.1: The OpenCilk concurrency platform for parallel progra
|
||||
dev-lang/opencilk-bin 1.1 2.1: The OpenCilk concurrency platform for parallel programming
|
||||
dev-lang/quickjs 2025.09.13.2 2026.06.04: Small embeddable Javascript engine
|
||||
dev-lang/swift 5.10.1-r5 6.0.3-r2 6.1.3 6.2.4 6.3-r1 6.3.1 6.3.2: A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||
dev-lang/swift-bin 5.10.1-r6 6.2.3 6.2.4 6.3 6.3-r1 6.3.1 6.3.1-r1 6.3.2 6.3.2-r1: A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||
dev-lang/swift-bin 5.10.1-r6 6.2.3 6.2.4 6.3 6.3-r2 6.3.1 6.3.1-r2 6.3.2 6.3.2-r2: A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||
dev-lang/swift-bootstrap 1.0 1.1: A virtual package providing a base Swift to bootstrap future versions with.
|
||||
dev-lang/uiua 0.18.1: A stack-based array programming language
|
||||
dev-lang/wabt 1.0.37: The WebAssembly Binary Toolkit
|
||||
@@ -636,7 +636,6 @@ dev-libs/kobweb-bin 0.9.21: CLI utility for the kobweb web framework
|
||||
dev-libs/lexbor 3.0.0: Modular web engine (HTML/CSS parser, renderer, ...)
|
||||
dev-libs/libayatana-appindicator-glib 2.0.1 9999: Ayatana Application Indicators Shared Library (GLib-2.0 reimplementation)
|
||||
dev-libs/libchardet 1.0.6: Mozilla's Universal Charset Detector C/C++ API
|
||||
dev-libs/libchdr 0_p20230230: Standalone library for reading MAME's CHDv1-v5 formats
|
||||
dev-libs/libcli 1.10.7: Shared C library to include Cisco-like CLI into other software
|
||||
dev-libs/libcsv 3.0.4_pre20240316: Fast and flexible CSV library that can read and write CSV data
|
||||
dev-libs/libdbf 0.0.1: Library to read the content of dBASE III, IV, and 5.0 files
|
||||
@@ -1102,7 +1101,7 @@ dev-util/bump-my-version 1.2.6 1.2.7: Version bump your Python project
|
||||
dev-util/cargo-post 0.1.7: A cargo wrapper that executes a post build script after a successful build.
|
||||
dev-util/cargo-show-asm 0.2.60: A cargo subcommand that displays the generated assembly of Rust source code.
|
||||
dev-util/catalyst-lab 1.6.0 1.6.1: An automation tool for building Gentoo release stages and binhost packages.
|
||||
dev-util/codex 0.137.0 0.138.0: Codex CLI - OpenAI's AI-powered coding agent
|
||||
dev-util/codex 0.138.0 0.139.0: Codex CLI - OpenAI's AI-powered coding agent
|
||||
dev-util/coq-lsp 0.1.9: Visual Studio Code Extension and Language Server Protocol for Coq
|
||||
dev-util/deblob 0.12 9999: remove binary executables from a directory
|
||||
dev-util/distribution-gpg-keys 1.119: Collection of GPG keys used in Linux Distributions
|
||||
@@ -1119,7 +1118,7 @@ dev-util/forgejo-runner 12.10.2 9999: A daemon that connects to a Forgejo instan
|
||||
dev-util/fortls 2.13.0 3.0.0 3.1.1 3.1.2 3.2.2: Fortran Language Server (fortls)
|
||||
dev-util/fortran-test-drive 0.4.0 0.5.0: The simple testing framework (for Fortran)
|
||||
dev-util/gammaray 3.3.1 3.4.0 3.4.0-r1: High-level runtime introspection tool for Qt applications
|
||||
dev-util/gemini-cli 0.45.0 0.45.2: Gemini CLI - a command-line AI workflow tool by Google
|
||||
dev-util/gemini-cli 0.45.2 0.45.3: Gemini CLI - a command-line AI workflow tool by Google
|
||||
dev-util/genTree 0.1.0 9999: Gentoo rootfs tree generator
|
||||
dev-util/gersemi 0.27.6 0.27.7: A formatter to make your CMake code the real treasure
|
||||
dev-util/git-bug 0.10.1 9999: distributed, offline-first bug tracker
|
||||
@@ -1444,8 +1443,8 @@ gui-libs/qml-niri 0.2.0: A QML plugin for niri
|
||||
gui-libs/qtforkawesome 0.3.2-r1: Library that bundles ForkAwesome for use within Qt applications
|
||||
gui-libs/qtutilities 6.19.1 6.20.0: Useful Qt related C++ classes and routines
|
||||
gui-libs/scenefx 0.4.1 9999: A replacement for the wlroots scene API with eye-candy effects.
|
||||
gui-libs/xdg-desktop-portal-termfilechooser 1.4.0-r1: xdg-desktop-portal backend for choosing files with your favorite file chooser
|
||||
gui-wm/beansprout 1.0.0 9999: A tiling window manager for the river Wayland compositor
|
||||
gui-libs/xdg-desktop-portal-termfilechooser 1.4.1: xdg-desktop-portal backend for choosing files with your favorite file chooser
|
||||
gui-wm/beansprout 1.1.1 9999: A tiling window manager for the river Wayland compositor
|
||||
gui-wm/cage 0.2.1 0.3.0 9999: A Wayland kiosk
|
||||
gui-wm/canoe 0.4.0: Canoe, a River window manager implementation in Rust
|
||||
gui-wm/kwm 0.3.0 9999: A window manager based on River Wayland compositor
|
||||
@@ -1740,7 +1739,7 @@ net-im/pop 8.0.21: Screen sharing with multiplayer control, with voice
|
||||
net-im/revolt-desktop 1.0.8-r2: Revolt Desktop App
|
||||
net-im/session-desktop-bin 1.15.1 1.15.2: Session Desktop - Onion routing based messenger
|
||||
net-im/sliding-sync 0.99.15 0.99.19: Proxy implementation of MSC3575's sync protocol.
|
||||
net-im/teams-for-linux 2.6.14 2.6.17 2.6.18 2.7.6 2.7.12 2.7.13: Unofficial Microsoft Teams client for Linux. Binary precompiled version.
|
||||
net-im/teams-for-linux 2.6.14 2.6.17 2.6.18 2.7.6 2.7.12 2.7.13 2.11.1: Unofficial Microsoft Teams client for Linux. Binary precompiled version.
|
||||
net-im/tuwunel 1.7.0 1.7.1: High Performance Matrix Homeserver in Rust!
|
||||
net-im/vesktop-bin 1.6.5: All-in-one voice and text chat for gamers with Vencord Preinstalled
|
||||
net-im/why2 1.5.3: Lightweight, fast and secure chat application powered by WHY2 encryption.
|
||||
|
||||
@@ -1 +1 @@
|
||||
Tue, 09 Jun 2026 13:01:44 +0000
|
||||
Wed, 10 Jun 2026 18:01:30 +0000
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
DIST teams-for-linux-2.11.1.aarch64.rpm 91821733 BLAKE2B bf0bac7c749a936763d415bca3f9d09ed3371304cbe9c56190e52a28dc7208193d25841e50f2c186ca32ff5deef4e10d743dce9afc5f12c9a74d22046e81afe9 SHA512 c68fda2336096f578afb97014efaa5ebcb1e6308d49588209a3020341a5c2200f8164482f6464cdc06e33459e94d505f68985347ac961f64e2526347c5d025d3
|
||||
DIST teams-for-linux-2.11.1.armv7l.rpm 91691113 BLAKE2B 98b3c3f58663f3947b12c5b1b9f262755c192a85a469b1d08ddfcebdb6151f99b6179aae03f32c7fbb5cdf1b9f7d453d8d00eba5c04c3da228aff7bfd8e191b2 SHA512 78da68c36f7229fccaa37eff27df78d47fcd2319558a738798125360df0464fda3e34b4ff13bd1da21d0b6096a464feed751e50d2061bee93e5b93e423e79046
|
||||
DIST teams-for-linux-2.11.1.x86_64.rpm 96993869 BLAKE2B 85ad8246def19043b3597755dcd70e54f7e8ac6c075fb81867b58be53884da528fc180767d1ae47730ba410d77391f2d2a577e26741083597eda82f37ebe4a89 SHA512 487a7a6d35abacadeb617a368cbd1d6f9b27a84274e9bcf8378cf86e51e5733493d3395c18c96e2a24a5935ea1b2b4357b3f1284289c06506b02f5efe7f37979
|
||||
DIST teams-for-linux-2.6.14.aarch64.rpm 89679057 BLAKE2B 3c4016164290bdad708e4b9716f78344ff91108f4a8bdc6dbb0db2ca4c0dc7bcbf88177f8f1887f32dea18ff6ba1e65ef15ce0b1a24c1ffba42c7eadeeb9984d SHA512 94c90a063c77f2737cedaf9886506d111259c74f8a768f99eacc0db8ddcd78c180b05a3bb427a954ff1dfd6e7be4245e21998296157cf4b65122b0a188fc973d
|
||||
DIST teams-for-linux-2.6.14.armv7l.rpm 89174453 BLAKE2B 5ee402a2d2604c561f2b014891f45565620b6be3ef5e47733ff7a68342fcaf3b2834dbd47aadf5edeca90fb119bb8fc5e85bd12c2c947a6549d4087ce21e8ac5 SHA512 509ad56a8438f96848f5e9dfda4188b4f7566ecf7b4594f00a8462d61ba66b679d3edd4c463067fba96a319175d4baa936c22535e07edc747a23f0e6208282c3
|
||||
DIST teams-for-linux-2.6.14.x86_64.rpm 94864001 BLAKE2B e5902ad529e46175a9aaa9856738d4a70481d405fe35d5c108c9aabce27b2fdfb9657fafbdeb69462252c902c80ef766b5232d387cd7b2764ff66c976106b01c SHA512 6b2c5126936e1d442337ec906929b50d8c3edc5a79abc5ff42c01c29f07a6eb508894a51e7a25b465a3361cfccb851ddf663c83562663be89d35d2dbfc591848
|
||||
|
||||
99
net-im/teams-for-linux/teams-for-linux-2.11.1.ebuild
Normal file
99
net-im/teams-for-linux/teams-for-linux-2.11.1.ebuild
Normal file
@@ -0,0 +1,99 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
CHROMIUM_LANGS="
|
||||
af am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he
|
||||
hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr
|
||||
sv sw ta te th tr uk ur vi zh-CN zh-TW
|
||||
"
|
||||
RPM_COMPRESS_TYPE="xz"
|
||||
|
||||
inherit chromium-2 desktop rpm xdg
|
||||
|
||||
DESCRIPTION="Unofficial Microsoft Teams client for Linux. Binary precompiled version."
|
||||
HOMEPAGE="https://github.com/IsmaelMartinez/teams-for-linux"
|
||||
SRC_URI="
|
||||
amd64? ( https://github.com/IsmaelMartinez/${PN}/releases/download/v${PV}/${P}.x86_64.rpm )
|
||||
arm? ( https://github.com/IsmaelMartinez/${PN}/releases/download/v${PV}/${P}.armv7l.rpm )
|
||||
arm64? ( https://github.com/IsmaelMartinez/${PN}/releases/download/v${PV}/${P}.aarch64.rpm )
|
||||
"
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
# Electron bundles a bunch of things
|
||||
LICENSE+="
|
||||
MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2
|
||||
unRAR OFL-1.1 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
|
||||
"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64 ~arm ~arm64"
|
||||
RESTRICT="bindist mirror"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core:2
|
||||
dev-libs/expat
|
||||
dev-libs/glib:2
|
||||
dev-libs/nspr
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
virtual/libudev
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libXrandr
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
QA_PREBUILT="opt/teams-for-linux/*"
|
||||
QA_DESKTOP_FILE="usr/share/applications/teams-for-linux.desktop"
|
||||
|
||||
pkg_pretend() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
# cleanup languages
|
||||
pushd "opt/teams-for-linux/locales" || die
|
||||
chromium_remove_language_paks
|
||||
popd || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
for size in {16,24,32,48,64,96,128,256,512,1024}; do
|
||||
doicon -s "${size}" "usr/share/icons/hicolor/${size}x${size}/apps/${PN}.png"
|
||||
done
|
||||
|
||||
domenu "usr/share/applications/${PN}.desktop"
|
||||
|
||||
local DESTDIR="/opt/${PN}"
|
||||
|
||||
pushd "opt/${PN}" || die
|
||||
|
||||
exeinto "${DESTDIR}"
|
||||
doexe chrome-sandbox chrome_crashpad_handler "${PN}" ./*.so*
|
||||
|
||||
insinto "${DESTDIR}"
|
||||
doins ./*.pak ./*.bin ./*.json ./*.dat
|
||||
insopts -m0755
|
||||
doins -r locales resources
|
||||
|
||||
dosym "${DESTDIR}/${PN}" "/opt/bin/${PN}"
|
||||
popd || die
|
||||
}
|
||||
@@ -1,7 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<maintainer type="person">
|
||||
<email>andres.becerra@gmail.com</email>
|
||||
<name>Andrés Becerra Sandoval</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">FreeTubeApp/FreeTube</remote-id>
|
||||
</upstream>
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
move dev-util/forgejo-cli dev-util/fj-cli
|
||||
move gui-apps/noctalia-shell gui-apps/noctalia
|
||||
move gui-apps/noctalia-shell gui-apps/noctalia
|
||||
move dev-libs/libchdr media-libs/libchdr
|
||||
|
||||
Reference in New Issue
Block a user