From 00c29b7d129449cf01f61d9149a84609d5b8faac Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Thu, 18 Jan 2024 15:15:55 +0500 Subject: [PATCH 1/7] app-emulation/spice-html5: drop 0.2.2 Signed-off-by: Anna (cybertailor) Vyalkova --- app-emulation/spice-html5/Manifest | 1 - .../spice-html5/spice-html5-0.2.2.ebuild | 20 ------------------- 2 files changed, 21 deletions(-) delete mode 100644 app-emulation/spice-html5/spice-html5-0.2.2.ebuild diff --git a/app-emulation/spice-html5/Manifest b/app-emulation/spice-html5/Manifest index 47dbd4e652..7ac86ce35f 100644 --- a/app-emulation/spice-html5/Manifest +++ b/app-emulation/spice-html5/Manifest @@ -1,2 +1 @@ -DIST spice-html5-spice-html5-0.2.2.tar.bz2 396396 BLAKE2B cde1dbec79c28a21fd8beef00b13ade0c937a7eb4cf2195160f724c1eac10074deb2732fa6145d1f8867e7a8c69492f9e8ab7ad52884c781e30ce5620f7e4a71 SHA512 f2e05d510a67726e832cc424eceef7f3188622e8aed4435d16a17c951b96cf315851838aa2b39cf582b5e899bd57587c4e308c9341fb4d18d6b901fbdf819609 DIST spice-html5-spice-html5-0.3.0.tar.bz2 397775 BLAKE2B 8b03203e0a0377d6ae2b14cd4cad058f09c2073f00eda430330dfb9039bd6f0ff8cc817c9ef7728f3a876ece154ea1455dded8aaffa063ddec0c7df9e994aff0 SHA512 0a7c9584a6afad4097909c47d86bdedc6d9d5859cd421daa9834ece1ef11cc43cb1dce68985511e1d1d82d5055ca9025e6705b91ba3130b0e6a05edcf67fe7d0 diff --git a/app-emulation/spice-html5/spice-html5-0.2.2.ebuild b/app-emulation/spice-html5/spice-html5-0.2.2.ebuild deleted file mode 100644 index ee0d182bfa..0000000000 --- a/app-emulation/spice-html5/spice-html5-0.2.2.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 2019-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Spice Javascript client" -HOMEPAGE="https://gitlab.freedesktop.org/spice/spice-html5" -SRC_URI="https://gitlab.freedesktop.org/spice/${PN}/-/archive/${P}/${PN}-${P}.tar.bz2" -S="${WORKDIR}/${PN}-${P}" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -RDEPEND="${DEPEND}" - -src_install() { - insinto /usr/share/spice-html5 - doins -r src apache.conf.sample spice.css spice.html spice_auto.html -} From 3b9c369f23d6a6c124c64d7e78ccbd2ad7052da9 Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Thu, 18 Jan 2024 15:20:08 +0500 Subject: [PATCH 2/7] app-misc/neo: fix NonexistentDeps Signed-off-by: Anna (cybertailor) Vyalkova --- app-misc/neo/neo-0.6.1.ebuild | 22 ++++++++++++---------- app-misc/neo/neo-9999.ebuild | 22 ++++++++++++---------- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/app-misc/neo/neo-0.6.1.ebuild b/app-misc/neo/neo-0.6.1.ebuild index d81e8c60c9..b6aef0eb60 100644 --- a/app-misc/neo/neo-0.6.1.ebuild +++ b/app-misc/neo/neo-0.6.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,26 +6,28 @@ EAPI=8 DESCRIPTION="cmatrix clone with 32-bit color and Unicode support" HOMEPAGE="https://github.com/st3w/neo" -if [ "$PV" = 9999 ]; then +if [[ ${PV} == *9999* ]]; then inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/st3w/neo/" + EGIT_REPO_URI="https://github.com/st3w/neo.git" + BDEPEND=" + dev-build/autoconf-archive + dev-build/automake + " else - SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz" + SRC_URI="https://github.com/st3w/${PN}/releases/download/v${PV}/${P}.tar.gz" KEYWORDS="~amd64" fi LICENSE="GPL-3" SLOT="0" -IUSE="" DEPEND="sys-libs/ncurses" RDEPEND="${DEPEND}" -[ "$PV" = 9999 ] && BDEPEND=" - dev-build/automake - dev-build/automake-archive -" src_prepare() { default - [ -f ./configure ] || eautoreconf || die 'autoreconf failed' + + if [[ ! -x configure ]]; then + eautoreconf + fi } diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild index d81e8c60c9..b6aef0eb60 100644 --- a/app-misc/neo/neo-9999.ebuild +++ b/app-misc/neo/neo-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,26 +6,28 @@ EAPI=8 DESCRIPTION="cmatrix clone with 32-bit color and Unicode support" HOMEPAGE="https://github.com/st3w/neo" -if [ "$PV" = 9999 ]; then +if [[ ${PV} == *9999* ]]; then inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/st3w/neo/" + EGIT_REPO_URI="https://github.com/st3w/neo.git" + BDEPEND=" + dev-build/autoconf-archive + dev-build/automake + " else - SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz" + SRC_URI="https://github.com/st3w/${PN}/releases/download/v${PV}/${P}.tar.gz" KEYWORDS="~amd64" fi LICENSE="GPL-3" SLOT="0" -IUSE="" DEPEND="sys-libs/ncurses" RDEPEND="${DEPEND}" -[ "$PV" = 9999 ] && BDEPEND=" - dev-build/automake - dev-build/automake-archive -" src_prepare() { default - [ -f ./configure ] || eautoreconf || die 'autoreconf failed' + + if [[ ! -x configure ]]; then + eautoreconf + fi } From 06533b71bd2d52c0d299cfc176120d69bd25d30b Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Thu, 18 Jan 2024 15:23:15 +0500 Subject: [PATCH 3/7] mpv-plugin/mpv_sponsorblock_minimal: add codeberg upstream metadata Signed-off-by: Anna (cybertailor) Vyalkova --- mpv-plugin/mpv_sponsorblock_minimal/metadata.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mpv-plugin/mpv_sponsorblock_minimal/metadata.xml b/mpv-plugin/mpv_sponsorblock_minimal/metadata.xml index 115e9d64a6..f0fa831ec9 100644 --- a/mpv-plugin/mpv_sponsorblock_minimal/metadata.xml +++ b/mpv-plugin/mpv_sponsorblock_minimal/metadata.xml @@ -1,5 +1,8 @@ - + + + jouni/mpv_sponsorblock_minimal + From ebc7b853ca8933824a8e5de8d0e4ef5acaf16d56 Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Thu, 18 Jan 2024 15:26:55 +0500 Subject: [PATCH 4/7] x11-themes/arc-kde: add optfeatures Signed-off-by: Anna (cybertailor) Vyalkova --- x11-themes/arc-kde/arc-kde-20220908.ebuild | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/x11-themes/arc-kde/arc-kde-20220908.ebuild b/x11-themes/arc-kde/arc-kde-20220908.ebuild index 5b9b2a09ca..c51c77cdf0 100644 --- a/x11-themes/arc-kde/arc-kde-20220908.ebuild +++ b/x11-themes/arc-kde/arc-kde-20220908.ebuild @@ -1,23 +1,19 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit optfeature DESCRIPTION="Port of the popular GTK theme Arc for Plasma 5" HOMEPAGE="https://github.com/PapirusDevelopmentTeam/arc-kde" -SRC_URI="https://github.com/PapirusDevelopmentTeam/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/PapirusDevelopmentTeam/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" pkg_postinst() { - elog "" - elog "This theme optionally supports \"x11-themes/kvantum\"" - elog "See also \"x11-themes/arc-theme\" for gtk support" - elog "" + optfeature "Kvantum theme engine support" x11-themes/kvantum + optfeature "GTK support" x11-themes/arc-theme } From 1e947ba5de560ae09e5189524e43c64e47a51a14 Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Thu, 18 Jan 2024 16:24:40 +0500 Subject: [PATCH 5/7] media-sound/pipewire-module-xrdp: remove *.la files Closes: https://bugs.gentoo.org/918631 Signed-off-by: Anna (cybertailor) Vyalkova --- ...wire-module-xrdp-0.1_pre20230609-r1.ebuild | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 media-sound/pipewire-module-xrdp/pipewire-module-xrdp-0.1_pre20230609-r1.ebuild diff --git a/media-sound/pipewire-module-xrdp/pipewire-module-xrdp-0.1_pre20230609-r1.ebuild b/media-sound/pipewire-module-xrdp/pipewire-module-xrdp-0.1_pre20230609-r1.ebuild new file mode 100644 index 0000000000..054c0fdad9 --- /dev/null +++ b/media-sound/pipewire-module-xrdp/pipewire-module-xrdp-0.1_pre20230609-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools xdg + +COMMIT="e9c6c05dd4327fca43d8861535c1f75c9b258aef" +DESCRIPTION="PipeWire module which enables xrdp to use audio redirection" +HOMEPAGE="https://github.com/neutrinolabs/pipewire-module-xrdp" +SRC_URI="https://github.com/neutrinolabs/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${COMMIT}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="media-video/pipewire:=" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + find "${ED}" -name "*.la" -delete || die +} From a445605c6b3934663786536ffddca35dd7367f54 Mon Sep 17 00:00:00 2001 From: Marc Wippermann Date: Thu, 18 Jan 2024 01:26:34 +0100 Subject: [PATCH 6/7] media-libs/amdvlk: removed broken cmake/ninja source install, readded unstable keywords Bug: https://bugs.gentoo.org/922335 Signed-off-by: Marc Wippermann Signed-off-by: David Roman --- media-libs/amdvlk/amdvlk-2023.1.3.ebuild | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/media-libs/amdvlk/amdvlk-2023.1.3.ebuild b/media-libs/amdvlk/amdvlk-2023.1.3.ebuild index 632fd4aabb..07f1c5ce5a 100644 --- a/media-libs/amdvlk/amdvlk-2023.1.3.ebuild +++ b/media-libs/amdvlk/amdvlk-2023.1.3.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="AMD Open Source Driver for Vulkan" HOMEPAGE="https://github.com/GPUOpen-Drivers/AMDVLK" LICENSE="MIT" SLOT="0" -KEYWORDS="" +KEYWORDS="~amd64 ~x86" IUSE="wayland +raytracing" REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )" @@ -121,10 +121,6 @@ multilib_src_configure() { cmake_src_configure } -multilib_src_install() { - cmake_src_install --component icd -} - multilib_check_headers() { einfo "Checking headers skipped: there is no headers" } From 187a8b9c112bc55cedb49f9418c1b2f2647d1aa3 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Thu, 18 Jan 2024 12:55:11 +0100 Subject: [PATCH 7/7] net-im/teams-for-linux: add 1.4.3 Signed-off-by: Andrew Ammerlaan --- net-im/teams-for-linux/Manifest | 3 + .../teams-for-linux-1.4.3.ebuild | 100 ++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 net-im/teams-for-linux/teams-for-linux-1.4.3.ebuild diff --git a/net-im/teams-for-linux/Manifest b/net-im/teams-for-linux/Manifest index 16a4ca7c10..8e0b6ca46e 100644 --- a/net-im/teams-for-linux/Manifest +++ b/net-im/teams-for-linux/Manifest @@ -1,3 +1,6 @@ DIST teams-for-linux-1.3.23.aarch64.rpm 68721369 BLAKE2B d90e6925455c648dafa69ace7f6864f4d925ebe7a6b60402a6e958e96a273bc03626e623fe1ba6782c9a4750361a549fb0f398c21a2e23c72c2b8833aacb92a8 SHA512 54247bf450e23b7c1e746faa3ce2b261e83ce10c209db48c26ebc2b79247cd109a2f856c3bba978971904569b325bf6105b3a0f265679a1669014319725885b7 DIST teams-for-linux-1.3.23.armv7l.rpm 66729173 BLAKE2B 05ff9dbca24a70989131a5ec075cfe20f971fb9ef95f7f8fb3eea88766c367274677d06ba40bc1ce85723be1553cfd3ed317ef49c28a17e59c932acde5d3127b SHA512 ecf735b369b42b73ed76f8c62c52a689f4e44a7ebe4a528c623a7a2d2d771e5628021b51d1a3543ab2be5ccd59405c5b1f915f0d1947ff82c628f0c8f032d239 DIST teams-for-linux-1.3.23.x86_64.rpm 73129601 BLAKE2B 5a5068becac5c579f43f17985afeae866548864dee36aa33ab8acdc373592f91c2b1475acc84a881c61bd07d31c66dcd9740d32f0b972ab8ac42ff50e7b5ae3c SHA512 4d38cf17fb1c06c8b10eefceefc6339120c9d326837d7856aca3e1b165d304ed30c6828ee96aff3c35262f047fcb7217cca2b843e0bfe9f8cb5157265424d980 +DIST teams-for-linux-1.4.3.aarch64.rpm 69375929 BLAKE2B 95d3e2c741a269319380652455d98df8f191e39b3ddf0599cd67341e15c52126e1bcf9a040423e3d86374fbaadf13bd3128fb41a6c20ad78584b196d8df38246 SHA512 a4514d2c1a638389958c489c5cc78c75f690defc1eb20dfad00cb725655abeaf8a68d94883d39a5af6ebd06a6c44c51543fd4a6b60125ecb3fd5cdfce7eedffe +DIST teams-for-linux-1.4.3.armv7l.rpm 67993069 BLAKE2B a73685af58155422544e6493044cca0c24a2bc7649527aeedbcc961c6b970dd98fafd97c4baacf82aba21fc270ac5621d80e8d31be95d69c69522b5bb9d5b915 SHA512 bacfde56f3484523a680377c4af0c069a9416b49041f324a6c6e5ad6c2e54581b252265bf599ddfd2172ea9d34a7700e1689b4d5c77a3070a4a72d7584185550 +DIST teams-for-linux-1.4.3.x86_64.rpm 74329277 BLAKE2B 9e9979fb32809719d918b126ca6f658a10ca6701f37c5c505f46a5d6fa88e7b9e04d0123bdf4e551e21c4601a447bb018aa7aec22cdce36b4f6a9bd705f505bf SHA512 616a942a4abe000ecdd9f66580bf2598b311df0343d76bd50f5fe73b07e77fea6407c5aa3357a146b3b68fc759529d5833ad7cf7e82f931b06115c1576f7fb46 diff --git a/net-im/teams-for-linux/teams-for-linux-1.4.3.ebuild b/net-im/teams-for-linux/teams-for-linux-1.4.3.ebuild new file mode 100644 index 0000000000..18684120b4 --- /dev/null +++ b/net-im/teams-for-linux/teams-for-linux-1.4.3.ebuild @@ -0,0 +1,100 @@ +# Copyright 1999-2023 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/teams-for-linux/releases/download/v${PV}/${P}.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}" + +KEYWORDS="-* ~amd64 ~arm ~arm64" +# 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 CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved +" +SLOT="0" +RESTRICT="bindist mirror" + +DEPEND=" + app-accessibility/at-spi2-core + dev-libs/expat + dev-libs/glib + 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 +}