Postsync update gentoo
This commit is contained in:
parent
e1fed5ca88
commit
4abce48522
1
app-emulation/virt-manager/Manifest
Normal file
1
app-emulation/virt-manager/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST virt-manager-4.1.0.tar.gz 3151412 BLAKE2B 1b4203be81bd7b82251225d691a4d9068f268e610f049bcadb96de5b539e964ca0b001f22f06ddd8266b58b079f60046f6d11942a1e4eadbc43f0607c46bbddd SHA512 725cb5bcbaebaafae417f95deffb4243ccdad769668cba6e1235f4607e2b29dbd099d2a9a3885981158f53ea854dd71cc29ed9d7557b2791161c13d34f2ef883
|
||||||
106
app-emulation/virt-manager/virt-manager-4.1.0-r1.ebuild
Normal file
106
app-emulation/virt-manager/virt-manager-4.1.0-r1.ebuild
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
# Copyright 1999-2024 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{10..13} )
|
||||||
|
DISTUTILS_SINGLE_IMPL=1
|
||||||
|
DISTUTILS_USE_SETUPTOOLS=no
|
||||||
|
inherit gnome2 distutils-r1 optfeature
|
||||||
|
|
||||||
|
DESCRIPTION="A graphical tool for administering virtual machines"
|
||||||
|
HOMEPAGE="https://virt-manager.org https://github.com/virt-manager/virt-manager"
|
||||||
|
|
||||||
|
if [[ ${PV} == *9999* ]]; then
|
||||||
|
EGIT_REPO_URI="https://github.com/virt-manager/virt-manager.git"
|
||||||
|
EGIT_BRANCH="main"
|
||||||
|
SRC_URI=""
|
||||||
|
inherit git-r3
|
||||||
|
else
|
||||||
|
SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.gz"
|
||||||
|
KEYWORDS="amd64 arm64 ppc64 x86"
|
||||||
|
fi
|
||||||
|
|
||||||
|
LICENSE="GPL-2"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="gui policykit sasl"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
${PYTHON_DEPS}
|
||||||
|
|| ( dev-libs/libisoburn app-cdr/cdrtools )
|
||||||
|
>=app-emulation/libvirt-glib-1.0.0[introspection]
|
||||||
|
>=sys-libs/libosinfo-0.2.10[introspection]
|
||||||
|
$(python_gen_cond_dep '
|
||||||
|
dev-libs/libxml2[python,${PYTHON_USEDEP}]
|
||||||
|
dev-python/argcomplete[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/libvirt-python-6.10.0[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||||
|
dev-python/requests[${PYTHON_USEDEP}]
|
||||||
|
')
|
||||||
|
gui? (
|
||||||
|
gnome-base/dconf
|
||||||
|
>=net-libs/gtk-vnc-0.3.8[gtk3(+),introspection]
|
||||||
|
net-misc/spice-gtk[usbredir,gtk3,introspection,sasl?]
|
||||||
|
sys-apps/dbus
|
||||||
|
x11-libs/gtk+:3[introspection]
|
||||||
|
x11-libs/gtksourceview:4[introspection]
|
||||||
|
x11-libs/vte:2.91[introspection]
|
||||||
|
policykit? ( sys-auth/polkit[introspection] )
|
||||||
|
)
|
||||||
|
"
|
||||||
|
DEPEND="${RDEPEND}"
|
||||||
|
BDEPEND="dev-python/docutils"
|
||||||
|
|
||||||
|
DOCS=( README.md NEWS.md )
|
||||||
|
|
||||||
|
DISTUTILS_ARGS=(
|
||||||
|
--no-update-icon-cache
|
||||||
|
--no-compile-schemas
|
||||||
|
)
|
||||||
|
|
||||||
|
EPYTEST_IGNORE=(
|
||||||
|
# Wants to use /tmp osinfo config?
|
||||||
|
tests/test_cli.py
|
||||||
|
|
||||||
|
# These seem to be essentially coverage tests
|
||||||
|
tests/test_checkprops.py
|
||||||
|
)
|
||||||
|
|
||||||
|
distutils_enable_tests pytest
|
||||||
|
|
||||||
|
python_configure() {
|
||||||
|
esetup.py configure --default-graphics=spice
|
||||||
|
}
|
||||||
|
|
||||||
|
python_test() {
|
||||||
|
export VIRTINST_TEST_SUITE_FORCE_LIBOSINFO=0
|
||||||
|
|
||||||
|
epytest
|
||||||
|
}
|
||||||
|
|
||||||
|
python_install() {
|
||||||
|
esetup.py install
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_preinst() {
|
||||||
|
if use gui ; then
|
||||||
|
gnome2_pkg_preinst
|
||||||
|
|
||||||
|
cd "${ED}" || die
|
||||||
|
export GNOME2_ECLASS_ICONS=$(find 'usr/share/virt-manager/icons' -maxdepth 1 -mindepth 1 -type d 2> /dev/null || die)
|
||||||
|
else
|
||||||
|
rm -r "${ED}/usr/share/virt-manager/ui/" || die
|
||||||
|
rm -r "${ED}/usr/share/virt-manager/icons/" || die
|
||||||
|
rm -r "${ED}/usr/share/icons/" || die
|
||||||
|
rm -r "${ED}/usr/share/applications/virt-manager.desktop" || die
|
||||||
|
rm -r "${ED}/usr/bin/virt-manager" || die
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
use gui && gnome2_pkg_postinst
|
||||||
|
|
||||||
|
optfeature "SSH_ASKPASS program implementation" lxqt-base/lxqt-openssh-askpass net-misc/ssh-askpass-fullscreen net-misc/x11-ssh-askpass
|
||||||
|
optfeature "QEMU host support" app-emulation/qemu[usbredir,spice]
|
||||||
|
optfeature "virt-install --location ISO support" dev-libs/libisoburn
|
||||||
|
}
|
||||||
18
metadata/md5-cache/app-emulation/virt-manager-4.1.0-r1
Normal file
18
metadata/md5-cache/app-emulation/virt-manager-4.1.0-r1
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
BDEPEND=dev-python/docutils test? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) || ( dev-libs/libisoburn app-cdr/cdrtools ) >=app-emulation/libvirt-glib-1.0.0[introspection] >=sys-libs/libosinfo-0.2.10[introspection] python_single_target_python3_10? ( dev-libs/libxml2[python,python_targets_python3_10(-)] dev-python/argcomplete[python_targets_python3_10(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/requests[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/libxml2[python,python_targets_python3_11(-)] dev-python/argcomplete[python_targets_python3_11(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_11(-)] dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/requests[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-libs/libxml2[python,python_targets_python3_12(-)] dev-python/argcomplete[python_targets_python3_12(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_12(-)] dev-python/pygobject:3[python_targets_python3_12(-)] dev-python/requests[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-libs/libxml2[python,python_targets_python3_13(-)] dev-python/argcomplete[python_targets_python3_13(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_13(-)] dev-python/pygobject:3[python_targets_python3_13(-)] dev-python/requests[python_targets_python3_13(-)] ) gui? ( gnome-base/dconf >=net-libs/gtk-vnc-0.3.8[gtk3(+),introspection] net-misc/spice-gtk[usbredir,gtk3,introspection,sasl?] sys-apps/dbus x11-libs/gtk+:3[introspection] x11-libs/gtksourceview:4[introspection] x11-libs/vte:2.91[introspection] policykit? ( sys-auth/polkit[introspection] ) ) python_single_target_python3_10? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.4.4[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/pytest-7.4.4[python_targets_python3_12(-)] ) python_single_target_python3_13? ( >=dev-python/pytest-7.4.4[python_targets_python3_13(-)] ) ) >=app-portage/elt-patches-20240116 app-arch/xz-utils python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 )
|
||||||
|
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
|
||||||
|
DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) || ( dev-libs/libisoburn app-cdr/cdrtools ) >=app-emulation/libvirt-glib-1.0.0[introspection] >=sys-libs/libosinfo-0.2.10[introspection] python_single_target_python3_10? ( dev-libs/libxml2[python,python_targets_python3_10(-)] dev-python/argcomplete[python_targets_python3_10(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/requests[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/libxml2[python,python_targets_python3_11(-)] dev-python/argcomplete[python_targets_python3_11(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_11(-)] dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/requests[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-libs/libxml2[python,python_targets_python3_12(-)] dev-python/argcomplete[python_targets_python3_12(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_12(-)] dev-python/pygobject:3[python_targets_python3_12(-)] dev-python/requests[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-libs/libxml2[python,python_targets_python3_13(-)] dev-python/argcomplete[python_targets_python3_13(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_13(-)] dev-python/pygobject:3[python_targets_python3_13(-)] dev-python/requests[python_targets_python3_13(-)] ) gui? ( gnome-base/dconf >=net-libs/gtk-vnc-0.3.8[gtk3(+),introspection] net-misc/spice-gtk[usbredir,gtk3,introspection,sasl?] sys-apps/dbus x11-libs/gtk+:3[introspection] x11-libs/gtksourceview:4[introspection] x11-libs/vte:2.91[introspection] policykit? ( sys-auth/polkit[introspection] ) )
|
||||||
|
DESCRIPTION=A graphical tool for administering virtual machines
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://virt-manager.org https://github.com/virt-manager/virt-manager
|
||||||
|
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||||
|
INHERIT=gnome2 distutils-r1 optfeature
|
||||||
|
IUSE=gui policykit sasl test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||||
|
KEYWORDS=amd64 arm64 ppc64 x86
|
||||||
|
LICENSE=GPL-2
|
||||||
|
RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) || ( dev-libs/libisoburn app-cdr/cdrtools ) >=app-emulation/libvirt-glib-1.0.0[introspection] >=sys-libs/libosinfo-0.2.10[introspection] python_single_target_python3_10? ( dev-libs/libxml2[python,python_targets_python3_10(-)] dev-python/argcomplete[python_targets_python3_10(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/requests[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-libs/libxml2[python,python_targets_python3_11(-)] dev-python/argcomplete[python_targets_python3_11(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_11(-)] dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/requests[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-libs/libxml2[python,python_targets_python3_12(-)] dev-python/argcomplete[python_targets_python3_12(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_12(-)] dev-python/pygobject:3[python_targets_python3_12(-)] dev-python/requests[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-libs/libxml2[python,python_targets_python3_13(-)] dev-python/argcomplete[python_targets_python3_13(-)] >=dev-python/libvirt-python-6.10.0[python_targets_python3_13(-)] dev-python/pygobject:3[python_targets_python3_13(-)] dev-python/requests[python_targets_python3_13(-)] ) gui? ( gnome-base/dconf >=net-libs/gtk-vnc-0.3.8[gtk3(+),introspection] net-misc/spice-gtk[usbredir,gtk3,introspection,sasl?] sys-apps/dbus x11-libs/gtk+:3[introspection] x11-libs/gtksourceview:4[introspection] x11-libs/vte:2.91[introspection] policykit? ( sys-auth/polkit[introspection] ) ) python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 )
|
||||||
|
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||||
|
RESTRICT=!test? ( test )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://releases.pagure.org/virt-manager/virt-manager-4.1.0.tar.gz
|
||||||
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 libtool 6b28392a775f807c8be5fc7ec9a605b9 gnome.org e1b4f392dbfedfb8974b71b017937f08 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 xdg 3ef49a87c52c8b77c476351195dfe575 gnome2 26fd01914b36038dc8e964ff4bd03a95 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 2fee95c11e5f883024588d4837db6802 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 distutils-r1 bcc61b7696f06db333c2f2db1606ed76 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54
|
||||||
|
_md5_=3d3d774b752d646591e035b682ef6626
|
||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=dev-libs/appstream app-text/poppler >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array || ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=dev-libs/appstream app-text/poppler >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array || ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
||||||
DESCRIPTION=Sketch and take handwritten notes.
|
DESCRIPTION=Sketch and take handwritten notes.
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -9,5 +9,5 @@ IUSE=cli +gui debug
|
|||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 2fee95c11e5f883024588d4837db6802 meson 99466844dd8d4fcfb07578a76f5a9922 rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 2fee95c11e5f883024588d4837db6802 meson 99466844dd8d4fcfb07578a76f5a9922 rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
||||||
_md5_=3cd8850aa1e39f7ded6052863b9f9c4f
|
_md5_=3cd8850aa1e39f7ded6052863b9f9c4f
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=|| ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||||
DESCRIPTION=A tui-based PDF viewer
|
DESCRIPTION=A tui-based PDF viewer
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -8,5 +8,5 @@ IUSE=debug
|
|||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||||
_md5_=b73cfdde381b273fa72c2a46a6a6a275
|
_md5_=b73cfdde381b273fa72c2a46a6a6a275
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=gui-libs/gtk4-layer-shell gui-libs/gtk:4 || ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=gui-libs/gtk4-layer-shell gui-libs/gtk:4 || ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install setup test unpack
|
DEFINED_PHASES=compile configure install setup test unpack
|
||||||
DESCRIPTION=A dynamic and extensible GTK4 layer-shell, written in Rust
|
DESCRIPTION=A dynamic and extensible GTK4 layer-shell, written in Rust
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -7,5 +7,5 @@ INHERIT=cargo git-r3 bash-completion-r1
|
|||||||
IUSE=debug
|
IUSE=debug
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082
|
||||||
_md5_=54f50634c3bfaf72691bc051b6c2288f
|
_md5_=54f50634c3bfaf72691bc051b6c2288f
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=net-libs/webkit-gtk:6 || ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=net-libs/webkit-gtk:6 || ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
||||||
DESCRIPTION=A tool to help people launch somethings.
|
DESCRIPTION=A tool to help people launch somethings.
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -9,5 +9,5 @@ IUSE=+mdict clip calc hyprwin debug
|
|||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
||||||
_md5_=0b42c0bfebb5734d5a7e1ecca422f3f9
|
_md5_=0b42c0bfebb5734d5a7e1ecca422f3f9
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=|| ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup test unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst setup test unpack
|
||||||
DESCRIPTION=A screenshot annotation tool inspired by Swappy and Flameshot.
|
DESCRIPTION=A screenshot annotation tool inspired by Swappy and Flameshot.
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -10,5 +10,5 @@ LICENSE=MPL-2.0
|
|||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
RDEPEND=virtual/rust dev-libs/glib:2 media-libs/libepoxy media-libs/mesa[opengl] media-libs/graphene gui-libs/libadwaita gui-libs/gtk:4 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango
|
RDEPEND=virtual/rust dev-libs/glib:2 media-libs/libepoxy media-libs/mesa[opengl] media-libs/graphene gui-libs/libadwaita gui-libs/gtk:4 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
||||||
_md5_=08a9a921d30df4fd7fe7a7172eff6b18
|
_md5_=08a9a921d30df4fd7fe7a7172eff6b18
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=|| ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||||
DESCRIPTION=Zoomer application for Wayland inspired by tsoding's boomer
|
DESCRIPTION=Zoomer application for Wayland inspired by tsoding's boomer
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -9,5 +9,5 @@ LICENSE=MPL-2.0
|
|||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
RDEPEND=virtual/rust media-libs/raylib[wayland,system-glfw]
|
RDEPEND=virtual/rust media-libs/raylib[wayland,system-glfw]
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||||
_md5_=28ba53e3cf3b149aff7ea76f2c6e58e5
|
_md5_=28ba53e3cf3b149aff7ea76f2c6e58e5
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=|| ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
||||||
DESCRIPTION=Low level control GUI for the PipeWire multimedia server
|
DESCRIPTION=Low level control GUI for the PipeWire multimedia server
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -8,5 +8,5 @@ INHERIT=cargo xdg desktop git-r3
|
|||||||
IUSE=+persistence xdg_desktop_portal debug
|
IUSE=+persistence xdg_desktop_portal debug
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed git-r3 875eb471682d3e1f18da124be97dcc81
|
||||||
_md5_=ae8918158c8385046dcf1b368d1d60df
|
_md5_=ae8918158c8385046dcf1b368d1d60df
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=|| ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* )
|
BDEPEND=|| ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 )
|
||||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||||
DESCRIPTION=Adblocker for Spotify
|
DESCRIPTION=Adblocker for Spotify
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -10,5 +10,5 @@ LICENSE=GPL-3 MIT Unicode-DFS-2016
|
|||||||
RDEPEND=media-sound/spotify
|
RDEPEND=media-sound/spotify
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/abba23/spotify-adblock/archive/refs/tags/v1.0.3.tar.gz -> spotify-adblock-1.0.3.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.0.2/download -> aho-corasick-1.0.2.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.0/download -> hashbrown-0.14.0.crate https://crates.io/api/v1/crates/indexmap/2.0.0/download -> indexmap-2.0.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.147/download -> libc-0.2.147.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.66/download -> proc-macro2-1.0.66.crate https://crates.io/api/v1/crates/quote/1.0.31/download -> quote-1.0.31.crate https://crates.io/api/v1/crates/regex/1.9.1/download -> regex-1.9.1.crate https://crates.io/api/v1/crates/regex-automata/0.3.3/download -> regex-automata-0.3.3.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.174/download -> serde-1.0.174.crate https://crates.io/api/v1/crates/serde_derive/1.0.174/download -> serde_derive-1.0.174.crate https://crates.io/api/v1/crates/serde_regex/1.1.0/download -> serde_regex-1.1.0.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/syn/2.0.27/download -> syn-2.0.27.crate https://crates.io/api/v1/crates/toml/0.7.6/download -> toml-0.7.6.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.19.14/download -> toml_edit-0.19.14.crate https://crates.io/api/v1/crates/unicode-ident/1.0.11/download -> unicode-ident-1.0.11.crate https://crates.io/api/v1/crates/winnow/0.5.0/download -> winnow-0.5.0.crate
|
SRC_URI=https://github.com/abba23/spotify-adblock/archive/refs/tags/v1.0.3.tar.gz -> spotify-adblock-1.0.3.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.0.2/download -> aho-corasick-1.0.2.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.0/download -> hashbrown-0.14.0.crate https://crates.io/api/v1/crates/indexmap/2.0.0/download -> indexmap-2.0.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.147/download -> libc-0.2.147.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.66/download -> proc-macro2-1.0.66.crate https://crates.io/api/v1/crates/quote/1.0.31/download -> quote-1.0.31.crate https://crates.io/api/v1/crates/regex/1.9.1/download -> regex-1.9.1.crate https://crates.io/api/v1/crates/regex-automata/0.3.3/download -> regex-automata-0.3.3.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.174/download -> serde-1.0.174.crate https://crates.io/api/v1/crates/serde_derive/1.0.174/download -> serde_derive-1.0.174.crate https://crates.io/api/v1/crates/serde_regex/1.1.0/download -> serde_regex-1.1.0.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/syn/2.0.27/download -> syn-2.0.27.crate https://crates.io/api/v1/crates/toml/0.7.6/download -> toml-0.7.6.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.19.14/download -> toml_edit-0.19.14.crate https://crates.io/api/v1/crates/unicode-ident/1.0.11/download -> unicode-ident-1.0.11.crate https://crates.io/api/v1/crates/winnow/0.5.0/download -> winnow-0.5.0.crate
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828
|
||||||
_md5_=b6a5949814154d9e5390a47b82d2d848
|
_md5_=b6a5949814154d9e5390a47b82d2d848
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=dev-libs/protobuf gst? ( media-libs/gstreamer ) || ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=dev-libs/protobuf gst? ( media-libs/gstreamer ) || ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install setup test unpack
|
DEFINED_PHASES=compile configure install setup test unpack
|
||||||
DESCRIPTION=Music Player TUI written in Rust
|
DESCRIPTION=Music Player TUI written in Rust
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -7,5 +7,5 @@ INHERIT=cargo git-r3 bash-completion-r1
|
|||||||
IUSE=gst debug
|
IUSE=gst debug
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082
|
||||||
_md5_=bfee03820eb8194783344026da914e50
|
_md5_=bfee03820eb8194783344026da914e50
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
BDEPEND=gui-libs/gtk4-layer-shell gui-libs/gtk:4 || ( >=dev-lang/rust-bin-1.71.1:* >=dev-lang/rust-1.71.1:* ) >=dev-vcs/git-1.8.2.1[curl]
|
BDEPEND=gui-libs/gtk4-layer-shell gui-libs/gtk:4 || ( dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) >=dev-vcs/git-1.8.2.1[curl]
|
||||||
DEFINED_PHASES=compile configure install setup test unpack
|
DEFINED_PHASES=compile configure install setup test unpack
|
||||||
DESCRIPTION=A dynamic and extensible GTK4 layer-shell, written in Rust
|
DESCRIPTION=A dynamic and extensible GTK4 layer-shell, written in Rust
|
||||||
EAPI=8
|
EAPI=8
|
||||||
@ -7,5 +7,5 @@ INHERIT=cargo git-r3 bash-completion-r1
|
|||||||
IUSE=heif avif dav1d turbo open j2k jxlcms debug
|
IUSE=heif avif dav1d turbo open j2k jxlcms debug
|
||||||
PROPERTIES=live
|
PROPERTIES=live
|
||||||
SLOT=0
|
SLOT=0
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust c87a155c4a4658f3873eb90616b85390 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f rust bd7225375c114529393b171df693ffb1 rust-toolchain 3f822985d9297438ed2443aa1fbdf33e cargo a7d3cf80f6ccf4d2e90c98e162bb5828 git-r3 875eb471682d3e1f18da124be97dcc81 bash-completion-r1 767861f3744f589ee5291c1698b1c082
|
||||||
_md5_=fb5892e99888927c302d9110d85c91f5
|
_md5_=fb5892e99888927c302d9110d85c91f5
|
||||||
|
|||||||
@ -14,5 +14,5 @@ REQUIRED_USE=python? ( mpi ^^ ( python_single_target_python3_10 python_single_ta
|
|||||||
RESTRICT=mirror test
|
RESTRICT=mirror test
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://www.paraview.org/files/v5.11/ParaView-v5.11.1.tar.xz
|
SRC_URI=https://www.paraview.org/files/v5.11/ParaView-v5.11.1.tar.xz
|
||||||
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed docs 7f3c0d47338743498c69f1887a139f57 python-utils-r1 2fee95c11e5f883024588d4837db6802 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81 xdg 3ef49a87c52c8b77c476351195dfe575
|
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed docs 006125f2158d2f16904ebd9114336058 python-utils-r1 2fee95c11e5f883024588d4837db6802 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||||
_md5_=637c0a5a374b18d5d53a1435b21e9154
|
_md5_=637c0a5a374b18d5d53a1435b21e9154
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user