carla9999 dependency annoyed pkgdev
This commit is contained in:
parent
44bdddac1b
commit
d7dd5c4a06
35 changed files with 245 additions and 162 deletions
|
|
@ -1,4 +1,3 @@
|
|||
DIST mesa-24.3.4.tar.xz 30691532 BLAKE2B a5cf1f49c6d809d19510793f5d1dcec1a3842495d3b4166e303d7f2d4744d179811697d264c5c9b39f2819ebc64a76357195b3eae6b1d2a83128de141354e3c2 SHA512 9c23cd86fda4cf0289c5a78b08ceea8b01e5b141d86ee3e659fa46e62ff9586ff92a4984d2a340b5bf209c4c7f3414bf99f3ced19feee8fb39ef99fe572dbd55
|
||||
DIST mesa-25.0.1.tar.xz 46679784 BLAKE2B 9a73a3321c9f1d7d4384779f647c43bcb536b316dcc9a61b8a78a6f4bfd4642366e418155db5c2190b530cebee434554c6c4d2d59f68a87bb4056467fe601825 SHA512 1ecb1b90c5f78de4c61f177888543778285731faccc6f78d266d4b437f7b422a78b705a6e9fc6c9eab62c08f2573db5dd725eaa9cc9e5bedcaa7d8cfe6b47a1f
|
||||
DIST mesa-25.0.2.tar.xz 46705776 BLAKE2B 6e387806e880d518a68b3a8d4cb25071e9d50732aee06cc8b88f717c569c2764d658d40a8710ff362820a30133d5fde6b82ea7fb552fd0f690bcdf276a6f5e67 SHA512 2de8e8b514619d9ad5f407f5e1ff04fff8039d66b5f32257c2e8ca3d9f3b190269066aeba0779d6e0b2a2c0739237382fc6a98ea8563ed97801a809c96163386
|
||||
DIST mesa-25.0.3.tar.xz 46736740 BLAKE2B 8b32119756c422b780b466ed4ba60660d2c91f8f460b617f7417e5f3ae2a5cd44a95abedbcdfb8e2f38d99fb2e4f1610586e846fe13b9db979f5156dcc268614 SHA512 a8ddfa3ac31869e82a49d14aaab0659d0496ae77db3f32aa0d5d28de8e1e4cace9fa652451a050fbc79281e8461cd70e86ad464aa387533387187fbcb604aaab
|
||||
|
|
|
|||
|
|
@ -1,3 +1 @@
|
|||
DIST carla-2.2.0.tar.gz 9844747 BLAKE2B 1fd778a1c2904fe982c3aec32e9bb39fff679bea0fe8d1fe41d10bbc5347dd82a6f3dcd33d19aee8bc3b123e387a8b7655c9735fca784d642596f0df9085e38e SHA512 afb2beab979f801817a7fd7663bfdc90800db021679243faa5acb15de60f6dc281032e05c51a8625124c69e7759099fc682678eb98c08507f952763e665ac9c4
|
||||
DIST carla-2.5.2.tar.gz 11527641 BLAKE2B 1a07c9829529fb9bfaeafca508cfa2f96a19f6a78b143a3766b15df951407b05968d3a78ab46595bff0d0352d2e8e03ec7880babb2682628504bead01c45b055 SHA512 cfdeeafe3a108a4e6d88d4be0ccb73d4e1677f0eff51375b04bd6a7a081694f91dfd37afa88f4bd0baf02a14f2e2e8214f471273d2b0fe12b63ba36656650e2d
|
||||
DIST carla-2.5.4.tar.gz 11530440 BLAKE2B 6b4aaca799a3d435dbde9ce4cbf98147578ab416ec78a563c3c5b0654d69dcd52c251924b753dfc07ce6c6b74d57d69f82fc65cb8e120ed6c352ee48f4f465e8 SHA512 0bee1b450d832fafa035694f16fdae0509a2836449da875f1fe6e81adb2bbd4747e8c42e516c3896d0af03f50a47c1d3b63119bd321d10464c1c5e57645461b4
|
||||
|
|
|
|||
|
|
@ -1,102 +0,0 @@
|
|||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8,9,10} )
|
||||
inherit python-single-r1 xdg-utils
|
||||
|
||||
DESCRIPTION="Fully-featured audio plugin host, supports many audio drivers and plugin formats"
|
||||
HOMEPAGE="http://kxstudio.linuxaudio.org/Applications:Carla"
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
# Disable submodules to prevent external plugins from being built and installed
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/falkTX/Carla.git"
|
||||
EGIT_SUBMODULES=()
|
||||
else
|
||||
SRC_URI="https://github.com/falkTX/Carla/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
RESTRICT="mirror"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/Carla-${PV}"
|
||||
fi
|
||||
LICENSE="GPL-2 LGPL-3"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="alsa gtk gtk2 opengl osc pulseaudio rdf sf2 sndfile X"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep 'dev-python/PyQt5[gui,opengl?,svg,widgets,${PYTHON_USEDEP}]')
|
||||
virtual/jack
|
||||
alsa? ( media-libs/alsa-lib )
|
||||
gtk? ( x11-libs/gtk+:3 )
|
||||
gtk2? ( x11-libs/gtk+:2 )
|
||||
osc? (
|
||||
media-libs/liblo
|
||||
media-libs/pyliblo
|
||||
)
|
||||
pulseaudio? ( media-sound/pulseaudio )
|
||||
rdf? ( dev-python/rdflib )
|
||||
sf2? ( media-sound/fluidsynth )
|
||||
sndfile? ( media-libs/libsndfile )
|
||||
X? ( x11-base/xorg-server )"
|
||||
DEPEND=${RDEPEND}
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e "s|exec \$PYTHON|exec ${PYTHON}|" \
|
||||
data/carla \
|
||||
data/carla-control \
|
||||
data/carla-database \
|
||||
data/carla-jack-multi \
|
||||
data/carla-jack-single \
|
||||
data/carla-patchbay \
|
||||
data/carla-rack \
|
||||
data/carla-settings || die "sed failed"
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
myemakeargs=(
|
||||
LIBDIR="/usr/$(get_libdir)"
|
||||
SKIP_STRIPPING=true
|
||||
HAVE_FFMPEG=false
|
||||
HAVE_ZYN_DEPS=false
|
||||
HAVE_ZYN_UI_DEPS=false
|
||||
HAVE_QT4=false
|
||||
HAVE_QT5=true
|
||||
HAVE_PYQT5=true
|
||||
DEFAULT_QT=5
|
||||
HAVE_ALSA=$(usex alsa true false)
|
||||
HAVE_FLUIDSYNTH=$(usex sf2 true false)
|
||||
HAVE_GTK2=$(usex gtk2 true false)
|
||||
HAVE_GTK3=$(usex gtk true false)
|
||||
HAVE_LIBLO=$(usex osc true false)
|
||||
HAVE_PULSEAUDIO=$(usex pulseaudio true false)
|
||||
HAVE_SNDFILE=$(usex sndfile true false)
|
||||
HAVE_X11=$(usex X true false)
|
||||
)
|
||||
|
||||
# Print which options are enabled/disabled
|
||||
make features PREFIX="/usr" "${myemakeargs[@]}"
|
||||
|
||||
emake PREFIX="/usr" "${myemakeargs[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" PREFIX="/usr" "${myemakeargs[@]}" install
|
||||
if ! use osc; then
|
||||
find "${D}/usr" -iname "carla-control*" | xargs rm
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_mimeinfo_database_update
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_mimeinfo_database_update
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
|
@ -3,12 +3,12 @@ DESCRIPTION=Convert between document formats supported by LibreOffice
|
|||
EAPI=8
|
||||
HOMEPAGE=http://dag.wiee.rs/home-made/unoconv/
|
||||
INHERIT=python-single-r1
|
||||
IUSE=python_single_target_python3_10 python_single_target_python3_11
|
||||
IUSE=+python_single_target_python3_11
|
||||
KEYWORDS=amd64 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 ) !app-text/odt2txt virtual/ooo
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 )
|
||||
RDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) !app-text/odt2txt virtual/ooo
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/dagwieers/unoconv/archive/0.9.0.tar.gz -> unoconv-0.9.0.tar.gz
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=83f8553b4bbc157fcd31d62c8556c780
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ LICENSE=BSD
|
|||
RDEPEND=dev-lang/dart-bin
|
||||
SLOT=0
|
||||
SRC_URI=https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.16.9-stable.tar.xz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 bash-completion-r1 767861f3744f589ee5291c1698b1c082 readme.gentoo-r1 b045f3acf546393ab6b3170781875358
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 bash-completion-r1 767861f3744f589ee5291c1698b1c082 readme.gentoo-r1 b045f3acf546393ab6b3170781875358
|
||||
_md5_=84c61c87cb1d9ee33ee44575f4828ad7
|
||||
|
|
|
|||
|
|
@ -9,5 +9,5 @@ KEYWORDS=~amd64
|
|||
LICENSE=BSD3-Clause
|
||||
PROPERTIES=live
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c0c9c21d01b8a96d2d736c554daedc57 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_md5_=94cc99408a579df284bc4dec06bf8639
|
||||
|
|
|
|||
|
|
@ -9,5 +9,5 @@ KEYWORDS=~amd64
|
|||
LICENSE=GPL-3
|
||||
PROPERTIES=live
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c0c9c21d01b8a96d2d736c554daedc57 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_md5_=e71042c20c47072947481aa5549561f1
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
BDEPEND=|| ( dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( llvm-core/clang:17 spirv? ( dev-util/spirv-llvm-translator:17 ) ) ( llvm-core/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( llvm-core/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( llvm-core/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( llvm-core/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) app-alternatives/ninja >=dev-build/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl]
|
||||
BDEPEND=|| ( dev-lang/python:3.12 dev-lang/python:3.11 ) || ( ( llvm-core/clang:17 spirv? ( dev-util/spirv-llvm-translator:17 ) ) ( llvm-core/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( llvm-core/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( llvm-core/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( llvm-core/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) app-alternatives/ninja >=dev-build/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=!!llvm-core/llvm:0
|
||||
DESCRIPTION=OpenCL C library
|
||||
|
|
@ -9,5 +9,5 @@ IUSE=+spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi
|
|||
LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD )
|
||||
PROPERTIES=live
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c0c9c21d01b8a96d2d736c554daedc57 llvm-utils 846280a994c1843d9c21248c188bd147 llvm df1cea363f19e80316ea702563b607be git-r3 875eb471682d3e1f18da124be97dcc81 llvm.org 0a45dc5fa39afaf53bd0a5c28db01786 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a llvm-utils 64536677f4b4365e25e9b739163bed58 llvm df1cea363f19e80316ea702563b607be git-r3 875eb471682d3e1f18da124be97dcc81 llvm.org 9953443f7417eac62a23bcd04cb6324b python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_md5_=6b44c90e7a177441660696db6c80898d
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
BDEPEND=|| ( dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( llvm-core/clang:17 spirv? ( dev-util/spirv-llvm-translator:17 ) ) ( llvm-core/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( llvm-core/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( llvm-core/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( llvm-core/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-18.1.6 ) app-alternatives/ninja >=dev-build/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 )
|
||||
BDEPEND=|| ( dev-lang/python:3.12 dev-lang/python:3.11 ) || ( ( llvm-core/clang:17 spirv? ( dev-util/spirv-llvm-translator:17 ) ) ( llvm-core/clang:16 spirv? ( dev-util/spirv-llvm-translator:16 ) ) ( llvm-core/clang:15 spirv? ( dev-util/spirv-llvm-translator:15 ) ) ( llvm-core/clang:14 spirv? ( dev-util/spirv-llvm-translator:14 ) ) ( llvm-core/clang:13 spirv? ( dev-util/spirv-llvm-translator:13 ) ) ) verify-sig? ( >=sec-keys/openpgp-keys-llvm-20.1.5 ) app-alternatives/ninja >=dev-build/cmake-3.20.5 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 )
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=!!llvm-core/llvm:0
|
||||
DESCRIPTION=OpenCL C library
|
||||
|
|
@ -9,5 +9,5 @@ IUSE=+spirv video_cards_nvidia video_cards_r600 video_cards_radeonsi verify-sig
|
|||
LICENSE=Apache-2.0-with-LLVM-exceptions || ( MIT BSD )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.0-rc1/llvm-project-18.1.0rc1.src.tar.xz verify-sig? ( https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.0-rc1/llvm-project-18.1.0rc1.src.tar.xz.sig )
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake c0c9c21d01b8a96d2d736c554daedc57 llvm-utils 846280a994c1843d9c21248c188bd147 llvm df1cea363f19e80316ea702563b607be eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd verify-sig 7433426b6b28bf2737ba4b82c8aa8c53 llvm.org 0a45dc5fa39afaf53bd0a5c28db01786 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a llvm-utils 64536677f4b4365e25e9b739163bed58 llvm df1cea363f19e80316ea702563b607be eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd verify-sig 4e83419d7fb5d336f6a4de8193968319 llvm.org 9953443f7417eac62a23bcd04cb6324b python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_md5_=6b44c90e7a177441660696db6c80898d
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
BDEPEND=virtual/pkgconfig dev-lang/ocaml dev-ml/dune
|
||||
DEFINED_PHASES=compile install prepare test
|
||||
DEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/extlib:= dev-ml/findlib:= dev-libs/glib:2 llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) sys-libs/ncurses:= test? ( dev-ml/ounit2 ) dev-ml/ocamlbuild dev-lang/perl >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:=
|
||||
DEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/extlib:= dev-ml/findlib:= dev-libs/glib:2 llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) sys-libs/ncurses:= test? ( dev-ml/ounit2 ) dev-ml/ocamlbuild dev-lang/perl dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:=
|
||||
DESCRIPTION=Library to parse, pretty print, and evaluate CUDF documents
|
||||
EAPI=7
|
||||
HOMEPAGE=http://www.mancoosi.org/cudf/
|
||||
|
|
@ -8,9 +8,9 @@ INHERIT=dune toolchain-funcs
|
|||
IUSE=+ocamlopt llvm-libunwind test doc
|
||||
KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86
|
||||
LICENSE=LGPL-3
|
||||
RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/extlib:= dev-ml/findlib:= dev-libs/glib:2 llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) sys-libs/ncurses:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:=
|
||||
RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt?] dev-ml/extlib:= dev-ml/findlib:= dev-libs/glib:2 llvm-libunwind? ( sys-libs/llvm-libunwind:= ) !llvm-libunwind? ( sys-libs/libunwind:= ) sys-libs/ncurses:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:=
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0/0.10
|
||||
SRC_URI=https://gitlab.com/irill/cudf/-/archive/v0.10/cudf-v0.10.tar.bz2
|
||||
_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f dune 21c2970666b517829dc7b963ca1f4a4a toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96
|
||||
_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f dune 4304f35da0fafecd98eb149d0b7ed4d4 toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
|
||||
_md5_=9c9cb551f213b5680a8b6f81d1c92f09
|
||||
|
|
|
|||
16
metadata/md5-cache/dev-util/android-tools-35.0.2-r1
Normal file
16
metadata/md5-cache/dev-util/android-tools-35.0.2-r1
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
BDEPEND=dev-lang/go dev-lang/perl dev-libs/protobuf[protoc(+)] app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=app-arch/brotli:= app-arch/lz4:= app-arch/zstd:= <dev-cpp/abseil-cpp-20250127.0 dev-libs/libpcre2:= <dev-libs/protobuf-30:= sys-libs/zlib:= >=dev-libs/libusb-1.0.28 dev-libs/libfmt:=
|
||||
DESCRIPTION=Android platform tools (adb, fastboot, and mkbootimg)
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/nmeum/android-tools/ https://developer.android.com/
|
||||
INHERIT=cmake flag-o-matic python-r1
|
||||
IUSE=python udev python_targets_python3_11 python_targets_python3_12 python_targets_python3_13
|
||||
KEYWORDS=~amd64 ~arm ~arm64 ~x86
|
||||
LICENSE=Apache-2.0 BSD-2
|
||||
RDEPEND=app-arch/brotli:= app-arch/lz4:= app-arch/zstd:= <dev-cpp/abseil-cpp-20250127.0 dev-libs/libpcre2:= <dev-libs/protobuf-30:= sys-libs/zlib:= >=dev-libs/libusb-1.0.28 dev-libs/libfmt:= udev? ( dev-util/android-udev-rules ) python? ( python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) )
|
||||
REQUIRED_USE=python? ( || ( python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/nmeum/android-tools/releases/download/35.0.2/android-tools-35.0.2.tar.xz https://dev.gentoo.org/~zmedico/dist/android-tools-31.0.3-no-gtest.patch
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-r1 0e15b2ab9cfc87d7474678201d6bca38
|
||||
_md5_=e5bfe3002c1fc3cec0d6ca10b9eaf1bd
|
||||
16
metadata/md5-cache/dev-util/buildcache-0.31.3
Normal file
16
metadata/md5-cache/dev-util/buildcache-0.31.3
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
BDEPEND=virtual/pkgconfig doc? ( app-text/doxygen ) test? ( dev-cpp/gtest ) app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=app-arch/zstd:= sys-libs/zlib:= lz4? ( app-arch/lz4:= )
|
||||
DESCRIPTION=A compiler wrapper that caches compilation results for faster recompilation
|
||||
EAPI=8
|
||||
HOMEPAGE=https://gitlab.com/bits-n-bites/buildcache
|
||||
INHERIT=cmake
|
||||
IUSE=doc lz4 test
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=zlib
|
||||
RDEPEND=app-arch/zstd:= sys-libs/zlib:= lz4? ( app-arch/lz4:= )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://gitlab.com/bits-n-bites/buildcache/-/archive/v0.31.3/buildcache-v0.31.3.tar.gz -> buildcache-0.31.3.tar.gz
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a
|
||||
_md5_=0719e595417de98cf554ed9a96a47bd8
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
BDEPEND=|| ( dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.13 >=dev-python/mako-0.8.0[python_targets_python3_13(-)] dev-python/packaging[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-python/mako-0.8.0[python_targets_python3_12(-)] dev-python/packaging[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-python/mako-0.8.0[python_targets_python3_11(-)] dev-python/packaging[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/mako-0.8.0[python_targets_python3_10(-)] dev-python/packaging[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] ) ) virtual/pkgconfig >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
BDEPEND=|| ( dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) || ( ( dev-lang/python:3.13 >=dev-python/mako-0.8.0[python_targets_python3_13(-)] dev-python/packaging[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-python/mako-0.8.0[python_targets_python3_12(-)] dev-python/packaging[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-python/mako-0.8.0[python_targets_python3_11(-)] dev-python/packaging[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] ) ) virtual/pkgconfig >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install setup test
|
||||
DEPEND=dev-util/spirv-tools >=sys-libs/zlib-1.2.8:= x11-libs/libdrm llvm_slot_20? ( dev-util/spirv-llvm-translator:20 llvm-core/clang:20= =llvm-core/libclc-20* llvm-core/llvm:20= ) dev-libs/expat
|
||||
DESCRIPTION=intel_clc tool used for building OpenCL C to SPIR-V
|
||||
|
|
@ -12,5 +12,5 @@ RDEPEND=dev-util/spirv-tools >=sys-libs/zlib-1.2.8:= x11-libs/libdrm llvm_slot_2
|
|||
REQUIRED_USE=^^ ( llvm_slot_20 )
|
||||
SLOT=0
|
||||
SRC_URI=https://archive.mesa3d.org/mesa-24.3.4.tar.xz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 llvm-utils 7f49c40879f833f9d07e2d5a9643077b llvm-r1 0bd586d3786517cd63802a520b404dda multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7726144f5af59e186d66746d0f513e5 meson 99466844dd8d4fcfb07578a76f5a9922 python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_eclasses_=llvm-utils 64536677f4b4365e25e9b739163bed58 llvm-r1 5a1fde9f55315992645818a877837527 toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c meson 99466844dd8d4fcfb07578a76f5a9922 python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_md5_=bf13e84d5dc7b3611d596f5f38372d69
|
||||
|
|
|
|||
16
metadata/md5-cache/dev-util/mesa_clc-25.2.3
Normal file
16
metadata/md5-cache/dev-util/mesa_clc-25.2.3
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) || ( ( dev-lang/python:3.14 >=dev-python/mako-0.8.0[python_targets_python3_14(-)] dev-python/packaging[python_targets_python3_14(-)] dev-python/pyyaml[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 >=dev-python/mako-0.8.0[python_targets_python3_13(-)] dev-python/packaging[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-python/mako-0.8.0[python_targets_python3_12(-)] dev-python/packaging[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-python/mako-0.8.0[python_targets_python3_11(-)] dev-python/packaging[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] ) ) virtual/pkgconfig >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install setup test
|
||||
DEPEND=dev-util/spirv-tools llvm_slot_18? ( dev-util/spirv-llvm-translator:18 llvm-core/clang:18= =llvm-core/libclc-18* llvm-core/llvm:18= ) llvm_slot_19? ( dev-util/spirv-llvm-translator:19 llvm-core/clang:19= =llvm-core/libclc-19* llvm-core/llvm:19= ) llvm_slot_20? ( dev-util/spirv-llvm-translator:20 llvm-core/clang:20= =llvm-core/libclc-20* llvm-core/llvm:20= ) llvm_slot_21? ( dev-util/spirv-llvm-translator:21 llvm-core/clang:21= =llvm-core/libclc-21* llvm-core/llvm:21= ) dev-libs/expat >=sys-libs/zlib-1.2.8:= x11-libs/libdrm
|
||||
DESCRIPTION=mesa_clc tool used for building OpenCL C to SPIR-V
|
||||
EAPI=8
|
||||
HOMEPAGE=https://mesa3d.org/
|
||||
INHERIT=llvm-r1 meson python-any-r1
|
||||
IUSE=video_cards_asahi video_cards_panfrost debug +llvm_slot_20 llvm_slot_18 llvm_slot_19 llvm_slot_21
|
||||
KEYWORDS=~amd64 ~arm ~arm64 ~x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-util/spirv-tools llvm_slot_18? ( dev-util/spirv-llvm-translator:18 llvm-core/clang:18= =llvm-core/libclc-18* llvm-core/llvm:18= ) llvm_slot_19? ( dev-util/spirv-llvm-translator:19 llvm-core/clang:19= =llvm-core/libclc-19* llvm-core/llvm:19= ) llvm_slot_20? ( dev-util/spirv-llvm-translator:20 llvm-core/clang:20= =llvm-core/libclc-20* llvm-core/llvm:20= ) llvm_slot_21? ( dev-util/spirv-llvm-translator:21 llvm-core/clang:21= =llvm-core/libclc-21* llvm-core/llvm:21= )
|
||||
REQUIRED_USE=^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 )
|
||||
SLOT=0
|
||||
SRC_URI=https://archive.mesa3d.org/mesa-25.2.3.tar.xz
|
||||
_eclasses_=llvm-utils 64536677f4b4365e25e9b739163bed58 llvm-r1 5a1fde9f55315992645818a877837527 toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c meson 99466844dd8d4fcfb07578a76f5a9922 python-any-r1 891415dfe39ad9b41b461f2b86354af0
|
||||
_md5_=214a955c21563c3f618bb8eae327f85f
|
||||
12
metadata/md5-cache/dev-util/spirv-headers-1.4.326
Normal file
12
metadata/md5-cache/dev-util/spirv-headers-1.4.326
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile configure install prepare test unpack
|
||||
DESCRIPTION=Machine-readable files for the SPIR-V Registry
|
||||
EAPI=8
|
||||
HOMEPAGE=https://registry.khronos.org/SPIR-V/ https://github.com/KhronosGroup/SPIRV-Headers
|
||||
INHERIT=cmake git-r3
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=MIT
|
||||
PROPERTIES=live
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_md5_=c65e7b812e5d02849f9bb113b4a7c166
|
||||
17
metadata/md5-cache/dev-util/spirv-llvm-translator-21.1.0
Normal file
17
metadata/md5-cache/dev-util/spirv-llvm-translator-21.1.0
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
BDEPEND=virtual/pkgconfig test? ( dev-python/lit llvm-core/clang:21 ) app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare setup test
|
||||
DEPEND=dev-util/spirv-tools[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] llvm-core/llvm:21=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-util/spirv-headers-1.4.326
|
||||
DESCRIPTION=Bi-directional translator between SPIR-V and LLVM IR
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/KhronosGroup/SPIRV-LLVM-Translator
|
||||
INHERIT=cmake-multilib flag-o-matic llvm-r2 multiprocessing
|
||||
IUSE=test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +llvm_slot_21
|
||||
KEYWORDS=amd64 ~arm arm64 ~loong ~riscv x86
|
||||
LICENSE=UoI-NCSA
|
||||
RDEPEND=dev-util/spirv-tools[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] llvm-core/llvm:21=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?]
|
||||
REQUIRED_USE=^^ ( llvm_slot_21 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=21
|
||||
SRC_URI=https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/v21.1.0.tar.gz -> spirv-llvm-translator-21.1.0.tar.gz
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 cmake-multilib 3f19d8d5fccba52076cdeb2281ad349f llvm-utils 64536677f4b4365e25e9b739163bed58 llvm-r2 452c1a70845763809d225a317d8a6c05
|
||||
_md5_=81c7cd5d370fe0a6e10306b9ddb24154
|
||||
|
|
@ -5,12 +5,12 @@ DESCRIPTION=umr is a userspace debugging and diagnostic tool for AMD GPUs
|
|||
EAPI=8
|
||||
HOMEPAGE=https://gitlab.freedesktop.org/tomstdenis/umr/
|
||||
INHERIT=cmake flag-o-matic linux-info llvm-r2
|
||||
IUSE=+llvm_slot_19 llvm_slot_18 llvm_slot_20
|
||||
IUSE=+llvm_slot_20 llvm_slot_18 llvm_slot_19
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=MIT NCSA-AMD
|
||||
RDEPEND=dev-libs/nanomsg:= media-libs/libglvnd media-libs/libsdl2 media-libs/mesa[opengl] sys-libs/ncurses:= x11-libs/libdrm x11-libs/libpciaccess llvm_slot_18? ( llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/llvm:20= )
|
||||
REQUIRED_USE=^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 )
|
||||
SLOT=0
|
||||
SRC_URI=https://gitlab.freedesktop.org/tomstdenis/umr/-/archive/1.0.10/umr-1.0.10.tar.bz2
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 linux-info ea4122ba1d8791a12b78e53f9510a2e3 llvm-utils 7f49c40879f833f9d07e2d5a9643077b llvm-r2 9a549740244000fae24a65594bde09c1
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 460729dc36f68cf03b044bc1d367e34a linux-info efd923656513c879204fec6638eadee5 llvm-utils 64536677f4b4365e25e9b739163bed58 multilib a199af442898963433d6f038a88cce9c llvm-r2 452c1a70845763809d225a317d8a6c05
|
||||
_md5_=15a12fbe77ff6195367405d214f1ffdb
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) dev-python/cer
|
|||
REQUIRED_USE=^^ ( python_single_target_python3_11 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/EDCD/EDMarketConnector/archive/refs/tags/Release/5.4.1.tar.gz -> EDMarketConnector-5.4.1.tar.gz
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=bbd7b0c6036ce45c71dabbdf02f79f08
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
BDEPEND=>=app-portage/elt-patches-20250306 app-arch/xz-utils
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
|
||||
DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10[xml(+)] ) python_single_target_python3_11? ( dev-lang/python:3.11[xml(+)] ) >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/dbus-glib-0.100.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-apps/dbus-1.6.18-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libxml2-2.9.1-r4:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) ldap? ( >=net-nds/openldap-2.4.38-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) policykit? ( sys-auth/polkit:= ) dev-libs/libxslt dev-util/glib-utils dev-util/gtk-doc-am >=dev-util/intltool-0.35 virtual/pkgconfig
|
||||
DEPEND=python_single_target_python3_11? ( dev-lang/python:3.11[xml(+)] ) >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/dbus-glib-0.100.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-apps/dbus-1.6.18-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libxml2-2.9.1-r4:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) ldap? ( >=net-nds/openldap-2.4.38-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) policykit? ( sys-auth/polkit:= ) dev-libs/libxslt dev-util/glib-utils dev-util/gtk-doc-am >=dev-util/intltool-0.35 virtual/pkgconfig
|
||||
DESCRIPTION=GNOME configuration system and daemon
|
||||
EAPI=8
|
||||
HOMEPAGE=https://projects.gnome.org/gconf/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=gnome2 multilib-minimal python-single-r1
|
||||
IUSE=debug +introspection ldap policykit abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 python_single_target_python3_10 python_single_target_python3_11
|
||||
IUSE=debug +introspection ldap policykit abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +python_single_target_python3_11
|
||||
KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~x86-linux
|
||||
LICENSE=LGPL-2+
|
||||
RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10[xml(+)] ) python_single_target_python3_11? ( dev-lang/python:3.11[xml(+)] ) >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/dbus-glib-0.100.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-apps/dbus-1.6.18-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libxml2-2.9.1-r4:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) ldap? ( >=net-nds/openldap-2.4.38-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) policykit? ( sys-auth/polkit:= )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 )
|
||||
RDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11[xml(+)] ) >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/dbus-glib-0.100.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-apps/dbus-1.6.18-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libxml2-2.9.1-r4:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) ldap? ( >=net-nds/openldap-2.4.38-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) policykit? ( sys-auth/polkit:= )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 )
|
||||
SLOT=2
|
||||
SRC_URI=mirror://gnome/sources/GConf/3.2/GConf-3.2.6.tar.xz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 libtool c81bd096be5f4c82f4e8f156ef112402 gnome.org e1b4f392dbfedfb8974b71b017937f08 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 xdg 3ef49a87c52c8b77c476351195dfe575 gnome2 26fd01914b36038dc8e964ff4bd03a95 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 libtool c81bd096be5f4c82f4e8f156ef112402 gnome.org e1b4f392dbfedfb8974b71b017937f08 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 xdg 3ef49a87c52c8b77c476351195dfe575 gnome2 26fd01914b36038dc8e964ff4bd03a95 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57
|
||||
_md5_=929dfa4789313400387c11109ad1d7ad
|
||||
|
|
|
|||
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
17
metadata/md5-cache/media-libs/mesa-25.0.4-r1
Normal file
17
metadata/md5-cache/media-libs/mesa-25.0.4-r1
Normal file
File diff suppressed because one or more lines are too long
17
metadata/md5-cache/media-libs/mesa-25.0.5
Normal file
17
metadata/md5-cache/media-libs/mesa-25.0.5
Normal file
File diff suppressed because one or more lines are too long
17
metadata/md5-cache/media-libs/mesa-25.2.0
Normal file
17
metadata/md5-cache/media-libs/mesa-25.2.0
Normal file
File diff suppressed because one or more lines are too long
17
metadata/md5-cache/media-libs/mesa-25.2.2
Normal file
17
metadata/md5-cache/media-libs/mesa-25.2.2
Normal file
File diff suppressed because one or more lines are too long
17
metadata/md5-cache/media-libs/mesa-25.2.3
Normal file
17
metadata/md5-cache/media-libs/mesa-25.2.3
Normal file
File diff suppressed because one or more lines are too long
17
metadata/md5-cache/media-libs/mesa-25.2.3-r1
Normal file
17
metadata/md5-cache/media-libs/mesa-25.2.3-r1
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -1,16 +1,16 @@
|
|||
DEFINED_PHASES=compile install postinst postrm prepare setup
|
||||
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_10? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_11(-)] ) virtual/jack alsa? ( media-libs/alsa-lib ) gtk? ( x11-libs/gtk+:3 ) gtk2? ( x11-libs/gtk+:2 ) osc? ( media-libs/liblo media-libs/pyliblo ) pulseaudio? ( media-sound/pulseaudio ) rdf? ( dev-python/rdflib ) sf2? ( media-sound/fluidsynth ) sndfile? ( media-libs/libsndfile ) X? ( x11-base/xorg-server )
|
||||
DEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_11? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_11(-)] ) virtual/jack alsa? ( media-libs/alsa-lib ) gtk? ( x11-libs/gtk+:3 ) gtk2? ( x11-libs/gtk+:2 ) osc? ( media-libs/liblo media-libs/pyliblo ) pulseaudio? ( media-sound/pulseaudio ) rdf? ( dev-python/rdflib ) sf2? ( media-sound/fluidsynth ) sndfile? ( media-libs/libsndfile ) X? ( x11-base/xorg-server )
|
||||
DESCRIPTION=Fully-featured audio plugin host, supports many audio drivers and plugin formats
|
||||
EAPI=7
|
||||
HOMEPAGE=http://kxstudio.linuxaudio.org/Applications:Carla
|
||||
INHERIT=python-single-r1 xdg-utils
|
||||
IUSE=alsa gtk gtk2 opengl osc pulseaudio rdf sf2 sndfile X python_single_target_python3_10 python_single_target_python3_11
|
||||
IUSE=alsa gtk gtk2 opengl osc pulseaudio rdf sf2 sndfile X +python_single_target_python3_11
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-2 LGPL-3
|
||||
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_10? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_11(-)] ) virtual/jack alsa? ( media-libs/alsa-lib ) gtk? ( x11-libs/gtk+:3 ) gtk2? ( x11-libs/gtk+:2 ) osc? ( media-libs/liblo media-libs/pyliblo ) pulseaudio? ( media-sound/pulseaudio ) rdf? ( dev-python/rdflib ) sf2? ( media-sound/fluidsynth ) sndfile? ( media-libs/libsndfile ) X? ( x11-base/xorg-server )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 )
|
||||
RDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_11? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_11(-)] ) virtual/jack alsa? ( media-libs/alsa-lib ) gtk? ( x11-libs/gtk+:3 ) gtk2? ( x11-libs/gtk+:2 ) osc? ( media-libs/liblo media-libs/pyliblo ) pulseaudio? ( media-sound/pulseaudio ) rdf? ( dev-python/rdflib ) sf2? ( media-sound/fluidsynth ) sndfile? ( media-libs/libsndfile ) X? ( x11-base/xorg-server )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 )
|
||||
RESTRICT=mirror
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/falkTX/Carla/archive/v2.5.4.tar.gz -> carla-2.5.4.tar.gz
|
||||
_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=05d66cbc56df45da8951064706bee826
|
||||
|
|
|
|||
|
|
@ -1,15 +0,0 @@
|
|||
BDEPEND=>=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile install postinst postrm prepare setup unpack
|
||||
DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_10? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_10(-)] ) virtual/jack alsa? ( media-libs/alsa-lib ) gtk? ( x11-libs/gtk+:3 ) gtk2? ( x11-libs/gtk+:2 ) osc? ( media-libs/liblo media-libs/pyliblo ) pulseaudio? ( media-sound/pulseaudio ) rdf? ( dev-python/rdflib ) sf2? ( media-sound/fluidsynth ) sndfile? ( media-libs/libsndfile ) X? ( x11-base/xorg-server )
|
||||
DESCRIPTION=Fully-featured audio plugin host, supports many audio drivers and plugin formats
|
||||
EAPI=7
|
||||
HOMEPAGE=http://kxstudio.linuxaudio.org/Applications:Carla
|
||||
INHERIT=python-single-r1 xdg-utils git-r3
|
||||
IUSE=alsa gtk gtk2 opengl osc pulseaudio rdf sf2 sndfile X +python_single_target_python3_10
|
||||
LICENSE=GPL-2 LGPL-3
|
||||
PROPERTIES=live
|
||||
RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_10? ( dev-python/PyQt5[gui,opengl?,svg,widgets,python_targets_python3_10(-)] ) virtual/jack alsa? ( media-libs/alsa-lib ) gtk? ( x11-libs/gtk+:3 ) gtk2? ( x11-libs/gtk+:2 ) osc? ( media-libs/liblo media-libs/pyliblo ) pulseaudio? ( media-sound/pulseaudio ) rdf? ( dev-python/rdflib ) sf2? ( media-sound/fluidsynth ) sndfile? ( media-libs/libsndfile ) X? ( x11-base/xorg-server )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 )
|
||||
SLOT=0
|
||||
_eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_md5_=924b87aabc98da5a5248432ee66da960
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.17-r1:1.17 >=dev-build/automake-1.16.5:1.16 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 || ( dev-lang/rust-bin:9999 dev-lang/rust:9999 dev-lang/rust-bin:1.86.0 dev-lang/rust:1.86.0 dev-lang/rust-bin:1.85.0 dev-lang/rust:1.85.0 dev-lang/rust-bin:1.84.1 dev-lang/rust:1.84.1 dev-lang/rust-bin:1.84.0 dev-lang/rust:1.84.0 dev-lang/rust-bin:1.83.0 dev-lang/rust:1.83.0 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.78.0 dev-lang/rust:1.78.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.76.0 dev-lang/rust:1.76.0 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 )
|
||||
BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* )
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=media-video/pipewire dev-lang/rust
|
||||
DESCRIPTION=PipeWire Volume Control
|
||||
|
|
@ -11,5 +11,5 @@ LICENSE=GPL-2
|
|||
RDEPEND=media-video/pipewire dev-lang/rust
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/saivert/pwvucontrol/archive/refs/tags/0.3.1.tar.gz -> pwvucontrol-0.3.1.tar.gz
|
||||
_eclasses_=gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 libtool c81bd096be5f4c82f4e8f156ef112402 autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 969e004a4a07d654b01c6b15e2c66080 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo eb4315c13bbb1d5195ce27f8934644f9
|
||||
_eclasses_=gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 libtool c81bd096be5f4c82f4e8f156ef112402 autotools 955b29ccd82c1df4755e5f37748d2fa6 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 2c958ff95a0fd21c1cb19e961cb2946d rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo a1af74aa9e34cd73aeac642cd0dd54d8
|
||||
_md5_=777ac4ff3553c1086113f8587cc5187d
|
||||
|
|
|
|||
10
metadata/md5-cache/net-im/dvm-1.2.0
Normal file
10
metadata/md5-cache/net-im/dvm-1.2.0
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
DEFINED_PHASES=compile install unpack
|
||||
DESCRIPTION=dvm
|
||||
EAPI=7
|
||||
HOMEPAGE=https://github.com/diced/dvm
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-libs/openssl-compat
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/diced/dvm/releases/download/1.2.0/dvm
|
||||
_md5_=145a405341fd8278633770d9ede7f7dd
|
||||
|
|
@ -11,5 +11,5 @@ PROPERTIES=live
|
|||
RDEPEND=sys-kernel/linux-headers sys-kernel/linux-firmware !build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=0
|
||||
_eclasses_=git-r3 875eb471682d3e1f18da124be97dcc81 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 kernel-2 0e01377cce73a7a06321d0ef97388d31
|
||||
_eclasses_=git-r3 875eb471682d3e1f18da124be97dcc81 toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 kernel-2 0e01377cce73a7a06321d0ef97388d31
|
||||
_md5_=833c7d702e5bfb7c250e5a12b1c80594
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ LICENSE=GPL-2
|
|||
RDEPEND=!<x11-apps/radeon-profile-daemon-20190603-r1 dev-qt/qtcharts:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 x11-libs/libX11 x11-libs/libXrandr optional? ( x11-apps/mesa-progs x11-apps/xdriinfo x11-apps/xrandr )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/marazmista/radeon-profile/archive/20200824.tar.gz -> radeon-profile-20200824.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81
|
||||
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81
|
||||
_md5_=71a9decbedea10a93b68a540d656f57a
|
||||
|
|
|
|||
14
metadata/md5-cache/x11-misc/ly-1.1.2
Normal file
14
metadata/md5-cache/x11-misc/ly-1.1.2
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
BDEPEND=virtual/pkgconfig
|
||||
DEFINED_PHASES=compile install postinst prepare unpack
|
||||
DEPEND=|| ( dev-lang/zig-bin:0.14 dev-lang/zig:0.14 ) sys-libs/pam x11-libs/libxcb
|
||||
DESCRIPTION=Ly - a TUI display manager
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/fairyglade/ly
|
||||
INHERIT=edo pam systemd prefix
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=WTFPL-2
|
||||
RDEPEND=x11-base/xorg-server x11-apps/xauth x11-apps/xrdb x11-apps/xmessage sys-libs/ncurses
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/fairyglade/ly/archive/v1.1.2/ly-1.1.2.tar.gz https://github.com/Hejsil/zig-clap/archive/0.10.0.tar.gz -> zig-clap-0.10.0.tar.gz https://github.com/Kawaii-Ash/zigini/archive/2ed3d417f17fab5b0ee8cad8a63c6d62d7ac1042.tar.gz -> zigini-2ed3d417f17fab5b0ee8cad8a63c6d62d7ac1042.tar.gz https://github.com/ziglibs/ini/archive/e18d36665905c1e7ba0c1ce3e8780076b33e3002.tar.gz -> ziglibini-e18d36665905c1e7ba0c1ce3e8780076b33e3002.tar.gz
|
||||
_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 pam b56d0c9c20fc5b553f13c8ae165a10a5 systemd a964c0cbe818b5729da1dbfcee5be861 prefix c3c4c93ebda319c0fa7ed6f942ba1010
|
||||
_md5_=3e90261122f2e017e28a860105756028
|
||||
Loading…
Add table
Add a link
Reference in a new issue