mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-04 01:18:33 -04:00
Compare commits
32 Commits
683c29cbc9
...
ac28c14f3f
Author | SHA1 | Date | |
---|---|---|---|
|
ac28c14f3f | ||
|
ebbd3b3e43 | ||
|
e94545bb44 | ||
|
84da2102f3 | ||
|
232f11769c | ||
|
5d5954cc9e | ||
|
982d8a828f | ||
|
5d797b1469 | ||
|
f44b1d9833 | ||
|
59228d13e9 | ||
|
fa9993523b | ||
|
9f6b9b878e | ||
|
c36b3c3775 | ||
|
ea8374a3df | ||
|
b8dd3ddae2 | ||
|
d3afc25270 | ||
|
8cd126a044 | ||
|
00f8fcb855 | ||
|
5e8136a3a3 | ||
|
8912f98789 | ||
|
87b12292cc | ||
|
720e529682 | ||
|
ecbc901dbe | ||
|
6f95c56a6a | ||
|
505d9bfb0b | ||
|
a4da0e08b4 | ||
|
b7b8b272d2 | ||
|
e1fa2fb23f | ||
|
14b7e8a96a | ||
|
45b8789d12 | ||
|
b64dafc3c7 | ||
|
26b4256719 |
@ -2,3 +2,5 @@ DIST pulsar-bin-1.126.0-amd64.tar.gz 224422360 BLAKE2B 57824599e80433b38f25ec105
|
||||
DIST pulsar-bin-1.126.0-arm64.tar.gz 219253378 BLAKE2B c24d60ffac4c6e5e6063de60c89c6cd655850f3d5f92f92292db72daa97a4997b1978873480fc6f6e41c0032afd13e49d332c42a20416f427d38d56aca75d181 SHA512 42a4e20d67164b8048a006b92dabe4d7a7b2b3b9eab9df0694e3e1b68ac2990212ec858384a6da60f6a872b6a6af8673699a1cdd4c776829076d0969b470b142
|
||||
DIST pulsar-bin-1.127.0-amd64.tar.gz 224639634 BLAKE2B 6110a201cccd2b20f774858b30279462ec4e38e2d362956be0fe44438f6ea783caaa1ad1d37239784b059086182849b19197c9855260fe93998df603873c956c SHA512 f473645dfbd527e2239ed33e608e9b231c8982383ca56e1b4519e4d5ded63baa50904d9948e6873100a170234f82657dfd0a5b4972ddcd0fb054185e7f958346
|
||||
DIST pulsar-bin-1.127.0-arm64.tar.gz 219468000 BLAKE2B bfdf454261ccd06856091c69c35d18c00eea072c00aa0222b1bb4352fd27763865425231ddcbb63807a4a3e3cef74a64494b035cc5ec660d970d2df0bb70b074 SHA512 b70193aaed7f3dbe61b767e49ee8b9d710a5c60cc369148eed3bd79505890f1617c659cda73b298412ac03204082e73c17248683ce460d0b22a5e21c2712ceb6
|
||||
DIST pulsar-bin-1.127.1-amd64.tar.gz 224639051 BLAKE2B 8fb76f948fc18360fd8214a9c3b703cc8d392297679a41589dad9119565eb946c5078ba3900655381acf7e238e1510d2323dca2c847eb81d5a4d064f3cc3c58a SHA512 25b3f06e2348f5594a686388de09871e4efdd5e5e9eab5d010dd2275877f841379f8f492452e8e99af7a5c42101eed1b5db996ce87df43907ba897dfd5a44ac1
|
||||
DIST pulsar-bin-1.127.1-arm64.tar.gz 219462221 BLAKE2B 99514de2e280503fcbdd16c2c7d06f66925f96098a0e93202d31ab93e64c5bb9c661d2e7092706e2c60c8fa8c9b91b7fa657779ff00edf4250e07d8247f932b4 SHA512 8047878bcd91a742b19a453953090763a360b560b8a6e41f7b868b6943432ade2e56f649ea22ddc37d60ec7fccae190062d40c2ff621819f23c5e2bf0ffcddb3
|
||||
|
113
app-editors/pulsar-bin/pulsar-bin-1.127.1.ebuild
Normal file
113
app-editors/pulsar-bin/pulsar-bin-1.127.1.ebuild
Normal file
@ -0,0 +1,113 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop xdg
|
||||
|
||||
DESCRIPTION="A Community-led Hyper-Hackable Text Editor"
|
||||
HOMEPAGE="https://pulsar-edit.dev/"
|
||||
|
||||
ur=https://github.com/pulsar-edit/pulsar/releases/download
|
||||
SRC_URI="
|
||||
amd64? ( ${ur}/v${PV}/Linux.pulsar-${PV}.tar.gz -> ${P}-amd64.tar.gz )
|
||||
arm64? ( ${ur}/v${PV}/ARM.Linux.pulsar-${PV}-arm64.tar.gz -> ${P}-arm64.tar.gz )
|
||||
"
|
||||
S="${WORKDIR}/pulsar-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64 ~arm64"
|
||||
|
||||
# binary package; no tests available
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core
|
||||
dev-libs/nspr
|
||||
app-crypt/libsecret
|
||||
dev-libs/expat
|
||||
dev-libs/glib
|
||||
dev-libs/nss
|
||||
dev-libs/openssl-compat
|
||||
dev-vcs/git
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-misc/curl
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
sys-libs/zlib
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf
|
||||
x11-libs/gtk+:3[X]
|
||||
x11-libs/libdrm
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/libxshmfence
|
||||
x11-libs/libXrandr
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
QA_PREBUILT="opt/Pulsar/*"
|
||||
QA_PRESTRIPPED="opt/Pulsar/resources/*" # Files are already stripped
|
||||
|
||||
src_unpack(){
|
||||
default
|
||||
|
||||
if use arm64; then
|
||||
mv "pulsar-${PV}-arm64" "pulsar-${PV}" || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare(){
|
||||
default
|
||||
|
||||
# We do not install licenses
|
||||
rm resources/LICENSE.md || die "Failed to remove LICENSE"
|
||||
}
|
||||
|
||||
src_install(){
|
||||
dodir /opt/Pulsar
|
||||
mv "${S}"/* "${ED}"/opt/Pulsar
|
||||
|
||||
dosym -r /opt/Pulsar/resources/pulsar.sh /usr/bin/pulsar
|
||||
|
||||
# Bug #906939
|
||||
if use amd64; then
|
||||
rm "${ED}"/opt/Pulsar/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins/python3 || die
|
||||
rmdir "${ED}"/opt/Pulsar/resources/app.asar.unpacked/node_modules/tree-sitter-bash/build/node_gyp_bins || die
|
||||
fi
|
||||
|
||||
doicon "${ED}"/opt/Pulsar/resources/pulsar.png
|
||||
make_desktop_entry "/usr/bin/pulsar %F" "Pulsar" "pulsar" \
|
||||
"GNOME;GTK;Utility;TextEditor;Development;" \
|
||||
"GenericName=Text Editor\nStartupNotify=true\nStartupWMClass=pulsar\n" \
|
||||
"MimeType=application/javascript;application/json;application/x-httpd-eruby;" \
|
||||
"application/x-httpd-php;application/x-httpd-php3;application/x-httpd-php4;" \
|
||||
"application/x-httpd-php5;application/x-ruby;application/x-bash;application/x-csh;" \
|
||||
"application/x-sh;application/x-zsh;application/x-shellscript;application/x-sql;" \
|
||||
"application/x-tcl;application/xhtml+xml;application/xml;application/xml-dtd;" \
|
||||
"application/xslt+xml;text/coffeescript;text/css;text/html;text/plain;text/xml;" \
|
||||
"text/xml-dtd;text/x-bash;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-c;text/x-chdr;" \
|
||||
"text/x-csh;text/x-csrc;text/x-dsrc;text/x-diff;text/x-go;text/x-java;text/x-java-source;" \
|
||||
"text/x-makefile;text/x-markdown;text/x-objc;text/x-perl;text/x-php;text/x-python;" \
|
||||
"text/x-ruby;text/x-sh;text/x-zsh;text/yaml;inode/directory"
|
||||
|
||||
einstalldocs
|
||||
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
pkg_postinst(){
|
||||
xdg_desktop_database_update
|
||||
|
||||
elog "To migrate configurations & saved state from Atom Editor, execute:"
|
||||
elog " cp -a \$HOME/.atom \$HOME/.pulsar"
|
||||
elog " cp -a \$HOME/.config/Atom \$HOME/.config/Pulsar"
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
DIST lizard-1.17.13.tar.gz 1233745 BLAKE2B e41e7bb461f64459f9327fa5719e57cc713dcebb89dfb6b01e27f38a9c6014bbe77b1a50cab094a8b68b630385ca9ff3c35b1a9a65545e9c23942f038b560d33 SHA512 2a81c7033bdda8a4698ae010a5a2c5394a5290008dbc80812063ade1088ac616debb7dd24b4498712979845ed6dee91b728b6ace8c7451f0716707d2caa48c18
|
||||
DIST lizard-1.17.19.tar.gz 1248755 BLAKE2B beb559e67b742c4694256830c30b65c2ea81fd6d0fe3ff7e05b474bdbf0dd5d987530496efa943fc23dd8cd1c620a4a2b033a4c89d177723c93583d729c2499a SHA512 f01f8d21865e7dba92bd26cb09afd3b6ac4ba28163d997a444907d9eddb2a751dd14c2cef1702cbac5b67f2d924b3561a129551391c4d19c567bf3144eb3d8b8
|
||||
DIST lizard-1.17.20.tar.gz 1249740 BLAKE2B 707ada86ea34422cab405ff4f205291efc4111af81f15034ec6df811930b86a083fd2954b1443e0bf2daca3edcb3f860f02cb8f6b539208332b17f8174bcef1c SHA512 8a25253e7572a911f01439153e1092adcc2e48d9d8cf9ee751969d724f3fdfaf911c7a636634362e3dd35475eda8a15e5400616c4c88d2405b5fe2588d70d9a9
|
||||
DIST lizard-1.17.23.tar.gz 1261836 BLAKE2B 88e70a4aaa713cc3aacb08e0bb60c4ac76f98efdddb7baa2f4febb7f2a68e4a14fe39745b6b0bca8090c3b52a2e73f2fc40de6eca63b75e90502024a669e29a9 SHA512 b9461400e204765280482c1f1d3c25577b0f3306a3a9b44d0c9b7a5c7367b1b273bc5474fd9d32bfd2e62f415248fceacb26ada5f411919e339289836e5e0a0f
|
||||
|
27
app-text/lizard/lizard-1.17.23.ebuild
Normal file
27
app-text/lizard/lizard-1.17.23.ebuild
Normal file
@ -0,0 +1,27 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A simple code complexity analyser, supports most of the popular languages."
|
||||
HOMEPAGE="http://www.lizard.ws/"
|
||||
SRC_URI="https://github.com/terryyin/lizard/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="
|
||||
dev-python/pygments[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/jinja2[${PYTHON_USEDEP}]
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
@ -1,2 +0,0 @@
|
||||
DIST md4c-0.4.8_p20220115.tar.gz 230786 BLAKE2B a2820563bd2f8094d9b57d1ee4bba629229b789b74b34860b1dfcbd45fffea4a477226ad5e8d9eace52b527c08698223ab9343729e4af605d8f9639166aea106 SHA512 1249e8d9c8aef1d305301c4d71f3d438cb81f0e754d9e3ca15c11bf384be67a112086332f41cfddfa2b89790748da0e7db7e62126dc0d9729846268e0dbee651
|
||||
DIST md4c-0.5.2.tar.gz 237973 BLAKE2B 7f3f80c1bcfa3040b4458876abc8eabbad387242fbdcde08b34d9a279da56e4c2264a591deb6ad3061c951b4ca547f896589682aa5c6b50febfc03b89c61be3e SHA512 30607ba39d6c59329f5a56a90cd816ff60b82ea752ac2b9df356d756529cfc49170019fae5df32fa94afc0e2a186c66eaf56fa6373d18436c06ace670675ba85
|
@ -1,45 +0,0 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
# TODO(NRK):
|
||||
# - enable tests
|
||||
# - useflag for static lib (?)
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/mity/md4c.git"
|
||||
else
|
||||
COMMIT="e9ff661ff818ee94a4a231958d9b6768dc6882c9"
|
||||
SRC_URI="https://github.com/mity/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
fi
|
||||
|
||||
DESCRIPTION="C Markdown parser. Fast, SAX-like interface, CommonMark Compliant."
|
||||
HOMEPAGE="https://github.com/mity/md4c"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DBUILD_SHARED_LIBS=ON
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
find "${ED}/usr/$(get_libdir)" -name '*.a' -exec rm {} \; || die
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
# Copyright 2022-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
# TODO(NRK):
|
||||
# - enable tests
|
||||
# - useflag for static lib (?)
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/mity/md4c.git"
|
||||
else
|
||||
MY_VERSION="release-${PV}"
|
||||
SRC_URI="https://github.com/mity/${PN}/archive/refs/tags/${MY_VERSION}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-${MY_VERSION}"
|
||||
fi
|
||||
|
||||
DESCRIPTION="C Markdown parser. Fast, SAX-like interface, CommonMark Compliant."
|
||||
HOMEPAGE="https://github.com/mity/md4c"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="+md2html"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DBUILD_SHARED_LIBS=ON
|
||||
-DBUILD_MD2HTML_EXECUTABLE=$(usex md2html ON OFF)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
find "${ED}/usr/$(get_libdir)" -name '*.a' -exec rm {} \; || die
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>nrk@disroot.org</email>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="md2html">Build the md2html cli tool</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">mity/md4c</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1 +1,2 @@
|
||||
DIST u-config-0.33.3.tar.gz 31250 BLAKE2B c16a4ba31396e86bcfe0d7441d1cef76691e40184ad1f4c89954a7f0c577769d882f841ddca369b0fd466a45dcc7911ffbb8738563260e48a811733efaf89f54 SHA512 bdf6b11d97d926d193330507ee6be32137dbbe32f91582eed73b6a039d50d7093129b1b8ff686feefb30614afea0af6c3b3f8cc3af91bd4ac62c9340da80a7e9
|
||||
DIST u-config-1.9.5-pkg.m4 12735 BLAKE2B 461f0b29be93c1b5507892564033dfc9522cf759c0a041fc878a18a03f2b8a532e84cd6adf9783b7166ab3a4b41872fa8210534721217df81924d3e6247a7267 SHA512 cfb1cc89eff46f065952b845b1262534f4dd5b7029d78fc1f20059b7409d0a39998a88781f3086903d55aec7bc6c1ae899808bf07ba626d27d32668b99ff8000
|
||||
|
@ -7,4 +7,7 @@
|
||||
<upstream>
|
||||
<remote-id type="github">skeeto/u-config</remote-id>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="symlink">Install pkg-config and pkgconf symlink</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
67
dev-util/u-config/u-config-9999.ebuild
Normal file
67
dev-util/u-config/u-config-9999.ebuild
Normal file
@ -0,0 +1,67 @@
|
||||
# Copyright 2023-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit edo toolchain-funcs
|
||||
|
||||
DESCRIPTION="Lean and mean pkg-config replacement"
|
||||
HOMEPAGE="https://github.com/skeeto/u-config"
|
||||
|
||||
PKG_M4_VER="1.9.5"
|
||||
PKG_M4_URI="symlink? (
|
||||
https://github.com/pkgconf/pkgconf/raw/refs/tags/pkgconf-${PKG_M4_VER}/pkg.m4 ->
|
||||
${PN}-${PKG_M4_VER}-pkg.m4
|
||||
)"
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/skeeto/u-config.git"
|
||||
SRC_URI="${PKG_M4_URI}"
|
||||
else
|
||||
SRC_URI="
|
||||
https://github.com/skeeto/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
${PKG_M4_URI}
|
||||
"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
# GPL-2+ coming from pkg.m4
|
||||
LICENSE="Unlicense symlink? ( GPL-2+ )"
|
||||
SLOT="0"
|
||||
IUSE="symlink test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
symlink? (
|
||||
!dev-util/pkgconfig
|
||||
!dev-util/pkgconf
|
||||
)
|
||||
"
|
||||
|
||||
src_compile() {
|
||||
edo $(tc-getCC) ${CFLAGS} -o u-config main_posix.c \
|
||||
-D PKG_CONFIG_LIBDIR="\"${EPREFIX}/usr/$(get_libdir)/pkgconfig:${EPREFIX}/usr/share/pkgconfig\"" \
|
||||
-D PKG_CONFIG_SYSTEM_INCLUDE_PATH="\"${EPREFIX}/usr/include\"" \
|
||||
-D PKG_CONFIG_SYSTEM_LIBRARY_PATH="\"${EPREFIX}/$(get_libdir):${EPREFIX}/usr/$(get_libdir)\"" \
|
||||
${LDFLAGS}
|
||||
use test && edo $(tc-getCC) ${CFLAGS} -o tests main_test.c ${LDFLAGS}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin u-config
|
||||
doman u-config.1
|
||||
|
||||
if use symlink; then
|
||||
dosym u-config /usr/bin/pkg-config
|
||||
dosym u-config /usr/bin/pkgconf
|
||||
dosym u-config /usr/bin/"${CHOST}-pkg-config"
|
||||
dosym u-config /usr/bin/"${CHOST}-pkgconf"
|
||||
|
||||
insinto /usr/share/aclocal
|
||||
newins "${DISTDIR}/${PN}-${PKG_M4_VER}-pkg.m4" pkg.m4
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
edo ./tests
|
||||
}
|
@ -2,7 +2,7 @@ DIST cc-1.0.73.crate 57880 BLAKE2B be8d7a25a54afdd759844e76aec61526fc2bd5ca09480
|
||||
DIST cxx-1.0.71.crate 195479 BLAKE2B 956f735ad6a417337dd6e0f71ba49d21e8ad9724e288b8d05a013c76bdeb0c3565197f8fc02f861a13f68c6823a969b05852c4abc0ef48d3deb4a3ede3ce7d3c SHA512 1b770312e5ea69a9fa3882e2e507d9de4505dbf09fdab4e6cacdeed7a00122b1cc88583d7353959cd0375a380b7e8563a673c4602fc036130f248db97225b305
|
||||
DIST cxxbridge-flags-1.0.71.crate 5593 BLAKE2B 4f3c72079b42cf41c66dc779a792c76d860e7b85220508b9284b23645b8fae3911864b76719457952bb3b7e666312022def72204c2d096afa2683716cb9f0c5d SHA512 53f5783c4c15b87eac8f6c7ca911b5b3c92a5821040c4000586a118b441aaab17f798f878433436e881f0edd531d9243234cdb4bacfea16fe1f60df080a2d6b9
|
||||
DIST cxxbridge-macro-1.0.71.crate 59620 BLAKE2B ce4b5bfc016a799312cfc2000bcc7b0b701636a558b66d079e3a69ed3a4c83c3c22cbba7bcd3168107d5dd3a0728e2e8887c0089ac7ef022957cc0559ed7a2c5 SHA512 13b0f742ecf4724214b896bcd3c4fedff011751661bd657ca902f123fcb869e835ce850acb1cb9ebe0cb1d13fb9aecc74c7730586ebd465500c2e01cfe686dbc
|
||||
DIST ddnet-19.0.tar.gz 47532208 BLAKE2B 4700279d804734ae8cf3cacc72ede960fb27329eedcd7ddf61c517807fc4a6b72399ac2aca50b5551dd48d9b987e8ed3544453c602401c0664917941f9a57e78 SHA512 13b9878b798f7753349175d636e4380434760fa7dfa55f05349fb2a8d16d77a845ae7d768573eae9e8672cd729d72dd9a0442bc9aa169dbb4b08fc93890620f4
|
||||
DIST ddnet-19.1.tar.gz 47566992 BLAKE2B 65f7e4c2bd0cf7f1f02e7e7acf46f1de6da475e432712e2fe63309c99a6a5e8f479c4618a9001a0277c71cbc01389ead10607fd77e3ab9f52c5529c973ad70c0 SHA512 02ddf0515c3668130d6eb66e7c005223cdd62df252543b0a293532f74f4127c9b39080a4080ec5c581415c64e6e0077c735d14eb738f00f683f653ca2d49e616
|
||||
DIST link-cplusplus-1.0.6.crate 8150 BLAKE2B 82b0eb89926a7f3b7e427242ff3f65eba78f467f1ab972f7f280daf09e2be7188d8e851a21018a268871d5dc9cf7dfda4ef24952b5bc38bd722a5537504c1ddb SHA512 9f77f71f7261472de0d97b2c26efb43f3d49dafbaa1eb853340467260a65d85344e94e023540e068051108afd63cc48c6a5c8025f50922a73dc6409134418e74
|
||||
DIST proc-macro2-1.0.40.crate 40559 BLAKE2B d83cf7283393a82ca65263afc375d123bd2f48b719c9eab6859c52dc0c2b9b4b5af3090a0ebd0fedf0e1095f0bafbc443016f751a0485dc654bcd80a6f71e326 SHA512 bb179524bd41e36735010a7ec53e096359ffc3688ab97806a45ed9cfb17e8688ce352bbb8cd3bd4e15a4299e8500603c86591b17cfa31bca03f299f6f6347992
|
||||
DIST quote-1.0.20.crate 28160 BLAKE2B db257025f64817b1b58eecb8e64e63f1782d8a7fcb42ed6c3364254ec5a26705e49ce0637c880b0355b99a77473ce3083caae2cfabbd1a1a7e4fc826bae2cb7c SHA512 d12f4a425273b99ae655da11fcf5dad2609e20ad3e7d85cde08c7d09f444a5c7a3505470bad2d48b1ba8ea59ebf38ab87aa1052e47ec414acfc05dcb07d438be
|
||||
|
@ -1,8 +1,8 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
inherit autotools
|
||||
inherit autotools flag-o-matic
|
||||
|
||||
DESCRIPTION="cow client for netrek"
|
||||
HOMEPAGE="https://netrek.org"
|
||||
@ -36,6 +36,12 @@ src_prepare() {
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Incompatible function declarations under C23. Bug #945213
|
||||
append-cflags -std=gnu17
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin netrek-client-cow
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
DIST curseforge-1.275.0_p24463.deb 90040596 BLAKE2B 5b85f925d8407570d2430fcf104f039969a6b5ec27343eba4e79bde187b17e786e463302b9c53bd2835b8e98a80390efdb564d5052b73fa7e3af45b373728f31 SHA512 4ce37287cbf633fe8926b87822b01204f91196568d8b79247494fcecc4ca57c0f6c4622c5b0c4b6e3c94a11ac60000c283f0ed397595da105d0b83fa9bb04d10
|
||||
DIST curseforge-1.275.1_p24561.deb 90063226 BLAKE2B 60d547f8bbfa8eab9c6caeaa5c624e6c3bc9e909562f5c9bd8f5209ae837e9b4e389eb602f52526740df21e6d274fea847005f1d961f3f35232de485d230b1d3 SHA512 111a57b23c4a2f3d8cd8ee233121a21b84d7b79e0a0bc21be96f0bfe0c95ffbab431aa149d37b45d52daffb578619593bc340ef221d3f8afff4b3eb2619efc4b
|
||||
|
@ -1,2 +1,2 @@
|
||||
DIST hyprpaper-0.7.1.gh.tar.gz 29173 BLAKE2B 2eea3d8ace0b643279cbb39342c1382fdbbf01c9928487b50df3bfd60961b4da4e03fa67dbeb9f6b2bd7182923128702207b49d1379fc2af24a1bafbf14b9279 SHA512 6bd1c42aa02f6b808d111ff86ce696fa6b70411c02f5f68eee9df7b3ccb45da2f9aad7e32252fa517abb431b6735c65a326d24295ad795795018fb4181bf6441
|
||||
DIST hyprpaper-0.7.3.gh.tar.gz 27116 BLAKE2B 17805567c0008fe34ab4211c017dfdc6ed3efc672b66700ac03830751927c5a377f72c8687a38957f70b282fa48e2ff17883b831d76b642d54664e67aee0f1bf SHA512 f3403ef1a999e66033ec313a2efea546d300ac2ccb6f8877d825d421cce0b38058a450fd82f4ee6a5c25a7e29b6eb8eeadcd59401699823d002eb13f0ab79b09
|
||||
DIST hyprpaper-0.7.4.gh.tar.gz 27407 BLAKE2B e443f6d2b9e920fa2f20135d49b29720b06f4eeee6369ae30c1f80287d225e4e3e519b7f95250f7663aee5256048dab79d9a5b6c9f0e6f7fd242eb15e2812180 SHA512 5cf26a46a20c182632acb79918b1d7ff2fa36c09960e37778f1f4471575f99dc65a5430466835b4196b8fbd03a5ce3906f4e36357b2c29b6df8df20682afdac8
|
||||
|
@ -1,44 +0,0 @@
|
||||
# Copyright 2023-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="A blazing fast wayland wallpaper utility"
|
||||
HOMEPAGE="https://github.com/hyprwm/hyprpaper"
|
||||
SRC_URI="https://github.com/hyprwm/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/hyprlang
|
||||
dev-libs/wayland
|
||||
gui-libs/hyprutils:=
|
||||
media-libs/libglvnd
|
||||
media-libs/libjpeg-turbo:=
|
||||
media-libs/libwebp:=
|
||||
x11-libs/cairo
|
||||
x11-libs/pango
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
dev-libs/wayland-protocols
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-util/hyprwayland-scanner-0.4.0
|
||||
dev-util/wayland-scanner
|
||||
dev-vcs/git
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_compile() {
|
||||
emake protocols
|
||||
cmake_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${BUILD_DIR}/${PN}"
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
# Copyright 2023-2024 Gentoo Authors
|
||||
# Copyright 2023-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@ -29,21 +29,15 @@ DEPEND="
|
||||
dev-libs/wayland-protocols
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-util/hyprwayland-scanner-0.4.2
|
||||
>=dev-util/hyprwayland-scanner-0.4.4
|
||||
dev-util/wayland-scanner
|
||||
dev-vcs/git
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/hyprpaper-0.7.3-fix-wayland-scanner.patch"
|
||||
)
|
||||
DOCS=( README.md )
|
||||
|
||||
src_compile() {
|
||||
emake protocols
|
||||
cmake_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${BUILD_DIR}/${PN}"
|
||||
}
|
@ -1,2 +1,2 @@
|
||||
DIST meteo-qt-3.4.gh.tar.gz 970247 BLAKE2B 44980c54c4fd746b487192e621b84ec278db22fdea534646535f49535dc1937a815d79ede3870e49f14c95c051c73c90f4e1cdd25099ebf311bc3ecb540d727c SHA512 3e9221ba460a0be874c2e1edb8eac3d363bae68f7d333977196230e3d37f28b12ed1d02b3d729830fbcd68288994cc27d1d940989f36e44475bf8eb01529bbf1
|
||||
DIST meteo-qt-4.1.gh.tar.gz 1023593 BLAKE2B 0bd8a86795bfe81d99321894659427b754316b37d26e1352e515a7549a78511220e1d1df7596ecfbebe7d2d855133f9d4e978c8139a1477c87df49418bbeae7b SHA512 8b5bfa3375bc1662649343a9e1271416e2e6df7a76d667fe7f98384749ab909eaac9f15fe7602ac251ca995b0ebe900652717f6913dee6faa75c310a54760606
|
||||
DIST meteo-qt-4.2.gh.tar.gz 1025229 BLAKE2B 807b33b0fed573d129a344dd98da8c7d2f7cbfed9cde65cef7b62805f9afe5f75c9aeefec613a03ee30cc0df088f9984357a2658a6f02f0117e2f67e1c2ac67f SHA512 88b5bda28a1c64bc2b261cc404e5370cc69a8773061627fe1f89c9d329c02401102153f90f6bef510568a80ed2af46743ff633da2637fc61abda814b642ae6c5
|
||||
|
@ -1,9 +1,9 @@
|
||||
# Copyright 2023-2024 Gentoo Authors
|
||||
# Copyright 2023-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..12} )
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
DISTUTILS_SINGLE_IMPL=1
|
||||
inherit distutils-r1 qmake-utils xdg
|
||||
@ -18,17 +18,22 @@ KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/pyqt5[${PYTHON_USEDEP}]
|
||||
dev-python/pyqt6[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
')
|
||||
"
|
||||
BDEPEND="
|
||||
dev-python/pyqt5
|
||||
dev-qt/linguist-tools
|
||||
dev-python/pyqt6
|
||||
dev-qt/qttools:6[linguist]
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
sed "s/lrelease-pro-qt6/lrelease-pro/g" -i setup.py || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local -x PATH="$(qt5_get_bindir):${PATH}"
|
||||
local -x PATH="${EPREFIX}$(qt6_get_libdir)/qt6/libexec:${PATH}"
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
|
@ -13,23 +13,20 @@ SRC_URI="
|
||||
https://github.com/huertatipografica/${PN}/releases/download/v${PV}/${MY_PN}SC.zip -> ${PN}-sc-${PV}.zip
|
||||
"
|
||||
|
||||
S="${WORKDIR}"
|
||||
LICENSE="OFL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="app-arch/unzip"
|
||||
|
||||
DOCS=""
|
||||
S="${WORKDIR}"
|
||||
FONT_S="${S}/install_files"
|
||||
FONT_S=(
|
||||
"${S}/${FONT_PN}/static/otf"
|
||||
"${S}/${FONT_PN}SC/static/otf"
|
||||
)
|
||||
FONT_SUFFIX="otf"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${P}.zip
|
||||
unpack ${PN}-sc-${PV}.zip
|
||||
mkdir install_files
|
||||
mv ${MY_PN}/static/otf/* install_files/
|
||||
mv ${MY_PN}SC/static/otf/* install_files/
|
||||
font_src_install() {
|
||||
insinto ${FONTDIR}
|
||||
doins ${MY_PN}/static/otf/*.otf ${MY_PN}SC/static/otf/*.otf
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
DIST bambustudio-bin-02.00.00.95.AppImage 127939776 BLAKE2B 3207f74f2dc8b7eeae10575bae05fc35e8458983fa0c9c075d1bc7737fefa61e10fe6e3e7d6863299f58d3dd3637350f1a70a280a1996e17ed16028141017a3b SHA512 686efa598b6ce9a20897952dde3d78fd7504f11fe6e6e7ba23f3bed8957a0ce45c37e8cb177d23175e87f1153a6c1b5ba03cdb1d4d6ffd5a4af1f72fce290a4d
|
||||
DIST bambustudio-bin-02.00.01.50.AppImage 128120000 BLAKE2B 3aa9f97fbe07c4a9e7f7123d6a71fce44db35558aa367837c134957cae88dacd1d40d6e42f8220f9e7f60f3ff1003b06937904cf91c7d1c315ec9ac1de821e5c SHA512 2afc6792defebf11c4d12b1d537d9c53f2084714193dd5a70ef12fa2a87897706a36b705ea1453661e9ada4a362127a83fd03d6a2f48877aa19979a02e308e02
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Copyright 2023 Gentoo Authors
|
||||
# Copyright 2023-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@ -18,6 +18,11 @@ IUSE="pipewire"
|
||||
|
||||
DEPEND="
|
||||
>=gui-libs/gtk-4.6
|
||||
>=dev-libs/glib-2.78.6
|
||||
>=media-libs/graphene-1.10.8-r1
|
||||
>=media-libs/gst-plugins-base-1.22.12
|
||||
>=x11-libs/gdk-pixbuf-2.42.10-r1
|
||||
>=x11-libs/pango-1.52.2
|
||||
>=gui-libs/libadwaita-1
|
||||
>=media-libs/gstreamer-1.20.6[introspection]
|
||||
>=media-plugins/gst-plugins-taglib-1.20.6
|
||||
|
@ -1 +1,2 @@
|
||||
DIST youtube-music_3.6.2_amd64.deb 83373490 BLAKE2B 850639e2bfb2f6c95a20423fe7c957ea22f6df80b81f43ad4fd07f219d6a7ef0a2f53971c3073baf7c11d7210021309939408bb99748d939a9f6a18eebbe4f18 SHA512 4dbcf9a3941bdcf5bd26c2a7ee04cafed402fe5272165e63bf9e6f1bf79303f7c1da70444dd0df3098a71528e89af03e1b7229f247e35f5900df2097f5722daa
|
||||
DIST youtube-music_3.8.0_amd64.deb 87594672 BLAKE2B 9ab7f5735141ed319fc3350cf235fe434ae72946967ab0a8995db959a60d242c945a205fb5dbbddd4295e9166cac6ae43f8f4a6140e834f6d75c1ad5ba43a2cd SHA512 4e93bf507128e018cfda226e3330cda21f21e0e6f7f19319d9e4cf62b5a003a48754223a8be3b8fff12b99f90c1d13cc96985f4346753177efcd1427c00d4611
|
||||
|
84
media-sound/youtube-music-bin/youtube-music-bin-3.8.0.ebuild
Normal file
84
media-sound/youtube-music-bin/youtube-music-bin-3.8.0.ebuild
Normal file
@ -0,0 +1,84 @@
|
||||
# Copyright 2022-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit unpacker desktop xdg
|
||||
|
||||
MY_PN="${PN/-bin/}"
|
||||
|
||||
DESCRIPTION="YouTube Music Desktop App bundled with custom plugins"
|
||||
HOMEPAGE="https://th-ch.github.io/youtube-music/"
|
||||
SRC_URI="https://github.com/th-ch/youtube-music/releases/download/v${PV}/${MY_PN}_${PV}_amd64.deb"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core:2
|
||||
app-crypt/libsecret
|
||||
dev-libs/nss
|
||||
x11-misc/xdg-utils
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libnotify
|
||||
x11-libs/libXtst
|
||||
dev-libs/expat
|
||||
dev-libs/glib:2
|
||||
dev-libs/nspr
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
virtual/udev
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf:2
|
||||
x11-libs/libdrm
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libXrandr
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
RESTRICT="mirror strip"
|
||||
|
||||
QA_PREBUILT="
|
||||
opt/${MY_PN}/chrome-sandbox
|
||||
opt/${MY_PN}/chrome_crashpad_handler
|
||||
opt/${MY_PN}/libEGL.so
|
||||
opt/${MY_PN}/libffmpeg.so
|
||||
opt/${MY_PN}/libGLESv2.so
|
||||
opt/${MY_PN}/libvk_swiftshader.so
|
||||
opt/${MY_PN}/libvulkan.so.1
|
||||
opt/${MY_PN}/${MY_PN}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/\/opt\/YouTube Music/\/opt\/'${MY_PN}'/' usr/share/applications/"${MY_PN}".desktop || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto /opt/"${MY_PN}"
|
||||
doins -r opt/"YouTube Music"/*
|
||||
|
||||
insinto /usr/share
|
||||
doins -r usr/share/icons
|
||||
|
||||
domenu usr/share/applications/"${MY_PN}".desktop
|
||||
|
||||
local f
|
||||
for f in ${QA_PREBUILT}; do
|
||||
fperms +x "/${f}"
|
||||
done
|
||||
|
||||
fperms u+s /opt/"${MY_PN}"/chrome-sandbox
|
||||
}
|
14
metadata/md5-cache/app-editors/pulsar-bin-1.127.1
Normal file
14
metadata/md5-cache/app-editors/pulsar-bin-1.127.1
Normal file
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=install postinst postrm preinst prepare unpack
|
||||
DESCRIPTION=A Community-led Hyper-Hackable Text Editor
|
||||
EAPI=8
|
||||
HOMEPAGE=https://pulsar-edit.dev/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=desktop xdg
|
||||
KEYWORDS=-* ~amd64 ~arm64
|
||||
LICENSE=MIT
|
||||
RDEPEND=app-accessibility/at-spi2-core dev-libs/nspr app-crypt/libsecret dev-libs/expat dev-libs/glib dev-libs/nss dev-libs/openssl-compat dev-vcs/git media-libs/alsa-lib media-libs/mesa net-misc/curl net-print/cups sys-apps/dbus sys-libs/zlib x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3[X] x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libxshmfence x11-libs/libXrandr x11-libs/pango
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/pulsar-edit/pulsar/releases/download/v1.127.1/Linux.pulsar-1.127.1.tar.gz -> pulsar-bin-1.127.1-amd64.tar.gz ) arm64? ( https://github.com/pulsar-edit/pulsar/releases/download/v1.127.1/ARM.Linux.pulsar-1.127.1-arm64.tar.gz -> pulsar-bin-1.127.1-arm64.tar.gz )
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=9d4427b7f5ad7e1f759f1d2064db14e7
|
17
metadata/md5-cache/app-text/lizard-1.17.23
Normal file
17
metadata/md5-cache/app-text/lizard-1.17.23
Normal file
@ -0,0 +1,17 @@
|
||||
BDEPEND=test? ( >=dev-python/pytest-7.4.4[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) 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 ) >=dev-python/gpep517-15[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?]
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/pygments[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] test? ( dev-python/jinja2[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/mock[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] )
|
||||
DESCRIPTION=A simple code complexity analyser, supports most of the popular languages.
|
||||
EAPI=8
|
||||
HOMEPAGE=http://www.lizard.ws/
|
||||
INHERIT=distutils-r1
|
||||
IUSE=test python_targets_python3_11 python_targets_python3_12 python_targets_python3_13
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=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_targets_python3_11 python_targets_python3_12 python_targets_python3_13 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/terryyin/lizard/archive/1.17.23.tar.gz -> lizard-1.17.23.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-r1 fa2daad0051275fa416115c76e53b1de distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df
|
||||
_md5_=1555f9118a68af1af16f2eb16bd163c7
|
@ -1,12 +0,0 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=C Markdown parser. Fast, SAX-like interface, CommonMark Compliant.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/mity/md4c
|
||||
INHERIT=cmake
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=MIT
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mity/md4c/archive/e9ff661ff818ee94a4a231958d9b6768dc6882c9.tar.gz -> md4c-0.4.8_p20220115.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=356a2494f6f5b212ad72dff842fd8378
|
@ -1,13 +0,0 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=C Markdown parser. Fast, SAX-like interface, CommonMark Compliant.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/mity/md4c
|
||||
INHERIT=cmake
|
||||
IUSE=+md2html
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=MIT
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mity/md4c/archive/refs/tags/release-0.5.2.tar.gz -> md4c-0.5.2.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=3e87bb112873189848ba4f0cbe4e5880
|
15
metadata/md5-cache/dev-util/u-config-9999
Normal file
15
metadata/md5-cache/dev-util/u-config-9999
Normal file
@ -0,0 +1,15 @@
|
||||
BDEPEND=>=dev-vcs/git-1.8.2.1[curl]
|
||||
DEFINED_PHASES=compile install test unpack
|
||||
DESCRIPTION=Lean and mean pkg-config replacement
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/skeeto/u-config
|
||||
INHERIT=edo toolchain-funcs git-r3
|
||||
IUSE=symlink test
|
||||
LICENSE=Unlicense symlink? ( GPL-2+ )
|
||||
PROPERTIES=live
|
||||
RDEPEND=symlink? ( !dev-util/pkgconfig !dev-util/pkgconf )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=symlink? ( https://github.com/pkgconf/pkgconf/raw/refs/tags/pkgconf-1.9.5/pkg.m4 -> u-config-1.9.5-pkg.m4 )
|
||||
_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_md5_=a30ff4d544fe1cc8ba0d32cb36b48246
|
@ -11,6 +11,6 @@ KEYWORDS=~amd64
|
||||
LICENSE=CC-BY-SA-3.0 OFL-1.1 BSD
|
||||
RDEPEND=client? ( media-libs/libglvnd media-libs/freetype media-libs/glew media-libs/libogg media-libs/libsdl2 media-libs/opus media-libs/opusfile media-libs/libpng media-libs/x264 media-sound/wavpack x11-libs/libnotify videorecorder? ( media-video/ffmpeg ) ) dev-libs/glib sys-libs/zlib dev-libs/openssl dev-db/sqlite download-gtest? ( dev-cpp/gtest dev-vcs/git ) net-misc/curl upnp? ( net-libs/miniupnpc ) vulkan? ( media-libs/vulkan-loader media-libs/libsdl2[vulkan] ) websockets? ( net-libs/libwebsockets[client] )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/ddnet/ddnet/archive/refs/tags/19.0.tar.gz -> ddnet-19.0.tar.gz https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.crate https://crates.io/api/v1/crates/cxx/1.0.71/download -> cxx-1.0.71.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.71/download -> cxxbridge-flags-1.0.71.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.71/download -> cxxbridge-macro-1.0.71.crate https://crates.io/api/v1/crates/link-cplusplus/1.0.6/download -> link-cplusplus-1.0.6.crate https://crates.io/api/v1/crates/proc-macro2/1.0.40/download -> proc-macro2-1.0.40.crate https://crates.io/api/v1/crates/quote/1.0.20/download -> quote-1.0.20.crate https://crates.io/api/v1/crates/syn/1.0.98/download -> syn-1.0.98.crate https://crates.io/api/v1/crates/unicode-ident/1.0.1/download -> unicode-ident-1.0.1.crate
|
||||
SRC_URI=https://github.com/ddnet/ddnet/archive/refs/tags/19.1.tar.gz -> ddnet-19.1.tar.gz https://crates.io/api/v1/crates/cc/1.0.73/download -> cc-1.0.73.crate https://crates.io/api/v1/crates/cxx/1.0.71/download -> cxx-1.0.71.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.71/download -> cxxbridge-flags-1.0.71.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.71/download -> cxxbridge-macro-1.0.71.crate https://crates.io/api/v1/crates/link-cplusplus/1.0.6/download -> link-cplusplus-1.0.6.crate https://crates.io/api/v1/crates/proc-macro2/1.0.40/download -> proc-macro2-1.0.40.crate https://crates.io/api/v1/crates/quote/1.0.20/download -> quote-1.0.20.crate https://crates.io/api/v1/crates/syn/1.0.98/download -> syn-1.0.98.crate https://crates.io/api/v1/crates/unicode-ident/1.0.1/download -> unicode-ident-1.0.1.crate
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust e9d31591b9b0251018cd5c60a43bafa1 rust-toolchain 76468983281b0a7fc167ca224f84ecfd cargo 7282c47a52f41c358a5d49c66884c7bc ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-any-r1 891415dfe39ad9b41b461f2b86354af0 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=14806494a1689b37144c9682f444bbb8
|
@ -1,15 +1,15 @@
|
||||
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
|
||||
DEFINED_PHASES=install prepare
|
||||
DEFINED_PHASES=configure install prepare
|
||||
DEPEND=media-libs/imlib2 media-libs/libsdl media-libs/sdl-mixer x11-base/xorg-proto x11-libs/libX11 x11-libs/libXxf86vm x11-libs/libXmu
|
||||
DESCRIPTION=cow client for netrek
|
||||
EAPI=8
|
||||
HOMEPAGE=https://netrek.org
|
||||
INHERIT=autotools
|
||||
INHERIT=autotools flag-o-matic
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=media-libs/imlib2 media-libs/libsdl media-libs/sdl-mixer x11-base/xorg-proto x11-libs/libX11 x11-libs/libXxf86vm x11-libs/libXmu
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/quozl/netrek-client-cow/archive/3.3.2.tar.gz -> netrek-cow-3.3.2.tar.gz
|
||||
_eclasses_=gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 libtool c81bd096be5f4c82f4e8f156ef112402 autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6
|
||||
_md5_=5e22eee16a4488f1a179dfa7ff53991b
|
||||
_eclasses_=gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 libtool c81bd096be5f4c82f4e8f156ef112402 autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72
|
||||
_md5_=ee894a62a4283cdcf3692aa006d6e6d4
|
||||
|
@ -10,6 +10,6 @@ LICENSE=Overwolf Apache-2.0 BSD BSD-2 GPL-2 LGPL-2+ LGPL-2.1 MPL-2.0 MIT
|
||||
RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus sys-libs/zlib x11-libs/cairo x11-libs/libdrm x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libdrm x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libX11 x11-libs/pango x11-misc/xdg-utils
|
||||
RESTRICT=bindist mirror strip test
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://curseforge.overwolf.com/downloads/curseforge-latest-linux.deb -> curseforge-1.275.0_p24463.deb )
|
||||
SRC_URI=amd64? ( https://curseforge.overwolf.com/downloads/curseforge-latest-linux.deb -> curseforge-1.275.1_p24561.deb )
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 linux-info ea4122ba1d8791a12b78e53f9510a2e3 chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multiprocessing 1e32df7deee68372153dca65f4a7c21f unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=774776b8e50e84d2d0a7c7a3bb1617d2
|
@ -1,14 +0,0 @@
|
||||
BDEPEND=>=dev-util/hyprwayland-scanner-0.4.0 dev-util/wayland-scanner dev-vcs/git virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-libs/hyprlang dev-libs/wayland gui-libs/hyprutils:= media-libs/libglvnd media-libs/libjpeg-turbo:= media-libs/libwebp:= x11-libs/cairo x11-libs/pango dev-libs/wayland-protocols
|
||||
DESCRIPTION=A blazing fast wayland wallpaper utility
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/hyprwm/hyprpaper
|
||||
INHERIT=cmake
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-libs/hyprlang dev-libs/wayland gui-libs/hyprutils:= media-libs/libglvnd media-libs/libjpeg-turbo:= media-libs/libwebp:= x11-libs/cairo x11-libs/pango
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/hyprwm/hyprpaper/archive/v0.7.1.tar.gz -> hyprpaper-0.7.1.gh.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=f87310fcd41c42c83344a2754cb6d7f8
|
@ -1,4 +1,4 @@
|
||||
BDEPEND=>=dev-util/hyprwayland-scanner-0.4.2 dev-util/wayland-scanner dev-vcs/git virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=>=dev-util/hyprwayland-scanner-0.4.4 dev-util/wayland-scanner dev-vcs/git virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-libs/hyprgraphics >=dev-libs/hyprlang-0.6.0 dev-libs/wayland >=gui-libs/hyprutils-0.2.4:= media-libs/libglvnd media-libs/libjpeg-turbo:= media-libs/libwebp:= x11-libs/cairo x11-libs/pango dev-libs/wayland-protocols
|
||||
DESCRIPTION=A blazing fast wayland wallpaper utility
|
||||
@ -9,6 +9,6 @@ KEYWORDS=~amd64
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-libs/hyprgraphics >=dev-libs/hyprlang-0.6.0 dev-libs/wayland >=gui-libs/hyprutils-0.2.4:= media-libs/libglvnd media-libs/libjpeg-turbo:= media-libs/libwebp:= x11-libs/cairo x11-libs/pango
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/hyprwm/hyprpaper/archive/v0.7.3.tar.gz -> hyprpaper-0.7.3.gh.tar.gz
|
||||
SRC_URI=https://github.com/hyprwm/hyprpaper/archive/v0.7.4.tar.gz -> hyprpaper-0.7.4.gh.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=434decf11636f2e02a4322565b5d46cf
|
||||
_md5_=0a6d8f10ab339e5f67379a4fb71baad2
|
@ -1,16 +0,0 @@
|
||||
BDEPEND=dev-python/pyqt5 dev-qt/linguist-tools python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_11? ( >=dev-python/gpep517-15[python_targets_python3_11(-)] >=dev-python/setuptools-69.0.3[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/gpep517-15[python_targets_python3_12(-)] >=dev-python/setuptools-69.0.3[python_targets_python3_12(-)] )
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
|
||||
DESCRIPTION=A system tray application for the weather status
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/dglent/meteo-qt
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=distutils-r1 qmake-utils xdg
|
||||
IUSE=python_single_target_python3_11 python_single_target_python3_12
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=python_single_target_python3_11? ( dev-python/pyqt5[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyqt5[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/dglent/meteo-qt/archive/refs/tags/v3.4.tar.gz -> meteo-qt-3.4.gh.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=88f5f389fd1f64d8e115f4cf148dd7b4
|
16
metadata/md5-cache/gui-apps/meteo-qt-4.2
Normal file
16
metadata/md5-cache/gui-apps/meteo-qt-4.2
Normal file
@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-python/pyqt6 dev-qt/qttools:6[linguist] 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 ) python_single_target_python3_11? ( >=dev-python/gpep517-15[python_targets_python3_11(-)] >=dev-python/setuptools-69.0.3[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/gpep517-15[python_targets_python3_12(-)] >=dev-python/setuptools-69.0.3[python_targets_python3_12(-)] ) python_single_target_python3_13? ( >=dev-python/gpep517-15[python_targets_python3_13(-)] >=dev-python/setuptools-69.0.3[python_targets_python3_13(-)] )
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
|
||||
DESCRIPTION=A system tray application for the weather status
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/dglent/meteo-qt
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=distutils-r1 qmake-utils xdg
|
||||
IUSE=python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=python_single_target_python3_11? ( dev-python/pyqt6[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyqt6[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pyqt6[python_targets_python3_13(-)] dev-python/lxml[python_targets_python3_13(-)] ) 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_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/dglent/meteo-qt/archive/refs/tags/v4.2.tar.gz -> meteo-qt-4.2.gh.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c multibuild 4650a65187015567b4e041bb9bfdb364 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7726144f5af59e186d66746d0f513e5 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=bf60b54c6be8bce7e3f92964111323f9
|
@ -1,5 +1,5 @@
|
||||
BDEPEND=app-arch/unzip X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings )
|
||||
DEFINED_PHASES=install postinst postrm setup unpack
|
||||
DEFINED_PHASES=install postinst postrm setup
|
||||
DESCRIPTION=Piazzolla font family
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/huertatipografica/piazzolla
|
||||
@ -10,4 +10,4 @@ LICENSE=OFL-1.1
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/huertatipografica/piazzolla/releases/download/v2.005/Piazzolla.zip -> piazzolla-2.005.zip https://github.com/huertatipografica/piazzolla/releases/download/v2.005/PiazzollaSC.zip -> piazzolla-sc-2.005.zip
|
||||
_eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb
|
||||
_md5_=2089ab39d474478b6940ce60d361c4ce
|
||||
_md5_=cd8d5ee8abe099a9efa26b1a2f6d4129
|
||||
|
@ -11,6 +11,6 @@ LICENSE=AGPL-3
|
||||
RDEPEND=media-gfx/openvdb media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/gstreamer media-libs/mesa[X(+),osmesa] net-libs/libsoup:3.0= net-libs/webkit-gtk:4.1/0 >=sci-libs/opencascade-7.3.0:0= virtual/glu >=x11-libs/cairo-1.8.8:= x11-libs/libxkbcommon >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] sys-libs/zlib
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/bambulab/BambuStudio/releases/download/v02.00.00.95/Bambu_Studio_linux_fedora-v02.00.00.95.AppImage -> bambustudio-bin-02.00.00.95.AppImage
|
||||
SRC_URI=https://github.com/bambulab/BambuStudio/releases/download/v02.00.01.50/Bambu_Studio_linux_fedora-v02.00.01.50.AppImage -> bambustudio-bin-02.00.01.50.AppImage
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed wrapper 11a2a3bd712784986679b60a0cab34a0 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=1f7833ae370877269b8883004974b7d2
|
@ -1,6 +1,6 @@
|
||||
BDEPEND=>=dev-build/meson-1.1.1 >=dev-lang/vala-0.56.8 || ( dev-lang/vala:0.56 ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
||||
DEPEND=>=gui-libs/gtk-4.6 >=gui-libs/libadwaita-1 >=media-libs/gstreamer-1.20.6[introspection] >=media-plugins/gst-plugins-taglib-1.20.6 >=dev-libs/appstream-glib-0.8.2 pipewire? ( media-video/pipewire[gstreamer] )
|
||||
DEPEND=>=gui-libs/gtk-4.6 >=dev-libs/glib-2.78.6 >=media-libs/graphene-1.10.8-r1 >=media-libs/gst-plugins-base-1.22.12 >=x11-libs/gdk-pixbuf-2.42.10-r1 >=x11-libs/pango-1.52.2 >=gui-libs/libadwaita-1 >=media-libs/gstreamer-1.20.6[introspection] >=media-plugins/gst-plugins-taglib-1.20.6 >=dev-libs/appstream-glib-0.8.2 pipewire? ( media-video/pipewire[gstreamer] )
|
||||
DESCRIPTION=A GTK4 music player
|
||||
EAPI=8
|
||||
HOMEPAGE=https://gitlab.gnome.org/neithern/g4music
|
||||
@ -9,8 +9,8 @@ INHERIT=meson xdg gnome2-utils vala
|
||||
IUSE=pipewire
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=>=gui-libs/gtk-4.6 >=gui-libs/libadwaita-1 >=media-libs/gstreamer-1.20.6[introspection] >=media-plugins/gst-plugins-taglib-1.20.6 >=dev-libs/appstream-glib-0.8.2 pipewire? ( media-video/pipewire[gstreamer] )
|
||||
RDEPEND=>=gui-libs/gtk-4.6 >=dev-libs/glib-2.78.6 >=media-libs/graphene-1.10.8-r1 >=media-libs/gst-plugins-base-1.22.12 >=x11-libs/gdk-pixbuf-2.42.10-r1 >=x11-libs/pango-1.52.2 >=gui-libs/libadwaita-1 >=media-libs/gstreamer-1.20.6[introspection] >=media-plugins/gst-plugins-taglib-1.20.6 >=dev-libs/appstream-glib-0.8.2 pipewire? ( media-video/pipewire[gstreamer] )
|
||||
SLOT=0
|
||||
SRC_URI=https://gitlab.gnome.org/neithern/g4music/-/archive/v4.3.1/g4music-v4.3.1.tar.bz2
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7726144f5af59e186d66746d0f513e5 meson 99466844dd8d4fcfb07578a76f5a9922 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 vala e477903dbe0105930c51f170a592dc16
|
||||
_md5_=0e40ace50e8c768c2887be96e9394430
|
||||
_md5_=49c003875a01e3a3fecd1a111398aa9f
|
||||
|
14
metadata/md5-cache/media-sound/youtube-music-bin-3.8.0
Normal file
14
metadata/md5-cache/media-sound/youtube-music-bin-3.8.0
Normal file
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=install postinst postrm preinst prepare unpack
|
||||
DESCRIPTION=YouTube Music Desktop App bundled with custom plugins
|
||||
EAPI=8
|
||||
HOMEPAGE=https://th-ch.github.io/youtube-music/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=unpacker desktop xdg
|
||||
KEYWORDS=-* ~amd64
|
||||
LICENSE=MIT
|
||||
RDEPEND=app-accessibility/at-spi2-core:2 app-crypt/libsecret dev-libs/nss x11-misc/xdg-utils x11-libs/gtk+:3 x11-libs/libnotify x11-libs/libXtst dev-libs/expat dev-libs/glib:2 dev-libs/nspr media-libs/alsa-lib media-libs/mesa net-print/cups sys-apps/dbus virtual/udev x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libXrandr x11-libs/pango
|
||||
RESTRICT=mirror strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/th-ch/youtube-music/releases/download/v3.8.0/youtube-music_3.8.0_amd64.deb
|
||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=53eb81ecd5f202a66bedb35b9926c8ae
|
15
metadata/md5-cache/net-im/beeper-4.0.570
Normal file
15
metadata/md5-cache/net-im/beeper-4.0.570
Normal file
@ -0,0 +1,15 @@
|
||||
DEFINED_PHASES=install postinst postrm preinst prepare pretend setup unpack
|
||||
DESCRIPTION=Beeper: Unified Messenger
|
||||
EAPI=8
|
||||
HOMEPAGE=https://www.beeper.com/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=chromium-2 desktop xdg
|
||||
IUSE=appindicator +l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW
|
||||
KEYWORDS=-* ~amd64
|
||||
LICENSE=all-rights-reserved
|
||||
RDEPEND=app-accessibility/at-spi2-core:2 app-crypt/libsecret app-misc/ca-certificates dev-libs/expat dev-libs/glib:2 dev-libs/libayatana-appindicator dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-print/cups sys-apps/dbus sys-libs/glibc virtual/udev x11-libs/cairo x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst x11-libs/libdrm x11-libs/libnotify x11-libs/libxcb x11-libs/libxkbcommon x11-libs/pango x11-misc/xdg-utils
|
||||
RESTRICT=bindist mirror strip
|
||||
SLOT=4
|
||||
SRC_URI=https://beeper-desktop.download.beeper.com/builds/Beeper-4.0.570.AppImage
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 linux-info ea4122ba1d8791a12b78e53f9510a2e3 chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=1c0f5b30b1b06027d6e7444b2d27e13d
|
@ -9,6 +9,6 @@ LICENSE=all-rights-reserved
|
||||
RDEPEND=>=app-accessibility/at-spi2-core-2.46.0 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig:1.0 media-libs/freetype:2 media-libs/mesa net-print/cups sys-apps/dbus sys-apps/util-linux x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libxkbcommon x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango
|
||||
RESTRICT=bindist mirror strip test
|
||||
SLOT=0
|
||||
SRC_URI=https://dl-canary.discordapp.net/apps/linux/0.0.593/discord-canary-0.0.593.deb
|
||||
SRC_URI=https://dl-canary.discordapp.net/apps/linux/0.0.621/discord-canary-0.0.621.deb
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 linux-info ea4122ba1d8791a12b78e53f9510a2e3 pax-utils 5555f2e75744739fe100ee62c22d28fe multiprocessing 1e32df7deee68372153dca65f4a7c21f unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=c01e748038e0995837f65381adc52d70
|
16
metadata/md5-cache/net-im/teams-for-linux-1.13.2
Normal file
16
metadata/md5-cache/net-im/teams-for-linux-1.13.2
Normal file
@ -0,0 +1,16 @@
|
||||
BDEPEND=app-arch/rpm2targz
|
||||
DEFINED_PHASES=configure install postinst postrm preinst prepare pretend setup unpack
|
||||
DESCRIPTION=Unofficial Microsoft Teams client for Linux. Binary precompiled version.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/IsmaelMartinez/teams-for-linux
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=chromium-2 desktop rpm xdg
|
||||
IUSE=+l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW
|
||||
KEYWORDS=-* ~amd64 ~arm ~arm64
|
||||
LICENSE=MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2 unRAR OFL-1.1 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
|
||||
RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libXrandr x11-libs/pango
|
||||
RESTRICT=bindist mirror
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v1.13.2/teams-for-linux-1.13.2.x86_64.rpm ) arm? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v1.13.2/teams-for-linux-1.13.2.armv7l.rpm ) arm64? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v1.13.2/teams-for-linux-1.13.2.aarch64.rpm )
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 linux-info ea4122ba1d8791a12b78e53f9510a2e3 chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed estack c61c368a76fdf3a82fdf8dbaebea3804 rpm 7828cd38ff559545ca52f92064d0f8f4 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=9685f7b2cec3a2db484dde199e6f9cf4
|
@ -12,4 +12,4 @@ RESTRICT=bindist mirror
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://download.zulip.com/desktop/apt/pool/main/z/zulip/Zulip-5.11.1-amd64.deb )
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 linux-info ea4122ba1d8791a12b78e53f9510a2e3 chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multiprocessing 1e32df7deee68372153dca65f4a7c21f unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=8f2970230f639a0cf4b1dce25152d04d
|
||||
_md5_=feb2629552d146b9ce8739ebc9193c7e
|
||||
|
15
metadata/md5-cache/net-im/zulip-desktop-bin-5.12.0
Normal file
15
metadata/md5-cache/net-im/zulip-desktop-bin-5.12.0
Normal file
@ -0,0 +1,15 @@
|
||||
DEFINED_PHASES=configure install postinst postrm preinst prepare pretend setup unpack
|
||||
DESCRIPTION=Organized chat for distributed teams.
|
||||
EAPI=8
|
||||
HOMEPAGE=https://zulip.com/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=chromium-2 desktop unpacker xdg
|
||||
IUSE=+l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW
|
||||
KEYWORDS=-* ~amd64
|
||||
LICENSE=MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2 unRAR OFL-1.1 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
|
||||
RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-print/cups sys-apps/dbus sys-libs/glibc x11-libs/cairo x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libXrandr x11-libs/pango
|
||||
RESTRICT=bindist mirror
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://download.zulip.com/desktop/apt/pool/main/z/zulip/Zulip-5.12.0-amd64.deb )
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 linux-info ea4122ba1d8791a12b78e53f9510a2e3 chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multiprocessing 1e32df7deee68372153dca65f4a7c21f unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=58c28df25f84a9cc849ec56865791079
|
13
metadata/md5-cache/net-misc/freetube-bin-0.23.3_beta
Normal file
13
metadata/md5-cache/net-misc/freetube-bin-0.23.3_beta
Normal file
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=install postinst postrm preinst unpack
|
||||
DESCRIPTION=A private YouTube desktop client
|
||||
EAPI=8
|
||||
HOMEPAGE=https://freetubeapp.io/ https://github.com/FreeTubeApp/FreeTube
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=desktop unpacker xdg
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=AGPL-3+
|
||||
RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libdrm x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/FreeTubeApp/FreeTube/releases/download/v0.23.3-beta/freetube_0.23.3_amd64.deb -> freetube-bin-0.23.3_beta.deb
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
|
||||
_md5_=14f0a85aadd80188064cd39f6a592abe
|
17
metadata/md5-cache/net-p2p/monero-0.18.4.0
Normal file
17
metadata/md5-cache/net-p2p/monero-0.18.4.0
Normal file
@ -0,0 +1,17 @@
|
||||
BDEPEND=virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5 virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install postinst prepare test
|
||||
DEPEND=acct-group/monero acct-user/monero dev-libs/boost:=[nls] dev-libs/libsodium:= dev-libs/openssl:= dev-libs/randomx dev-libs/rapidjson dev-libs/supercop net-dns/unbound:=[threads] net-libs/czmq:= net-libs/miniupnpc:= readline? ( sys-libs/readline:0= ) hw-wallet? ( dev-libs/hidapi dev-libs/protobuf:= virtual/libusb:1 )
|
||||
DESCRIPTION=The secure, private, untraceable cryptocurrency
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/monero-project/monero
|
||||
INHERIT=cmake systemd
|
||||
IUSE=+daemon hw-wallet readline +tools +wallet-cli +wallet-rpc
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=BSD MIT
|
||||
RDEPEND=acct-group/monero acct-user/monero dev-libs/boost:=[nls] dev-libs/libsodium:= dev-libs/openssl:= dev-libs/randomx dev-libs/rapidjson dev-libs/supercop net-dns/unbound:=[threads] net-libs/czmq:= net-libs/miniupnpc:= readline? ( sys-libs/readline:0= ) hw-wallet? ( dev-libs/hidapi dev-libs/protobuf:= virtual/libusb:1 )
|
||||
REQUIRED_USE=|| ( daemon tools wallet-cli wallet-rpc )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/monero-project/monero/archive/v0.18.4.0.tar.gz -> monero-0.18.4.0.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 systemd 54bd206bb5c4efac6ae28b6b006713b0
|
||||
_md5_=89da63b35954c28065ea732735846389
|
@ -13,4 +13,4 @@ REQUIRED_USE=|| ( daemon tools wallet-cli wallet-rpc )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 systemd 54bd206bb5c4efac6ae28b6b006713b0 git-r3 875eb471682d3e1f18da124be97dcc81
|
||||
_md5_=d0a8057ba9c2c0d42335382ea14afff5
|
||||
_md5_=89da63b35954c28065ea732735846389
|
||||
|
@ -1,6 +1,6 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-libs/openssl:0= =net-voip/re-3.18* sys-libs/zlib aac? ( media-libs/fdk-aac ) alsa? ( media-libs/alsa-lib ) amr? ( media-libs/opencore-amr ) aom? ( media-libs/libaom ) aptx? ( media-libs/libopenaptx ) codec2? ( media-libs/codec2 ) dbus? ( dev-util/gdbus-codegen sys-apps/dbus ) ffmpeg? ( media-video/ffmpeg ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gtk3? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) mpa? ( media-sound/twolame media-sound/mpg123 media-libs/speexdsp ) mqtt? ( app-misc/mosquitto ) opus? ( media-libs/opus ) pipewire? ( media-video/pipewire ) snapshot? ( media-libs/libpng ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-libs/libpulse ) sdl? ( media-libs/libsdl2 ) sndfile? ( media-libs/libsndfile ) spandsp? ( media-libs/spandsp ) v4l? ( media-libs/libv4l ) vpx? ( media-libs/libvpx ) webrtc? ( media-plugins/gst-plugins-webrtc ) X? ( x11-libs/libX11 )
|
||||
DEPEND=dev-libs/openssl:0= =net-voip/re-3.21* sys-libs/zlib aac? ( media-libs/fdk-aac ) alsa? ( media-libs/alsa-lib ) amr? ( media-libs/opencore-amr ) aom? ( media-libs/libaom ) aptx? ( media-libs/libopenaptx ) codec2? ( media-libs/codec2 ) dbus? ( dev-util/gdbus-codegen sys-apps/dbus ) ffmpeg? ( media-video/ffmpeg ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gtk3? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) mpa? ( media-sound/twolame media-sound/mpg123 media-libs/speexdsp ) mqtt? ( app-misc/mosquitto ) opus? ( media-libs/opus ) pipewire? ( media-video/pipewire ) snapshot? ( media-libs/libpng ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-libs/libpulse ) sdl? ( media-libs/libsdl2 ) sndfile? ( media-libs/libsndfile ) spandsp? ( media-libs/spandsp ) v4l? ( media-libs/libv4l ) vpx? ( media-libs/libvpx ) webrtc? ( media-plugins/gst-plugins-webrtc ) X? ( x11-libs/libX11 )
|
||||
DESCRIPTION=Baresip is a portable and modular SIP User-Agent
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/baresip/baresip
|
||||
@ -8,8 +8,8 @@ INHERIT=cmake
|
||||
IUSE=aac acip alsa amr aptx aom codec2 console dbus echo evdev ffmpeg gstreamer gtk3 jack httpd httpreq mpa mqtt opus pipewire portaudio pulseaudio sdl serreg snapshot sndfile spandsp static-libs syslog tcpcontrol v4l video vpx webrtc X
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-libs/openssl:0= =net-voip/re-3.18* sys-libs/zlib aac? ( media-libs/fdk-aac ) alsa? ( media-libs/alsa-lib ) amr? ( media-libs/opencore-amr ) aom? ( media-libs/libaom ) aptx? ( media-libs/libopenaptx ) codec2? ( media-libs/codec2 ) dbus? ( dev-util/gdbus-codegen sys-apps/dbus ) ffmpeg? ( media-video/ffmpeg ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gtk3? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) mpa? ( media-sound/twolame media-sound/mpg123 media-libs/speexdsp ) mqtt? ( app-misc/mosquitto ) opus? ( media-libs/opus ) pipewire? ( media-video/pipewire ) snapshot? ( media-libs/libpng ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-libs/libpulse ) sdl? ( media-libs/libsdl2 ) sndfile? ( media-libs/libsndfile ) spandsp? ( media-libs/spandsp ) v4l? ( media-libs/libv4l ) vpx? ( media-libs/libvpx ) webrtc? ( media-plugins/gst-plugins-webrtc ) X? ( x11-libs/libX11 )
|
||||
RDEPEND=dev-libs/openssl:0= =net-voip/re-3.21* sys-libs/zlib aac? ( media-libs/fdk-aac ) alsa? ( media-libs/alsa-lib ) amr? ( media-libs/opencore-amr ) aom? ( media-libs/libaom ) aptx? ( media-libs/libopenaptx ) codec2? ( media-libs/codec2 ) dbus? ( dev-util/gdbus-codegen sys-apps/dbus ) ffmpeg? ( media-video/ffmpeg ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gtk3? ( x11-libs/gtk+:3 ) jack? ( virtual/jack ) mpa? ( media-sound/twolame media-sound/mpg123 media-libs/speexdsp ) mqtt? ( app-misc/mosquitto ) opus? ( media-libs/opus ) pipewire? ( media-video/pipewire ) snapshot? ( media-libs/libpng ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-libs/libpulse ) sdl? ( media-libs/libsdl2 ) sndfile? ( media-libs/libsndfile ) spandsp? ( media-libs/spandsp ) v4l? ( media-libs/libv4l ) vpx? ( media-libs/libvpx ) webrtc? ( media-plugins/gst-plugins-webrtc ) X? ( x11-libs/libX11 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/baresip/baresip/archive/v3.18.0.tar.gz -> baresip-3.18.0.tar.gz
|
||||
SRC_URI=https://github.com/baresip/baresip/archive/v3.21.0.tar.gz -> baresip-3.21.0.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=4ace983764df237c2efd3bfc633d078c
|
||||
_md5_=b024d12a768fd075659abb1137e258d0
|
@ -10,6 +10,6 @@ KEYWORDS=~amd64
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-libs/openssl:0= sys-libs/zlib
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/baresip/re/archive/v3.18.0.tar.gz -> re-3.18.0.tar.gz
|
||||
SRC_URI=https://github.com/baresip/re/archive/v3.21.0.tar.gz -> re-3.21.0.tar.gz
|
||||
_eclasses_=toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=ef8647f10f6ed663c3db4dc68bd30515
|
||||
_md5_=0808d77823ebb7e115a9afe3c64cc879
|
@ -6,8 +6,8 @@ HOMEPAGE=https://www.cytoscape.org/
|
||||
INHERIT=desktop java-pkg-2
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=LGPL-2.1
|
||||
RDEPEND=>=virtual/jre-11-r2 >=dev-java/java-config-2.2.0-r3
|
||||
RDEPEND==virtual/jre-17 >=dev-java/java-config-2.2.0-r3
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/cytoscape/cytoscape/releases/download/3.10.3/cytoscape-unix-3.10.3.tar.gz
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed java-utils-2 c610b1541a10e37cb26ab5b707a744f1 java-pkg-2 38fd81c7880666a00a638ca8deb64d72
|
||||
_md5_=4a4a0a6438f41f6b5dcbff73f22d96f8
|
||||
_md5_=4c704d5b3396caf48e23eb0215074e47
|
||||
|
@ -186,7 +186,7 @@ app-editors/mined 2015.25: A powerful text editor with extensive Unicode and CJK
|
||||
app-editors/neovide 0.12.2: Neovide: No Nonsense Neovim Gui
|
||||
app-editors/neovim-qt 0.2.19: Neovim client library and GUI, in Qt
|
||||
app-editors/notepadnext 0.8_p20240828 0.9 0.9_p20241128: A cross-platform reimplementation of Notepad++ based on Qt
|
||||
app-editors/pulsar-bin 1.126.0 1.127.0: A Community-led Hyper-Hackable Text Editor
|
||||
app-editors/pulsar-bin 1.126.0 1.127.0 1.127.1: A Community-led Hyper-Hackable Text Editor
|
||||
app-editors/typora-bin 1.10.8: a markdown editor,markdown reader.
|
||||
app-emacs/catppuccin-emacs 9999: Soothing pastel theme for Emacs
|
||||
app-emacs/envrc 0.11: Emacs support for direnv which operates buffer-locally
|
||||
@ -355,7 +355,7 @@ app-text/klogg 22.06.0.1289-r1: A GUI application to browse and search through l
|
||||
app-text/komikku 1.70.0 1.72.0: Manga reader for GNOME
|
||||
app-text/koodo-reader-bin 1.5.1 1.6.3: A modern ebook manager and reader with sync and backup capacities
|
||||
app-text/lchat 1.0-r2: Line oriented front end for ii-like chat programs
|
||||
app-text/lizard 1.17.13 1.17.19 1.17.20: A simple code complexity analyser, supports most of the popular languages.
|
||||
app-text/lizard 1.17.13 1.17.19 1.17.20 1.17.23: A simple code complexity analyser, supports most of the popular languages.
|
||||
app-text/lorien-bin 0.6.0-r2: Infinite canvas drawing/whiteboarding. Made with Godot.
|
||||
app-text/lsp 0.5.0_rc4 9999: The least significant pager
|
||||
app-text/owo 0.1.0: OwO-ifies text via regex
|
||||
@ -571,7 +571,6 @@ dev-libs/lsbcrypt 1.0.0-r2: libcrypt wrapper for LiteSpeedTech
|
||||
dev-libs/lsquic 4.0.8-r2 4.0.12: LiteSpeed QUIC (LSQUIC) Library
|
||||
dev-libs/luksmeta 9-r2: LUKSMeta is a simple library for storing metadata in the LUKSv1 header
|
||||
dev-libs/lzfse 9999: LZFSE compression library and command line tool.
|
||||
dev-libs/md4c 0.4.8_p20220115 0.5.2: C Markdown parser. Fast, SAX-like interface, CommonMark Compliant.
|
||||
dev-libs/mtxclient 0.10.0-r1 0.10.0-r2: Client API library for Matrix, built on top of libcurl
|
||||
dev-libs/nanopb 0.4.9.1 9999: plain-C Protocol Buffers for embedded/memory-constrained systems
|
||||
dev-libs/open62541 1.4.11.1: Open source C implementation of OPC UA
|
||||
@ -986,7 +985,7 @@ dev-util/tflint-bin 0.43.0 0.46.0: A Pluggable Terraform Linter
|
||||
dev-util/tokei 12.1.1 12.1.2: Count your code, quickly
|
||||
dev-util/trivy 0.55.2: Vulnerability scanner for container images, file systems, and Git repos
|
||||
dev-util/typescript-language-server 4.1.2 4.3.3: TypeScript & JavaScript Language Server
|
||||
dev-util/u-config 0.33.3: Lean and mean pkg-config replacement
|
||||
dev-util/u-config 0.33.3 9999: Lean and mean pkg-config replacement
|
||||
dev-util/upstream-ontologist 0.1.35-r1: Tracking of upstream project metadata
|
||||
dev-util/vala-language-server 0.48.4: Code Intelligence for Vala & Genie
|
||||
dev-util/vscode-langservers-extracted 4.8.0 4.10.0: HTML/CSS/JSON/ESLint/Markdown language servers extracted from vscode.
|
||||
@ -1009,7 +1008,7 @@ dev-zig/zls 0.10.0-r2 0.13.0-r1 0.14.0 9999: The officially unofficial Ziglang l
|
||||
games-action/ATLauncher 3.4.27.0: Minecraft launcher which integrates multiple different ModPacks
|
||||
games-action/blackvoxel 2.50 9999: Blackvoxel Video Game
|
||||
games-action/classicube 1.3.7 9999: Reverse-engineered Minecraft Classic client
|
||||
games-action/ddnet 19.0 9999: DDraceNetwork, a cooperative racing mod of Teeworlds
|
||||
games-action/ddnet 19.1 9999: DDraceNetwork, a cooperative racing mod of Teeworlds
|
||||
games-action/netrek-brmh 2.6.0: brmh client for netrek
|
||||
games-action/netrek-cow 3.3.2: cow client for netrek
|
||||
games-action/technic-launcher 4.768 4.822: Minecraft launcher for community-made modpacks on the Technic Platform
|
||||
@ -1068,7 +1067,7 @@ games-strategy/zedonline-bin 0.3.2-r1: A remake of the 1996 classic game Z, with
|
||||
games-util/NotEnoughProduction 0.0.4: Tool for building production chains for modded minecraft
|
||||
games-util/ProtonUp-Qt 2.11.1 9999: Install and manage GE-Proton, Luxtorpeda & more for Steam Lutris and Heroic.
|
||||
games-util/chiaki-ng 1.9.5 9999: Client for PlayStation 4 and PlayStation 5 Remote Play
|
||||
games-util/curseforge 1.275.0_p24463: The CurseForge Electron App
|
||||
games-util/curseforge 1.275.1_p24561: The CurseForge Electron App
|
||||
games-util/dwarf-therapist 41.2.5 42.1.5: For managing dwarves in Dwarf Fortress
|
||||
games-util/gamehub 0.16.3.2-r1: GameHub is a unified library for all your games
|
||||
games-util/goverlay 1.2: Graphical UI to help manage Linux game overlays (MangoHud).
|
||||
@ -1138,7 +1137,7 @@ gui-apps/hiprompt-gtk-py 0.8.0 9999: GTK+ Himitsu prompter for Wayland
|
||||
gui-apps/hypridle 0.1.5-r2 9999: Hyprland's idle daemon
|
||||
gui-apps/hyprlock 0.6.0 9999: Hyprland's GPU-accelerated screen locking utility
|
||||
gui-apps/hyprnome 0.3.0: GNOME-like workspace switching in Hyprland.
|
||||
gui-apps/hyprpaper 0.7.1-r1 0.7.3-r1 0.7.3-r2: A blazing fast wayland wallpaper utility
|
||||
gui-apps/hyprpaper 0.7.3-r2 0.7.4: A blazing fast wayland wallpaper utility
|
||||
gui-apps/hyprpicker 0.3.0-r2 0.4.2 9999: A wlroots-compatible Wayland color picker that does not suck
|
||||
gui-apps/hyprshade 3.2.1 9999: Hyprland shader configuration tool
|
||||
gui-apps/hyprshot 1.2.3 1.3.0 9999: Hyprshot is an utility to easily take screenshot in Hyprland using your mouse
|
||||
@ -1151,7 +1150,7 @@ gui-apps/koi 0.3.1: Theme scheduling for the KDE Plasma Desktop
|
||||
gui-apps/lan-mouse 0.7.3-r1: Software KVM Switch / mouse & keyboard sharing software for Local Area Networks
|
||||
gui-apps/lemurs 0.3.2: A TUI Display/Login Manager
|
||||
gui-apps/lswt 1.0.4-r1 2.0.0 9999: List Wayland toplevels
|
||||
gui-apps/meteo-qt 3.4 4.1: A system tray application for the weather status
|
||||
gui-apps/meteo-qt 4.1 4.2: A system tray application for the weather status
|
||||
gui-apps/mpvpaper 1.7 9999: A video wallpaper program for wlroots based wayland compositors
|
||||
gui-apps/nwg 0: meta package package for nwg-shell
|
||||
gui-apps/nwg-bar 0.1.5 0.1.6: GTK3-based button bar for wlroots-based compositors
|
||||
@ -1272,7 +1271,7 @@ media-gfx/KTX-Software 4.3.2: KTX (Khronos Texture) Library and Tools
|
||||
media-gfx/WebPlotDigitizer-bin 4.7: Web based tool to extract data from plots, images, and maps
|
||||
media-gfx/airsane 0.4.3: Publish SANE scanners via Apple Airscan/eSCL
|
||||
media-gfx/azpainter 3.0.11: Full color painting software for Linux for illustration drawing
|
||||
media-gfx/bambustudio-bin 02.00.00.95: Bambu Studio is a cutting-edge, feature-rich slicing software
|
||||
media-gfx/bambustudio-bin 02.00.01.50: Bambu Studio is a cutting-edge, feature-rich slicing software
|
||||
media-gfx/beeref 0.3.3: A Simple Reference Image Viewer
|
||||
media-gfx/bonzomatic 2022.02.05 2022.08.20 9999: Live shader coding tool and Shader Showdown workhorse
|
||||
media-gfx/czkawka 8.0.0: App to find duplicates, empty folders and similar images
|
||||
@ -1373,7 +1372,7 @@ media-sound/spotube-bin 3.8.0: An open source, cross-platform Spotify client
|
||||
media-sound/supersonic 0.13.1 0.13.2 0.14.0: A lightweight and full-featured cross-platform desktop client
|
||||
media-sound/tidal-hifi-bin 5.16.0-r1 5.17.0: Web version of Tidal running in electron with Hi-Fi support thanks to Widevine.
|
||||
media-sound/yewtube 2.12.0 9999: Terminal-based YouTube player and downloader
|
||||
media-sound/youtube-music-bin 3.6.2-r1: YouTube Music Desktop App bundled with custom plugins
|
||||
media-sound/youtube-music-bin 3.6.2-r1 3.8.0: YouTube Music Desktop App bundled with custom plugins
|
||||
media-sound/zita-ajbridge 0.8.4 0.8.4-r1: zita-a2j and zita-j2a - bridges between ALSA and JACK
|
||||
media-video/avisynth+ 9999: A powerful nonlinear scripting language for video
|
||||
media-video/ciano 0.2.4-r2: A multimedia file converter focused on simplicity
|
||||
@ -1438,10 +1437,10 @@ net-im/Quaternion 0.0.97.1: A Qt-based IM client for Matrix
|
||||
net-im/WasIstLos 1.6.5 1.7.0: An unofficial WhatsApp desktop application for Linux
|
||||
net-im/abaddon 0.2.1 9999: Alternative Discord client using GTK instead of Electron
|
||||
net-im/axolotl-bin 2.0.1: Axolotl is a cross-platform Signal client
|
||||
net-im/beeper 3.109.1 3.110.1: Beeper: Unified Messenger
|
||||
net-im/beeper 3.109.1 3.110.1 4.0.570: Beeper: Unified Messenger
|
||||
net-im/chatterino 2.5.2-r1: Chat client for https://twitch.tv
|
||||
net-im/conduit 0.8.0-r1 0.9.0-r1 9999: Matrix homeserver written in Rust
|
||||
net-im/discord-canary-bin 0.0.593: All-in-one voice and text chat
|
||||
net-im/discord-canary-bin 0.0.621: All-in-one voice and text chat
|
||||
net-im/discord-ptb-bin 0.0.97: All-in-one voice and text chat
|
||||
net-im/eturnal 1.12.0-r1 1.12.1: STUN/TURN server
|
||||
net-im/flare 0.12.0-r1: Chat with your friends on Signal
|
||||
@ -1467,9 +1466,9 @@ net-im/pop 8.0.21: Screen sharing with multiplayer control, with voice
|
||||
net-im/revolt-desktop 1.0.8-r2: Revolt Desktop App
|
||||
net-im/session-desktop-bin 1.10.8: Session Desktop - Onion routing based messenger
|
||||
net-im/sliding-sync 0.99.15 0.99.19: Proxy implementation of MSC3575's sync protocol.
|
||||
net-im/teams-for-linux 1.12.7 1.13.1: Unofficial Microsoft Teams client for Linux. Binary precompiled version.
|
||||
net-im/teams-for-linux 1.12.7 1.13.1 1.13.2: Unofficial Microsoft Teams client for Linux. Binary precompiled version.
|
||||
net-im/vesktop-bin 1.5.4 1.5.5: All-in-one voice and text chat for gamers with Vencord Preinstalled
|
||||
net-im/zulip-desktop-bin 5.11.1: Organized chat for distributed teams.
|
||||
net-im/zulip-desktop-bin 5.11.1 5.12.0: Organized chat for distributed teams.
|
||||
net-irc/catgirl 2.2 2.2a: TLS-only terminal IRC client
|
||||
net-irc/halloy 2025.2: IRC application written in Rust
|
||||
net-irc/litterbox 1.9: TLS-only IRC logger
|
||||
@ -1506,7 +1505,7 @@ net-misc/cve-client 1.1.1 9999: CLI-based client / toolbox for CVE.org
|
||||
net-misc/eg25-manager 0.4.2: Daemon for managing the Quectel EG25 modem
|
||||
net-misc/fedigroup 1.0.6 1.0.8: Emulate group accounts on Mastodon/Pleroma
|
||||
net-misc/fileshelter 6.2.0: FileShelter is a “one-click” file sharing web application
|
||||
net-misc/freetube-bin 0.21.3_beta 0.22.0_beta 0.22.1_beta 0.23.1_beta 0.23.2_beta: A private YouTube desktop client
|
||||
net-misc/freetube-bin 0.21.3_beta 0.22.0_beta 0.22.1_beta 0.23.1_beta 0.23.2_beta 0.23.3_beta: A private YouTube desktop client
|
||||
net-misc/gdown 5.1.0 5.2.0: Google Drive public file/folder downloader
|
||||
net-misc/gdrive 3.9.0-r1 3.9.1-r1: Google Drive CLI Client
|
||||
net-misc/gemget 1.9.0: Command line downloader for the Gemini protocol
|
||||
@ -1558,7 +1557,7 @@ net-p2p/feather 2.6.7-r1 2.6.8 2.7.0 9999: A free, open-source Monero wallet
|
||||
net-p2p/fragments 3.0.1-r1 3.0.1-r2: Fragments is an easy to use BitTorrent client
|
||||
net-p2p/gridcoin 5.4.8.0_p1-r1 5.4.9.0: Proof-of-Stake based cryptocurrency that rewards BOINC computation
|
||||
net-p2p/ipfs-desktop-bin 0.39.0 0.40.0: A desktop client for IPFS. The IPFS's Native Application
|
||||
net-p2p/monero 0.18.3.4-r1 9999: The secure, private, untraceable cryptocurrency
|
||||
net-p2p/monero 0.18.3.4-r1 0.18.4.0 9999: The secure, private, untraceable cryptocurrency
|
||||
net-p2p/monero-gui-bin 0.18.3.4-r1: An open-source GUI wallet developed by the Monero community.
|
||||
net-p2p/p2pool 4.1.1 4.3 4.4 9999: Decentralized pool for Monero mining
|
||||
net-p2p/trezord-go 2.0.33: TREZOR Communication Daemon
|
||||
@ -1569,10 +1568,10 @@ net-proxy/byedpi 0.16.2 0.16.6 9999: Bypass DPI SOCKS proxy
|
||||
net-proxy/ngrok-bin 3.20.0: ngrok is a reverse proxy, firewall, and API gateway
|
||||
net-proxy/shadowsocks-rust 1.22.0: A Rust port of shadowsocks
|
||||
net-proxy/snowflake 2.10.1 2.11.0: Pluggable Transport using WebRTC, inspired by Flashproxy
|
||||
net-voip/baresip 3.18.0 3.19.0 3.20.0: Baresip is a portable and modular SIP User-Agent
|
||||
net-voip/baresip 3.19.0 3.20.0 3.21.0: Baresip is a portable and modular SIP User-Agent
|
||||
net-voip/discover-overlay 0.6.9-r1 0.7.4 0.7.8: Yet another Discord overlay for Linux written in Python using GTK3
|
||||
net-voip/gnome-calls 47.0-r1: Phone dialer and call handler
|
||||
net-voip/re 3.18.0 3.19.0 3.20.0: Generic library for real-time communications with async IO support
|
||||
net-voip/re 3.19.0 3.20.0 3.21.0: Generic library for real-time communications with async IO support
|
||||
net-voip/vvmd 0.8-r1: vvmd is a lower level daemon that retrieves Visual Voicemail
|
||||
net-vpn/GlobalProtect-openconnect 2.3.9-r1: Unofficial GlobalProtect VPN client for Linux
|
||||
net-vpn/cloudflare-warp 2024.2.62-r2 2024.4.133-r1 2024.11.309: Cloudflare Warp Client
|
||||
|
@ -1 +1 @@
|
||||
Sat, 29 Mar 2025 16:05:20 +0000
|
||||
Mon, 31 Mar 2025 10:20:16 +0000
|
||||
|
@ -1,2 +1,3 @@
|
||||
DIST Beeper-4.0.570.AppImage 185525524 BLAKE2B 0ad2029576bb194b9655e357babea5554108a1626325bce87022211b16d0c99f5e1eba563acc7ec3f9511dc5e42114abf0dd10b44be4f419636addc6f8c440f3 SHA512 f5b7a504cf86da613caccc8779178c3f572686b5a74776ccdd91cb18d6f56ca97df600be799cdb67bb6b865a1513f69581535326d99ac4f5722e8cb5a85c7f84
|
||||
DIST beeper-3.109.1-build-240923466rji1i4-amd64.deb 123803512 BLAKE2B 54c811fdb7df499fac04ac15aab5124f83082c276a03bcbd114153fcce3896c0878c198708a796963b6bbf9dd50c5755de5dd05e2d2297f8e864d31cabd50ab1 SHA512 04cb09d013e84557015d33cad12d17d98a09a52d658cbfa8ac1db45aa0a786ea65d59479271496e77964d6c0f3126681ae8097d7ce70a83308078f57af55bf8f
|
||||
DIST beeper-3.110.1-build-241031sx3gh9lyl-amd64.deb 125355116 BLAKE2B 47702200205eb0a026b28e1103b0652e1bf2523d0de8d2e62246850b5355fc67b6d88c9366c69f5cd95af049d41315918fd121979e5c902ca577d5f3a6b59e8f SHA512 898e42696c45ce7ea593ea4b4d2e93413b11c79ed985ee947142c866c9f3dbdce005d905504b3c2acac56f98228219f3db28acfee8a0f17093405c83f35d2409
|
||||
|
116
net-im/beeper/beeper-4.0.570.ebuild
Normal file
116
net-im/beeper/beeper-4.0.570.ebuild
Normal file
@ -0,0 +1,116 @@
|
||||
# Copyright 2024-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
# NOTICE: This is a Electron app (oh my) and the upstream only provides AppImages.
|
||||
|
||||
EAPI=8
|
||||
|
||||
CHROMIUM_LANGS="
|
||||
af am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he hi
|
||||
hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv
|
||||
sw ta te th tr uk ur vi zh-CN zh-TW
|
||||
"
|
||||
|
||||
inherit chromium-2 desktop xdg
|
||||
|
||||
# To check the latest version, run:
|
||||
#
|
||||
# curl -s "https://api.beeper.com/desktop/update-feed.json?bundleID=com.automattic.beeper.desktop&platform=linux&arch=x64&channel=stable" | jq .version
|
||||
|
||||
APPIMAGE="Beeper-${PV}.AppImage"
|
||||
DESCRIPTION="Beeper: Unified Messenger"
|
||||
HOMEPAGE="https://www.beeper.com/"
|
||||
SRC_URI="https://beeper-desktop.download.beeper.com/builds/${APPIMAGE}"
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="all-rights-reserved"
|
||||
SLOT="4"
|
||||
KEYWORDS="-* ~amd64"
|
||||
|
||||
IUSE="appindicator"
|
||||
RESTRICT="bindist mirror strip"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core:2
|
||||
app-crypt/libsecret
|
||||
app-misc/ca-certificates
|
||||
dev-libs/expat
|
||||
dev-libs/glib:2
|
||||
dev-libs/libayatana-appindicator
|
||||
dev-libs/nspr
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
sys-libs/glibc
|
||||
virtual/udev
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libX11
|
||||
x11-libs/libXScrnSaver
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libXtst
|
||||
x11-libs/libdrm
|
||||
x11-libs/libnotify
|
||||
x11-libs/libxcb
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/pango
|
||||
x11-misc/xdg-utils
|
||||
"
|
||||
|
||||
QA_PREBUILT="*"
|
||||
|
||||
pkg_pretend() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
mkdir -p "${S}" || die
|
||||
cp "${DISTDIR}/${APPIMAGE}" "${S}" || die
|
||||
|
||||
cd "${S}" || die # "appimage-extract" unpacks to current directory.
|
||||
chmod +x "${S}/${APPIMAGE}" || die
|
||||
"${S}/${APPIMAGE}" --appimage-extract || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Fix permissions.
|
||||
find "${S}" -type d -exec chmod a+rx {} + || die
|
||||
find "${S}" -type f -exec chmod a+r {} + || die
|
||||
|
||||
cd squashfs-root/locales || die
|
||||
chromium_remove_language_paks
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cd "${S}/squashfs-root" || die
|
||||
|
||||
insinto /usr/share
|
||||
doins -r ./usr/share/icons
|
||||
|
||||
local apphome="/opt/BeeperTexts"
|
||||
local -a toremove=(
|
||||
.DirIcon
|
||||
AppRun
|
||||
LICENSE.electron.txt
|
||||
LICENSES.chromium.html
|
||||
beepertexts.desktop
|
||||
beepertexts.png
|
||||
usr
|
||||
)
|
||||
rm -f -r "${toremove[@]}" || die
|
||||
|
||||
mkdir -p "${ED}/${apphome}" || die
|
||||
cp -r . "${ED}/${apphome}" || die
|
||||
|
||||
dosym -r "${apphome}"/beepertexts /usr/bin/beepertexts
|
||||
make_desktop_entry "beepertexts" Beeper beepertexts "Network;" \
|
||||
"StartupWMClass=Beeper\nMimeType=x-scheme-handler/beeper;"
|
||||
}
|
@ -1 +1 @@
|
||||
DIST discord-canary-0.0.593.deb 101944332 BLAKE2B 516fd99426b3f12a521453d989d1e9d27ff76bc685ec0f2a1330c9dbc3e4970c47d544aecb0e26532df5e4d98f0c7a8de3152a7ab22550ecf8d93a1b92040204 SHA512 a7e4821f3d5a5ea26547488d6769cf3c19d497455c7211539fc20d8c08f40cbfecb3f61016d754abd2c16be7218add3014a6022559b989045d440e9db792e0d6
|
||||
DIST discord-canary-0.0.621.deb 104898214 BLAKE2B 17a3d7ee54f0fd425d3fc5f20b0c94bba9996a17d48957fd5f85e9ea6ee6a5ba01cc0151ef46e75db36ac6794b7c45ee17cbd6c574bc82cb99a32633aa213508 SHA512 7621c851999ce482581cb9737b3e76620e91fc7e40fba40a16735fa6d42cc2629eceada426b8fae2e5f9395f9c52d14b554379e2e41e2aaf1c0595f102a53ce9
|
||||
|
@ -4,3 +4,6 @@ DIST teams-for-linux-1.12.7.x86_64.rpm 89274717 BLAKE2B a071af126e277f4e5e5e2e9b
|
||||
DIST teams-for-linux-1.13.1.aarch64.rpm 84481941 BLAKE2B dc89f7720dd658cc80a1ec5ee27ca2deb96633787d0d71bb4e00c92d81971883108083d6c05a0a39978eaa29ef0b359ab870b1e69f3e530f70c32e1f8265aea0 SHA512 2f7780ea7b50b905c0d2c26d850b32dc1251e53f46b3694f9969d93f8e6e29515322641cb685aebaa157ca875cc978e763f0b167dacc7fec0d4c55e6a34230a2
|
||||
DIST teams-for-linux-1.13.1.armv7l.rpm 83801985 BLAKE2B a37dda528e1068b5918e02bc8742203d5580dfa1b4284289f67c2162fcae34a766b0915289737bd2e937fcf353185d72b12b671e1fb985521c4b459e1ee6fd2a SHA512 dd885154b1df1bc23096ea17f9334f71a97f2298d69d9e3c3dd9351b3e2e6f1b35a6ba52f0f2e018d988b693f55a7b261547c3a688e156ccdbb0a96408b591a7
|
||||
DIST teams-for-linux-1.13.1.x86_64.rpm 89074137 BLAKE2B 027f16e37791a2686e0ab82b43b8d2edb9370af9b6bb22ae9c83c74e909504ca7f20ecdfbef6a2d807359d92b41dc9182e992b9c9c64d91656e51d893dd5a000 SHA512 0f66bf1375ab64599cfa6384892f5bd04f775d5473c01e944bfbce74a816368b44c523df10314af4c3cb5ad69d630d194eb57f1c8da15ca562adca292c3bfd67
|
||||
DIST teams-for-linux-1.13.2.aarch64.rpm 84470569 BLAKE2B 0d63862993ec2ac761929ee629d94060b8f8b4ef81a160f1cd75dd314da1ca90ebbf803cfbefa4aa39e8e98cf0adb15af4e33482ff8ef439cdb74bbe8ed36bdf SHA512 78f3de9e01ad2af704320365de900fe0876286a5c08636ddf03f8c4644232ad5fd0509da298b5582b3ecd9239a8a58a21a27aa614981c96d4b2276fa4b62f661
|
||||
DIST teams-for-linux-1.13.2.armv7l.rpm 83782185 BLAKE2B 6e60f044e5a601e30910d88592019ccb9ec43f2d936bb290699ffc75ef477d92495102cc66945b0615533187f5f02ffab4827486798ca89ac7bd8792c8aceb17 SHA512 b2f751aeacaffc5dc8af794966c40352c35188fb365723315cd1c00cddd23583ade7a51f34d01f9e3fe40616cd9ecb04cab5c1e951cc6d7dbf37b015b2969eae
|
||||
DIST teams-for-linux-1.13.2.x86_64.rpm 89063373 BLAKE2B b7a515d555e4b088b2060b21bf08de3ac588e5f541f96af0694f1f3572d8fffabc38d78ce758030cea1afd26db70c5f7e2e6cde1eed849c5f134bc2219ad8a2b SHA512 795bfa15686b3ec0dea7e787fafdea3f2018f29c45b3a04b9206757099c77d09c0e79cc72d76e20c63d4ae0c5b0d51a7128b25e3a943180bfc51f48b568b9041
|
||||
|
100
net-im/teams-for-linux/teams-for-linux-1.13.2.ebuild
Normal file
100
net-im/teams-for-linux/teams-for-linux-1.13.2.ebuild
Normal file
@ -0,0 +1,100 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
CHROMIUM_LANGS="
|
||||
af am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he
|
||||
hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr
|
||||
sv sw ta te th tr uk ur vi zh-CN zh-TW
|
||||
"
|
||||
|
||||
inherit chromium-2 desktop rpm xdg
|
||||
|
||||
DESCRIPTION="Unofficial Microsoft Teams client for Linux. Binary precompiled version."
|
||||
HOMEPAGE="https://github.com/IsmaelMartinez/teams-for-linux"
|
||||
SRC_URI="
|
||||
amd64? ( https://github.com/IsmaelMartinez/${PN}/releases/download/v${PV}/${PN}-${PV}.x86_64.rpm )
|
||||
arm? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v${PV}/${P}.armv7l.rpm )
|
||||
arm64? ( https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v${PV}/${P}.aarch64.rpm )
|
||||
"
|
||||
S="${WORKDIR}"
|
||||
|
||||
# Electron bundles a bunch of things
|
||||
LICENSE="
|
||||
MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2
|
||||
unRAR OFL-1.1 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
|
||||
"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64 ~arm ~arm64"
|
||||
RESTRICT="bindist mirror"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core:2
|
||||
dev-libs/expat
|
||||
dev-libs/glib:2
|
||||
dev-libs/nspr
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libdrm
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libXrandr
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
QA_PREBUILT="opt/teams-for-linux/*"
|
||||
|
||||
pkg_pretend() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
# cleanup languages
|
||||
pushd "opt/teams-for-linux/locales" || die
|
||||
chromium_remove_language_paks
|
||||
popd || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
for size in {16,24,32,48,64,96,128,256,512,1024}; do
|
||||
doicon -s ${size} "usr/share/icons/hicolor/${size}x${size}/apps/teams-for-linux.png"
|
||||
done
|
||||
|
||||
domenu usr/share/applications/teams-for-linux.desktop
|
||||
|
||||
local DESTDIR="/opt/teams-for-linux"
|
||||
|
||||
pushd "opt/teams-for-linux" || die
|
||||
|
||||
exeinto "${DESTDIR}"
|
||||
doexe chrome-sandbox chrome_crashpad_handler teams-for-linux *.so*
|
||||
|
||||
insinto "${DESTDIR}"
|
||||
doins *.pak *.bin *.json *.dat
|
||||
insopts -m0755
|
||||
doins -r locales resources
|
||||
|
||||
# Chrome-sandbox requires the setuid bit to be specifically set.
|
||||
# see https://github.com/electron/electron/issues/17972
|
||||
fperms 4755 "${DESTDIR}"/chrome-sandbox
|
||||
|
||||
dosym "${DESTDIR}"/teams-for-linux /opt/bin/teams-for-linux
|
||||
popd || die
|
||||
}
|
@ -1 +1,2 @@
|
||||
DIST Zulip-5.11.1-amd64.deb 77340186 BLAKE2B 11ec4a710c968341dd6591966e2edec925f2a825059d61cc2453866a79cfad635862cad70c91b6a2637e74379ced318fc8fa92c094967d048f780b9e2c586cef SHA512 2fbb49606dfd9c147817427e510781526e9cce3f244f9ecf9f86cf37f6cd73f4029412fbed2c70a9286613873a1c72cf1ba5b63f1947f077b9a19a128c632e46
|
||||
DIST Zulip-5.12.0-amd64.deb 81174072 BLAKE2B 6e5b9913944d81264b30522064fd212ab39fc6102f2c121b79eb990ef185c892663984b70fbb49286900e535245f75f44d6510be14cc492f20009cabec315fcc SHA512 134329d646bf6adc402b4b4372780c2078a48af26082b32ca1a40c97749d680f34a4d6d20015d797f99fa9dc810c5f6f2a67f0d28605a62daea96c9c60fdc16d
|
||||
|
@ -14,7 +14,7 @@ inherit chromium-2 desktop unpacker xdg
|
||||
DESCRIPTION="Organized chat for distributed teams."
|
||||
HOMEPAGE="https://zulip.com/"
|
||||
SRC_URI="
|
||||
amd64? ( https://download.zulip.com/desktop/apt/pool/main/z/zulip/Zulip-5.11.1-amd64.deb )
|
||||
amd64? ( https://download.zulip.com/desktop/apt/pool/main/z/zulip/Zulip-${PV}-amd64.deb )
|
||||
"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
99
net-im/zulip-desktop-bin/zulip-desktop-bin-5.12.0.ebuild
Normal file
99
net-im/zulip-desktop-bin/zulip-desktop-bin-5.12.0.ebuild
Normal file
@ -0,0 +1,99 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
CHROMIUM_LANGS="
|
||||
af am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he hi
|
||||
hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv
|
||||
sw ta te th tr uk ur vi zh-CN zh-TW
|
||||
"
|
||||
|
||||
inherit chromium-2 desktop unpacker xdg
|
||||
|
||||
DESCRIPTION="Organized chat for distributed teams."
|
||||
HOMEPAGE="https://zulip.com/"
|
||||
SRC_URI="
|
||||
amd64? ( https://download.zulip.com/desktop/apt/pool/main/z/zulip/Zulip-${PV}-amd64.deb )
|
||||
"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="
|
||||
MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2
|
||||
unRAR OFL-1.1 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
|
||||
"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64"
|
||||
|
||||
RESTRICT="bindist mirror"
|
||||
|
||||
RDEPEND="
|
||||
>=app-accessibility/at-spi2-core-2.46.0:2
|
||||
dev-libs/expat
|
||||
dev-libs/glib:2
|
||||
dev-libs/nspr
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
sys-libs/glibc
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libdrm
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libXrandr
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
QA_PREBUILT="opt/Zulip/*"
|
||||
|
||||
pkg_pretend() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
# cleanup languages
|
||||
pushd "opt/Zulip/locales" || die
|
||||
chromium_remove_language_paks
|
||||
popd || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
chromium_suid_sandbox_check_kernel_config
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# why does this release only have one icon size?!?
|
||||
size=512
|
||||
doicon -s ${size} "usr/share/icons/hicolor/${size}x${size}/apps/zulip.png"
|
||||
|
||||
domenu usr/share/applications/zulip.desktop
|
||||
|
||||
local DESTDIR="/opt/Zulip"
|
||||
pushd "opt/Zulip" || die
|
||||
|
||||
exeinto "${DESTDIR}"
|
||||
doexe chrome-sandbox chrome_crashpad_handler zulip *.so*
|
||||
|
||||
insinto "${DESTDIR}"
|
||||
doins *.pak *.bin *.json *.dat
|
||||
insopts -m0755
|
||||
doins -r locales resources
|
||||
|
||||
# Chrome-sandbox requires the setuid bit to be specifically set.
|
||||
# see https://github.com/electron/electron/issues/17972
|
||||
fperms 4755 "${DESTDIR}"/chrome-sandbox
|
||||
|
||||
dosym "${DESTDIR}"/zulip /opt/bin/zulip
|
||||
popd || die
|
||||
}
|
@ -3,3 +3,4 @@ DIST freetube-bin-0.22.0_beta.deb 77144226 BLAKE2B 2aad09f3df5adbde93e83736c9886
|
||||
DIST freetube-bin-0.22.1_beta.deb 76861498 BLAKE2B 9f80e6b89708e7116091135f3f305bd2363ebb6fab6e95864b776546279ba73a369d0e706d36e2017a1738cb5982bfe7ccf24898b7856b4b2d99c49b0512b2d0 SHA512 1ba1a74750c185d3fbb825d90d378e427fe32a2e1e61f2299677be457e454248f4df1462f6f46e32122434e7c672776dbff55bdca0e1a6b7d944bec3eb1af0e4
|
||||
DIST freetube-bin-0.23.1_beta.deb 76358302 BLAKE2B 1b3103f5388ad7fab46ec7c0a06f6782d32231aec68903e1738e956e01bbb4e3e66f3892b4f1a2940a626591e35f2af19cf1c6c8c7d502c2f47c7c9d645e9ff6 SHA512 3bf75a5e29d309cda74f36e3d1e3aa0e8af1bac4e4261ffd2868f9e799dbdd884bafc026771268771c80f54af6fe46692b13bd4c9fff1206cc3a1465d186f2bd
|
||||
DIST freetube-bin-0.23.2_beta.deb 76175638 BLAKE2B 46f180933603b9de6b3ed9ffe06e4d5ee6d7113c7beff625e8d9a13e9095290e09646bb342803946da20971b301c559870ae69470ac3ab90e863eccd79ada97c SHA512 b08247370e9eb77c2186a9269e8e94b09037054edb9a7c97d04f2e0e1600e326bed2423c300d084fbf60d4c56abb5aed9080cb52d99d07fe2f85d100c5c47fee
|
||||
DIST freetube-bin-0.23.3_beta.deb 76378164 BLAKE2B 3feef78a847f9ba1f5903f1587eba325728845ad5f2383618a2a0bb2a5d7068019531fef7b45a9bd780fe578b87b130448424f560d19b35fdd6b60a27c78d2f5 SHA512 663fc98905bda7164a973130a820cae5ab44a1d46e04cf7e574b6f888a80e98e8482951f67d95615cb645c737d42ae738dea77f16a0e9da3c36efee2ffe44a34
|
||||
|
69
net-misc/freetube-bin/freetube-bin-0.23.3_beta.ebuild
Normal file
69
net-misc/freetube-bin/freetube-bin-0.23.3_beta.ebuild
Normal file
@ -0,0 +1,69 @@
|
||||
# Copyright 2021-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop unpacker xdg
|
||||
|
||||
DESCRIPTION="A private YouTube desktop client"
|
||||
HOMEPAGE="https://freetubeapp.io/ https://github.com/FreeTubeApp/FreeTube"
|
||||
SRC_URI="https://github.com/FreeTubeApp/FreeTube/releases/download/v${PV/_/-}/freetube_${PV%_*}_amd64.deb
|
||||
-> ${P}.deb
|
||||
"
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="AGPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
QA_PREBUILT="
|
||||
/opt/FreeTube/freetube
|
||||
/opt/FreeTube/libEGL.so
|
||||
/opt/FreeTube/libffmpeg.so
|
||||
/opt/FreeTube/libGLESv2.so
|
||||
/opt/FreeTube/libvulkan.so*
|
||||
/opt/FreeTube/chrome_crashpad_handler
|
||||
/opt/FreeTube/chrome-sandbox
|
||||
/opt/FreeTube/libvk_swiftshader.so
|
||||
/opt/FreeTube/swiftshader/libEGL.so
|
||||
/opt/FreeTube/swiftshader/libGLESv2.so
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core:2
|
||||
dev-libs/expat
|
||||
dev-libs/glib:2
|
||||
dev-libs/nspr
|
||||
dev-libs/nss
|
||||
media-libs/alsa-lib
|
||||
media-libs/mesa
|
||||
net-print/cups
|
||||
sys-apps/dbus
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf:2
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libX11
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libdrm
|
||||
x11-libs/libxcb
|
||||
x11-libs/libxkbcommon
|
||||
x11-libs/libxshmfence
|
||||
x11-libs/pango
|
||||
"
|
||||
|
||||
src_install() {
|
||||
insinto /opt
|
||||
doins -r opt/*
|
||||
|
||||
domenu usr/share/applications/freetube.desktop
|
||||
doicon -s scalable usr/share/icons/hicolor/scalable/apps/freetube.svg
|
||||
|
||||
fperms 4755 /opt/FreeTube/chrome-sandbox
|
||||
fperms +x /opt/FreeTube/freetube
|
||||
|
||||
dosym -r /opt/FreeTube/freetube /usr/bin/freetube-bin
|
||||
}
|
@ -1 +1,2 @@
|
||||
DIST monero-0.18.3.4.tar.gz 14039924 BLAKE2B cb60f1db4f482bac3b3f5fa606bf1c78103b14f927d4636e5fda4aa96dcc08a9f990355ceb1cdc8c253245a0a2a1c98cf4fd7101d13d78ac6e7d1450192fc2db SHA512 f2708bf7698410c1509ae41148c298e352b3401e1df900b7152c25cb5ceb2f5bde68274fd37b1a328e932be50bdf93fe364561c520a15e3df7de2cdbd20d1be8
|
||||
DIST monero-0.18.4.0.tar.gz 14083573 BLAKE2B 6edd37cf89305dabddf04aa454a605f578276a924f703025b906612438de9dce12c854127b851ae0a71eb4b7aac6c9aa1bb7beb0d6ed311a55c19387117c2ba0 SHA512 6d17654a37d1a3aec37f641a58026a5f602e13836bdc50223ce6bf82ad9be9db2cf5abadd6b7bc963f4bfc0e18aa76298d89050686f6563d0567d2745e0512eb
|
||||
|
103
net-p2p/monero/files/monero-0.18.4.0-unbundle-dependencies.patch
Normal file
103
net-p2p/monero/files/monero-0.18.4.0-unbundle-dependencies.patch
Normal file
@ -0,0 +1,103 @@
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -458,7 +458,7 @@
|
||||
# elseif(CMAKE_SYSTEM_NAME MATCHES ".*BSDI.*")
|
||||
# set(BSDI TRUE)
|
||||
|
||||
-include_directories(external/rapidjson/include external/easylogging++ src contrib/epee/include external external/supercop/include)
|
||||
+include_directories(external/rapidjson/include external/easylogging++ src contrib/epee/include external )
|
||||
|
||||
if(APPLE)
|
||||
cmake_policy(SET CMP0042 NEW)
|
||||
@@ -1201,7 +1201,6 @@
|
||||
set(ZMQ_LIB "${ZMQ_LIB};${SODIUM_LIBRARY}")
|
||||
endif()
|
||||
|
||||
-include(external/supercop/functions.cmake) # place after setting flags and before src directory inclusion
|
||||
add_subdirectory(contrib)
|
||||
add_subdirectory(src)
|
||||
|
||||
--- a/external/CMakeLists.txt
|
||||
+++ b/external/CMakeLists.txt
|
||||
@@ -37,22 +37,7 @@
|
||||
|
||||
find_package(Miniupnpc REQUIRED)
|
||||
|
||||
-message(STATUS "Using in-tree miniupnpc")
|
||||
-set(UPNPC_NO_INSTALL TRUE CACHE BOOL "Disable miniupnp installation" FORCE)
|
||||
-set(UPNPC_BUILD_SHARED OFF CACHE BOOL "Disable building shared library" FORCE)
|
||||
-add_subdirectory(miniupnp/miniupnpc)
|
||||
-set_property(TARGET libminiupnpc-static PROPERTY FOLDER "external")
|
||||
-set_property(TARGET libminiupnpc-static PROPERTY POSITION_INDEPENDENT_CODE ON)
|
||||
-if(MSVC)
|
||||
- set_property(TARGET libminiupnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -wd4244 -wd4267")
|
||||
-elseif(NOT MSVC)
|
||||
- set_property(TARGET libminiupnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-undef -Wno-unused-result -Wno-unused-value")
|
||||
-endif()
|
||||
-if(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
||||
- set_property(TARGET libminiupnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -D_NETBSD_SOURCE")
|
||||
-endif()
|
||||
-
|
||||
-set(UPNP_LIBRARIES "libminiupnpc-static" PARENT_SCOPE)
|
||||
+set(UPNP_LIBRARIES "miniupnpc" PARENT_SCOPE)
|
||||
|
||||
find_package(Unbound)
|
||||
|
||||
@@ -69,4 +55,3 @@
|
||||
add_subdirectory(db_drivers)
|
||||
add_subdirectory(easylogging++)
|
||||
add_subdirectory(qrcodegen)
|
||||
-add_subdirectory(randomx EXCLUDE_FROM_ALL)
|
||||
--- a/src/crypto/CMakeLists.txt
|
||||
+++ b/src/crypto/CMakeLists.txt
|
||||
@@ -55,6 +55,7 @@
|
||||
endif()
|
||||
|
||||
include_directories(${RANDOMX_INCLUDE})
|
||||
+include_directories(SYSTEM /usr/include/monero)
|
||||
|
||||
set(crypto_headers)
|
||||
|
||||
@@ -97,6 +98,3 @@
|
||||
# cheat because cmake and ccache hate each other
|
||||
set_property(SOURCE CryptonightR_template.S PROPERTY LANGUAGE C)
|
||||
set_property(SOURCE CryptonightR_template.S PROPERTY XCODE_EXPLICIT_FILE_TYPE sourcecode.asm)
|
||||
-
|
||||
-# Must be done last, because it references libraries in this directory
|
||||
-add_subdirectory(wallet)
|
||||
--- a/src/crypto/wallet/crypto.h
|
||||
+++ b/src/crypto/wallet/crypto.h
|
||||
@@ -30,7 +30,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
-#include "crypto/wallet/ops.h"
|
||||
|
||||
namespace crypto {
|
||||
namespace wallet {
|
||||
--- a/src/device/CMakeLists.txt
|
||||
+++ b/src/device/CMakeLists.txt
|
||||
@@ -73,7 +73,7 @@
|
||||
cncrypto
|
||||
cryptonote_format_utils_basic
|
||||
ringct_basic
|
||||
- wallet-crypto
|
||||
+ monero-crypto
|
||||
${OPENSSL_CRYPTO_LIBRARIES}
|
||||
${Boost_SERIALIZATION_LIBRARY}
|
||||
PRIVATE
|
||||
--- a/src/p2p/net_node.inl
|
||||
+++ b/src/p2p/net_node.inl
|
||||
@@ -60,9 +60,9 @@
|
||||
#include "cryptonote_core/cryptonote_core.h"
|
||||
#include "net/parse.h"
|
||||
|
||||
-#include <miniupnp/miniupnpc/miniupnpc.h>
|
||||
-#include <miniupnp/miniupnpc/upnpcommands.h>
|
||||
-#include <miniupnp/miniupnpc/upnperrors.h>
|
||||
+#include <miniupnpc/miniupnpc.h>
|
||||
+#include <miniupnpc/upnpcommands.h>
|
||||
+#include <miniupnpc/upnperrors.h>
|
||||
|
||||
#undef MONERO_DEFAULT_LOG_CATEGORY
|
||||
#define MONERO_DEFAULT_LOG_CATEGORY "net.p2p"
|
123
net-p2p/monero/monero-0.18.4.0.ebuild
Normal file
123
net-p2p/monero/monero-0.18.4.0.ebuild
Normal file
@ -0,0 +1,123 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake systemd
|
||||
|
||||
DESCRIPTION="The secure, private, untraceable cryptocurrency"
|
||||
HOMEPAGE="https://github.com/monero-project/monero"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/monero-project/monero.git"
|
||||
EGIT_SUBMODULES=()
|
||||
else
|
||||
SRC_URI="https://github.com/monero-project/monero/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="BSD MIT"
|
||||
SLOT="0"
|
||||
IUSE="+daemon hw-wallet readline +tools +wallet-cli +wallet-rpc"
|
||||
REQUIRED_USE="|| ( daemon tools wallet-cli wallet-rpc )"
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="
|
||||
acct-group/monero
|
||||
acct-user/monero
|
||||
dev-libs/boost:=[nls]
|
||||
dev-libs/libsodium:=
|
||||
dev-libs/openssl:=
|
||||
dev-libs/randomx
|
||||
dev-libs/rapidjson
|
||||
dev-libs/supercop
|
||||
net-dns/unbound:=[threads]
|
||||
net-libs/czmq:=
|
||||
net-libs/miniupnpc:=
|
||||
readline? ( sys-libs/readline:0= )
|
||||
hw-wallet? (
|
||||
dev-libs/hidapi
|
||||
dev-libs/protobuf:=
|
||||
virtual/libusb:1
|
||||
)
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-0.18.4.0-unbundle-dependencies.patch"
|
||||
"${FILESDIR}/${PN}-0.18.3.3-miniupnp-api-18.patch"
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
# TODO: Update CMake to install built libraries (help wanted)
|
||||
-DBUILD_SHARED_LIBS=OFF
|
||||
-DMANUAL_SUBMODULES=ON
|
||||
-DUSE_DEVICE_TREZOR=$(usex hw-wallet ON OFF)
|
||||
)
|
||||
|
||||
use elibc_musl && mycmakeargs+=( -DSTACK_TRACE=OFF )
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local targets=()
|
||||
use daemon && targets+=(daemon)
|
||||
use tools && targets+=(blockchain_{ancestry,blackball,db,depth,export,import,prune,prune_known_spent_data,stats,usage})
|
||||
use wallet-cli && targets+=(simplewallet)
|
||||
use wallet-rpc && targets+=(wallet_rpc_server)
|
||||
cmake_build ${targets[@]}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
# Install all binaries.
|
||||
find "${BUILD_DIR}/bin/" -type f -executable -print0 |
|
||||
while IFS= read -r -d '' line; do
|
||||
dobin "$line"
|
||||
done
|
||||
|
||||
if use daemon; then
|
||||
dodoc utils/conf/monerod.conf
|
||||
|
||||
# data-dir
|
||||
keepdir /var/lib/monero
|
||||
fowners monero:monero /var/lib/monero
|
||||
fperms 0755 /var/lib/monero
|
||||
|
||||
# log-file dir
|
||||
keepdir /var/log/monero
|
||||
fowners monero:monero /var/log/monero
|
||||
fperms 0755 /var/log/monero
|
||||
|
||||
# /etc/monero/monerod.conf
|
||||
insinto /etc/monero
|
||||
doins "${FILESDIR}/monerod.conf"
|
||||
|
||||
# OpenRC
|
||||
newconfd "${FILESDIR}/monerod.confd" monerod
|
||||
newinitd "${FILESDIR}/monerod.initd" monerod
|
||||
|
||||
# systemd
|
||||
systemd_dounit "${FILESDIR}/monerod.service"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use daemon; then
|
||||
elog "Start the Monero P2P daemon as a system service with"
|
||||
elog "'rc-service monerod start'. Enable it at startup with"
|
||||
elog "'rc-update add monerod default'."
|
||||
elog
|
||||
elog "Run monerod status as any user to get sync status and other stats."
|
||||
elog
|
||||
elog "The Monero blockchain can take up a lot of space (200 GiB) and is stored"
|
||||
elog "in /var/lib/monero by default. You may want to enable pruning by adding"
|
||||
elog "'prune-blockchain=1' to /etc/monero/monerod.conf to prune the blockchain"
|
||||
elog "or move the data directory to another disk."
|
||||
fi
|
||||
}
|
@ -46,7 +46,7 @@ RDEPEND="${DEPEND}"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-0.18.3.3-unbundle-dependencies.patch"
|
||||
"${FILESDIR}/${PN}-0.18.4.0-unbundle-dependencies.patch"
|
||||
"${FILESDIR}/${PN}-0.18.3.3-miniupnp-api-18.patch"
|
||||
)
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
DIST baresip-3.18.0.tar.gz 1179585 BLAKE2B 658fbc810c2d4b80c285f1788ab520af9a02cfbb10145b18b756c5774acbea2d33b8dda9c60415e833320f3338aa658d0e5d9f41f3baff0422e180dc894f9e24 SHA512 98d7c73a23ae64964b82504dd3ddc1386d197a0da04af726b572364549b1c874829e7b4db4ec5fdf8eafd2ea4fb4a653dff4aec517036d7989a1cf6a6f38f8ac
|
||||
DIST baresip-3.19.0.tar.gz 1177190 BLAKE2B f14f580ebd4a9a4cf7ecaf172db317eefd3be5736c269ca78d2a7e3613583c4662717d1ec65d0828d6982cf5969b0ad96a61ca1573b7e0efb3d89014666a39d1 SHA512 b8a34b0103fbbe280a6ce1da11739d703904665e27b559effa8f22cfb1127ae6fe2adff7d3e1eb5836996845c898ac28081d301371393fe18c682da03ae5e622
|
||||
DIST baresip-3.20.0.tar.gz 1179018 BLAKE2B 85817809c9b1b7e3d2564ab9e77c03138eec11e9012f0594f83d62e9faec6e7926711bc44ee184eed2abdb441bcba819f3bb322efbab59c454a81914478a7122 SHA512 bd77e553dd9dfe49fe4a1b06f4ec21c72edaaa90d6d798a078a3286ce7d809679327cbaf0b803bda3b7050ba5c5e3483d78b1451625f5f4d91352019129cde5e
|
||||
DIST baresip-3.21.0.tar.gz 1180958 BLAKE2B d57a361cc6cd8d41b2fcf18436cdc4e69836ebb4dc8ca61e8842f67edd1f381877607a84a27f8d51822f6b0f84d00c37f1ed20c2bfb16dc5d2e0ae5af7f0a90c SHA512 394350b58cc681cf135130e4127f857f0fbe77bf2a4047faae4bace8af3156f3a1b87ad94a9ad343904b8cd226c9da2fc5d68527022ce35e1f89b6be33a24d9b
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
@ -1,3 +1,3 @@
|
||||
DIST re-3.18.0.tar.gz 613187 BLAKE2B 584f360c388f1c4d2937348a2a1c2824b885381905f4f66aeb3e6fea0a6ebb397dca86c94fe7b6c2b54de569032a9b35a3676d4bef35668c66cfed8620836dec SHA512 db9c67a60803a224a87aa4104d5a0a349d09946b5bf7c8b18fd121ed7517d25a5412b0516dfc6a386218db9d5020b65ac1253966052a4978075e6bfcb71dc908
|
||||
DIST re-3.19.0.tar.gz 613021 BLAKE2B 304db418274e99adb93d6b14e114c8ebdfde64e835e18a4e9a01fc8f744914b7276ee7daee58d6f4ad3c58f798721c1fceaae93ba41d4f0dcc5aa897bb9ad40f SHA512 3714112a84add97b4e96cd74352ec13ba5def2ddefc6d549956caec3b4a9122942dd667359b8b66ba51b2a8c597373cb8d45f5b48c0aff782394b8bbdc43e836
|
||||
DIST re-3.20.0.tar.gz 615600 BLAKE2B a3f6fb2e03c8964bd9e934e91a29e87fb1b8935d89c8be405a7fe693010017a1301522384f1a02e3d8a0368513d5c8ad4000bc65b7c7ff1d7227756bef0d272b SHA512 4bafd05f4b5d20b988b1cee7ee673235d1bf5cd96caf5597219fe0b1b4509a61edbea628371f5ece384ca3ef881104100d7a425e7f7a327245a99a9c3374e53c
|
||||
DIST re-3.21.0.tar.gz 616334 BLAKE2B d3a5cbbe3c446cca0be1ae3b502238877463db03c18432e21c7496d94046f12dafb649770851575c6b3b321e8e49b47f9dee3785e16f0616f6926565f742650c SHA512 e68b4d06470ff9211faf883b8d63a9994214e2d3ff1d04f845223f4b15978523ebac2eb6002a18d4cdf3b8f12afc942e7d65338ecfe7aa88858f63c6b4745054
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
@ -18,10 +18,15 @@
|
||||
|
||||
# New entries go on top.
|
||||
|
||||
# Takuya Wakazono <pastalian46@gmail.com> (2025-03-30)
|
||||
# FTBFS bugs open for 2 years.
|
||||
# Removal on 2025-04-30. Bugs #887641, #887643, #945212.
|
||||
games-action/netrek-brmh
|
||||
|
||||
# Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> (2025-03-27)
|
||||
# Superseded by Beeper v4, which has only AppImage builds available.
|
||||
# Superseded by Beeper v4.
|
||||
# Removal on 2025-04-27.
|
||||
net-im/beeper
|
||||
net-im/beeper:0
|
||||
|
||||
# Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> (2025-03-25)
|
||||
# Unmaintained in GURU, no revdeps left.
|
||||
|
@ -139,7 +139,6 @@ dev-libs/librepo:gpgme - Use GPGME instead of rpm library for OpenPGP key suppor
|
||||
dev-libs/librepo:zchunk - Build with zchunk support
|
||||
dev-libs/libsolv:zchunk - Build with zchunk support
|
||||
dev-libs/ls-qpack:tools - Build testing tools
|
||||
dev-libs/md4c:md2html - Build the md2html cli tool
|
||||
dev-libs/nanopb:pb-malloc - Enable dynamic allocation support in the decoder
|
||||
dev-libs/open62541:mbedtls - Enable encryption support using net-libs/mbedtls
|
||||
dev-libs/open62541:openssl - Enable encryption support using dev-libs/openssl
|
||||
@ -181,6 +180,7 @@ dev-util/stylua:lua53 - Build support for Lua 5.3
|
||||
dev-util/stylua:lua54 - Build support for Lua 5.4
|
||||
dev-util/stylua:luajit - Build support for LuaJIT
|
||||
dev-util/stylua:luau - Build support for Luau
|
||||
dev-util/u-config:symlink - Install pkg-config and pkgconf symlink
|
||||
dev-util/vala-language-server:debug_mem -
|
||||
dev-util/vala-language-server:plugins -
|
||||
dev-vcs/jj:git2 - Enables transitory support for dev-libs/libgit2.
|
||||
|
@ -1,3 +1 @@
|
||||
DIST cytoscape-unix-3.10.3.tar.gz 359982151 BLAKE2B 431a5abbfb736d843cfacc18ccf553f86bb068f18112ec6aa56d85db8910b56885e40f200722bbfcf294199a24d62f79243ea1d6af265684cc69b32505bae55b SHA512 44d26d4910d44c9643b3480d3ec6e0e92606337aab83c56fccc2e40798970a8b3b9861b891c4f9103e1dd37d540ce8cb2f52438d2eeeef3d8b9e63f3620b5da6
|
||||
EBUILD cytoscape-bin-3.10.3.ebuild 1007 BLAKE2B 18908907d00c212ade8ad0da94973edb4c09b52cb05891773b5d669c449f23d55c756713565941fa82a3297dbcdf1cc6e24a6678062ada0228a39d68db085d97 SHA512 22c3708957fc8ca96a08e7870b12a639ecdf46b1dd6bef342b217732c345c36524f51f2f287c4e3c450908080c6382956e9606603a1672d7652404a63ee75940
|
||||
MISC metadata.xml 487 BLAKE2B 742986a71aee969bd307d957f5caa55ab027bd28301385cb490ed90fcf3749a5aad8c8c70f619dd3cc54f26f2fb6b94e5a10ba3e56c1462fd70b60852c8ec598 SHA512 71b45f6bd57a3b501cf2b31da412b61f2231958ed6b4b56c3d9a8d983a29a6e56d7b685c58e56f6ce6b4e39ae6c61eb9f9ba1ebb3d1a0fc6be9b8b0b6af33d44
|
||||
|
@ -14,7 +14,7 @@ S="${WORKDIR}"
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
RDEPEND=">=virtual/jre-11-r2"
|
||||
RDEPEND="=virtual/jre-17"
|
||||
|
||||
src_install() {
|
||||
MY_PN="cytoscape"
|
||||
|
Loading…
x
Reference in New Issue
Block a user