Compare commits

...

6 Commits

Author SHA1 Message Date
Repository mirror & CI
8aeedf13dc 2026-02-11 17:16:13 UTC 2026-02-11 17:16:13 +00:00
Repository mirror & CI
da7f79367b Merge updates from master 2026-02-11 17:16:12 +00:00
Zen
0e1fc53cbd dev-python/prometheus_exporter: update 9999 to use python 3.14
also use 9999 version of zenlib

Signed-off-by: Zen <z@pyl.onl>
2026-02-11 09:48:48 -06:00
Zen
4be1790225 dev-python/prometheus_exporter: add 1.3.0 with python 3.14 support
also add some other archs this has been tested with

Signed-off-by: Zen <z@pyl.onl>
2026-02-11 09:47:57 -06:00
Repository mirror & CI
e42ed78a79 2026-02-11 14:31:32 UTC 2026-02-11 14:31:33 +00:00
Saveliy Boyarchuk
01665408dc gui-wm/mangowc: add 0.12.1
Signed-off-by: Saveliy Boyarchuk <sav.boyar@gmail.com>
2026-02-11 14:16:57 +03:00
357 changed files with 500 additions and 360 deletions

View File

@@ -1,2 +1,3 @@
DIST prometheus_exporter-1.0.0.tar.gz 12185 BLAKE2B 8224ef1031239502a9e57be2128d03c01cc31988dd821f486f47223270e6cc7ca42116d7a4d5d4ec87b96a44b9d85fe7391e528fc4f6e7b647cbf76cc10f04d8 SHA512 1aa9f2a4f40863ba89bbdce83ae8153374010cdb51ed2d58923d1406a20c124df67a232406fba1d316e440d8240986fad07dfbe8e40fbb59b921558293bb6489
DIST prometheus_exporter-1.1.0.tar.gz 15248 BLAKE2B a3cee9c51346c607928e9ee693dd0ecdabd0e261a369acccecc7ab5fc593994f96e7242c9225309ddaa19dfa5a6efeb80376f95f038bc6fa5cba917ae86215a1 SHA512 f08af3157715eac288763d86bfe33bd8bf7a459877daa0778477ab06ee1de0e3726b671595ac18a4116a72e72ec578204ab86e464851700c2eb4cd53dc92ad5e
DIST prometheus_exporter-1.3.0.tar.gz 15543 BLAKE2B 231bb05eebfd86a3fb27b975cf5fe3b63d73e6186b38463f92d1ab22901e28a36037c2180f93f03844fa90551630b39c87c5aecd9196f2209ea0ce92752181cb SHA512 2d5c360a9c576cfee9c2791f21a48a907bfbcac5bf8d90bad263040ba52a67cd3a212bc63a20db6433c1dfa40c2fa29b7576e73540b58ffd1285a7e842903722

View File

@@ -0,0 +1,26 @@
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
DESCRIPTION="Python Prometheus exporter library"
HOMEPAGE="https://github.com/desultory/prometheus_exporter"
SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
RDEPEND="
>=dev-python/zenlib-2.4.1[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.9.4[${PYTHON_USEDEP}]
"
distutils_enable_tests unittest
python_test() {
eunittest tests/
}

View File

@@ -1,10 +1,10 @@
# Copyright 2025 Gentoo Authors
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 git-r3
DESCRIPTION="Python Prometheus exporter library"
@@ -15,7 +15,7 @@ LICENSE="GPL-2"
SLOT="0"
RDEPEND="
>=dev-python/zenlib-2.4.1[${PYTHON_USEDEP}]
>=dev-python/zenlib-9999[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.9.4[${PYTHON_USEDEP}]
"

View File

@@ -1 +1,2 @@
DIST mangowc-0.12.0.tar.gz 411340 BLAKE2B 37a1b73d81eb4ef72f47f610be4dfd118eadecdfb87d9fa4c1c9500cf81b702699b2749a3d59fa0cf0d02c7a632ca1c23a19800267d8b214ecc2e6b0bc7a89e8 SHA512 056b913bf857dcafe31bf1d06eafd2566960ee5b9dd6a45fdf850844f6456bcfa130028d5b7a46c694f271954ec089e15bfd181527313336cedf3442de84a27c
DIST mangowc-0.12.1.tar.gz 413299 BLAKE2B aff127984c5f04c551733c9ce90d9381cd8bd8804b231f936fbb2782aac6e88b6725b71a7a5cb12d917eef625f4a57e7972d351cfc59289866db83767fc3e960 SHA512 a681b60f1380349818529797172ed75d504a72ea26b2a921c897a220f3d9167b1e9da05755c3126fbd3cf9f71d1050f549db0e0f5584b43d9f91f056692f8dce

View File

@@ -0,0 +1,81 @@
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/DreamMaoMao/mangowc.git"
inherit git-r3
else
SRC_URI="https://github.com/DreamMaoMao/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${PV}"
KEYWORDS="~amd64"
fi
DESCRIPTION="wayland compositor based on wlroots and scenefx(dwl but no suckless)"
HOMEPAGE="https://github.com/DreamMaoMao/maomaowm.git"
LICENSE="CC0-1.0 GPL-3+ MIT"
SLOT="0"
IUSE="X"
COMMON_DEPEND="
>=gui-libs/wlroots-0.19:=[libinput,session,X?]
<gui-libs/wlroots-0.20:=[X?]
"
COMMON_DEPEND+="
dev-libs/libinput:=
dev-libs/wayland
>=gui-libs/scenefx-0.4.1
dev-libs/libpcre2
x11-libs/libxkbcommon
X? (
x11-libs/libxcb:=
x11-libs/xcb-util-wm
)
"
RDEPEND="
${COMMON_DEPEND}
X? (
x11-base/xwayland
)
"
# uses <linux/input-event-codes.h>
DEPEND="
${COMMON_DEPEND}
sys-kernel/linux-headers
"
BDEPEND="
>=dev-libs/wayland-protocols-1.32
>=dev-util/wayland-scanner-1.23
>=dev-build/meson-0.60.0
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
$(meson_feature X xwayland)
)
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}
pkg_postinst() {
elog "If you have installed maomaowm before, be sure to remove the package,"
elog "since maomaowm was renamed to mangowc."
elog ""
elog "Default config path was changed to \$XDG_CONFIG_DIR/mango"
}

