mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 22:52:59 -04:00
Compare commits
17 Commits
4f1ea3f0af
...
96f28d33f8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96f28d33f8 | ||
|
|
f99338e8e0 | ||
|
|
9b9466de98 | ||
|
|
120ebf463b | ||
|
|
dc61b74fd1 | ||
|
|
a6df084949 | ||
|
|
05404d1eae | ||
|
|
daa3afe4de | ||
|
|
0415384400 | ||
|
|
2612ebb03e | ||
|
|
5e0645edc3 | ||
|
|
35dc3f5eec | ||
|
|
f3f29c2762 | ||
|
|
f8324fb859 | ||
|
|
d201619d3d | ||
|
|
af8b48ff36 | ||
|
|
59969d41a0 |
@@ -1 +1 @@
|
|||||||
DIST brzip-0.3.3.tar.bz2 49521 BLAKE2B fa36bf274d2c0c567d384af4d0dc477762a4373dc9b5815398f3f534a26654ad20631b62e903f1c16919adefde58fe998dc00f7d316879ab7685a0b76a34938f SHA512 ebea5e4b3eac3fb22fea59a5156c8660f72aab1865a6ba6d5f88ce47cd43a46a1091705fe1e37eeaa995235c5ed0cd510b769e1f74ba07d7a0145d68f19f8d74
|
DIST brzip-0.3.4.tar.bz2 49279 BLAKE2B ee9a21eb27401ebadd889dc37855824622da9afb520c6ed287a241f202686ea32a652a80edfb0b29133728c44a02500d8d539ac57d9b6fd3e6b29dc3e7f0793b SHA512 1cea7eb05f99f82265193fde5f1f07a590079c9e01a35f663e9687689eca2a059e27148edcd3c4b5952194b7afca8cfd2694dadee48fb3c2d282c1a9897188db
|
||||||
|
|||||||
@@ -27,3 +27,12 @@ src_configure() {
|
|||||||
|
|
||||||
meson_src_configure
|
meson_src_configure
|
||||||
}
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
meson_src_install
|
||||||
|
|
||||||
|
dosym brzip /usr/bin/brzcat
|
||||||
|
dosym brzip /usr/bin/brunzip
|
||||||
|
dosym brzip.1 /usr/share/man/man1/brzcat.1
|
||||||
|
dosym brzip.1 /usr/share/man/man1/brunzip.1
|
||||||
|
}
|
||||||
2
app-misc/crush/Manifest
Normal file
2
app-misc/crush/Manifest
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
DIST crush-0.75.0-vendor.tar.xz 14731756 BLAKE2B d4284e9217c48cd97ea507519494e06cda74fb1e46a1b5f3938fb907265e45e4d8c948f271637ff010c36ef81d3d4c00928fe76f1b70aca8ca6fb893bbfb04a5 SHA512 f516e1f172b04f40a60788ec7b616aa5996227557aacb6541b521bf5a2b5f2f613aaf76f7500ab3164d8c8016606109f9101bb8b5ffce944eb635cad96ca8c83
|
||||||
|
DIST crush-0.75.0.tar.gz 1581351 BLAKE2B ce698f3f887d1f378bdf0f502a2d33fd9f66db25ae294a766592ad2b59ede5230ed080d16038784029e27e6f4f5f0dc1e11ddb1fddf8e92a632bffec79856e8a SHA512 fd6a39e0fdc4512366f8c5371fcea771813904cfdf4e85f7f46956172a45e1fde68fcf7934fcc0a0199f0ca2f1b92d4a7187ac2b08da8abc8874de5c4c10aeab
|
||||||
40
app-misc/crush/crush-0.75.0.ebuild
Normal file
40
app-misc/crush/crush-0.75.0.ebuild
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# Copyright 2025 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
inherit go-module shell-completion
|
||||||
|
|
||||||
|
DESCRIPTION="The glamourous AI coding agent for your favourite terminal"
|
||||||
|
HOMEPAGE="https://github.com/charmbracelet/crush"
|
||||||
|
SRC_URI="
|
||||||
|
https://github.com/charmbracelet/crush/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
||||||
|
https://github.com/gentoo-zh-drafts/crush/releases/download/v${PV}/${P}-vendor.tar.xz
|
||||||
|
"
|
||||||
|
S="${WORKDIR}"/${P}
|
||||||
|
|
||||||
|
# https://fsl.software/FSL-1.1-MIT.template.md
|
||||||
|
LICENSE="FSL-1.1-MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="-* ~amd64 ~arm64"
|
||||||
|
|
||||||
|
BDEPEND=">=dev-lang/go-1.26.4"
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
local ldflags="\
|
||||||
|
-X github.com/charmbracelet/crush/internal/version.Version=${PV}"
|
||||||
|
ego build -o ${PN} -trimpath -ldflags "${ldflags}"
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
# generate shell completion scripts
|
||||||
|
for sh in bash fish zsh; do
|
||||||
|
./${PN} completion ${sh} > "completion.${sh}"
|
||||||
|
done
|
||||||
|
|
||||||
|
dobin ${PN}
|
||||||
|
|
||||||
|
newbashcomp completion.bash "${PN}"
|
||||||
|
newfishcomp completion.fish "${PN}".fish
|
||||||
|
newzshcomp completion.zsh _"${PN}"
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
EAPI=8
|
EAPI=8
|
||||||
|
|
||||||
DISTUTILS_USE_PEP517=setuptools
|
DISTUTILS_USE_PEP517=setuptools
|
||||||
PYTHON_COMPAT=( python3_{12..13} )
|
PYTHON_COMPAT=( python3_{12..14} )
|
||||||
|
|
||||||
inherit distutils-r1
|
inherit distutils-r1
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
DIST swift-5.10.1-r5.gpkg.tar 582103040 BLAKE2B c0b1868d2036af8d67c472d3da53f4c2377b903ee36452541d04e288da16d12747b5485a302f04a85e6004be00c32f3cd2d510068e0ff1b838e8b365f603e616 SHA512 f37381de83f2eb507db9f2403db126e796bbaa23481459bfb079ab9485bc4c8521ab0a4f382d5ae70e0d92a3cc2a9f994b53bf177d2c41466a36edc230b5f132
|
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.3.gpkg.tar 732385280 BLAKE2B 35d2e7f514ae519aba5fa11d918f114726740b855a4c237655eabe0e56241735bf9598d2c3a9162ea9b5252c32737a7c3e14f246ef3f0ef85a8cdc602dd55628 SHA512 b8d6e6383c41255f733e3fe0991cc5d38630b5d2e461c253b3f4af5e936752d6a76a44b7f8050b158ec37a070cc739e909935d6d8882bc07d569945a1d856703
|
||||||
DIST swift-6.2.4.gpkg.tar 732160000 BLAKE2B d586fdc0ac5f84cf1cc3ec91739cce410c347a291dc47c4cd022ceb6ea1207d2d7796b5460ff9cabcd8759c7337921724a0a515ddff570f497bacd7f2dc649dc SHA512 3f7a171ae5892f7e689095859ac6f4e053df35e7f2347e174e54ab7fe834a0f2b121cfed0a4e71dadc8ab518803e3f39eed2cf8db32fce916abcc396015f672d
|
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-r1.gpkg.tar 768706560 BLAKE2B 3150d9f30f7a61e145b46fc66f9c465071d4b600fa3fff857ae8aa806f83051d2ed4ce8b2fef3eab6d4041f55da8b45fa60dd9550d7fdcf89fa8b588f4747b8b SHA512 ee8874afdefa5cd2c26d69ae1bc0f6cda4c27a4bd9ec5b911844fe0c3cb2e7fd92d8f2ec3ae46d3c99e42c3e1a8a7ba9b5fd16d849a85c2ac05e185887ae263a
|
||||||
|
|||||||
@@ -13,6 +13,9 @@
|
|||||||
install of Swift on a new machine, this package vends a base version of
|
install of Swift on a new machine, this package vends a base version of
|
||||||
Swift that newer versions can BDEPEND on.
|
Swift that newer versions can BDEPEND on.
|
||||||
</longdescription>
|
</longdescription>
|
||||||
|
<use>
|
||||||
|
<flag name="binary">Bootstrap from binary (dev-lang/swift-bin:5/10) instead of building from source (dev-lang/swift:5/10).</flag>
|
||||||
|
</use>
|
||||||
<upstream>
|
<upstream>
|
||||||
<remote-id type="github">swiftlang/swift</remote-id>
|
<remote-id type="github">swiftlang/swift</remote-id>
|
||||||
</upstream>
|
</upstream>
|
||||||
|
|||||||
26
dev-lang/swift-bootstrap/swift-bootstrap-1.1.ebuild
Normal file
26
dev-lang/swift-bootstrap/swift-bootstrap-1.1.ebuild
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Copyright 1999-2024 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
DESCRIPTION="A virtual package providing a base Swift to bootstrap future versions with."
|
||||||
|
HOMEPAGE="https://www.swift.org"
|
||||||
|
|
||||||
|
S="${WORKDIR}"
|
||||||
|
|
||||||
|
LICENSE="GPL-2"
|
||||||
|
SLOT="5/10"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
IUSE="+binary"
|
||||||
|
|
||||||
|
# `dev-lang/swift` BDEPENDS on either this package or `dev-lang/swift` itself. When any version of `dev-lang/swift` is
|
||||||
|
# installed, it will be preferred over this package; when no version of `dev-lang/swift` is installed, `emerge` will
|
||||||
|
# fall back to installing this.
|
||||||
|
#
|
||||||
|
# Because `dev-lang/swift` is versioned by SLOT, any updates to newer versions of Swift will record the current version
|
||||||
|
# in the @world set, leaving them around; this allows `swift-bootstrap` to eventually get cleaned up.
|
||||||
|
RDEPEND="
|
||||||
|
binary? ( dev-lang/swift-bin:5/10 )
|
||||||
|
!binary? ( dev-lang/swift:5/10 )
|
||||||
|
"
|
||||||
@@ -102,9 +102,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
PKG_PREINST_SWIFT_INTENTIONALLY_SET='true'
|
PKG_PREINST_SWIFT_INTENTIONALLY_SET='true'
|
||||||
|
|||||||
@@ -108,9 +108,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
||||||
@@ -240,9 +238,12 @@ src_compile() {
|
|||||||
|
|
||||||
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
||||||
# bootstrap from. We can use any version from 5.10.1 and on.
|
# bootstrap from. We can use any version from 5.10.1 and on.
|
||||||
local swift_version="$(best_version -b "${CATEGORY}/${PN}")"
|
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||||
swift_version="${swift_version#${CATEGORY}/}" # reduce to ${PVR} form
|
if [[ "${swift_version}" != swift-* ]]; then
|
||||||
swift_version="${swift_version%-r[[:digit:]]*}" # reduce to ${P} form
|
# Swift may be unset; we can use the latest available.
|
||||||
|
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||||
|
fi
|
||||||
|
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||||
|
|
||||||
local original_path="${PATH}"
|
local original_path="${PATH}"
|
||||||
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
||||||
|
|||||||
@@ -110,9 +110,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
||||||
@@ -242,9 +240,12 @@ src_compile() {
|
|||||||
|
|
||||||
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
||||||
# bootstrap from. We can use any version from 5.10.1 and on.
|
# bootstrap from. We can use any version from 5.10.1 and on.
|
||||||
local swift_version="$(best_version -b "${CATEGORY}/${PN}")"
|
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||||
swift_version="${swift_version#${CATEGORY}/}" # reduce to ${PVR} form
|
if [[ "${swift_version}" != swift-* ]]; then
|
||||||
swift_version="${swift_version%-r[[:digit:]]*}" # reduce to ${P} form
|
# Swift may be unset; we can use the latest available.
|
||||||
|
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||||
|
fi
|
||||||
|
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||||
|
|
||||||
local original_path="${PATH}"
|
local original_path="${PATH}"
|
||||||
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
||||||
|
|||||||
@@ -111,9 +111,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
||||||
@@ -243,9 +241,12 @@ src_compile() {
|
|||||||
|
|
||||||
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
||||||
# bootstrap from. We can use any version from 5.10.1 and on.
|
# bootstrap from. We can use any version from 5.10.1 and on.
|
||||||
local swift_version="$(best_version -b "${CATEGORY}/${PN}")"
|
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||||
swift_version="${swift_version#${CATEGORY}/}" # reduce to ${PVR} form
|
if [[ "${swift_version}" != swift-* ]]; then
|
||||||
swift_version="${swift_version%-r[[:digit:]]*}" # reduce to ${P} form
|
# Swift may be unset; we can use the latest available.
|
||||||
|
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||||
|
fi
|
||||||
|
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||||
|
|
||||||
local original_path="${PATH}"
|
local original_path="${PATH}"
|
||||||
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
||||||
|
|||||||
@@ -113,9 +113,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
||||||
@@ -245,9 +243,12 @@ src_compile() {
|
|||||||
|
|
||||||
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
||||||
# bootstrap from. We can use any version from 5.10.1 and on.
|
# bootstrap from. We can use any version from 5.10.1 and on.
|
||||||
local swift_version="$(best_version -b "${CATEGORY}/${PN}")"
|
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||||
swift_version="${swift_version#${CATEGORY}/}" # reduce to ${PVR} form
|
if [[ "${swift_version}" != swift-* ]]; then
|
||||||
swift_version="${swift_version%-r[[:digit:]]*}" # reduce to ${P} form
|
# Swift may be unset; we can use the latest available.
|
||||||
|
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||||
|
fi
|
||||||
|
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||||
|
|
||||||
local original_path="${PATH}"
|
local original_path="${PATH}"
|
||||||
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
||||||
|
|||||||
@@ -113,9 +113,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
||||||
@@ -245,9 +243,12 @@ src_compile() {
|
|||||||
|
|
||||||
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
||||||
# bootstrap from. We can use any version from 5.10.1 and on.
|
# bootstrap from. We can use any version from 5.10.1 and on.
|
||||||
local swift_version="$(best_version -b "${CATEGORY}/${PN}")"
|
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||||
swift_version="${swift_version#${CATEGORY}/}" # reduce to ${PVR} form
|
if [[ "${swift_version}" != swift-* ]]; then
|
||||||
swift_version="${swift_version%-r[[:digit:]]*}" # reduce to ${P} form
|
# Swift may be unset; we can use the latest available.
|
||||||
|
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||||
|
fi
|
||||||
|
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||||
|
|
||||||
local original_path="${PATH}"
|
local original_path="${PATH}"
|
||||||
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
||||||
|
|||||||
@@ -113,9 +113,7 @@ BDEPEND="
|
|||||||
llvm-core/lld:${LLVM_SLOT}=
|
llvm-core/lld:${LLVM_SLOT}=
|
||||||
')
|
')
|
||||||
dev-lang/python
|
dev-lang/python
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
|
||||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
||||||
' python3_{12..13})
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
SWIFT_BUILD_PRESETS_INI_PATH="${S}/gentoo-build-presets.ini"
|
||||||
@@ -245,9 +243,12 @@ src_compile() {
|
|||||||
|
|
||||||
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
# Versions of Swift 6.0 and later require an existing Swift compiler to
|
||||||
# bootstrap from. We can use any version from 5.10.1 and on.
|
# bootstrap from. We can use any version from 5.10.1 and on.
|
||||||
local swift_version="$(best_version -b "${CATEGORY}/${PN}")"
|
local swift_version="$(eselect swift show | tail -n1 | xargs)"
|
||||||
swift_version="${swift_version#${CATEGORY}/}" # reduce to ${PVR} form
|
if [[ "${swift_version}" != swift-* ]]; then
|
||||||
swift_version="${swift_version%-r[[:digit:]]*}" # reduce to ${P} form
|
# Swift may be unset; we can use the latest available.
|
||||||
|
swift_Version="$(eselect swift show --latest | tail -n1 | xargs)"
|
||||||
|
fi
|
||||||
|
[[ "${swift_version}" == swift-* ]] || die "No Swift version found for bootstrapping."
|
||||||
|
|
||||||
local original_path="${PATH}"
|
local original_path="${PATH}"
|
||||||
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
export PATH="/usr/lib64/${swift_version}/usr/bin:${original_path}"
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
DIST juliaup-1.20.2-crates.tar.xz 35467620 BLAKE2B dc9a37f40e8f809b544bbefed10f01b407bec3010c2e481127e4e84cfddd37c25f90257bba2803eb0cc3e0d157c9947f5d485392e55f16b039585b618bb9d2e5 SHA512 c3dee0ccda2a1060e54f459a9736865dd9a8399a63431e056d1ff0ca186f005f37f78f7903b347e1fd92aac7899fe79ac70819b48befb4cf5e0f2cdd8ebd473d
|
DIST juliaup-1.20.4-crates.tar.xz 35467620 BLAKE2B dc9a37f40e8f809b544bbefed10f01b407bec3010c2e481127e4e84cfddd37c25f90257bba2803eb0cc3e0d157c9947f5d485392e55f16b039585b618bb9d2e5 SHA512 c3dee0ccda2a1060e54f459a9736865dd9a8399a63431e056d1ff0ca186f005f37f78f7903b347e1fd92aac7899fe79ac70819b48befb4cf5e0f2cdd8ebd473d
|
||||||
DIST juliaup-1.20.2.tar.gz 888955 BLAKE2B 72c34376e876a754ca87af72b4fad7bb6b830607c0c4b12848a05b37bcfb414d990f4048e665477f38eb5df84beefb3ef9fb4fe9fdcd83f2148e62c9ddd08b67 SHA512 8e91f3d893a20dafa2c19e8ef3c042ee1d098f6f83087ce71e97c968180d4ef158a6390ab0866cfc61c3e087f94e5dcc44389235ec8423a4f55e9a185a2d0000
|
DIST juliaup-1.20.4.tar.gz 890216 BLAKE2B 4cacb7087462a58bb7fcce18dca7a71a976dbff08ddd81f9788465355e1a80572d245bc870457edefc76b4da9f89aa509e9933edbaa12e6bdcb99bbc0fd6472a SHA512 7104887f188e657f154b649e0eadd0c299df964332d56219a86fdcae941ab8f568d6a4027282c593be95c342b6f356e8b6e9406fa6e043fd312945e1a966a064
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ CRATES="
|
|||||||
unicode-ident@1.0.13
|
unicode-ident@1.0.13
|
||||||
"
|
"
|
||||||
|
|
||||||
|
RUST_MIN_VER="1.85.0"
|
||||||
|
|
||||||
inherit cargo
|
inherit cargo
|
||||||
|
|
||||||
DESCRIPTION="Autotiling for sway (and possibly i3)"
|
DESCRIPTION="Autotiling for sway (and possibly i3)"
|
||||||
@@ -46,3 +48,5 @@ LICENSE+="
|
|||||||
"
|
"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
QA_FLAGS_IGNORED="usr/bin/${PN}"
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ CRATES="
|
|||||||
zmij@1.0.19
|
zmij@1.0.19
|
||||||
"
|
"
|
||||||
|
|
||||||
|
RUST_MIN_VER="1.85.0"
|
||||||
|
|
||||||
inherit cargo
|
inherit cargo
|
||||||
|
|
||||||
DESCRIPTION="Autotiling for sway (and possibly i3)"
|
DESCRIPTION="Autotiling for sway (and possibly i3)"
|
||||||
@@ -47,3 +49,5 @@ LICENSE+="
|
|||||||
"
|
"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
QA_FLAGS_IGNORED="usr/bin/${PN}"
|
||||||
|
|||||||
@@ -2,3 +2,5 @@ DIST hyprmoncfg-1.5.1-deps.tar.xz 27295780 BLAKE2B bc53d40667448eca6119360fb8809
|
|||||||
DIST hyprmoncfg-1.5.1.tar.gz 5953639 BLAKE2B 0b5be3ee5b80281637f47927785f7046f511c2768072d82fbede2f876142c2c82328701aadf62651a8e86c9adee6daeb8661199c0afac1c36212287b2a7cc2eb SHA512 2f80d663cc693d5db6976a46b54364a35fe796eca6850bf2ecbd24ec476ad9a84f22e91a581a4ddf5950abe589ec44e863827a5b08a5254d09630054ade2dee1
|
DIST hyprmoncfg-1.5.1.tar.gz 5953639 BLAKE2B 0b5be3ee5b80281637f47927785f7046f511c2768072d82fbede2f876142c2c82328701aadf62651a8e86c9adee6daeb8661199c0afac1c36212287b2a7cc2eb SHA512 2f80d663cc693d5db6976a46b54364a35fe796eca6850bf2ecbd24ec476ad9a84f22e91a581a4ddf5950abe589ec44e863827a5b08a5254d09630054ade2dee1
|
||||||
DIST hyprmoncfg-1.5.2-deps.tar.xz 38213228 BLAKE2B 10697a88468274f970d15d4e46c518a672009124bb98c771924198b5faba1b7638b0cc5276e7eeef038b70fc0c352d1e9ca5b3b08d4a7b0903ec0746da9261d9 SHA512 09335dfa5ed59a6b240418c2e8aa61773584037f974a91f117ddf06c5bcf7d7abe5fd1fabd0d45ac0b5fd5aee441b93d19935bb1c248f571d8ef4a9c8313f026
|
DIST hyprmoncfg-1.5.2-deps.tar.xz 38213228 BLAKE2B 10697a88468274f970d15d4e46c518a672009124bb98c771924198b5faba1b7638b0cc5276e7eeef038b70fc0c352d1e9ca5b3b08d4a7b0903ec0746da9261d9 SHA512 09335dfa5ed59a6b240418c2e8aa61773584037f974a91f117ddf06c5bcf7d7abe5fd1fabd0d45ac0b5fd5aee441b93d19935bb1c248f571d8ef4a9c8313f026
|
||||||
DIST hyprmoncfg-1.5.2.tar.gz 5955001 BLAKE2B a605a1e24bd5532fbb8534441b699a06802626ddfe05cccdc0310a3aa9734280acad4ac45f3edc2144ad393daa305d5e8663e34503e08973769e8cddb9d86eff SHA512 37ee9d1fd9eb64f4f0c814c0092fe31af5a2b19ccfcad908904baff23069b881e74f63de42647bcd363632ab4bb860e997707969ef8beeeac052d808abe1d52b
|
DIST hyprmoncfg-1.5.2.tar.gz 5955001 BLAKE2B a605a1e24bd5532fbb8534441b699a06802626ddfe05cccdc0310a3aa9734280acad4ac45f3edc2144ad393daa305d5e8663e34503e08973769e8cddb9d86eff SHA512 37ee9d1fd9eb64f4f0c814c0092fe31af5a2b19ccfcad908904baff23069b881e74f63de42647bcd363632ab4bb860e997707969ef8beeeac052d808abe1d52b
|
||||||
|
DIST hyprmoncfg-1.6.0-deps.tar.xz 38193304 BLAKE2B 9511285b299fdd1586bc83571952e028006bda0845d05ff145a4bd94c54961b7381e6ab000e5b366b4d63b1fb061ea69c129faf70fdb588a5620b67c34419c05 SHA512 0d1796cf912d5e1ace2c69fb254051e5a3c04ef1888cb53bd1917e75c69372a3c99cc83aafb8b6b0a3cd8ca34bf783c463de88f8e5aec83e17e81786d598d18b
|
||||||
|
DIST hyprmoncfg-1.6.0.tar.gz 5959044 BLAKE2B a16cb22929bb70d6989557dde814581d0928316f89e73276010a676749cdbad3acba26efaab5915e902417e1d262ff197e5d934d566d14cc7771759bea24ee70 SHA512 aad9c0494b21753d8f263db181e82407508d6e258fc6eb7ac73f3cf6626a9217eace1e97140f5f2c159f753f82b064a229d5f67c47173b5a7542aafe091cb5c7
|
||||||
|
|||||||
45
gui-apps/hyprmoncfg/hyprmoncfg-1.6.0.ebuild
Normal file
45
gui-apps/hyprmoncfg/hyprmoncfg-1.6.0.ebuild
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
# Copyright 2026 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
inherit desktop go-module systemd
|
||||||
|
|
||||||
|
DESCRIPTION="Terminal-first monitor configurator and auto-switching daemon for Hyprland"
|
||||||
|
HOMEPAGE="https://github.com/crmne/hyprmoncfg"
|
||||||
|
SRC_URI="
|
||||||
|
https://github.com/crmne/hyprmoncfg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
||||||
|
https://github.com/crmne/hyprmoncfg/releases/download/v${PV}/${P}-deps.tar.xz
|
||||||
|
"
|
||||||
|
S="${WORKDIR}/${P}"
|
||||||
|
|
||||||
|
LICENSE="Apache-2.0 BSD MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="-* ~amd64 ~arm64"
|
||||||
|
|
||||||
|
BDEPEND=">=dev-lang/go-1.26.1"
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
local build_date ldflags
|
||||||
|
|
||||||
|
build_date="$(date -u +%FT%TZ)"
|
||||||
|
ldflags="-X github.com/crmne/hyprmoncfg/internal/buildinfo.Version=${PV} -X github.com/crmne/hyprmoncfg/internal/buildinfo.Commit=be34b6c -X github.com/crmne/hyprmoncfg/internal/buildinfo.Date=${build_date}"
|
||||||
|
|
||||||
|
GOPROXY=off ego build -buildvcs=false -trimpath -mod=readonly -ldflags "${ldflags}" -o hyprmoncfg ./cmd/hyprmoncfg
|
||||||
|
GOPROXY=off ego build -buildvcs=false -trimpath -mod=readonly -ldflags "${ldflags}" -o hyprmoncfgd ./cmd/hyprmoncfgd
|
||||||
|
}
|
||||||
|
|
||||||
|
src_test() {
|
||||||
|
GOPROXY=off ego test -buildvcs=false ./...
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
dobin hyprmoncfg
|
||||||
|
dobin hyprmoncfgd
|
||||||
|
dodoc README.md
|
||||||
|
insinto /usr/share/licenses/${PN}
|
||||||
|
doins LICENSE
|
||||||
|
domenu packaging/applications/hyprmoncfg.desktop
|
||||||
|
doicon packaging/icons/hyprmoncfg.svg
|
||||||
|
systemd_douserunit packaging/systemd/hyprmoncfgd.service
|
||||||
|
}
|
||||||
@@ -1 +1 @@
|
|||||||
DIST mangowm-0.14.0.tar.gz 504370 BLAKE2B 31439c09c7d4d05332a3fee1543a62afb05d7b5f8c1073f2585147ef653f6a41039b716a175ccff5415117a884ddc4df152c2d887d2558ac354152b24636797f SHA512 add2f9dc92113f87e30a7afecbf6d7ab48f243f39bc4fd2b3d3bc700d839cb716aad675f246ba3f91e50f72968dc8a1fdd47ad7d79ac52c77bca21968c728ef5
|
DIST mangowm-0.14.2.tar.gz 505978 BLAKE2B 6f91ff82edd7796a67c6e741af985bee66a6d451beac3ea390840544393f927a0b46d2550441b6e8c03d5922bde1feddea4c7d217f503e3555137510d4d2bb47 SHA512 1638dd2b1237c3e0afb86b80b2b613cc29e10f7c0b468b82871e570ad0a4825fe4417897b46f21f0d5dd7d9e84afc8579aad89ffafad1c4a93187906b8bf592b
|
||||||
|
|||||||
110
licenses/FSL-1.1-MIT
Normal file
110
licenses/FSL-1.1-MIT
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
# Functional Source License, Version 1.1, MIT Future License
|
||||||
|
|
||||||
|
## Abbreviation
|
||||||
|
|
||||||
|
FSL-1.1-MIT
|
||||||
|
|
||||||
|
## Notice
|
||||||
|
|
||||||
|
Copyright ${year} ${licensor name}
|
||||||
|
|
||||||
|
## Terms and Conditions
|
||||||
|
|
||||||
|
### Licensor ("We")
|
||||||
|
|
||||||
|
The party offering the Software under these Terms and Conditions.
|
||||||
|
|
||||||
|
### The Software
|
||||||
|
|
||||||
|
The "Software" is each version of the software that we make available under
|
||||||
|
these Terms and Conditions, as indicated by our inclusion of these Terms and
|
||||||
|
Conditions with the Software.
|
||||||
|
|
||||||
|
### License Grant
|
||||||
|
|
||||||
|
Subject to your compliance with this License Grant and the Patents,
|
||||||
|
Redistribution and Trademark clauses below, we hereby grant you the right to
|
||||||
|
use, copy, modify, create derivative works, publicly perform, publicly display
|
||||||
|
and redistribute the Software for any Permitted Purpose identified below.
|
||||||
|
|
||||||
|
### Permitted Purpose
|
||||||
|
|
||||||
|
A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
|
||||||
|
means making the Software available to others in a commercial product or
|
||||||
|
service that:
|
||||||
|
|
||||||
|
1. substitutes for the Software;
|
||||||
|
|
||||||
|
2. substitutes for any other product or service we offer using the Software
|
||||||
|
that exists as of the date we make the Software available; or
|
||||||
|
|
||||||
|
3. offers the same or substantially similar functionality as the Software.
|
||||||
|
|
||||||
|
Permitted Purposes specifically include using the Software:
|
||||||
|
|
||||||
|
1. for your internal use and access;
|
||||||
|
|
||||||
|
2. for non-commercial education;
|
||||||
|
|
||||||
|
3. for non-commercial research; and
|
||||||
|
|
||||||
|
4. in connection with professional services that you provide to a licensee
|
||||||
|
using the Software in accordance with these Terms and Conditions.
|
||||||
|
|
||||||
|
### Patents
|
||||||
|
|
||||||
|
To the extent your use for a Permitted Purpose would necessarily infringe our
|
||||||
|
patents, the license grant above includes a license under our patents. If you
|
||||||
|
make a claim against any party that the Software infringes or contributes to
|
||||||
|
the infringement of any patent, then your patent license to the Software ends
|
||||||
|
immediately.
|
||||||
|
|
||||||
|
### Redistribution
|
||||||
|
|
||||||
|
The Terms and Conditions apply to all copies, modifications and derivatives of
|
||||||
|
the Software.
|
||||||
|
|
||||||
|
If you redistribute any copies, modifications or derivatives of the Software,
|
||||||
|
you must include a copy of or a link to these Terms and Conditions and not
|
||||||
|
remove any copyright notices provided in or with the Software.
|
||||||
|
|
||||||
|
### Disclaimer
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
|
||||||
|
SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
|
||||||
|
EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
|
||||||
|
|
||||||
|
### Trademarks
|
||||||
|
|
||||||
|
Except for displaying the License Details and identifying us as the origin of
|
||||||
|
the Software, you have no right under these Terms and Conditions to use our
|
||||||
|
trademarks, trade names, service marks or product names.
|
||||||
|
|
||||||
|
## Grant of Future License
|
||||||
|
|
||||||
|
We hereby irrevocably grant you an additional license to use the Software under
|
||||||
|
the MIT license that is effective on the second anniversary of the date we make
|
||||||
|
the Software available. On or after that date, you may use the Software under
|
||||||
|
the MIT license, in which case the following will apply:
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# Copyright 2025 Gentoo Authors
|
# Copyright 2025-2026 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -12,12 +12,17 @@ LICENSE="GPL-2+"
|
|||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
RDEPEND="
|
DEPEND="
|
||||||
|
dev-cpp/atkmm:0
|
||||||
|
dev-cpp/cairomm:0
|
||||||
|
dev-cpp/glibmm:2
|
||||||
dev-cpp/gtkmm:2.4
|
dev-cpp/gtkmm:2.4
|
||||||
|
dev-cpp/pangomm:1.4
|
||||||
|
dev-libs/libsigc++:2
|
||||||
media-libs/lv2
|
media-libs/lv2
|
||||||
sci-libs/fftw:3.0=
|
sci-libs/fftw:3.0=
|
||||||
"
|
"
|
||||||
DEPEND="${RDEPEND}"
|
RDEPEND="${DEPEND}"
|
||||||
BDEPEND="virtual/pkgconfig"
|
BDEPEND="virtual/pkgconfig"
|
||||||
|
|
||||||
PATCHES=(
|
PATCHES=(
|
||||||
@@ -9,6 +9,6 @@ KEYWORDS=~amd64
|
|||||||
LICENSE=GPL-3+
|
LICENSE=GPL-3+
|
||||||
RDEPEND=app-arch/brotli:= app-crypt/libmd dev-libs/xxhash:=
|
RDEPEND=app-arch/brotli:= app-crypt/libmd dev-libs/xxhash:=
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://gitlab.com/ms1888/brzip/-/archive/0.3.3/brzip-0.3.3.tar.bz2
|
SRC_URI=https://gitlab.com/ms1888/brzip/-/archive/0.3.4/brzip-0.3.4.tar.bz2
|
||||||
_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
|
_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_=a77a69bbe589d44f38be9cbfd9a5a2f0
|
_md5_=8470ebd287908976176be4f7ceb52038
|
||||||
12
metadata/md5-cache/app-misc/crush-0.75.0
Normal file
12
metadata/md5-cache/app-misc/crush-0.75.0
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
BDEPEND=>=dev-lang/go-1.26.4 >=dev-lang/go-1.24.11:= app-arch/unzip
|
||||||
|
DEFINED_PHASES=compile install unpack
|
||||||
|
DESCRIPTION=The glamourous AI coding agent for your favourite terminal
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://github.com/charmbracelet/crush
|
||||||
|
INHERIT=go-module shell-completion
|
||||||
|
KEYWORDS=-* ~amd64 ~arm64
|
||||||
|
LICENSE=FSL-1.1-MIT
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://github.com/charmbracelet/crush/archive/refs/tags/v0.75.0.tar.gz -> crush-0.75.0.tar.gz https://github.com/gentoo-zh-drafts/crush/releases/download/v0.75.0/crush-0.75.0-vendor.tar.xz
|
||||||
|
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 go-env fca4e820393c2eac25a944be8bdf6a3a go-module 22cfabf3120ed3f7bcd8b4a7697fbfba bash-completion-r1 9e91505e030725688d1e953321a47501 shell-completion 0b655d0d825e157a5e99c463bddaac16
|
||||||
|
_md5_=2e4284ce30bf29aa41812d2dd3799e3f
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
BDEPEND=test? ( >=dev-python/pytest-7.4.4[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(-)?]
|
BDEPEND=test? ( >=dev-python/pytest-7.4.4[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
|
DEFINED_PHASES=compile configure install prepare test
|
||||||
DESCRIPTION=A simple script to identify files not tracked by Portage package manager
|
DESCRIPTION=A simple script to identify files not tracked by Portage package manager
|
||||||
EAPI=8
|
EAPI=8
|
||||||
HOMEPAGE=https://github.com/gcarq/portage-lostfiles
|
HOMEPAGE=https://github.com/gcarq/portage-lostfiles
|
||||||
INHERIT=distutils-r1
|
INHERIT=distutils-r1
|
||||||
IUSE=test python_targets_python3_12 python_targets_python3_13
|
IUSE=test python_targets_python3_12 python_targets_python3_13 python_targets_python3_14
|
||||||
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86
|
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86
|
||||||
LICENSE=GPL-2
|
LICENSE=GPL-2
|
||||||
RDEPEND=python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 )
|
RDEPEND=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 )
|
REQUIRED_USE=|| ( python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 )
|
||||||
RESTRICT=!test? ( test )
|
RESTRICT=!test? ( test )
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/gcarq/portage-lostfiles/archive/v0.5.6.tar.gz -> portage-lostfiles-0.5.6.tar.gz
|
SRC_URI=https://github.com/gcarq/portage-lostfiles/archive/v0.5.6.tar.gz -> portage-lostfiles-0.5.6.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
|
_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_=ef5fb65eec725ca31ba9e7222d9d8073
|
_md5_=9248f6f4bbd249f0fe009791c3a14561
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
BDEPEND=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 ) >=dev-build/cmake-3.24.2 >=dev-build/ninja-1.11 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3:= llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] )
|
BDEPEND=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 ) >=dev-build/cmake-3.24.2 >=dev-build/ninja-1.11 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3:= llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/setuptools[python_targets_python3_14(-)] )
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
||||||
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
|||||||
SLOT=5/10
|
SLOT=5/10
|
||||||
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.0.2.tar.gz -> swift-atomics-1.0.2.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.0.5.tar.gz -> swift-collections-1.0.5.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.1.tar.gz -> swift-numerics-1.0.1.tar.gz https://github.com/apple/swift-system/archive/refs/tags/1.1.1.tar.gz -> swift-system-1.1.1.tar.gz https://github.com/apple/swift-xcode-playground-support/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-xcode-playground-support-5.10.1.tar.gz https://github.com/jpsim/Yams/archive/refs/tags/5.0.1.tar.gz -> Yams-5.0.1.tar.gz https://github.com/swiftlang/indexstore-db/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> indexstore-db-5.10.1.tar.gz https://github.com/swiftlang/llvm-project/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> llvm-project-5.10.1.tar.gz https://github.com/swiftlang/sourcekit-lsp/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> sourcekit-lsp-5.10.1.tar.gz https://github.com/swiftlang/swift-cmark/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-cmark-5.10.1.tar.gz https://github.com/swiftlang/swift-corelibs-foundation/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-corelibs-foundation-5.10.1.tar.gz https://github.com/swiftlang/swift-corelibs-libdispatch/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-corelibs-libdispatch-5.10.1.tar.gz https://github.com/swiftlang/swift-corelibs-xctest/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-corelibs-xctest-5.10.1.tar.gz https://github.com/swiftlang/swift-docc-render-artifact/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-docc-render-artifact-5.10.1.tar.gz https://github.com/swiftlang/swift-docc-symbolkit/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-docc-symbolkit-5.10.1.tar.gz https://github.com/swiftlang/swift-docc/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-docc-5.10.1.tar.gz https://github.com/swiftlang/swift-driver/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-driver-5.10.1.tar.gz https://github.com/swiftlang/swift-experimental-string-processing/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-experimental-string-processing-5.10.1.tar.gz https://github.com/swiftlang/swift-format/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-format-5.10.1.tar.gz https://github.com/swiftlang/swift-installer-scripts/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-installer-scripts-5.10.1.tar.gz https://github.com/swiftlang/swift-integration-tests/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-integration-tests-5.10.1.tar.gz https://github.com/swiftlang/swift-llbuild/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-llbuild-5.10.1.tar.gz https://github.com/swiftlang/swift-llvm-bindings/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-llvm-bindings-5.10.1.tar.gz https://github.com/swiftlang/swift-lmdb/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-lmdb-5.10.1.tar.gz https://github.com/swiftlang/swift-markdown/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-markdown-5.10.1.tar.gz https://github.com/swiftlang/swift-package-manager/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-package-manager-5.10.1.tar.gz https://github.com/swiftlang/swift-stress-tester/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-stress-tester-5.10.1.tar.gz https://github.com/swiftlang/swift-syntax/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-syntax-5.10.1.tar.gz https://github.com/swiftlang/swift-tools-support-core/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-tools-support-core-5.10.1.tar.gz https://github.com/swiftlang/swift/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-5.10.1.tar.gz
|
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.0.2.tar.gz -> swift-atomics-1.0.2.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.0.5.tar.gz -> swift-collections-1.0.5.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.1.tar.gz -> swift-numerics-1.0.1.tar.gz https://github.com/apple/swift-system/archive/refs/tags/1.1.1.tar.gz -> swift-system-1.1.1.tar.gz https://github.com/apple/swift-xcode-playground-support/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-xcode-playground-support-5.10.1.tar.gz https://github.com/jpsim/Yams/archive/refs/tags/5.0.1.tar.gz -> Yams-5.0.1.tar.gz https://github.com/swiftlang/indexstore-db/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> indexstore-db-5.10.1.tar.gz https://github.com/swiftlang/llvm-project/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> llvm-project-5.10.1.tar.gz https://github.com/swiftlang/sourcekit-lsp/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> sourcekit-lsp-5.10.1.tar.gz https://github.com/swiftlang/swift-cmark/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-cmark-5.10.1.tar.gz https://github.com/swiftlang/swift-corelibs-foundation/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-corelibs-foundation-5.10.1.tar.gz https://github.com/swiftlang/swift-corelibs-libdispatch/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-corelibs-libdispatch-5.10.1.tar.gz https://github.com/swiftlang/swift-corelibs-xctest/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-corelibs-xctest-5.10.1.tar.gz https://github.com/swiftlang/swift-docc-render-artifact/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-docc-render-artifact-5.10.1.tar.gz https://github.com/swiftlang/swift-docc-symbolkit/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-docc-symbolkit-5.10.1.tar.gz https://github.com/swiftlang/swift-docc/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-docc-5.10.1.tar.gz https://github.com/swiftlang/swift-driver/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-driver-5.10.1.tar.gz https://github.com/swiftlang/swift-experimental-string-processing/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-experimental-string-processing-5.10.1.tar.gz https://github.com/swiftlang/swift-format/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-format-5.10.1.tar.gz https://github.com/swiftlang/swift-installer-scripts/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-installer-scripts-5.10.1.tar.gz https://github.com/swiftlang/swift-integration-tests/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-integration-tests-5.10.1.tar.gz https://github.com/swiftlang/swift-llbuild/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-llbuild-5.10.1.tar.gz https://github.com/swiftlang/swift-llvm-bindings/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-llvm-bindings-5.10.1.tar.gz https://github.com/swiftlang/swift-lmdb/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-lmdb-5.10.1.tar.gz https://github.com/swiftlang/swift-markdown/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-markdown-5.10.1.tar.gz https://github.com/swiftlang/swift-package-manager/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-package-manager-5.10.1.tar.gz https://github.com/swiftlang/swift-stress-tester/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-stress-tester-5.10.1.tar.gz https://github.com/swiftlang/swift-syntax/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-syntax-5.10.1.tar.gz https://github.com/swiftlang/swift-tools-support-core/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-tools-support-core-5.10.1.tar.gz https://github.com/swiftlang/swift/archive/refs/tags/swift-5.10.1-RELEASE.tar.gz -> swift-5.10.1.tar.gz
|
||||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d llvm-utils e7edb4086e31c8537574b263d899f826 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d llvm-utils e7edb4086e31c8537574b263d899f826 multilib fc812e8eb2170022c28272d80a1f9e77 llvm-r2 d0f9b3164877aa250943c25b016e475e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 python-utils-r1 3ce55b5ac9c0a92cc4aeb1f88010d707 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||||
_md5_=77b6b66cf22b77efdcd8d65e44c84218
|
_md5_=b11d50c723075db40e7f707bc688d7b1
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
BDEPEND=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 ) >=dev-build/cmake-3.24.2 >=dev-build/ninja-1.11.1 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-util/patchelf-0.18 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3:= || ( dev-lang/swift dev-lang/swift-bootstrap ) llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] )
|
BDEPEND=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 ) >=dev-build/cmake-3.24.2 >=dev-build/ninja-1.11.1 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-util/patchelf-0.18 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3:= || ( dev-lang/swift dev-lang/swift-bootstrap ) llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/setuptools[python_targets_python3_14(-)] )
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
||||||
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
|||||||
SLOT=6/0
|
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
|
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
|
_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_=c47482c87b4266fda4a67224f44d20a1
|
_md5_=1395087d6441edcede97cd88983bff75
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
BDEPEND=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 ) >=dev-build/cmake-3.30.2 >=dev-build/ninja-1.11.1 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-util/patchelf-0.18 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3.1:= || ( dev-lang/swift dev-lang/swift-bootstrap ) llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] )
|
BDEPEND=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 ) >=dev-build/cmake-3.30.2 >=dev-build/ninja-1.11.1 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-util/patchelf-0.18 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3.1:= || ( dev-lang/swift dev-lang/swift-bootstrap ) llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/setuptools[python_targets_python3_14(-)] )
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
||||||
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
|||||||
SLOT=6/1
|
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
|
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
|
_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_=36fd2a4476f4d57a50c2e1170c723842
|
_md5_=c204b6db9ed4f6fa9be08e12cbf90f82
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
BDEPEND=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 ) >=dev-build/cmake-3.30.2 >=dev-build/ninja-1.11.1 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-util/patchelf-0.18 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3.1:= || ( dev-lang/swift dev-lang/swift-bootstrap ) llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] )
|
BDEPEND=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 ) >=dev-build/cmake-3.30.2 >=dev-build/ninja-1.11.1 >=dev-db/sqlite-3 >=dev-libs/icu-69 >=dev-libs/libedit-20221030 >=dev-libs/libxml2-2.11.5 >=dev-util/patchelf-0.18 >=dev-vcs/git-2.39 >=sys-apps/coreutils-9 >=sys-devel/gcc-11 >=sys-libs/ncurses-6 >=virtual/zlib-1.3.1:= || ( dev-lang/swift dev-lang/swift-bootstrap ) llvm_slot_17? ( llvm-core/clang:17= llvm-core/lld:17= ) llvm_slot_18? ( llvm-core/clang:18= llvm-core/lld:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/lld:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/lld:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/lld:21= ) dev-lang/python python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/setuptools[python_targets_python3_14(-)] )
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst setup unpack
|
||||||
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
DESCRIPTION=A high-level, general-purpose, multi-paradigm, compiled programming language
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -13,4 +13,4 @@ RESTRICT=strip
|
|||||||
SLOT=6/2
|
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
|
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
|
_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_=0e631d0b05cbc50e573ea0185bdaef12
|
_md5_=d87b16583504e61d4dda2c07e271b8f0
|
||||||
|
|||||||
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
@@ -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 )
|
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
|
RESTRICT=strip
|
||||||
SLOT=5/10
|
SLOT=5/10
|
||||||
SRC_URI=https://github.com/itaiferber/gentoo-distfiles/releases/download/dev-lang/swift-5.10.1-r5/swift-5.10.1-r5.gpkg.tar
|
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
|
_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_=b30ab4ee6c93fb7e5be6d0ee65158bec
|
||||||
10
metadata/md5-cache/dev-lang/swift-bootstrap-1.1
Normal file
10
metadata/md5-cache/dev-lang/swift-bootstrap-1.1
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
DEFINED_PHASES=-
|
||||||
|
DESCRIPTION=A virtual package providing a base Swift to bootstrap future versions with.
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://www.swift.org
|
||||||
|
IUSE=+binary
|
||||||
|
KEYWORDS=~amd64
|
||||||
|
LICENSE=GPL-2
|
||||||
|
RDEPEND=binary? ( dev-lang/swift-bin:5/10 ) !binary? ( dev-lang/swift:5/10 )
|
||||||
|
SLOT=5/10
|
||||||
|
_md5_=f119c690c0685eff67de2032fd6f4254
|
||||||
@@ -8,6 +8,6 @@ IUSE=debug
|
|||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
LICENSE=MIT Apache-2.0 BSD CDLA-Permissive-2.0 ISC MIT MPL-2.0 openssl Unicode-3.0 ZLIB
|
LICENSE=MIT Apache-2.0 BSD CDLA-Permissive-2.0 ISC MIT MPL-2.0 openssl Unicode-3.0 ZLIB
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/JuliaLang/juliaup/archive/v1.20.2/juliaup-1.20.2.tar.gz https://github.com/yamader/juliaup/releases/download/v1.20.2/juliaup-1.20.2-crates.tar.xz
|
SRC_URI=https://github.com/JuliaLang/juliaup/archive/v1.20.4/juliaup-1.20.4.tar.gz https://github.com/yamader/juliaup/releases/download/v1.20.4/juliaup-1.20.4-crates.tar.xz
|
||||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d bash-completion-r1 9e91505e030725688d1e953321a47501 shell-completion 0b655d0d825e157a5e99c463bddaac16
|
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d bash-completion-r1 9e91505e030725688d1e953321a47501 shell-completion 0b655d0d825e157a5e99c463bddaac16
|
||||||
_md5_=545aa4d572627372396a36ff30c77e44
|
_md5_=545aa4d572627372396a36ff30c77e44
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* )
|
BDEPEND=|| ( >=dev-lang/rust-bin-1.85.0:* >=dev-lang/rust-1.85.0:* )
|
||||||
DEFINED_PHASES=compile configure install setup test unpack
|
DEFINED_PHASES=compile configure install setup test unpack
|
||||||
DESCRIPTION=Autotiling for sway (and possibly i3)
|
DESCRIPTION=Autotiling for sway (and possibly i3)
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -10,4 +10,4 @@ LICENSE=MIT Unicode-DFS-2016 || ( Apache-2.0 Boost-1.0 )
|
|||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/ammgws/autotiling-rs/archive/refs/tags/v0.1.6.tar.gz -> autotiling-rs-0.1.6.tar.gz https://static.crates.io/crates/anstyle/anstyle-1.0.11.crate https://static.crates.io/crates/clap/clap-4.5.41.crate https://static.crates.io/crates/clap_builder/clap_builder-4.5.41.crate https://static.crates.io/crates/clap_derive/clap_derive-4.5.41.crate https://static.crates.io/crates/clap_lex/clap_lex-0.7.5.crate https://static.crates.io/crates/heck/heck-0.5.0.crate https://static.crates.io/crates/itoa/itoa-1.0.11.crate https://static.crates.io/crates/memchr/memchr-2.7.4.crate https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.86.crate https://static.crates.io/crates/quote/quote-1.0.37.crate https://static.crates.io/crates/ryu/ryu-1.0.18.crate https://static.crates.io/crates/serde/serde-1.0.210.crate https://static.crates.io/crates/serde_derive/serde_derive-1.0.210.crate https://static.crates.io/crates/serde_json/serde_json-1.0.128.crate https://static.crates.io/crates/strsim/strsim-0.11.1.crate https://static.crates.io/crates/swayipc-types/swayipc-types-1.4.0.crate https://static.crates.io/crates/swayipc/swayipc-3.0.2.crate https://static.crates.io/crates/syn/syn-2.0.79.crate https://static.crates.io/crates/thiserror-impl/thiserror-impl-1.0.64.crate https://static.crates.io/crates/thiserror/thiserror-1.0.64.crate https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.13.crate
|
SRC_URI=https://github.com/ammgws/autotiling-rs/archive/refs/tags/v0.1.6.tar.gz -> autotiling-rs-0.1.6.tar.gz https://static.crates.io/crates/anstyle/anstyle-1.0.11.crate https://static.crates.io/crates/clap/clap-4.5.41.crate https://static.crates.io/crates/clap_builder/clap_builder-4.5.41.crate https://static.crates.io/crates/clap_derive/clap_derive-4.5.41.crate https://static.crates.io/crates/clap_lex/clap_lex-0.7.5.crate https://static.crates.io/crates/heck/heck-0.5.0.crate https://static.crates.io/crates/itoa/itoa-1.0.11.crate https://static.crates.io/crates/memchr/memchr-2.7.4.crate https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.86.crate https://static.crates.io/crates/quote/quote-1.0.37.crate https://static.crates.io/crates/ryu/ryu-1.0.18.crate https://static.crates.io/crates/serde/serde-1.0.210.crate https://static.crates.io/crates/serde_derive/serde_derive-1.0.210.crate https://static.crates.io/crates/serde_json/serde_json-1.0.128.crate https://static.crates.io/crates/strsim/strsim-0.11.1.crate https://static.crates.io/crates/swayipc-types/swayipc-types-1.4.0.crate https://static.crates.io/crates/swayipc/swayipc-3.0.2.crate https://static.crates.io/crates/syn/syn-2.0.79.crate https://static.crates.io/crates/thiserror-impl/thiserror-impl-1.0.64.crate https://static.crates.io/crates/thiserror/thiserror-1.0.64.crate https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.13.crate
|
||||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d
|
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d
|
||||||
_md5_=7f141949c41946e8a25d52c81d57f016
|
_md5_=10761e877f6b9656a92dd2399d95e891
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* )
|
BDEPEND=|| ( >=dev-lang/rust-bin-1.85.0:* >=dev-lang/rust-1.85.0:* )
|
||||||
DEFINED_PHASES=compile configure install setup test unpack
|
DEFINED_PHASES=compile configure install setup test unpack
|
||||||
DESCRIPTION=Autotiling for sway (and possibly i3)
|
DESCRIPTION=Autotiling for sway (and possibly i3)
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@@ -10,4 +10,4 @@ LICENSE=MIT Unicode-DFS-2016 || ( Apache-2.0 Boost-1.0 )
|
|||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/ammgws/autotiling-rs/archive/refs/tags/v0.1.8.tar.gz -> autotiling-rs-0.1.8.tar.gz https://static.crates.io/crates/anstyle/anstyle-1.0.13.crate https://static.crates.io/crates/clap/clap-4.5.57.crate https://static.crates.io/crates/clap_builder/clap_builder-4.5.57.crate https://static.crates.io/crates/clap_derive/clap_derive-4.5.55.crate https://static.crates.io/crates/clap_lex/clap_lex-0.7.7.crate https://static.crates.io/crates/heck/heck-0.5.0.crate https://static.crates.io/crates/itoa/itoa-1.0.17.crate https://static.crates.io/crates/memchr/memchr-2.7.6.crate https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.106.crate https://static.crates.io/crates/quote/quote-1.0.44.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/serde_json/serde_json-1.0.149.crate https://static.crates.io/crates/strsim/strsim-0.11.1.crate https://static.crates.io/crates/swayipc-types/swayipc-types-1.4.3.crate https://static.crates.io/crates/swayipc/swayipc-3.0.3.crate https://static.crates.io/crates/syn/syn-2.0.114.crate https://static.crates.io/crates/thiserror-impl/thiserror-impl-2.0.18.crate https://static.crates.io/crates/thiserror/thiserror-2.0.18.crate https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.22.crate https://static.crates.io/crates/zmij/zmij-1.0.19.crate
|
SRC_URI=https://github.com/ammgws/autotiling-rs/archive/refs/tags/v0.1.8.tar.gz -> autotiling-rs-0.1.8.tar.gz https://static.crates.io/crates/anstyle/anstyle-1.0.13.crate https://static.crates.io/crates/clap/clap-4.5.57.crate https://static.crates.io/crates/clap_builder/clap_builder-4.5.57.crate https://static.crates.io/crates/clap_derive/clap_derive-4.5.55.crate https://static.crates.io/crates/clap_lex/clap_lex-0.7.7.crate https://static.crates.io/crates/heck/heck-0.5.0.crate https://static.crates.io/crates/itoa/itoa-1.0.17.crate https://static.crates.io/crates/memchr/memchr-2.7.6.crate https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.106.crate https://static.crates.io/crates/quote/quote-1.0.44.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/serde_json/serde_json-1.0.149.crate https://static.crates.io/crates/strsim/strsim-0.11.1.crate https://static.crates.io/crates/swayipc-types/swayipc-types-1.4.3.crate https://static.crates.io/crates/swayipc/swayipc-3.0.3.crate https://static.crates.io/crates/syn/syn-2.0.114.crate https://static.crates.io/crates/thiserror-impl/thiserror-impl-2.0.18.crate https://static.crates.io/crates/thiserror/thiserror-2.0.18.crate https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.22.crate https://static.crates.io/crates/zmij/zmij-1.0.19.crate
|
||||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d
|
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 rust c5ae4c9b5eca97bd7fc77fede663873f rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 983bdde2432d878045ca2524b9ff935d
|
||||||
_md5_=297e96bbda3e23bd0794ce42ce6c21e3
|
_md5_=56379f97eb005f302393ba156c7662d9
|
||||||
|
|||||||
12
metadata/md5-cache/gui-apps/hyprmoncfg-1.6.0
Normal file
12
metadata/md5-cache/gui-apps/hyprmoncfg-1.6.0
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
BDEPEND=>=dev-lang/go-1.26.1 >=dev-lang/go-1.24.11:= app-arch/unzip virtual/pkgconfig
|
||||||
|
DEFINED_PHASES=compile install test unpack
|
||||||
|
DESCRIPTION=Terminal-first monitor configurator and auto-switching daemon for Hyprland
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://github.com/crmne/hyprmoncfg
|
||||||
|
INHERIT=desktop go-module systemd
|
||||||
|
KEYWORDS=-* ~amd64 ~arm64
|
||||||
|
LICENSE=Apache-2.0 BSD MIT
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://github.com/crmne/hyprmoncfg/archive/refs/tags/v1.6.0.tar.gz -> hyprmoncfg-1.6.0.tar.gz https://github.com/crmne/hyprmoncfg/releases/download/v1.6.0/hyprmoncfg-1.6.0-deps.tar.xz
|
||||||
|
_eclasses_=desktop 26d57169ca094c04be416993844ec8bc toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 sysroot 4c36abaf94ebd3ab32f8abea9a444121 go-env fca4e820393c2eac25a944be8bdf6a3a go-module 22cfabf3120ed3f7bcd8b4a7697fbfba systemd a964c0cbe818b5729da1dbfcee5be861
|
||||||
|
_md5_=b608bb8c63f3f399475b8ac9e02a7e13
|
||||||
@@ -10,6 +10,6 @@ KEYWORDS=~amd64
|
|||||||
LICENSE=CC0-1.0 GPL-3+ MIT
|
LICENSE=CC0-1.0 GPL-3+ MIT
|
||||||
RDEPEND=>=gui-libs/wlroots-0.19:=[libinput,session,X?] <gui-libs/wlroots-0.20:=[X?] dev-libs/libinput:= dev-libs/wayland >=gui-libs/scenefx-0.4.1 dev-libs/libpcre2 x11-libs/libxkbcommon dev-libs/cJSON X? ( x11-libs/libxcb:= x11-libs/xcb-util-wm ) X? ( x11-base/xwayland )
|
RDEPEND=>=gui-libs/wlroots-0.19:=[libinput,session,X?] <gui-libs/wlroots-0.20:=[X?] dev-libs/libinput:= dev-libs/wayland >=gui-libs/scenefx-0.4.1 dev-libs/libpcre2 x11-libs/libxkbcommon dev-libs/cJSON X? ( x11-libs/libxcb:= x11-libs/xcb-util-wm ) X? ( x11-base/xwayland )
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/mangowm/mango/archive/refs/tags/0.14.0.tar.gz -> mangowm-0.14.0.tar.gz
|
SRC_URI=https://github.com/mangowm/mango/archive/refs/tags/0.14.2.tar.gz -> mangowm-0.14.2.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
|
_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_=4765b49af15a83ae0cbb199653620aca
|
_md5_=4765b49af15a83ae0cbb199653620aca
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
BDEPEND=virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.28.5
|
BDEPEND=virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||||
DEFINED_PHASES=compile configure install prepare test
|
DEFINED_PHASES=compile configure install prepare test
|
||||||
DEPEND=dev-cpp/gtkmm:2.4 media-libs/lv2 sci-libs/fftw:3.0=
|
DEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/pangomm:1.4 dev-libs/libsigc++:2 media-libs/lv2 sci-libs/fftw:3.0=
|
||||||
DESCRIPTION=An LV2 audio plugin implementing a powerful and flexible parametric equalizer
|
DESCRIPTION=An LV2 audio plugin implementing a powerful and flexible parametric equalizer
|
||||||
EAPI=8
|
EAPI=8
|
||||||
HOMEPAGE=https://eq10q.sourceforge.net/
|
HOMEPAGE=https://eq10q.sourceforge.net/
|
||||||
INHERIT=cmake
|
INHERIT=cmake
|
||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
LICENSE=GPL-2+
|
LICENSE=GPL-2+
|
||||||
RDEPEND=dev-cpp/gtkmm:2.4 media-libs/lv2 sci-libs/fftw:3.0=
|
RDEPEND=dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/pangomm:1.4 dev-libs/libsigc++:2 media-libs/lv2 sci-libs/fftw:3.0=
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://download.sourceforge.net/project/eq10q/eq10q-2.2.tar.gz
|
SRC_URI=https://download.sourceforge.net/project/eq10q/eq10q-2.2.tar.gz
|
||||||
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 3395ce6618fc5c7af03335471b896644
|
_eclasses_=toolchain-funcs 58a918e3a42d0156f010dcfd43725be5 flag-o-matic fd3558f73f6503093adee69adf41020d multiprocessing 45d0620f25c2f063ad6276ecd9ed9399 ninja-utils d063ea1900a793f93eb095010d6d9156 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 3395ce6618fc5c7af03335471b896644
|
||||||
_md5_=926fbf580ad6fd11ad82457671a628a4
|
_md5_=6a244d99793bcf47c7b7b172e5d79b1b
|
||||||
@@ -9,6 +9,6 @@ LICENSE=MPL-2.0
|
|||||||
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/fontconfig media-libs/freetype media-libs/mesa net-print/cups sys-apps/dbus sys-libs/glibc x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango
|
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/fontconfig media-libs/freetype media-libs/mesa net-print/cups sys-apps/dbus sys-libs/glibc x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango
|
||||||
RESTRICT=mirror strip
|
RESTRICT=mirror strip
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=amd64? ( https://github.com/zen-browser/desktop/releases/download/1.20.1b/zen.linux-x86_64.tar.xz -> zen-bin-1.20.1b-amd64.tar.xz ) arm64? ( https://github.com/zen-browser/desktop/releases/download/1.20.1b/zen.linux-aarch64.tar.xz -> zen-bin-1.20.1b-arm64.tar.xz )
|
SRC_URI=amd64? ( https://github.com/zen-browser/desktop/releases/download/1.20.2b/zen.linux-x86_64.tar.xz -> zen-bin-1.20.2b-amd64.tar.xz ) arm64? ( https://github.com/zen-browser/desktop/releases/download/1.20.2b/zen.linux-aarch64.tar.xz -> zen-bin-1.20.2b-arm64.tar.xz )
|
||||||
_eclasses_=desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
_eclasses_=desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||||
_md5_=d7c6da13092b9446a586af8ddf031db2
|
_md5_=d7c6da13092b9446a586af8ddf031db2
|
||||||
@@ -137,7 +137,7 @@ app-admin/terragrunt-bin 0.93.11 0.96.1: A thin wrapper for Terraform
|
|||||||
app-admin/tflint 0.58.0 0.60.0: Terraform linter
|
app-admin/tflint 0.58.0 0.60.0: Terraform linter
|
||||||
app-admin/yolk 0.3.8: Templated dotfile management without template files
|
app-admin/yolk 0.3.8: Templated dotfile management without template files
|
||||||
app-alternatives/phosh-keyboard 2-r1: sm.puri.OSK0.desktop symlinks
|
app-alternatives/phosh-keyboard 2-r1: sm.puri.OSK0.desktop symlinks
|
||||||
app-arch/brzip 0.3.3: A compression utility based on Brotli algorithm
|
app-arch/brzip 0.3.4: A compression utility based on Brotli algorithm
|
||||||
app-arch/fuse-archive 1.16 1.20: Read-only FUSE file system for mounting archives and compressed files
|
app-arch/fuse-archive 1.16 1.20: Read-only FUSE file system for mounting archives and compressed files
|
||||||
app-arch/libarchive-qt 2.0.8-r1: Qt based archiving solution with libarchive backend
|
app-arch/libarchive-qt 2.0.8-r1: Qt based archiving solution with libarchive backend
|
||||||
app-arch/libzim 9.2.1-r1 9.5.0 9.6.0 9.7.0: ZIM file format: an offline storage solution for content coming from the Web
|
app-arch/libzim 9.2.1-r1 9.5.0 9.6.0 9.7.0: ZIM file format: an offline storage solution for content coming from the Web
|
||||||
@@ -272,6 +272,7 @@ app-misc/cmd-timer 2.1.0 9999: run command at a specific interval
|
|||||||
app-misc/corectrl 1.5.2 9999: Core control application
|
app-misc/corectrl 1.5.2 9999: Core control application
|
||||||
app-misc/countryfetch 0.2.0: A Command-line tool similar to Neofetch for obtaining information about your country
|
app-misc/countryfetch 0.2.0: A Command-line tool similar to Neofetch for obtaining information about your country
|
||||||
app-misc/cpufetch 1.07: Simplistic yet fancy CPU architecture fetching tool
|
app-misc/cpufetch 1.07: Simplistic yet fancy CPU architecture fetching tool
|
||||||
|
app-misc/crush 0.75.0: The glamourous AI coding agent for your favourite terminal
|
||||||
app-misc/dbf 0.9.0: Command line tool to read the content of dBASE III, IV, and 5.0 files
|
app-misc/dbf 0.9.0: Command line tool to read the content of dBASE III, IV, and 5.0 files
|
||||||
app-misc/diff-so-fancy 1.4.4: Good-lookin' diffs. Actually... nah... The best-lookin' diffs
|
app-misc/diff-so-fancy 1.4.4: Good-lookin' diffs. Actually... nah... The best-lookin' diffs
|
||||||
app-misc/doublecmd 1.1.31 1.1.32 1.2.3: Cross Platform file manager
|
app-misc/doublecmd 1.1.31 1.1.32 1.2.3: Cross Platform file manager
|
||||||
@@ -602,8 +603,8 @@ 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/opencilk-bin 1.1 2.1: The OpenCilk concurrency platform for parallel programming
|
||||||
dev-lang/quickjs 2025.09.13.2: Small embeddable Javascript engine
|
dev-lang/quickjs 2025.09.13.2: 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 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-r5 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-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-bootstrap 1.0: A virtual package providing a base Swift to bootstrap future versions with.
|
dev-lang/swift-bootstrap 1.0 1.1: A virtual package providing a base Swift to bootstrap future versions with.
|
||||||
dev-lang/uiua 0.16.2 0.17.2 0.18.1: A stack-based array programming language
|
dev-lang/uiua 0.16.2 0.17.2 0.18.1: A stack-based array programming language
|
||||||
dev-lang/wabt 1.0.37: The WebAssembly Binary Toolkit
|
dev-lang/wabt 1.0.37: The WebAssembly Binary Toolkit
|
||||||
dev-libs/M_CLI2 3.2.0: M_CLI2 - parse Unix-like command line arguments from Fortran
|
dev-libs/M_CLI2 3.2.0: M_CLI2 - parse Unix-like command line arguments from Fortran
|
||||||
@@ -1133,7 +1134,7 @@ dev-util/insomnia-bin 2023.5.8: HTTP and GraphQL client for developers
|
|||||||
dev-util/ios-safari-remote-debug 0_pre20250506: A remote debugger for iOS Safari
|
dev-util/ios-safari-remote-debug 0_pre20250506: A remote debugger for iOS Safari
|
||||||
dev-util/ios-webkit-debug-proxy 1.9.2: A DevTools proxy for iOS devices
|
dev-util/ios-webkit-debug-proxy 1.9.2: A DevTools proxy for iOS devices
|
||||||
dev-util/istyle 1.23_pre20220127: Fast and Free Automatic Formatter for Verilog Source Code
|
dev-util/istyle 1.23_pre20220127: Fast and Free Automatic Formatter for Verilog Source Code
|
||||||
dev-util/juliaup 1.20.2: Julia installer and version multiplexer
|
dev-util/juliaup 1.20.4: Julia installer and version multiplexer
|
||||||
dev-util/kubetail 0.15.0 0.16.0 0.17.0: Real-time logging dashboard for Kubernetes
|
dev-util/kubetail 0.15.0 0.16.0 0.17.0: Real-time logging dashboard for Kubernetes
|
||||||
dev-util/lemminx-bin 0.27.0 0.27.1: XML Language Server
|
dev-util/lemminx-bin 0.27.0 0.27.1: XML Language Server
|
||||||
dev-util/libtypec-utils 0.5.2: Library to interface with USB Type-C/Power Delivery devices
|
dev-util/libtypec-utils 0.5.2: Library to interface with USB Type-C/Power Delivery devices
|
||||||
@@ -1348,7 +1349,7 @@ gui-apps/gtklock 4.0.0: GTK-based lockscreen for Wayland
|
|||||||
gui-apps/gtklock-extras 9999: Gtklock modules
|
gui-apps/gtklock-extras 9999: Gtklock modules
|
||||||
gui-apps/heh 0.6.3: A cross-platform terminal UI used for modifying file data in hex or ASCII.
|
gui-apps/heh 0.6.3: A cross-platform terminal UI used for modifying file data in hex or ASCII.
|
||||||
gui-apps/hiprompt-gtk-py 0.8.0 9999: GTK+ Himitsu prompter for Wayland
|
gui-apps/hiprompt-gtk-py 0.8.0 9999: GTK+ Himitsu prompter for Wayland
|
||||||
gui-apps/hyprmoncfg 1.5.1 1.5.2: Terminal-first monitor configurator and auto-switching daemon for Hyprland
|
gui-apps/hyprmoncfg 1.5.1 1.5.2 1.6.0: Terminal-first monitor configurator and auto-switching daemon for Hyprland
|
||||||
gui-apps/hyprnome 0.3.0: GNOME-like workspace switching in Hyprland.
|
gui-apps/hyprnome 0.3.0: GNOME-like workspace switching in Hyprland.
|
||||||
gui-apps/hyprswitch 1.3.1: A CLI/GUI that allows switching between windows in Hyprland
|
gui-apps/hyprswitch 1.3.1: A CLI/GUI that allows switching between windows in Hyprland
|
||||||
gui-apps/intiface-central-bin 2.6.0 2.6.4: Buttplug frontend application
|
gui-apps/intiface-central-bin 2.6.0 2.6.4: Buttplug frontend application
|
||||||
@@ -1444,7 +1445,7 @@ gui-wm/beansprout 1.0.0 9999: A tiling window manager for the river Wayland comp
|
|||||||
gui-wm/cage 0.2.1 0.3.0 9999: A Wayland kiosk
|
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/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
|
gui-wm/kwm 0.3.0 9999: A window manager based on River Wayland compositor
|
||||||
gui-wm/mangowm 0.14.0 9999: wayland compositor based on wlroots and scenefx(dwl but no suckless)
|
gui-wm/mangowm 0.14.2 9999: wayland compositor based on wlroots and scenefx(dwl but no suckless)
|
||||||
gui-wm/miracle-wm 0.9.1: Tiling Wayland compositor based on Mir
|
gui-wm/miracle-wm 0.9.1: Tiling Wayland compositor based on Mir
|
||||||
gui-wm/niri 26.04 9999: Scrollable-tiling Wayland compositor
|
gui-wm/niri 26.04 9999: Scrollable-tiling Wayland compositor
|
||||||
gui-wm/phoc 0.50.0 0.52.0 0.53.0: Wayland compositor for mobile phones
|
gui-wm/phoc 0.50.0 0.52.0 0.53.0: Wayland compositor for mobile phones
|
||||||
@@ -1552,7 +1553,7 @@ media-libs/xrizer 0.3.0-r1 0.5.0 9999: OpenVR over OpenXR compatibility layer
|
|||||||
media-plugins/alsa-sndio 0.2: ALSA PCM to play audio on sndio servers
|
media-plugins/alsa-sndio 0.2: ALSA PCM to play audio on sndio servers
|
||||||
media-plugins/argotlunar-bin 2.06-r2: Argotlunar is a sound granulator. Binary Linux VST
|
media-plugins/argotlunar-bin 2.06-r2: Argotlunar is a sound granulator. Binary Linux VST
|
||||||
media-plugins/dtmediawiki 9999: Wikimedia Commons export plugin for Darktable
|
media-plugins/dtmediawiki 9999: Wikimedia Commons export plugin for Darktable
|
||||||
media-plugins/eq10q 2.2: An LV2 audio plugin implementing a powerful and flexible parametric equalizer
|
media-plugins/eq10q 2.2-r1: An LV2 audio plugin implementing a powerful and flexible parametric equalizer
|
||||||
media-plugins/gimp-avif-plugin 9999: Plug-in for development GIMP 2.99.11 for loading/saving AVIF images.
|
media-plugins/gimp-avif-plugin 9999: Plug-in for development GIMP 2.99.11 for loading/saving AVIF images.
|
||||||
media-plugins/gimp-resynthesizer 3.0_p20260320 3.0.1_p20260408 9999: Suite of GIMP plugins for texture synthesis
|
media-plugins/gimp-resynthesizer 3.0_p20260320 3.0.1_p20260408 9999: Suite of GIMP plugins for texture synthesis
|
||||||
media-plugins/qt-heif-image-plugin 0.3.4: Qt plugin for HEIF images
|
media-plugins/qt-heif-image-plugin 0.3.4: Qt plugin for HEIF images
|
||||||
@@ -2125,7 +2126,7 @@ www-client/torbrowser-launcher 0.3.9: A program to help you securely download an
|
|||||||
www-client/vimb 3.7.0 9999: A fast, lightweight, vim-like browser based on webkit
|
www-client/vimb 3.7.0 9999: A fast, lightweight, vim-like browser based on webkit
|
||||||
www-client/waterfox-bin 6.6.14: A privacy-focused, performance-oriented browser based on Firefox
|
www-client/waterfox-bin 6.6.14: A privacy-focused, performance-oriented browser based on Firefox
|
||||||
www-client/yandex-browser 26.3.1.1088_p1: The web browser from Yandex
|
www-client/yandex-browser 26.3.1.1088_p1: The web browser from Yandex
|
||||||
www-client/zen-bin 1.19.13b 1.20.1b: Zen Browser - A fast, privacy-focused Firefox fork
|
www-client/zen-bin 1.19.13b 1.20.2b: Zen Browser - A fast, privacy-focused Firefox fork
|
||||||
www-misc/dufs 0.40.0 0.46.0: Dufs is a distinctive utility file server
|
www-misc/dufs 0.40.0 0.46.0: Dufs is a distinctive utility file server
|
||||||
www-misc/gitea2rss 0.7.0: Generates RSS feeds from Gitea releases, tags and commits
|
www-misc/gitea2rss 0.7.0: Generates RSS feeds from Gitea releases, tags and commits
|
||||||
www-misc/kiwix-desktop 2.4.0 2.5.1: cross-platform viewer/manager for ZIM archives
|
www-misc/kiwix-desktop 2.4.0 2.5.1: cross-platform viewer/manager for ZIM archives
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
Sat, 06 Jun 2026 17:01:38 +0000
|
Sun, 07 Jun 2026 02:46:24 +0000
|
||||||
|
|||||||
@@ -182,6 +182,7 @@ dev-lang/gnu-apl:postgresql - Use postrgesql
|
|||||||
dev-lang/gnu-apl:python - Build the Python extension lib_gnu_apl.so
|
dev-lang/gnu-apl:python - Build the Python extension lib_gnu_apl.so
|
||||||
dev-lang/gnu-apl:sqlite3 - Use sqlite3
|
dev-lang/gnu-apl:sqlite3 - Use sqlite3
|
||||||
dev-lang/quickjs:lto - Enable Link Time Optimizations (improves performance and decreases size of executables)
|
dev-lang/quickjs:lto - Enable Link Time Optimizations (improves performance and decreases size of executables)
|
||||||
|
dev-lang/swift-bootstrap:binary - Bootstrap from binary (dev-lang/swift-bin:5/10) instead of building from source (dev-lang/swift:5/10).
|
||||||
dev-libs/feedbackd:daemon - Build the feedbackd daemon
|
dev-libs/feedbackd:daemon - Build the feedbackd daemon
|
||||||
dev-libs/hts_engine:speech-tools - use memory allocation/free functions of app-accessibility/speech-tools
|
dev-libs/hts_engine:speech-tools - use memory allocation/free functions of app-accessibility/speech-tools
|
||||||
dev-libs/libdbf:doc - Include documentation
|
dev-libs/libdbf:doc - Include documentation
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
DIST zen-bin-1.19.13b-amd64.tar.xz 90004576 BLAKE2B 9556fe6848293f6836c769ba86ea92a57802152a5801f537f9a7d40a93a8f955bf4beb9e1acd57cfe508a9785b50061f2be55ccbbc41bf5f415607dd370e3b26 SHA512 8f54290679efbf9e3c17a09df267474959cbebcb5f55d864e48023a86753fd32774f5577ffafbdcad7f465b5ee4eb7ffcebddff783721f356c27bfe75ef58cfe
|
DIST zen-bin-1.19.13b-amd64.tar.xz 90004576 BLAKE2B 9556fe6848293f6836c769ba86ea92a57802152a5801f537f9a7d40a93a8f955bf4beb9e1acd57cfe508a9785b50061f2be55ccbbc41bf5f415607dd370e3b26 SHA512 8f54290679efbf9e3c17a09df267474959cbebcb5f55d864e48023a86753fd32774f5577ffafbdcad7f465b5ee4eb7ffcebddff783721f356c27bfe75ef58cfe
|
||||||
DIST zen-bin-1.19.13b-arm64.tar.xz 76901072 BLAKE2B 48e709b258620b6af32968a43118b55087fde557b60c4adbfbc5ef8eab69320114258841553f1cae2501be6b090858251863800c1eb0865c25381725c723d66b SHA512 80962604c1236bdc79987ea97edfe9c4bcdc2349bde3c3843b81ef740f5d11cd0b14607f5f2d03754fac62b3c6b8f3ea68116775c2c85b29705c37e6a2bc8431
|
DIST zen-bin-1.19.13b-arm64.tar.xz 76901072 BLAKE2B 48e709b258620b6af32968a43118b55087fde557b60c4adbfbc5ef8eab69320114258841553f1cae2501be6b090858251863800c1eb0865c25381725c723d66b SHA512 80962604c1236bdc79987ea97edfe9c4bcdc2349bde3c3843b81ef740f5d11cd0b14607f5f2d03754fac62b3c6b8f3ea68116775c2c85b29705c37e6a2bc8431
|
||||||
DIST zen-bin-1.20.1b-amd64.tar.xz 90408340 BLAKE2B fc7b43338483b9bfd57c81b83d8130ec155c10de6617e521950156e254bf7347b1b0db17c142f8184b706f3f7d6a6821b1e9623dd8bbe4accab99ba0274f8157 SHA512 8ec169d96877ea13ca0d3c425ca863103f9d82b984a0bab546a40daa9f63ed9c0ee767581e7e835d24b4ab0528205ee1ad80273554cf54e69dad83a4495c632d
|
DIST zen-bin-1.20.2b-amd64.tar.xz 90456156 BLAKE2B a78e422f0badea5f71ba23ae81fed7000167ff4da11a80dbfb539fef65dee872faa4ef4a963dc21d2449c41982457bc7fceb5343966c997d13591400831aebb3 SHA512 8ed759f45e226052357f58be9b98d8e9adbd59683c40ecb8a7a526cc641990b923b6eb0d7636e7b82bf5f2c7cd4fb72922aeecbb6e40971d1f1ce5f192d0afec
|
||||||
DIST zen-bin-1.20.1b-arm64.tar.xz 77665368 BLAKE2B a6fb2c03df67b419c3a08fa705d6310570af620742b80b189a3d62bb2475f077eb614f7d9024580ff054356ec7b3a29746155e542edb982978fe30ea4655e743 SHA512 14583684bacb2c3b933ae0e3a2adec29aa0ed37d6ca6296d88e59ce42bf9ed01b6226231368a46d28fcd310332c05b8d603a0101f749bef306b8a8ce6d1954bc
|
DIST zen-bin-1.20.2b-arm64.tar.xz 77566552 BLAKE2B 12050813fac9de21ee35ecd7e2ed4c89af07c727963e802edf6df76aa45ff55c6fe8e894914a7b04f748d638271e92dd9ca32353412a5080482b5abd5dcf9d28 SHA512 4f9843507b09864a7b39022094b62f52b5f35e85b70bc5963c97a3efc1e747da976e98174acd987cfb2f5b6e4e6cd9b6c8f9ec5babff0b786e4cd131b0399317
|
||||||
|
|||||||
Reference in New Issue
Block a user