diff --git a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r3.ebuild
similarity index 55%
rename from app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild
rename to app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r3.ebuild
index e97720ff94..abefa9baaf 100644
--- a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild
+++ b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r3.ebuild
@@ -10,32 +10,65 @@ HOMEPAGE="https://gitlab.com/ananicy-cpp/ananicy-cpp"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
-IUSE="systemd"
+IUSE="bpf clang systemd"
+REQUIRED_USE="
+ bpf? ( clang )
+"
SRC_URI="https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
S="${WORKDIR}/${PN}-v${PV}"
-DEPEND="
+RDEPEND="
!app-admin/ananicy
>=dev-cpp/nlohmann_json-3.9
>=dev-libs/libfmt-8
>=dev-libs/spdlog-1.9
+ bpf? (
+ dev-libs/elfutils
+ dev-libs/libbpf
+ dev-util/bpftool
+ )
systemd? ( sys-apps/systemd )
"
-RDEPEND="${DEPEND}"
+
+DEPEND="
+ >=dev-build/cmake-3.17
+ clang? ( >=sys-devel/clang-10 )
+ ${RDEPEND}
+"
PATCHES=(
"${FILESDIR}/${P}-remove-debug-flags.patch"
)
+pkg_setup() {
+ if use bpf ; then
+ CONFIG_CHECK+="~BPF ~BPF_EVENTS ~BPF_SYSCALL ~HAVE_EBPF_JIT"
+ fi
+}
+
src_configure() {
local mycmakeargs=(
-DENABLE_SYSTEMD=$(usex systemd)
+ -DUSE_BPF_PROC_IMPL=$(usex bpf)
-DUSE_EXTERNAL_FMTLIB=ON
-DUSE_EXTERNAL_JSON=ON
-DUSE_EXTERNAL_SPDLOG=ON
-DVERSION=${PV}
)
+
+ if use clang; then
+ local version_clang=$(clang --version 2>/dev/null | grep -F -- 'clang version' | awk '{ print $3 }')
+ [[ -n ${version_clang} ]] && version_clang=$(ver_cut 1 "${version_clang}")
+ [[ -z ${version_clang} ]] && die "Failed to read clang version!"
+ CC=${CHOST}-clang-${version_clang}
+ CXX=${CHOST}-clang++-${version_clang}
+
+ if use bpf ; then
+ mycmakeargs+=( -DBPF_BUILD_LIBBPF=OFF )
+ fi
+ fi
+
cmake_src_configure
}
diff --git a/app-admin/ananicy-cpp/metadata.xml b/app-admin/ananicy-cpp/metadata.xml
index 52724a1795..59b0456acf 100644
--- a/app-admin/ananicy-cpp/metadata.xml
+++ b/app-admin/ananicy-cpp/metadata.xml
@@ -10,4 +10,8 @@
ananicy-cpp/ananicy-cpp
kuche1/minq-ananicy
+
diff --git a/app-admin/bitwarden-cli-bin/Manifest b/app-admin/bitwarden-cli-bin/Manifest
index 19b13d6396..9d172f4c92 100644
--- a/app-admin/bitwarden-cli-bin/Manifest
+++ b/app-admin/bitwarden-cli-bin/Manifest
@@ -1 +1,2 @@
DIST bw-linux-2024.2.0.zip 32968695 BLAKE2B 808dbd4965cc26b3880bd541bc4c3627ed6b07233bb3eb62c76c5034ba734c6211c1fc907309f71d8dcfd993a61ba0bcdd049dc052c477cb43e7d4452929fe31 SHA512 80fa0ab96bf291ed5008d5c01d00eebf950e72b8c21184be3df1018ba33d33bac038b4410e17123096113642372b8013bdde0605473449cec5c69c418fa2e3c5
+DIST bw-linux-2024.2.1.zip 33060347 BLAKE2B fdfeec07f9c9a0c70741461ff4969b8909fb04d6aa0411a936b8a10165d7e2a31ad02228cbb6e1aea6f375436be8dd5d2dc560a440d1db9877c056ed1e870719 SHA512 67222301f62371129eccd7847a642e7ac13191d9e8d5033774f888cb6eb989e1427ce2c02a05121a259e7c217214d31d793474827b315479b410bb780f858f0d
diff --git a/app-admin/bitwarden-cli-bin/bitwarden-cli-bin-2024.2.1.ebuild b/app-admin/bitwarden-cli-bin/bitwarden-cli-bin-2024.2.1.ebuild
new file mode 100644
index 0000000000..d30d477c53
--- /dev/null
+++ b/app-admin/bitwarden-cli-bin/bitwarden-cli-bin-2024.2.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit shell-completion
+
+DESCRIPTION="Precompiled CLI frontend which connects to Bitwarden comapatible servers"
+HOMEPAGE="https://github.com/bitwarden/clients/tree/main/apps/cli"
+
+SRC_URI="
+ https://github.com/bitwarden/clients/releases/download/cli-v${PV}/bw-linux-${PV}.zip
+"
+
+S="${WORKDIR}"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# non-stripped binary is of 99M but works
+# stripped bianry is of 44M but doesnt work
+RESTRICT='strip'
+
+RDEPEND="!app-admin/bitwarden-cli"
+BDEPEND="app-arch/unzip"
+QA_PREBUILT="usr/bin/bw"
+
+src_compile() {
+ ./bw completion --shell zsh > bw.zsh 2> /dev/null || die
+}
+
+src_install() {
+ dobin bw
+ newzshcomp bw.zsh _bw
+}
diff --git a/app-misc/catt/Manifest b/app-misc/catt/Manifest
new file mode 100644
index 0000000000..37b15306e0
--- /dev/null
+++ b/app-misc/catt/Manifest
@@ -0,0 +1 @@
+DIST catt-0.12.12.tar.gz 79042 BLAKE2B d0885f6030d4ece8f233c568d626fa4e67cba2f7be499dcc290c4d54cf9c6bde6cebe80b37b0147e463ed90694fc8f58d07f95ecfe9454209d05c1598741394e SHA512 8838f7b2e8700dbe924c53dff7c776fcd31646c061065a297ae2399134af7cd5d4bf359d3b7aed23faa3e8987e0e6db4af1cf54a703ba8ce86e532a56586b228
diff --git a/app-misc/catt/catt-0.12.12.ebuild b/app-misc/catt/catt-0.12.12.ebuild
new file mode 100644
index 0000000000..8099a6ed4c
--- /dev/null
+++ b/app-misc/catt/catt-0.12.12.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=poetry
+inherit distutils-r1
+
+DESCRIPTION="Send videos from many, many online sources to your Chromecast"
+HOMEPAGE="https://github.com/skorokithakis/catt"
+SRC_URI="https://github.com/skorokithakis/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# Seems that all tests makes external connections
+RESTRICT="test"
+
+DEPEND="
+ dev-python/click[${PYTHON_USEDEP}]
+ dev-python/pychromecast[${PYTHON_USEDEP}]
+ dev-python/ifaddr[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ net-misc/yt-dlp[${PYTHON_USEDEP}]
+"
+
+RDEPEND="${DEPEND}"
+
+#distutils_enable_tests pytest
diff --git a/app-misc/catt/metadata.xml b/app-misc/catt/metadata.xml
new file mode 100644
index 0000000000..9810251464
--- /dev/null
+++ b/app-misc/catt/metadata.xml
@@ -0,0 +1,11 @@
+
+
+
+
+ davidroman96@gmail.com
+ David Roman
+
+
+ skorokithakis/catt
+
+
diff --git a/app-misc/nwg-shell-wallpapers/Manifest b/app-misc/nwg-shell-wallpapers/Manifest
index 7908fa2dea..6f1b11a85f 100644
--- a/app-misc/nwg-shell-wallpapers/Manifest
+++ b/app-misc/nwg-shell-wallpapers/Manifest
@@ -1,2 +1,3 @@
DIST nwg-shell-wallpapers-1.3.tar.gz 14905039 BLAKE2B 71856c2961cfbbb3b2c86e686df63320ddff9357fadbe00732d1dce33779a4f690d3b3bf3f1188cee20a0608c138e09494954285a7d2ce5da363ae1563a43045 SHA512 dc3a72f57dbc288841dbe4d4ebbdb4013d620a18acdb9c3e22e3af06fa481db2aeb98d845a27e86a421b9658f451de99bd4f7e4759b97d32d1124e8014097f90
DIST nwg-shell-wallpapers-1.4.tar.gz 14905267 BLAKE2B a1afec9595f44b64f92e2275df807678ccfc1ddb6157e583bbebdd3e3d01cb1bee3761dadb65c636189f2cd0608ecec59daf4900894b7005ebfd7bf06d35590a SHA512 8cf4f8ee316084f5b1a67b150cd560c29caf845e7359e45f9976fb3f9cd3c7ae22dcb113854f4539e04443a2dc37b5cb134bbad04d090cabedb2c0a9db4d8611
+DIST nwg-shell-wallpapers-1.5.tar.gz 14915448 BLAKE2B 594505fdd73f91442a9a65c1dd394461178934c07973b8573d138da9f0f0001d8541f98e3e9c79ef137b1337ecec01032f21f98707a687361ce883cce60ca994 SHA512 4b3c1b8c339b044592b25fda969700ff0c33a683257f2e0abfd98e3bf99bc3ed5aab1f2b3d6a88be6512447b0b1b7c78db2d6658f35cf2336ef669e1197fde30
diff --git a/app-misc/nwg-shell-wallpapers/nwg-shell-wallpapers-1.5.ebuild b/app-misc/nwg-shell-wallpapers/nwg-shell-wallpapers-1.5.ebuild
new file mode 100644
index 0000000000..c105bedf54
--- /dev/null
+++ b/app-misc/nwg-shell-wallpapers/nwg-shell-wallpapers-1.5.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+SRC_URI="https://github.com/nwg-piotr/nwg-shell-wallpapers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Selection of wallpapers contributed to the nwg-shell project"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-shell-wallpapers"
+LICENSE="MIT"
+SLOT="0"
+
+src_install() {
+ insinto /usr/share/backgrounds/nwg-shell
+ doins wallpapers/*
+}
diff --git a/app-text/komikku/Manifest b/app-text/komikku/Manifest
index aecdc2b995..40e02d7cfd 100644
--- a/app-text/komikku/Manifest
+++ b/app-text/komikku/Manifest
@@ -1 +1 @@
-DIST komikku-1.38.1.tar.gz 3687317 BLAKE2B 2a99f57c82b8d348fc6c5c67adbab59974635d41f843edf1060d68a3a2e81ec95db8e41140039eb57346a8fd9256904ebf20010c772530bf31f4ced4042cb7b5 SHA512 c229948bad4d2b070c94e8ad3b137a465752399f86cb8927e29f06a41e2509bde613326b6d586b7c883afee5d0a4c20b99697a558c980fa5ebd3f28cfc136294
+DIST komikku-1.39.0.tar.gz 3704061 BLAKE2B a5d42be1de44db10adad1086172d8760a9cb313f7dc7b5654ccef3a50fceea4d8f9abcb98f8be40c393ec1a2a4a655cbb164d34b69e6142069b526ce40cf345d SHA512 c8c8c2d6cb4beadb7eba22d6764bd49c469614ae49c345723a22cf68376262516d733495f1530206fce20333c408062c50fd88533ef841ff8cbaef7ab06e121a
diff --git a/app-text/komikku/komikku-1.38.1.ebuild b/app-text/komikku/komikku-1.39.0.ebuild
similarity index 100%
rename from app-text/komikku/komikku-1.38.1.ebuild
rename to app-text/komikku/komikku-1.39.0.ebuild
index 35c06d2952..1a5a97c9e1 100644
--- a/app-text/komikku/komikku-1.38.1.ebuild
+++ b/app-text/komikku/komikku-1.39.0.ebuild
@@ -14,9 +14,9 @@ HOMEPAGE="https://apps.gnome.org/Komikku/"
SRC_URI="https://codeberg.org/valos/Komikku/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}"
-KEYWORDS="~amd64"
LICENSE="GPL-3+"
SLOT="0"
+KEYWORDS="~amd64"
IUSE="test"
RESTRICT="test"
diff --git a/app-text/komikku/metadata.xml b/app-text/komikku/metadata.xml
index 32452ada5a..2fedcd7ce7 100644
--- a/app-text/komikku/metadata.xml
+++ b/app-text/komikku/metadata.xml
@@ -1,7 +1,10 @@
-
+
+ pastalian46@gmail.com
+ Takuya Wakazono
+
valos/Komikku
diff --git a/dev-python/i3ipc/i3ipc-2.2.1.ebuild b/dev-python/i3ipc/i3ipc-2.2.1.ebuild
index 4fec94f891..ef1aba7737 100644
--- a/dev-python/i3ipc/i3ipc-2.2.1.ebuild
+++ b/dev-python/i3ipc/i3ipc-2.2.1.ebuild
@@ -1,9 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_10 )
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
@@ -15,6 +16,5 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-python/python-xlib"
-DEPEND="${DEPEND}"
distutils_enable_tests pytest
diff --git a/dev-python/pure-protobuf/Manifest b/dev-python/pure-protobuf/Manifest
index 0dff758925..e617772040 100644
--- a/dev-python/pure-protobuf/Manifest
+++ b/dev-python/pure-protobuf/Manifest
@@ -1 +1 @@
-DIST pure_protobuf-2.3.0.tar.gz 16481 BLAKE2B b56d024b13ef4711c9b53ffc47029fb4e49e025d8c096b547926d44a89769a26d180420698dbf51c2db4b58f8b8df6825d368c921babdd9774e4c3a4f0d72e7e SHA512 2b2eb372cde5b7c765fa878b06fe1a82f57061d0887f560aa84799db09d506a4947b54feffff51391ebf2c87923845f93badbab19e1cf45f998c79f6df75fb05
+DIST pure_protobuf-3.0.1.tar.gz 18228 BLAKE2B c714bcd78763e854e9e690b98d4166cf8395511ad8fa8a37692daeec86463e99a884069b3da927a594b6204a5c8b3810b2fac5d7d1075794891d1843a232a2ba SHA512 f08005d2fbeda2d5cfc0f066cb88da350ba3ff7d8ee8922c58b77936360782c5e5ac40f8a5a98377c65c7a0d0df5e10d16fafa082f0a6caddbf6450782551ab0
diff --git a/dev-python/pure-protobuf/files/pure-protobuf-3.0.1-static-version.patch b/dev-python/pure-protobuf/files/pure-protobuf-3.0.1-static-version.patch
new file mode 100644
index 0000000000..39e1d7f6cb
--- /dev/null
+++ b/dev-python/pure-protobuf/files/pure-protobuf-3.0.1-static-version.patch
@@ -0,0 +1,12 @@
+We don't need dynamic versioning, replace with default backend.
+--- a/pyproject.toml 2024-03-06 20:59:32.071133500 +0900
++++ b/pyproject.toml 2024-03-06 21:00:01.002037882 +0900
+@@ -31,7 +31,7 @@
+
+ [build-system]
+ requires = ["poetry-core", "poetry-dynamic-versioning"]
+-build-backend = "poetry_dynamic_versioning.backend"
++build-backend = "poetry.core.masonry.api"
+
+ [tool.poetry.dependencies]
+ get-annotations = { version = "^0.1.2", python = "<3.10" }
diff --git a/dev-python/pure-protobuf/metadata.xml b/dev-python/pure-protobuf/metadata.xml
index 0a10e9249c..ba7bff730e 100644
--- a/dev-python/pure-protobuf/metadata.xml
+++ b/dev-python/pure-protobuf/metadata.xml
@@ -1,7 +1,10 @@
-
+
+ pastalian46@gmail.com
+ Takuya Wakazono
+
eigenein/protobuf
pure-protobuf
diff --git a/dev-python/pure-protobuf/pure-protobuf-2.3.0.ebuild b/dev-python/pure-protobuf/pure-protobuf-3.0.1.ebuild
similarity index 74%
rename from dev-python/pure-protobuf/pure-protobuf-2.3.0.ebuild
rename to dev-python/pure-protobuf/pure-protobuf-3.0.1.ebuild
index c7322ca000..791915bfb3 100644
--- a/dev-python/pure-protobuf/pure-protobuf-2.3.0.ebuild
+++ b/dev-python/pure-protobuf/pure-protobuf-3.0.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=hatchling
+DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Python implementation of Protocol Buffers data types with dataclasses support"
@@ -17,4 +17,6 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
-BDEPEND="dev-python/hatch-vcs[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/typing-extensions[${PYTHON_USEDEP}]"
+
+PATCHES=( "${FILESDIR}/${P}-static-version.patch" )
diff --git a/gui-apps/nwg-displays/Manifest b/gui-apps/nwg-displays/Manifest
index a41a805c6e..8bbe086f9d 100644
--- a/gui-apps/nwg-displays/Manifest
+++ b/gui-apps/nwg-displays/Manifest
@@ -1,2 +1,3 @@
DIST nwg-displays-0.3.11.tar.gz 24479 BLAKE2B b8afd7df9c543b93fcb0faf4ac96a8b2615c9838eca6de3cbc6e2301d6b5c8fc833ed0fdb2dd4358671718f980db21d5a1b3a965140bb06ff9e46a7c2b8af195 SHA512 045a12e9c541c943c39546e2637f2bc2d530abd8add85760be4a5191285e7925451a28cf48eeebeb593fbf591657f4b6462c875b592411fdee89ab964723876e
DIST nwg-displays-0.3.13.tar.gz 24504 BLAKE2B 9502d566a57c44a6d8d3d75a2ee5c33ccb0bb1312e667058aee5ea96a4bf238d008de8f9a5720ca90f709275a00544da4532e0772928c529b625d2a7b6486daf SHA512 ccf708b5c528519c323951c6a2b2c0b0f5228fdfdf7e94f54f15eeb82d7fa52c8b49bf91399f6801651d02226592dc8cb6833dfe9d0cb59b5c420dd8462e1850
+DIST nwg-displays-0.3.14.tar.gz 24681 BLAKE2B 60bee9066c2db6dceaf9a7a43bb382d60fa43a7c6531198f7ad36f8eb1d66bea043446441de3e8926189f69f328707527edd05f8a3d6f1d9d90ecb26c2488206 SHA512 8baa66d6ba4ee5553445297101db96fd6eef3c9a190d3e0e771ead319dfc432e50680f63adb700e88aed85bea253cca2639b8e150ac89a7d63d90a54bd128450
diff --git a/gui-apps/nwg-displays/nwg-displays-0.3.14.ebuild b/gui-apps/nwg-displays/nwg-displays-0.3.14.ebuild
new file mode 100644
index 0000000000..6eed4118cb
--- /dev/null
+++ b/gui-apps/nwg-displays/nwg-displays-0.3.14.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 xdg-utils
+
+SRC_URI="https://github.com/nwg-piotr/nwg-displays/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Output management utility for sway and Hyprland"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-displays"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ gui-apps/wlr-randr
+ x11-libs/gtk+:3
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-displays.desktop
+ doicon nwg-displays.svg
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
diff --git a/gui-apps/nwg-panel/Manifest b/gui-apps/nwg-panel/Manifest
index c48ff142b8..606263d101 100644
--- a/gui-apps/nwg-panel/Manifest
+++ b/gui-apps/nwg-panel/Manifest
@@ -1,2 +1,3 @@
DIST nwg-panel-0.9.23.tar.gz 227040 BLAKE2B bc0f5afd220bab8f360874b9744b21c8f1730cbd124763fe57d9707ae1169cce6d155dfe49dca37d45d398b5aeda38f3f68764e7cd5e11ac5392ad61d6b2a615 SHA512 1363ffab1124a17a4320a0350595808dda76fcfe1a97191e3b504b99a0733c9860d4aa35a97299605226f988687c3b4cf14794fe065e2e1ec11e1ca2e0fb0e9c
DIST nwg-panel-0.9.24.tar.gz 227084 BLAKE2B 8a86923a0d457d55a1269b00c6955c51410fbd8f838c1b9b4526c37200b4f55c161d0df1ee4a3a0ef83f115c33563ffc8cc5907d601495d1b433ec04e93ac198 SHA512 68329511f20ce88738fb2b30efaa542fcbaf1376a7cb269755f99489cd89984d8986230eebd4c0c610cf5e935f85ba4d33108b7beff64dabc0d67f8f2af04c5b
+DIST nwg-panel-0.9.25.tar.gz 227247 BLAKE2B 627d679d3b9de4e32d52d4954bf090354d0ce1e85b34bb8a5a63971195c5f1e1cd6ff48c4ea9ec948726b3f3b7939c2d22f284259ee4f9637c943a98102754c7 SHA512 8dd1e43c75ad4ddc61586290fe4928db958c05f1049b7860f212e0950ca46e881d4657722b4859823917af8d16dd613a7374d5bf611d67f4ce2652992d3798f7
diff --git a/gui-apps/nwg-panel/nwg-panel-0.9.25.ebuild b/gui-apps/nwg-panel/nwg-panel-0.9.25.ebuild
new file mode 100644
index 0000000000..dde513ba92
--- /dev/null
+++ b/gui-apps/nwg-panel/nwg-panel-0.9.25.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 systemd xdg-utils
+
+if [[ "${PV}" == 9999 ]]
+then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-panel.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-panel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="GTK3-based panel for sway and Hyprland Wayland compositors"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-panel"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ x11-libs/gtk+:3
+ dev-python/pygobject[${PYTHON_USEDEP}]
+ dev-python/psutil[${PYTHON_USEDEP}]
+ dev-python/i3ipc[${PYTHON_USEDEP}]
+ dev-python/dasbus[${PYTHON_USEDEP}]
+ gui-apps/nwg-icon-picker
+ media-sound/playerctl
+ gui-libs/gtk-layer-shell
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-panel-config.desktop
+ domenu nwg-processes.desktop
+ doicon nwg-panel.svg
+ doicon nwg-processes.svg
+ doicon nwg-shell.svg
+ systemd_dounit nwg-panel.service
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
diff --git a/gui-apps/nwg-shell/Manifest b/gui-apps/nwg-shell/Manifest
index 6786361f78..0cdc8664f6 100644
--- a/gui-apps/nwg-shell/Manifest
+++ b/gui-apps/nwg-shell/Manifest
@@ -1,2 +1,3 @@
DIST nwg-shell-0.5.31.tar.gz 2181632 BLAKE2B 173fb14aeeae8c0788ee8b4deb614538128e623032231eb427b9dbdafd3b84d4cbaa8f109adf30c7c382796211cc72385f24d955776f0fee511a719aa572fde4 SHA512 1b26f14f14123dc7c7c48839dfa473c45688f17e2274c00b41f9bbcea9959d871606a88ed3517aa1dcfa22d346b4a9b0369b6c58ba27ba4e119269e0031840d2
DIST nwg-shell-0.5.32.tar.gz 2181719 BLAKE2B f2b67a2a41a0f1b7123ba74410a2630ccdcd2a6f7ae5318ff1ffc95ff36d012bc4536c40467ac68a2d40bb2556cb47c157b6f1f7987efb69307f3f5bbd19dde5 SHA512 52402569d36d96ab119dbae12a615bbab55e7c025ac08f1a0fbd220703c94ce6628684c304efd5e2810258f75fcdb0fde93f0f074f21846c52962232173452f1
+DIST nwg-shell-0.5.33.tar.gz 2181780 BLAKE2B 0d675bf7230d254e0accd1805329fad90b85f38e74e468a5cf8fa139d9c9fdc833353aa5514ba9c3b32a47afe25439c8c96fbc7e2af763a4db921b781b68a593 SHA512 ae4091faaee6dfb3f0f5f01ab5697ded6e4c508c15082b83bf024afec93d51e7fd165ad7780ea1fe88e6d630d3c1b9d2a6255f73484ffb1db969a38b6abf1d18
diff --git a/gui-apps/nwg-shell/nwg-shell-0.5.33.ebuild b/gui-apps/nwg-shell/nwg-shell-0.5.33.ebuild
new file mode 100644
index 0000000000..e533477e86
--- /dev/null
+++ b/gui-apps/nwg-shell/nwg-shell-0.5.33.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+SRC_URI="https://github.com/nwg-piotr/nwg-shell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="libraries an common functions for the nwg-shell project"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-shell"
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+ gui-apps/grim
+ gui-apps/swappy
+ gui-apps/slurp
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ default
+ dobin scripts/*
+}
+
+pkg_postinst() {
+ elog "To install nwg-shell for the current user, run"
+ elog "nwg-shell-installer -w (for sway) or"
+ elog "nwg-shell-installer -w -hypr (for hyprland)"
+}
diff --git a/media-libs/wivrn/Manifest b/media-libs/wivrn/Manifest
index f3e61e7efa..b75e5c1c43 100644
--- a/media-libs/wivrn/Manifest
+++ b/media-libs/wivrn/Manifest
@@ -1,5 +1,5 @@
DIST boostpfr_2.2.0.tar.gz 76432 BLAKE2B 70d76a5dd0034f93ff1749b1994bcd9cd8a9b09674598958da5a8f7e1b040c62e970db4e3d221173549a19d0dd15b0810f5d12f69843ed8ac35be6697bab09e0 SHA512 86a745a44e8a6e4638b9eb9045b08de9cbf27f6d20d365eabd41587d6e1171f980a65f42a31291008c421da6cc3f436b7bf07e109aff6ab5690b19e1fb621b3d
-DIST monado-57e937383967c7e7b38b5de71297c8f537a2489d.tar.gz 3324809 BLAKE2B 0ea1b7c7ae5717069a4e86e581264a271e9dea39721e27599453bef12ef5963a50db7ce4d5c2c9db4dcd699438bde74e219a60fb3b0e453e4128b16821e7f1de SHA512 0d51753615e6b9fd98d2dd6eb95b324d35f05cd45f2f738bd8480890ce730aabdee37ec603e6fc248d88e426c727c8ac7f9cf2a47e15d182a36f319891799241
+DIST monado-ffb71af26f8349952f5f820c268ee4774613e200.tar.gz 3345606 BLAKE2B dc38514da7757e9737303540ca44d698e7eef504136fe7d4fbac349588a14be6860890f43520a52e1e80dfcaea32bc1f3a95894280c0fb8b178b50ffd85e155b SHA512 fbbee78583a8c90dc8e4179b8b3febaad77268c2f293532c1379e2c15d15693aea4b5494b6e34e1bd9f53d7624d7c9a93a8a5d514c1fcb474153b850c322166b
DIST wivrn-0.10.1-server-build-deps.tar.xz 16181364 BLAKE2B ef0f9855fc454d7258846bcc1c4a94f5d15570c2e092dc7913c93935cd2c343cfeaf2b585dcde32344781c2e03e91fa4a506708729f1032bc883ae2cc17f840e SHA512 629e47ef07280f0048ae8c534bf3a503a142d6ba878bf2cf2aeb77fd58027c85add2796fa2cac871baa0c0feb51d402362728335e3c9ebb2943e1f5e59abef19
DIST wivrn-0.10.1.tar.gz 393044 BLAKE2B a452d78a7a1a25e33a7fa4c75b32c3b1c05a3118d56db140f3ffb27698511c3bd2dd6e910826eb745aa77f3acc1caddaec083c08605f98fd8cb0a5e195384b87 SHA512 3448f35b6820afb184cf078379fe090fe73749cddab4d907bb7e5560c5d2117813a6290e47313ca12db215402039097cb51d5fc7c73baac77ad61e8ef5607b1a
DIST wivrn-0.11-server-build-deps.tar.xz 16544220 BLAKE2B dc04c6a414c8146c66bb18a3ad89cb7deaa378e838a9877675307c44ec26e7fb09fa653c947b72343fab210bcb43bd72e7a1a1012dc4f4c39c59f6316e2fe48c SHA512 1eacc7ffb6de88944dc057cc41e7e17805dbd56e72f32d13a47877a62a3a4c916cfd343e813e20656c913c9c4e4f7b5e4bc8571eb9cb442074cdeeba3ec75671
diff --git a/media-libs/wivrn/metadata.xml b/media-libs/wivrn/metadata.xml
new file mode 100644
index 0000000000..c7c2506ce5
--- /dev/null
+++ b/media-libs/wivrn/metadata.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ patricknicolas@laposte.net
+ Patrick Nicolas
+
+
+
+ Meumeu/WiVRn
+
+
diff --git a/media-libs/wivrn/wivrn-9999.ebuild b/media-libs/wivrn/wivrn-9999.ebuild
index b248b9b98b..bf9860cc12 100644
--- a/media-libs/wivrn/wivrn-9999.ebuild
+++ b/media-libs/wivrn/wivrn-9999.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/Meumeu/WiVRn.git"
EGIT_BRANCH="dev"
- MONADO_V=57e937383967c7e7b38b5de71297c8f537a2489d
+ MONADO_V=ffb71af26f8349952f5f820c268ee4774613e200
PFR_V=2.2.0
SRC_URI="
https://github.com/boostorg/pfr/archive/refs/tags/${PFR_V}.tar.gz -> boostpfr_${PFR_V}.tar.gz
diff --git a/net-dns/AdGuardHome/AdGuardHome-0.107.45.ebuild b/net-dns/AdGuardHome/AdGuardHome-0.107.45.ebuild
new file mode 100644
index 0000000000..e2dc7851a0
--- /dev/null
+++ b/net-dns/AdGuardHome/AdGuardHome-0.107.45.ebuild
@@ -0,0 +1,124 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps go-module systemd
+
+DESCRIPTION="Network-wide ads & trackers blocking DNS server like Pi-Hole with web ui"
+HOMEPAGE="https://github.com/AdguardTeam/AdGuardHome/"
+
+WIKI_COMMIT="7964837"
+SRC_URI="
+ https://github.com/AdguardTeam/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+ https://github.com/rahilarious/gentoo-distfiles/releases/download/${P}/deps.tar.xz -> ${P}-deps.tar.xz
+ https://github.com/rahilarious/gentoo-distfiles/releases/download/${P}/wiki.tar.xz -> ${PN}-wiki-${WIKI_COMMIT}.tar.xz
+ web? ( https://github.com/AdguardTeam/${PN}/releases/download/v${PV}/AdGuardHome_frontend.tar.gz -> ${P}-frontend.tar.gz )
+"
+
+# main
+LICENSE="GPL-3"
+# deps
+LICENSE+=" Apache-2.0 BSD BSD-2 MIT ZLIB"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+IUSE="+web"
+# RESTRICT="test"
+
+# so that pkgcheck doesn't complain
+BDEPEND="app-arch/unzip"
+
+FILECAPS=(
+ -m 755 'cap_net_bind_service=+eip cap_net_raw=+eip' usr/bin/${PN}
+)
+
+PATCHES=(
+ "${FILESDIR}"/disable-update-cmd-opt.patch
+)
+
+DOCS="
+ ../${PN,,}.wiki/*
+"
+
+src_prepare() {
+ default
+ # move frontend to project directory
+ use web && { rm -v build/gitkeep && mv -v ../build ./ || die ; }
+}
+
+src_compile() {
+ # mimicking https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-build.sh
+
+ local MY_LDFLAGS="-s -w"
+ MY_LDFLAGS+=" -X github.com/AdguardTeam/AdGuardHome/internal/version.version=${PV}"
+ MY_LDFLAGS+=" -X github.com/AdguardTeam/AdGuardHome/internal/version.channel=release"
+ MY_LDFLAGS+=" -X github.com/AdguardTeam/AdGuardHome/internal/version.committime=$(date +%s)"
+ if [ "$(go env GOARM)" != '' ]
+ then
+ MY_LDFLAGS+=" -X github.com/AdguardTeam/AdGuardHome/internal/version.goarm=$(go env GOARM)"
+ elif [ "$(go env GOMIPS)" != '' ]
+ then
+ MY_LDFLAGS+=" -X github.com/AdguardTeam/AdGuardHome/internal/version.gomips=$(go env GOMIPS)"
+ fi
+
+ ego build -ldflags "${MY_LDFLAGS}" -trimpath -v=1 -x=1
+}
+
+src_test() {
+
+ # mimicking https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-test.sh
+ count_flags='--count=1'
+ cover_flags='--coverprofile=./coverage.txt'
+ shuffle_flags='--shuffle=on'
+ timeout_flags="--timeout=30s"
+ fuzztime_flags="--fuzztime=20s"
+ readonly count_flags cover_flags shuffle_flags timeout_flags fuzztime_flags
+
+ # race only works when pie is disabled
+ export GOFLAGS="${GOFLAGS/-buildmode=pie/}"
+
+ # following test is failing without giving any reason. Tried disabling internal/updater internal/whois tests toggling race, but still failing.
+ # ego test\
+ # "$count_flags"\
+ # "$cover_flags"\
+ # "$shuffle_flags"\
+ # --race=1\
+ # "$timeout_flags"\
+ # ./...
+
+ # mimicking https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-bench.sh
+ ego test\
+ "$count_flags"\
+ "$shuffle_flags"\
+ --race=0\
+ "$timeout_flags"\
+ --bench='.'\
+ --benchmem\
+ --benchtime=1s\
+ --run='^$'\
+ ./...
+
+ # mimicking https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-fuzz.sh
+ ego test\
+ "$count_flags"\
+ "$shuffle_flags"\
+ --race=0\
+ "$timeout_flags"\
+ "$fuzztime_flags"\
+ --fuzz='.'\
+ --run='^$'\
+ ./internal/filtering/rulelist/\
+ ;
+
+}
+
+src_install() {
+ dobin "${PN}"
+ dosym -r /usr/bin/"${PN}" /usr/bin/adguardhome
+
+ einstalldocs
+
+ systemd_newunit "${FILESDIR}"/AdGuardHome-0.107.43.service "${PN}".service
+}
diff --git a/net-dns/AdGuardHome/Manifest b/net-dns/AdGuardHome/Manifest
index 3485842436..329e947636 100644
--- a/net-dns/AdGuardHome/Manifest
+++ b/net-dns/AdGuardHome/Manifest
@@ -4,3 +4,7 @@ DIST AdGuardHome-0.107.43.tar.gz 2227903 BLAKE2B a4811969b2e156a33d6267edeca4be3
DIST AdGuardHome-0.107.44-deps.tar.xz 115115688 BLAKE2B 198d1f86f24d5d7857eb0bb992ba7be34ee58fa9edd110c2434a59d4dd7cb936acb56175733a86ca847bcf48e99e8960d1a2b38bef072a0151d6b8875b9e13e4 SHA512 a8e77ce8b112f1c1dd6d993fcc8a52c802bf51ce9edc2383137360745f40b95a29c0e913920b17fc9f203286d18bd3ec5813eca0640bff0eb1655e9165c30763
DIST AdGuardHome-0.107.44-frontend.tar.gz 2784087 BLAKE2B 9c9d1a165bb885d120780f8f35cc38c11d9a0865ee706a33932feba98c13f0b181dbc7fcab10fa16d6654846fe2acf16ccc3aff7aec8b78f44e0092e623f1380 SHA512 0beae751490fb5095e2459b222781d177c4c206d86dc7fcc8a048b03ffcab1896d82cf2b741b9cb94dc817e2c53393ee001a4a182a795f9546d57a8988cebc4d
DIST AdGuardHome-0.107.44.tar.gz 2243237 BLAKE2B f7a7299304f915de2c5e1a673170d480578d68b2b05a15edf7302e3499b55f74dd786b145c5d97a9834c79bf1f7c8e89b5db7ced57b8cea3871cb1415efef51e SHA512 3db00251b9e6567ebe8404c12be2fddaf9d6a924b3d12980a1ab4f7c314089cea68bf1ddbce98702c9f94e1997a717afcb723a9214b3d9a34edcff390b73cb88
+DIST AdGuardHome-0.107.45-deps.tar.xz 109986456 BLAKE2B a2b78f368d3fb406cae26c3869fd5c30588373a4c58687e5821c75afe943ada8e7f79f18625cd324e0979b8d11a2964fcfc10fe1ce99750a3abbc0952f5d8880 SHA512 31d6fa1758aaac5039b5310dedd851ca3125eddc183dee33ef8c34af9ba9637fca197d278910854746c24d7dc9fa1628ccca12e38b39b8456879e38e6eefc9e6
+DIST AdGuardHome-0.107.45-frontend.tar.gz 2793159 BLAKE2B 361a10477317787e2ed414f92bc3d01724182fe7054be2ce0febc68968a3227b875baa1e3b01aee1374652b22d395128041a23af923cffd437c7a9ead31b622b SHA512 68f1163459673e0213675d195196aaabb564b50640d005ef0664653a2580da6f3fbf84e1c6034119e7f55260b03d61d4513c65e8fd1a00ea5c8a856b2946b822
+DIST AdGuardHome-0.107.45.tar.gz 2248687 BLAKE2B 257fbd716d769657c9b40a03f91f7dcaaee5c59788b43c86d1b90120f301cfbbfdf68f547143b6505d5bed70f03e992ca6ca3d86d0b1e9b760d0a21d9a19db89 SHA512 cfbb6eaacde706c9ce1bb632484a8d18a915be9642435fbeff087e9cc8cb8f6c787a244068a2f4cc051750a367558aa7487af7c4c58b88d28b64df7e80b55e09
+DIST AdGuardHome-wiki-7964837.tar.xz 44012 BLAKE2B 0cef0fb890e9fd80db12d74abd39ea90efa5561e11fba0e9df55b5e48536cd5a604d18bd17907921568d73bcc1b08ebb2980e16cb4e1eeb37be10ef89a106243 SHA512 2177fe47986f3086804ef900d2e338efbaf647df7f81d8b28235f77f0375681f96db112d3b06f69ee36706fc44698bdd960b919f5b87f82546ce87cb93b3f196
diff --git a/net-dns/AdGuardHome/files/disable-update-cmd-opt.patch b/net-dns/AdGuardHome/files/disable-update-cmd-opt.patch
new file mode 100644
index 0000000000..d8277f29b4
--- /dev/null
+++ b/net-dns/AdGuardHome/files/disable-update-cmd-opt.patch
@@ -0,0 +1,19 @@
+diff --git a/internal/home/options.go b/internal/home/options.go
+index d32aaa1..4503dad 100644
+--- a/internal/home/options.go
++++ b/internal/home/options.go
+@@ -243,14 +243,6 @@ var cmdLineOpts = []cmdLineOpt{{
+ description: "Don't check for updates.",
+ longName: "no-check-update",
+ shortName: "",
+-}, {
+- updateWithValue: nil,
+- updateNoValue: func(o options) (options, error) { o.performUpdate = true; return o, nil },
+- effect: nil,
+- serialize: func(o options) (val string, ok bool) { return "", o.performUpdate },
+- description: "Update the current binary and restart the service in case it's installed.",
+- longName: "update",
+- shortName: "",
+ }, {
+ updateWithValue: nil,
+ updateNoValue: nil,
diff --git a/net-im/teams-for-linux/Manifest b/net-im/teams-for-linux/Manifest
index 686f50bdec..09f36a5180 100644
--- a/net-im/teams-for-linux/Manifest
+++ b/net-im/teams-for-linux/Manifest
@@ -1,12 +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.11.aarch64.rpm 69419237 BLAKE2B 524a454062308465411b86cc91d4a2013dd6be95bd9feea2d85c315924ab5ddcda96245b828d717060c20ce69301d57aa4710845d15545064a97b507c970e581 SHA512 ae67ab3f68b397181e348309e982e895352832836e449c09b790a8080878963a2bc485aaabb71698b5f6b68363cec1faa58b6f200307914662a290d2eb0c7e8c
-DIST teams-for-linux-1.4.11.armv7l.rpm 68013881 BLAKE2B 8511ec1c56b5c04907c8f267de99058c67739b5b7bd44b3fa6e5170d9769db0ea5619c543130cfad9f48f7a3adac46f37f226692af7111eb2a3059485a0fd15b SHA512 fe8814b1f045960946f41b164deb60a4cec6c25c92476217f9ea59881daca2517145a133de1ccc43bed95e66e6c73b9ee72621740ca968aad94650d3999786d7
-DIST teams-for-linux-1.4.11.x86_64.rpm 74354397 BLAKE2B eef096c9218f939f7baca9c68998d0bf136656bb906beb41c68950b4382df6ca43d1e9d782991b6ffc094d98c64bad27fc42c373bd005a8ac2be8c84a65f4535 SHA512 3b284d04eb872c96b3a84ea761368689dd5ecbeef5e67659b2615dfaf9bd02130139cbf32bef8960d64b21c2d8e7219a3f76d882b6a35a652756d6859cc912a7
DIST teams-for-linux-1.4.12.aarch64.rpm 69389757 BLAKE2B cd10f3bc96001471461f541790cc6b46853ffedba5932dd1ad9db556e7c5316866cf12623adca935591e6d5e01a159aabd60be86bbe2036932baf6815df84dea SHA512 e92cc9e9025d62169afbe7505e8806f1bb26c48e53b6a2d9a243e4d4093dfad5902791b5b9727fbd730f13f19039db619daf43011b6b408311b88718baf0a051
DIST teams-for-linux-1.4.12.armv7l.rpm 68009209 BLAKE2B 18529bd3b034ce7f0910dc5be2843c334725333c930af9a2081e243078f41ef23b4e749fb794372b7b65c675abd1875c0b230a187503f33d112b6c4bd7e4b60f SHA512 231a5f87c9287ac08bfe908a8d542ce9bc4250d18894207f76ddfc6a0cdb01523f02817ce028c93e52879878fe60c16687330c8c703bbe6c832eefea2d829c97
DIST teams-for-linux-1.4.12.x86_64.rpm 74359237 BLAKE2B 16d42d54c3f160d02c97dd5c52e6bb08193a890cc73e33cb976cc7265c356d10bb75646a63ab97d3812ea9f534f45c4e96ae334c4dcbae9a886b000c8fd83ad8 SHA512 144fe6c164bb137e1c1fe35cff2c61bfa00b2b29a73739acc861b65ca5a4c67cb001bc1a38b66a2ec810b0283eed1f16282531754fb932e8b475ac6628997eed
-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
+DIST teams-for-linux-1.4.13.aarch64.rpm 69747789 BLAKE2B 9b0fb7462cd6e2b8269d598b88d6c127ec649d59aadd05260d11865d3212427b07c2ffb5d9c17fee6bd0845d4aa925d81709caa8541341c8063c108071424d50 SHA512 ccd6e4e4ddc7e276a04280533524530594e412cd3cef040a556d6e93721b0212dbc18d04910048a1c18f0fdc413d299e6c9bf7a3d8c4709a06eda444990b315b
+DIST teams-for-linux-1.4.13.armv7l.rpm 68003545 BLAKE2B 71e05f6a54095f77d1dbcec22253983a9167e19a9867814e22e805103278f5617189b4591399307957f2f8e1f0c9ebb83f5d7c10370ee7c158409b349941ddff SHA512 1b4b1581f57615710085efe919d6861de381e5fcea631f385d7cc7a2820f86a902a7d2890f7781fcda06574b6ac5c918e99cfffe6d3642080fc75d645264ec36
+DIST teams-for-linux-1.4.13.x86_64.rpm 74456441 BLAKE2B dab983fd0eb2671f79c363b8ca4a263572e97e63b54e48f40343dc5d0ff4c889bdb71e47f7d1b4a22b29a564533de5dfb7be64ac2685171ede4cb11023322e9b SHA512 4db74fbebac7be4138b550504ce50f451adad6fa804c5555f1f8c09694ae3ae45f7a25355d280e1da27b1090fc1c47e317ebe37be0a516ff4428e0a34408dea9
diff --git a/net-im/teams-for-linux/teams-for-linux-1.3.23.ebuild b/net-im/teams-for-linux/teams-for-linux-1.3.23.ebuild
deleted file mode 100644
index 18684120b4..0000000000
--- a/net-im/teams-for-linux/teams-for-linux-1.3.23.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# 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
-}
diff --git a/net-im/teams-for-linux/teams-for-linux-1.4.11.ebuild b/net-im/teams-for-linux/teams-for-linux-1.4.13.ebuild
similarity index 98%
rename from net-im/teams-for-linux/teams-for-linux-1.4.11.ebuild
rename to net-im/teams-for-linux/teams-for-linux-1.4.13.ebuild
index 18684120b4..fdb913d9cc 100644
--- a/net-im/teams-for-linux/teams-for-linux-1.4.11.ebuild
+++ b/net-im/teams-for-linux/teams-for-linux-1.4.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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
deleted file mode 100644
index 18684120b4..0000000000
--- a/net-im/teams-for-linux/teams-for-linux-1.4.3.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# 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
-}
diff --git a/net-mail/dovecot-fts-xapian/Manifest b/net-mail/dovecot-fts-xapian/Manifest
index b031094dcd..04dba3d1f7 100644
--- a/net-mail/dovecot-fts-xapian/Manifest
+++ b/net-mail/dovecot-fts-xapian/Manifest
@@ -1,3 +1,4 @@
DIST dovecot-fts-xapian-1.5.5.tar.gz 33228 BLAKE2B b8e86b3655a6b7291961cfbd39d6ef93ab2e2fbb049e97ebd07b473eb5fc5ecf91950343adfa9c267791442d581ebea47416d8e674d7f3019091fbd69b6e60f1 SHA512 229362207bfa7bb13b1ded4d8b2a2aef7a4a72306e140dc4bd5778991220b27d296ca3659993856f83c80c437f7feadebad1e3ac06f8120a6e45b69f6dbb1ecb
DIST dovecot-fts-xapian-1.5.7.tar.gz 33594 BLAKE2B 5d83cf5292ecf7d7245a56d21587302ea8c3bc5b0374c5c77013059fa66e4d187bb26b9c1d928e8ad324d235a79bd97a6878086fc19b493b1aeae1a312bceaf1 SHA512 eb3b7e19ba522dd9e9c2952c3022b15249889c814e8a90b50836526ab5000b26e0e835b71d3a4439f03d5399277b70a3ffeb366ca42061b647ab8ce251268c3b
DIST dovecot-fts-xapian-1.5.9.tar.gz 34220 BLAKE2B 8cf0772122d5dd8cf25fa2e8a5c02c8a315fdf4fbd346db3d01e78aa3e1116d42fbf30c155a364e064bd2ea4e9b67a48a69b3a3dada2c471c550f1d4fabbc8bd SHA512 e5961e5f6aeed6efabf456487307dfd09e255077e8c2c3af6c390b73b48dd2613f09ad4dfcd64974a91463a05a55078edfb7368d8c01ce0a839847823507b91f
+DIST dovecot-fts-xapian-1.7.6.tar.gz 36626 BLAKE2B 4112204e78fce042a4db5e6d3bd5d12e2ca6be8199ded4f7b3b7e0ff9977268491aa7e524f00103e1ee07d5ce0b59dcea171c5be19c7857dbeae9416c4fe984e SHA512 83b25bae097fceb56b62355cd8e10788bea850c2f312eb15fca72fb9c1d033d54e56c251eb27eeb971fe405da9d6a3509a3a700bbd0602d785949548ac15ba1f
diff --git a/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.6.ebuild b/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.6.ebuild
new file mode 100644
index 0000000000..9e8a229271
--- /dev/null
+++ b/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.6.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Dovecot FTS plugin backed by Xapian"
+HOMEPAGE="https://github.com/grosjo/fts-xapian"
+SRC_URI="https://github.com/grosjo/fts-xapian/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/fts-xapian-${PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="static-libs"
+
+RDEPEND="
+ dev-libs/icu:=
+ >=dev-libs/xapian-1.4:=
+ net-mail/dovecot:=
+ "
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+ ${FILESDIR}/bug-887887_allow-O2-override.patch
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # Disable hardening so CFLAGS are left up to the Gentoo user
+ # https://bugs.gentoo.org/888751
+ econf \
+ --enable-hardening=no \
+ --with-dovecot="${EPREFIX}/usr/$(get_libdir)/dovecot" \
+ $( use_enable static-libs static )
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
diff --git a/x11-misc/i3-restore/i3-restore-4.1.ebuild b/x11-misc/i3-restore/i3-restore-4.1.ebuild
index 5b81eef559..2d3d1965b9 100644
--- a/x11-misc/i3-restore/i3-restore-4.1.ebuild
+++ b/x11-misc/i3-restore/i3-restore-4.1.ebuild
@@ -50,4 +50,5 @@ src_install() {
pkg_postinst() {
elog "Usage: i3-save and i3-restore"
elog "See the documentation about automatic saving and restoring https://github.com/jdholtz/i3-restore/?tab=readme-ov-file#automating-the-script"
+ elog "Alternative software: https://github.com/JonnyHaystack/i3-resurrect"
}
diff --git a/x11-misc/i3-resurrect/Manifest b/x11-misc/i3-resurrect/Manifest
new file mode 100644
index 0000000000..3f389666f2
--- /dev/null
+++ b/x11-misc/i3-resurrect/Manifest
@@ -0,0 +1 @@
+DIST i3-resurrect-1.4.5.tar.gz 31851 BLAKE2B 45c790ba1985cf98a56751f48c468bfad1e35e7ad1b10e0504df2b51a53433e58a26e578b608654e55b52d85f2a5d2218b4e971cef409a6f5c854e31d3e8f3dd SHA512 9c80c25c85bb2f3113b747bff68d16a7547ff6c77c9a0b3d4b7f15f0a7fd773853565db27dd80bf01f454738d73e11f6aa1b8dac5140579f18e0ca4b4a0d559e
diff --git a/x11-misc/i3-resurrect/i3-resurrect-1.4.5.ebuild b/x11-misc/i3-resurrect/i3-resurrect-1.4.5.ebuild
new file mode 100644
index 0000000000..9f291dd46e
--- /dev/null
+++ b/x11-misc/i3-resurrect/i3-resurrect-1.4.5.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+PYPI_NO_NORMALIZE=true # Without this - cannot fetch
+inherit distutils-r1 pypi
+
+DESCRIPTION="Saving and restoring i3 workspaces"
+HOMEPAGE="
+ https://github.com/JonnyHaystack/i3-resurrect
+ https://pypi.org/project/i3-resurrect
+"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-python/i3ipc[${PYTHON_USEDEP}]
+ dev-python/natsort[${PYTHON_USEDEP}]
+ x11-wm/i3
+"
+
+pkg_postins() {
+ elog "Documentation: https://github.com/JonnyHaystack/i3-resurrect?tab=readme-ov-file#usage"
+ elog "Alternative software: x11-misc/i3-restore"
+}
diff --git a/x11-misc/i3-resurrect/metadata.xml b/x11-misc/i3-resurrect/metadata.xml
new file mode 100644
index 0000000000..ca599b3c18
--- /dev/null
+++ b/x11-misc/i3-resurrect/metadata.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ zdanevich.vitaly@ya.ru
+ Vitaly Zdanevich
+
+
+
+ Jonathan Haylett
+
+ https://github.com/JonnyHaystack/i3-resurrect/issues
+ i3-resurrect
+ JonnyHaystack/i3-resurrect
+
+