View File

@@ -11,5 +11,5 @@ LICENSE=GPL-3+ Apache-2.0-with-LLVM-exceptions MIT Unicode-DFS-2016 || ( Apache-
RDEPEND=gtk? ( dev-libs/glib:2= )
SLOT=0
SRC_URI=https://codeberg.org/vimproved/blahajdots/releases/download/v0.6.1/blahajdots-0.6.1.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=5de9414bc9f87dbdf92295efd9e9b82c

View File

@@ -10,5 +10,5 @@ LICENSE=GPL-3+ Apache-2.0-with-LLVM-exceptions MIT Unicode-DFS-2016 || ( Apache-
PROPERTIES=live
RDEPEND=gtk? ( dev-libs/glib:2= )
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=5de9414bc9f87dbdf92295efd9e9b82c

View File

@@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD Boost-1.0 ISC MIT MPL-2.0 Unicode-3.0 openssl
RDEPEND=app-crypt/pinentry
SLOT=0
SRC_URI=https://github.com/doy/rbw/archive/refs/tags/1.14.1.tar.gz -> rbw-1.14.1.tar.gz https://github.com/pastalian/distfiles/releases/download/rbw-1.14.1/rbw-1.14.1-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=d2d2907c06e0f9e0a1ee96c0f03e64e7

View File

@@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD Boost-1.0 ISC MIT MPL-2.0 Unicode-3.0 openssl
RDEPEND=app-crypt/pinentry
SLOT=0
SRC_URI=https://github.com/doy/rbw/archive/refs/tags/1.15.0.tar.gz -> rbw-1.15.0.tar.gz https://github.com/pastalian/distfiles/releases/download/rbw-1.15.0/rbw-1.15.0-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=a2bccc0e2c9e4c209f25938a260dc859

View File

@@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD Boost-1.0 ISC MIT MPL-2.0 Unicode-3.0 openssl
PROPERTIES=live
RDEPEND=app-crypt/pinentry
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=a2bccc0e2c9e4c209f25938a260dc859

View File

@@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( llvm_slot_17 llvm_slot_18 llvm_slot_19 )
RESTRICT=test
SLOT=0
SRC_URI=https://github.com/cortex/ripasso/archive/refs/tags/release-0.7.0.tar.gz -> ripasso-0.7.0.tar.gz https://github.com/freijon/ripasso/releases/download/release-0.7.0/ripasso-0.7.0-crates.tar.xz
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 llvm-r1 59c52dab9ddf3ca54e79003177507e97 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb plocale 980baab6fd56db6149d0a9396e0b21c9
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 llvm-r1 59c52dab9ddf3ca54e79003177507e97 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb plocale 980baab6fd56db6149d0a9396e0b21c9
_md5_=d2a2e41d9a6d134b96abbd1c227f85e5

View File

@@ -12,5 +12,5 @@ RDEPEND=app-arch/bzip2 app-arch/bzip3 app-arch/xz-utils virtual/zlib:=
REQUIRED_USE=^^ ( llvm_slot_17 llvm_slot_18 llvm_slot_19 )
SLOT=0
SRC_URI=https://github.com/ouch-org/ouch/archive/refs/tags/0.6.1.tar.gz -> ouch-0.6.1.tar.gz https://github.com/freijon/ouch/releases/download/0.6.1/ouch-0.6.1-crates.tar.xz
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 llvm-r1 59c52dab9ddf3ca54e79003177507e97 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=llvm-utils e7edb4086e31c8537574b263d899f826 llvm-r1 59c52dab9ddf3ca54e79003177507e97 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=2f5888005228607e1ef5ce30097ed2bf

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -12,5 +12,5 @@ LICENSE=MIT Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0 Unico
RDEPEND=app-backup/restic dev-libs/glib:2 net-libs/libsoup:3.0 net-libs/webkit-gtk:4.1 x11-base/xorg-server x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[wayland] x11-libs/pango
SLOT=0
SRC_URI=https://github.com/emuell/restic-browser/archive/refs/tags/v0.3.3.tar.gz -> restic-browser-0.3.3.tar.gz https://gitlab.com/api/v4/projects/64331580/packages/generic/restic-browser/0.3.3/restic-browser-0.3.3-node_modules.tar.xz https://gitlab.com/api/v4/projects/64331580/packages/generic/restic-browser/0.3.3/restic-browser-0.3.3-crates.tar.xz https://github.com/tauri-apps/fix-path-env-rs/archive/8481725b7ebfc56cdb052d522517421242eac36b.tar.gz -> fix-path-env-rs-8481725b7ebfc56cdb052d522517421242eac36b.gh.tar.gz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=e929df68d6c36fb604831f8194b3ce5b

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -12,5 +12,5 @@ LICENSE=MIT Apache-2.0 MIT Unicode-3.0
RDEPEND=dev-libs/icu
SLOT=0
SRC_URI=https://github.com/microsoft/edit/archive/refs/tags/v1.2.0.tar.gz -> edit-1.2.0.tar.gz https://github.com/freijon/edit/releases/download/v1.2.0/edit-1.2.0-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=2d6f1f2052850a1e34284731a0ab0e61

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -11,5 +11,5 @@ LICENSE=0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions Artistic-2 BSD BSD-2 Boo
RDEPEND=x11-libs/gtk+:3 media-libs/fontconfig virtual/zlib:= x11-libs/libxcb:= dev-libs/libgit2:=
SLOT=0
SRC_URI=https://github.com/lapce/lapce/archive/v0.4.2.tar.gz -> lapce-0.4.2.tar.gz https://github.com/lapce/lapce/releases/download/v0.4.2/vendor.tar.gz -> lapce-0.4.2-vendor.tar.gz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_md5_=786884ccd24949c8afc665f9ac4e4f89

View File

@@ -10,5 +10,5 @@ LICENSE=( Apache-2.0 ( MIT 0BSD ) Apache-2.0-with-LLVM-exceptions Artistic-2 BSD
PROPERTIES=live
RDEPEND=x11-libs/gtk+:3 media-libs/fontconfig
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc git-r3 875eb471682d3e1f18da124be97dcc81 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc git-r3 875eb471682d3e1f18da124be97dcc81 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_md5_=66f11d112b28aabc62a41e18ebce24d5

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

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

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -8,5 +8,5 @@ IUSE=debug
LICENSE=GPL-3 MIT MPL-2.0 Unicode-DFS-2016 || ( Apache-2.0 Boost-1.0 )
PROPERTIES=live
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=743f16f7c28ff060062756a7f2860e72

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -8,5 +8,5 @@ IUSE=debug
LICENSE=EUPL-1.2 Apache-2.0 MIT MPL-2.0 Unicode-3.0
PROPERTIES=live
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=825f55ff1887c2efd4740ef263482049

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=GPL-3 MIT MPL-2.0 Unicode-DFS-2016
SLOT=0
SRC_URI=https://crates.io/api/v1/crates/anstream/0.6.14/download -> anstream-0.6.14.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.4/download -> anstyle-parse-0.2.4.crate https://crates.io/api/v1/crates/anstyle-query/1.0.3/download -> anstyle-query-1.0.3.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.3/download -> anstyle-wincon-3.0.3.crate https://crates.io/api/v1/crates/anstyle/1.0.7/download -> anstyle-1.0.7.crate https://crates.io/api/v1/crates/anyhow/1.0.86/download -> anyhow-1.0.86.crate https://crates.io/api/v1/crates/cc/1.0.98/download -> cc-1.0.98.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/4.5.4/download -> clap-4.5.4.crate https://crates.io/api/v1/crates/clap_builder/4.5.2/download -> clap_builder-4.5.2.crate https://crates.io/api/v1/crates/clap_derive/4.5.4/download -> clap_derive-4.5.4.crate https://crates.io/api/v1/crates/clap_lex/0.7.0/download -> clap_lex-0.7.0.crate https://crates.io/api/v1/crates/colorchoice/1.0.1/download -> colorchoice-1.0.1.crate https://crates.io/api/v1/crates/colored/2.1.0/download -> colored-2.1.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hidapi/2.6.1/download -> hidapi-2.6.1.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.0/download -> is_terminal_polyfill-1.70.0.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.155/download -> libc-0.2.155.crate https://crates.io/api/v1/crates/pkg-config/0.3.30/download -> pkg-config-0.3.30.crate https://crates.io/api/v1/crates/proc-macro2/1.0.85/download -> proc-macro2-1.0.85.crate https://crates.io/api/v1/crates/quote/1.0.36/download -> quote-1.0.36.crate https://crates.io/api/v1/crates/rustversion/1.0.17/download -> rustversion-1.0.17.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/strum/0.26.2/download -> strum-0.26.2.crate https://crates.io/api/v1/crates/strum_macros/0.26.3/download -> strum_macros-0.26.3.crate https://crates.io/api/v1/crates/syn/2.0.66/download -> syn-2.0.66.crate https://crates.io/api/v1/crates/unicode-ident/1.0.12/download -> unicode-ident-1.0.12.crate https://crates.io/api/v1/crates/utf8parse/0.2.1/download -> utf8parse-0.2.1.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.crate https://crates.io/api/v1/crates/windows-sys/0.52.0/download -> windows-sys-0.52.0.crate https://crates.io/api/v1/crates/windows-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.5/download -> windows-targets-0.52.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.5/download -> windows_aarch64_gnullvm-0.52.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.5/download -> windows_aarch64_msvc-0.52.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.5/download -> windows_i686_gnu-0.52.5.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.5/download -> windows_i686_gnullvm-0.52.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.5/download -> windows_i686_msvc-0.52.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.5/download -> windows_x86_64_gnu-0.52.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.5/download -> windows_x86_64_gnullvm-0.52.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.5/download -> windows_x86_64_msvc-0.52.5.crate https://github.com/dkbednarczyk/mxw/archive/v0.1.2.tar.gz -> mxw-0.1.2.tar.gz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=db2411c9eadfdb081fd04ed575f1c058

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=GPL-3 MIT MPL-2.0 Unicode-DFS-2016
SLOT=0
SRC_URI=https://crates.io/api/v1/crates/anstream/0.6.14/download -> anstream-0.6.14.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.4/download -> anstyle-parse-0.2.4.crate https://crates.io/api/v1/crates/anstyle-query/1.0.3/download -> anstyle-query-1.0.3.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.3/download -> anstyle-wincon-3.0.3.crate https://crates.io/api/v1/crates/anstyle/1.0.7/download -> anstyle-1.0.7.crate https://crates.io/api/v1/crates/anyhow/1.0.86/download -> anyhow-1.0.86.crate https://crates.io/api/v1/crates/cc/1.0.98/download -> cc-1.0.98.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/4.5.4/download -> clap-4.5.4.crate https://crates.io/api/v1/crates/clap_builder/4.5.2/download -> clap_builder-4.5.2.crate https://crates.io/api/v1/crates/clap_derive/4.5.4/download -> clap_derive-4.5.4.crate https://crates.io/api/v1/crates/clap_lex/0.7.0/download -> clap_lex-0.7.0.crate https://crates.io/api/v1/crates/colorchoice/1.0.1/download -> colorchoice-1.0.1.crate https://crates.io/api/v1/crates/colored/3.0.0/download -> colored-3.0.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hidapi/2.6.1/download -> hidapi-2.6.1.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.0/download -> is_terminal_polyfill-1.70.0.crate https://crates.io/api/v1/crates/libc/0.2.155/download -> libc-0.2.155.crate https://crates.io/api/v1/crates/pkg-config/0.3.30/download -> pkg-config-0.3.30.crate https://crates.io/api/v1/crates/proc-macro2/1.0.85/download -> proc-macro2-1.0.85.crate https://crates.io/api/v1/crates/quote/1.0.36/download -> quote-1.0.36.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/strum/0.27.2/download -> strum-0.27.2.crate https://crates.io/api/v1/crates/strum_macros/0.27.2/download -> strum_macros-0.27.2.crate https://crates.io/api/v1/crates/syn/2.0.66/download -> syn-2.0.66.crate https://crates.io/api/v1/crates/unicode-ident/1.0.12/download -> unicode-ident-1.0.12.crate https://crates.io/api/v1/crates/utf8parse/0.2.1/download -> utf8parse-0.2.1.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.crate https://crates.io/api/v1/crates/windows-sys/0.52.0/download -> windows-sys-0.52.0.crate https://crates.io/api/v1/crates/windows-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows-targets/0.52.5/download -> windows-targets-0.52.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.5/download -> windows_aarch64_gnullvm-0.52.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.5/download -> windows_aarch64_msvc-0.52.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.5/download -> windows_i686_gnu-0.52.5.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.5/download -> windows_i686_gnullvm-0.52.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.5/download -> windows_i686_msvc-0.52.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.5/download -> windows_x86_64_gnu-0.52.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.5/download -> windows_x86_64_gnullvm-0.52.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.5/download -> windows_x86_64_msvc-0.52.5.crate https://github.com/dkbednarczyk/mxw/archive/v0.2.1.tar.gz -> mxw-0.2.1.tar.gz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=19fe3a2407c3514c3c93bf7ec63f9244

File diff suppressed because one or more lines are too long

View File

@@ -11,5 +11,5 @@ RDEPEND=|| ( app-shells/fzf app-misc/skim )
REQUIRED_USE=test? ( command-execution )
RESTRICT=!test? ( test )
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb edo a5e294016aa84979fcb2459749eb80b2 git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb edo a5e294016aa84979fcb2459749eb80b2 git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=10bcc5a603fd229e7bf108fa1016a7c4

View File

@@ -12,5 +12,5 @@ RDEPEND=app-arch/zstd:=
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/o2sh/onefetch/archive/refs/tags/2.26.1.tar.gz -> onefetch-2.26.1.gh.tar.gz https://home.cit.tum.de/~salu/distfiles/onefetch-2.26.1-crates.tar.xz https://home.cit.tum.de/~salu/distfiles/onefetch-2.26.1-shellcomp.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=851c5d6695b8095da5d8473ae4fc072e

File diff suppressed because one or more lines are too long

View File

@@ -8,5 +8,5 @@ IUSE=debug
LICENSE=Apache-2.0 MIT Apache-2.0 MIT Unicode-DFS-2016
PROPERTIES=live
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=592b465db18326576976d960f25e9adc

File diff suppressed because one or more lines are too long

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=BlueOak-1.0.0 MIT Unicode-DFS-2016
SLOT=0
SRC_URI=https://github.com/lhvy/pipes-rs/archive/refs/tags/v1.6.4.tar.gz -> pipes-rs-1.6.4.tar.gz https://crates.io/api/v1/crates/anyhow/1.0.75/download -> anyhow-1.0.75.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.4.1/download -> bitflags-2.4.1.crate https://crates.io/api/v1/crates/cc/1.0.83/download -> cc-1.0.83.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/crossterm/0.27.0/download -> crossterm-0.27.0.crate https://crates.io/api/v1/crates/crossterm_winapi/0.9.1/download -> crossterm_winapi-0.9.1.crate https://crates.io/api/v1/crates/equivalent/1.0.1/download -> equivalent-1.0.1.crate https://crates.io/api/v1/crates/hashbrown/0.14.1/download -> hashbrown-0.14.1.crate https://crates.io/api/v1/crates/home/0.5.5/download -> home-0.5.5.crate https://crates.io/api/v1/crates/indexmap/2.0.2/download -> indexmap-2.0.2.crate https://crates.io/api/v1/crates/libc/0.2.149/download -> libc-0.2.149.crate https://crates.io/api/v1/crates/libmimalloc-sys/0.1.35/download -> libmimalloc-sys-0.1.35.crate https://crates.io/api/v1/crates/lock_api/0.4.10/download -> lock_api-0.4.10.crate https://crates.io/api/v1/crates/log/0.4.20/download -> log-0.4.20.crate https://crates.io/api/v1/crates/memchr/2.6.4/download -> memchr-2.6.4.crate https://crates.io/api/v1/crates/mimalloc/0.1.39/download -> mimalloc-0.1.39.crate https://crates.io/api/v1/crates/mio/0.8.8/download -> mio-0.8.8.crate https://crates.io/api/v1/crates/once_cell/1.18.0/download -> once_cell-1.18.0.crate https://crates.io/api/v1/crates/oorandom/11.1.3/download -> oorandom-11.1.3.crate https://crates.io/api/v1/crates/parking_lot/0.12.1/download -> parking_lot-0.12.1.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.8/download -> parking_lot_core-0.9.8.crate https://crates.io/api/v1/crates/proc-macro2/1.0.69/download -> proc-macro2-1.0.69.crate https://crates.io/api/v1/crates/quote/1.0.33/download -> quote-1.0.33.crate https://crates.io/api/v1/crates/redox_syscall/0.3.5/download -> redox_syscall-0.3.5.crate https://crates.io/api/v1/crates/scopeguard/1.2.0/download -> scopeguard-1.2.0.crate https://crates.io/api/v1/crates/serde/1.0.189/download -> serde-1.0.189.crate https://crates.io/api/v1/crates/serde_derive/1.0.189/download -> serde_derive-1.0.189.crate https://crates.io/api/v1/crates/serde_spanned/0.6.3/download -> serde_spanned-0.6.3.crate https://crates.io/api/v1/crates/signal-hook-mio/0.2.3/download -> signal-hook-mio-0.2.3.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.1/download -> signal-hook-registry-1.4.1.crate https://crates.io/api/v1/crates/signal-hook/0.3.17/download -> signal-hook-0.3.17.crate https://crates.io/api/v1/crates/smallvec/1.11.1/download -> smallvec-1.11.1.crate https://crates.io/api/v1/crates/syn/2.0.38/download -> syn-2.0.38.crate https://crates.io/api/v1/crates/tincture/1.0.0/download -> tincture-1.0.0.crate https://crates.io/api/v1/crates/toml/0.8.2/download -> toml-0.8.2.crate https://crates.io/api/v1/crates/toml_datetime/0.6.3/download -> toml_datetime-0.6.3.crate https://crates.io/api/v1/crates/toml_edit/0.20.2/download -> toml_edit-0.20.2.crate https://crates.io/api/v1/crates/unicode-ident/1.0.12/download -> unicode-ident-1.0.12.crate https://crates.io/api/v1/crates/unicode-width/0.1.11/download -> unicode-width-0.1.11.crate https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download -> wasi-0.11.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-sys/0.48.0/download -> windows-sys-0.48.0.crate https://crates.io/api/v1/crates/windows-targets/0.48.5/download -> windows-targets-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download -> windows_aarch64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download -> windows_aarch64_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download -> windows_i686_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download -> windows_i686_msvc-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download -> windows_x86_64_gnu-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download -> windows_x86_64_gnullvm-0.48.5.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download -> windows_x86_64_msvc-0.48.5.crate https://crates.io/api/v1/crates/winnow/0.5.17/download -> winnow-0.5.17.crate
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=557257d656d0e9141a09bcd11814168f

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=MIT Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense
SLOT=0
SRC_URI=https://github.com/Nukesor/pueue/archive/v4.0.0.tar.gz -> pueue-4.0.0.tar.gz https://github.com/freijon/pueue/releases/download/v4.0.0/pueue-4.0.0-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb systemd a964c0cbe818b5729da1dbfcee5be861 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb systemd a964c0cbe818b5729da1dbfcee5be861 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=8b23669b84515e70aebae033d2643625

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=MIT Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense
SLOT=0
SRC_URI=https://github.com/Nukesor/pueue/archive/v4.0.2.tar.gz -> pueue-4.0.2.tar.gz https://github.com/gentoo-crate-dist/pueue/releases/download/v4.0.2/pueue-4.0.2-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb systemd a964c0cbe818b5729da1dbfcee5be861 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb systemd a964c0cbe818b5729da1dbfcee5be861 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=123a68d2080bb1fda62daad828fda6ed

File diff suppressed because one or more lines are too long

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=MIT
SLOT=0
SRC_URI=https://github.com/thomasschafer/scooter/archive/refs/tags/v0.8.5.tar.gz -> scooter-0.8.5.tar.gz https://gitlab.com/api/v4/projects/69517529/packages/generic/scooter/0.8.5/scooter-0.8.5-deps.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=cead6482ca6a974bdcb83a8165e10526

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -10,5 +10,5 @@ PROPERTIES=test_network live
RDEPEND=!app-text/tldr
RESTRICT=test
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=748051b7912826f06a0def295081f22d

View File

@@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD Boost-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0 Unicode
RESTRICT=test
SLOT=0
SRC_URI=https://github.com/alexpasmantier/television/archive/refs/tags/0.12.5.tar.gz -> television-0.12.5.tar.gz https://github.com/kuprTheMan/contribute-deps/releases/download/television-0.12.5/television-0.12.5-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=75c865c5d7963ee0b3cbd2f2818ee1ab

View File

@@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD Boost-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0 Unicode
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/alexpasmantier/television/archive/refs/tags/0.13.11.tar.gz -> television-0.13.11.tar.gz https://github.com/pastalian/distfiles/releases/download/television-0.13.11/television-0.13.11-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=96fddc55401ef7674f08839c0344c4cc

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~arm64
LICENSE=Apache-2.0 MIT Unicode-DFS-2016 Unlicense
SLOT=0
SRC_URI=https://github.com/angelofallars/treefetch/archive/refs/tags/v2.0.0.tar.gz -> treefetch-2.0.0.gh.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bytesize/1.1.0/download -> bytesize-1.1.0.crate https://crates.io/api/v1/crates/cc/1.0.72/download -> cc-1.0.72.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.117/download -> libc-0.2.117.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download -> minimal-lexical-0.2.1.crate https://crates.io/api/v1/crates/nix/0.23.1/download -> nix-0.23.1.crate https://crates.io/api/v1/crates/nom/7.1.0/download -> nom-7.1.0.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/regex/1.5.4/download -> regex-1.5.4.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/systemstat/0.1.10/download -> systemstat-0.1.10.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=d8c1887315ec4e721390ead90b333f50

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=Apache-2.0 MIT MPL-2.0 Unlicense
SLOT=0
SRC_URI=https://github.com/iliketwertles/twertlefetch/archive/refs/tags/1.1.0.tar.gz -> twertlefetch-1.1.0.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.0.3/download -> aho-corasick-1.0.3.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bincode/2.0.0-rc.3/download -> bincode-2.0.0-rc.3.crate https://crates.io/api/v1/crates/bincode_derive/2.0.0-rc.3/download -> bincode_derive-2.0.0-rc.3.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/colored/2.0.0/download -> colored-2.0.0.crate https://crates.io/api/v1/crates/devices/0.3.0/download -> devices-0.3.0.crate https://crates.io/api/v1/crates/either/1.9.0/download -> either-1.9.0.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.140/download -> libc-0.2.140.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/memoffset/0.7.1/download -> memoffset-0.7.1.crate https://crates.io/api/v1/crates/nix/0.26.2/download -> nix-0.26.2.crate https://crates.io/api/v1/crates/once_cell/1.18.0/download -> once_cell-1.18.0.crate https://crates.io/api/v1/crates/pin-utils/0.1.0/download -> pin-utils-0.1.0.crate https://crates.io/api/v1/crates/regex/1.9.3/download -> regex-1.9.3.crate https://crates.io/api/v1/crates/regex-automata/0.3.6/download -> regex-automata-0.3.6.crate https://crates.io/api/v1/crates/regex-syntax/0.7.4/download -> regex-syntax-0.7.4.crate https://crates.io/api/v1/crates/serde/1.0.183/download -> serde-1.0.183.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/uname-rs/0.1.1/download -> uname-rs-0.1.1.crate https://crates.io/api/v1/crates/virtue/0.0.13/download -> virtue-0.0.13.crate https://crates.io/api/v1/crates/which/4.4.0/download -> which-4.4.0.crate https://crates.io/api/v1/crates/widestring/1.0.2/download -> widestring-1.0.2.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=c9c719381e25572e1a57a7aeed5eb97d

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -9,5 +9,5 @@ LICENSE=Apache-2.0 Apache-2.0 BSD-2 BSD CC0-1.0 ISC MIT MPL-2.0 Unicode-3.0 WTFP
PROPERTIES=live
RESTRICT=mirror
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_md5_=3b6dc002fa6728d7ba9b53837802ff2c

View File

@@ -12,5 +12,5 @@ RDEPEND=media-libs/alsa-lib media-libs/shaderc media-libs/fontconfig sys-apps/db
REQUIRED_USE=|| ( openvr openxr ) || ( wayland X ) wayland? ( pipewire ) ^^ ( llvm_slot_15 llvm_slot_16 llvm_slot_17 llvm_slot_18 llvm_slot_19 )
SLOT=0
SRC_URI=https://gitlab.freedesktop.org/galister/pipewire-rs/-/archive/ba32202c3c391004c3bb533b58fa75a50e47ff57/pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.tar.gz -> pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.gl.tar.gz https://github.com/galister/wlx-capture/archive/c68c66d487ef0f57bab23b5c780472a31a01ecab.tar.gz -> wlx-capture-c68c66d487ef0f57bab23b5c780472a31a01ecab.gh.tar.gz https://gitlab.freedesktop.org/galister/pipewire-rs/-/archive/ba32202c3c391004c3bb533b58fa75a50e47ff57/pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.tar.gz -> pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.gl.tar.gz https://github.com/galister/ovr_overlay_oyasumi/archive/49b0d856c282d1f696b87e85a55674f4db913872.tar.gz -> ovr_overlay_oyasumi-49b0d856c282d1f696b87e85a55674f4db913872.gh.tar.gz https://github.com/technobaboo/libmonado-rs/archive/256895b18c8f9368174fad8a6232ff07764eeacb.tar.gz -> libmonado-rs-256895b18c8f9368174fad8a6232ff07764eeacb.gh.tar.gz https://github.com/galister/openxrs/archive/af4a55df60125491c80c61464c824219c6019b76.tar.gz -> openxrs-af4a55df60125491c80c61464c824219c6019b76.gh.tar.gz https://github.com/galister/openxrs/archive/af4a55df60125491c80c61464c824219c6019b76.tar.gz -> openxrs-af4a55df60125491c80c61464c824219c6019b76.gh.tar.gz https://github.com/galister/ovr_overlay_oyasumi/archive/49b0d856c282d1f696b87e85a55674f4db913872.tar.gz -> ovr_overlay_oyasumi-49b0d856c282d1f696b87e85a55674f4db913872.gh.tar.gz https://gitlab.freedesktop.org/galister/pipewire-rs/-/archive/ba32202c3c391004c3bb533b58fa75a50e47ff57/pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.tar.gz -> pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.gl.tar.gz https://gitlab.freedesktop.org/galister/pipewire-rs/-/archive/ba32202c3c391004c3bb533b58fa75a50e47ff57/pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.tar.gz -> pipewire-rs-ba32202c3c391004c3bb533b58fa75a50e47ff57.gl.tar.gz https://github.com/olekolek1000/wayvr-ipc/archive/a72587d23f3bb8624d9aeb1f13c0a21e65350f51.tar.gz -> wayvr-ipc-a72587d23f3bb8624d9aeb1f13c0a21e65350f51.gh.tar.gz https://github.com/wlx-team/wayvr/archive/refs/tags/v25.4.2.tar.gz -> wlx-overlay-s-25.4.2.tar.gz https://github.com/wlx-team/wayvr/releases/download/v25.4.2/WlxOverlay-S-v25.4.2-crates.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb llvm-utils e7edb4086e31c8537574b263d899f826 multilib 404b65bd5212cff83b3935c685419d08 llvm-r2 d6b14d3bbccc5ab5b4182c606245dbd3 desktop 26d57169ca094c04be416993844ec8bc
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb llvm-utils e7edb4086e31c8537574b263d899f826 multilib 404b65bd5212cff83b3935c685419d08 llvm-r2 d6b14d3bbccc5ab5b4182c606245dbd3 desktop 26d57169ca094c04be416993844ec8bc
_md5_=50931c15dc11f98e2b74d1da307415d0

View File

@@ -12,5 +12,5 @@ RDEPEND=media-libs/alsa-lib media-libs/shaderc media-libs/fontconfig sys-apps/db
REQUIRED_USE=|| ( openvr openxr ) || ( wayland X ) wayland? ( pipewire )
SLOT=0
SRC_URI=https://github.com/wlx-team/wayvr/archive/refs/tags/v26.1.2.tar.gz -> wayvr-26.1.2.tar.gz https://github.com/wlx-team/wayvr/releases/download/v26.1.2/vendor.tar.xz -> wayvr-26.1.2-vendor.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc
_md5_=811a54bbdac9cb107c8aebd5c5aacd45

View File

@@ -12,5 +12,5 @@ RDEPEND=media-libs/alsa-lib media-libs/shaderc media-libs/fontconfig sys-apps/db
REQUIRED_USE=|| ( openvr openxr ) || ( wayland X ) wayland? ( pipewire )
SLOT=0
SRC_URI=https://github.com/wlx-team/wayvr/archive/refs/tags/v26.2.0.tar.gz -> wayvr-26.2.0.tar.gz https://github.com/wlx-team/wayvr/releases/download/v26.2.0/vendor.tar.xz -> wayvr-26.2.0-vendor.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc
_md5_=811a54bbdac9cb107c8aebd5c5aacd45

View File

@@ -12,5 +12,5 @@ RDEPEND=media-libs/alsa-lib media-libs/shaderc media-libs/fontconfig sys-apps/db
REQUIRED_USE=|| ( openvr openxr ) || ( wayland X ) wayland? ( pipewire )
SLOT=0
SRC_URI=https://github.com/wlx-team/wayvr/archive/refs/tags/v26.2.1.tar.gz -> wayvr-26.2.1.tar.gz https://github.com/wlx-team/wayvr/releases/download/v26.2.1/vendor.tar.xz -> wayvr-26.2.1-vendor.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc
_md5_=811a54bbdac9cb107c8aebd5c5aacd45

View File

@@ -11,5 +11,5 @@ PROPERTIES=live
RDEPEND=media-libs/alsa-lib media-libs/shaderc media-libs/fontconfig sys-apps/dbus media-libs/freetype X? ( x11-libs/libxcb x11-libs/libxkbcommon[X] x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr ) openvr? ( =media-libs/openvr-1.23.8-r0 ) openxr? ( media-libs/openxr-loader[X?,wayland?] ) pipewire? ( media-video/pipewire ) wayland? ( x11-libs/libxkbcommon[wayland] ) wayvr? ( dev-libs/wayland media-libs/libglvnd ) llvm_slot_15? ( llvm-core/clang:15= ) llvm_slot_16? ( llvm-core/clang:16= ) llvm_slot_17? ( llvm-core/clang:17= ) llvm_slot_18? ( llvm-core/clang:18= ) llvm_slot_19? ( llvm-core/clang:19= )
REQUIRED_USE=|| ( openvr openxr ) || ( wayland X ) wayland? ( pipewire ) ^^ ( llvm_slot_15 llvm_slot_16 llvm_slot_17 llvm_slot_18 llvm_slot_19 )
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 llvm-utils e7edb4086e31c8537574b263d899f826 multilib 404b65bd5212cff83b3935c685419d08 llvm-r2 d6b14d3bbccc5ab5b4182c606245dbd3 desktop 26d57169ca094c04be416993844ec8bc
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 llvm-utils e7edb4086e31c8537574b263d899f826 multilib 404b65bd5212cff83b3935c685419d08 llvm-r2 d6b14d3bbccc5ab5b4182c606245dbd3 desktop 26d57169ca094c04be416993844ec8bc
_md5_=d2a1eaadcc3369f3a0c66fdfef2f128f

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

File diff suppressed because one or more lines are too long

View File

@@ -12,5 +12,5 @@ LICENSE=MIT Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1
RDEPEND=dev-libs/oniguruma
SLOT=0
SRC_URI=https://github.com/sxyazi/yazi/archive/refs/tags/v25.5.31.tar.gz -> yazi-25.5.31.tar.gz https://github.com/ingenarel/guru-depfiles/releases/download/yazi-25.5.31-deps.tar.xz/yazi-25.5.31-deps.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb desktop 26d57169ca094c04be416993844ec8bc bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=4756c78c2cf472055ebefcc4bda9b85a

View File

@@ -11,5 +11,5 @@ LICENSE=MIT Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1
PROPERTIES=live
RDEPEND=dev-libs/oniguruma
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 desktop 26d57169ca094c04be416993844ec8bc bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 desktop 26d57169ca094c04be416993844ec8bc bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=4f0877776e37e9571527841de6f9b4a6

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

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

View File

@@ -11,5 +11,5 @@ PROPERTIES=test_network
RESTRICT=test
SLOT=0
SRC_URI=https://github.com/blopker/codebook/archive/refs/tags/v0.3.29.tar.gz -> codebook-0.3.29.tar.gz https://gitlab.com/api/v4/projects/69517529/packages/generic/codebook/0.3.29/codebook-0.3.29-deps.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=b153937a700fa80cd9e262a713a01950

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=Apache-2.0 Apache-2.0 MIT MPL-2.0 Unicode-3.0 ZLIB
SLOT=0
SRC_URI=https://github.com/TimovVeen/harper/releases/download/v1.4.0/harper-1.4.0-crates.tar.xz https://github.com/Automattic/harper/archive/refs/tags/v1.4.0.tar.gz -> harper-1.4.0.tar.gz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=0708cccec67a0f84e1e045b40cc18f72

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=Apache-2.0 BSD CDLA-Permissive-2.0 ISC MIT MPL-2.0 Unicode-3.0
SLOT=0
SRC_URI=https://github.com/iwe-org/iwe/archive/refs/tags/iwe-v0.0.60.tar.gz -> iwe-0.0.60.tar.gz https://gitlab.com/api/v4/projects/69517529/packages/generic/iwe/liwe-v0.0.60/iwe-liwe-v0.0.60-deps.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=6427635acd63eba30e86308a2a4a9263

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=0BSD Apache-2.0 BSD CC0-1.0 ISC MIT MPL-2.0 Unicode-3.0
SLOT=0
SRC_URI=https://github.com/Feel-ix-343/markdown-oxide/archive/refs/tags/v0.25.10.tar.gz -> markdown-oxide-0.25.10.tar.gz https://gitlab.com/api/v4/projects/69517529/packages/generic/markdown-oxide/0.25.10/markdown-oxide-0.25.10-deps.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=c3818b7f2e764563209b7bc06b7cf428

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=Apache-2.0 MIT Unlicense
SLOT=0
SRC_URI=https://github.com/iliketwertles/owo/archive/refs/tags/0.1.0.tar.gz -> owo-0.1.0.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.20/download -> aho-corasick-0.7.20.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/regex/1.7.3/download -> regex-1.7.3.crate https://crates.io/api/v1/crates/regex-syntax/0.6.29/download -> regex-syntax-0.6.29.crate
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=05ebfedb1441dbabb69c7c30eca5f490

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -10,5 +10,5 @@ LICENSE=Apache-2.0 Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0
RESTRICT=test
SLOT=0
SRC_URI=https://github.com/Myriad-Dreamin/tinymist/archive/refs/tags/v0.14.10.tar.gz -> tinymist-0.14.10.tar.gz https://github.com/TimovVeen/tinymist/releases/download/v0.14.10/tinymist-0.14.10-crates.tar.xz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst.ts/archive/c078ddf869d9438b36e1cacb65100e4514780dc1.tar.gz -> typst.ts-c078ddf869d9438b36e1cacb65100e4514780dc1.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst.ts/archive/c078ddf869d9438b36e1cacb65100e4514780dc1.tar.gz -> typst.ts-c078ddf869d9438b36e1cacb65100e4514780dc1.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst.ts/archive/c078ddf869d9438b36e1cacb65100e4514780dc1.tar.gz -> typst.ts-c078ddf869d9438b36e1cacb65100e4514780dc1.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst.ts/archive/c078ddf869d9438b36e1cacb65100e4514780dc1.tar.gz -> typst.ts-c078ddf869d9438b36e1cacb65100e4514780dc1.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typstfmt/archive/cdfe44ed065a90d80040c3b29dee7ed431a710ee.tar.gz -> typstfmt-cdfe44ed065a90d80040c3b29dee7ed431a710ee.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/typst/archive/28af048d65cbb7a5fc78f3ca1a20c9e885384a62.tar.gz -> typst-28af048d65cbb7a5fc78f3ca1a20c9e885384a62.gh.tar.gz https://github.com/Myriad-Dreamin/docx-rs/archive/db49a729f68dbdb9e8e91857fbb1c3d414209871.tar.gz -> docx-rs-db49a729f68dbdb9e8e91857fbb1c3d414209871.gh.tar.gz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=4172b8cd94d17261ca3841e72bd3d240

View File

@@ -8,5 +8,5 @@ IUSE=debug
LICENSE=Apache-2.0 Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 CDLA-Permissive-2.0 EUPL-1.2 ISC LGPL-3+ MIT MPL-2.0 Unicode-3.0 ZLIB
PROPERTIES=live
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=3604778c50a11412be5f266246275e29

View File

@@ -11,5 +11,5 @@ LICENSE=Apache-2.0 Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 UoI-NC
RDEPEND=>=dev-libs/openssl-1.0.2o-r6:0=
SLOT=0
SRC_URI=https://github.com/typst/typst/archive/v0.14.2/typst-0.14.2.tar.gz https://github.com/odrling/typst/releases/download/v0.14.2/typst-vendor.tar.xz -> typst-0.14.2-vendor.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=0115470efd9a6a646be4bd0359102d2c

View File

@@ -10,5 +10,5 @@ LICENSE=Apache-2.0 Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 UoI-NC
PROPERTIES=live
RDEPEND=>=dev-libs/openssl-1.0.2o-r6:0=
SLOT=0
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 git-r3 875eb471682d3e1f18da124be97dcc81
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16
_md5_=0115470efd9a6a646be4bd0359102d2c

File diff suppressed because one or more lines are too long

View File

@@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=|| ( MIT Unlicense ) Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 GPL-2+ ISC MIT MPL-2.0 Unicode-3.0 Unlicense ZLIB
SLOT=0
SRC_URI=https://github.com/medialab/xan/archive/0.51.0.tar.gz -> xan-0.51.0.tar.gz https://github.com/ingenarel/guru-depfiles/releases/download/xan-0.51.0-deps.tar.xz/xan-0.51.0-deps.tar.xz
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dea35f7f63ad98ec6e542a380bd04e64 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo aeba1d272f6c2e000912e11d8cf626eb
_md5_=873b93c0ff1b472659a662664019f55b

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

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More