diff --git a/app-admin/oet/metadata.xml b/app-admin/oet/metadata.xml
index 297157b86e..a0b41e2363 100644
--- a/app-admin/oet/metadata.xml
+++ b/app-admin/oet/metadata.xml
@@ -12,4 +12,7 @@
packages and transfered to the host package database and can then be
installed on the host, when all problems are fixed.
+
+ bcsthsc/overlay-emerge-tool
+
diff --git a/app-eselect/eselect-autostart/metadata.xml b/app-eselect/eselect-autostart/metadata.xml
index 9d70a01371..0115154db5 100644
--- a/app-eselect/eselect-autostart/metadata.xml
+++ b/app-eselect/eselect-autostart/metadata.xml
@@ -5,4 +5,7 @@
m@matous.dev
Martin Matouš
+
+ mmatous/eselect-autostart
+
diff --git a/app-eselect/eselect-ld/metadata.xml b/app-eselect/eselect-ld/metadata.xml
index 9d70a01371..18f40e1d7f 100644
--- a/app-eselect/eselect-ld/metadata.xml
+++ b/app-eselect/eselect-ld/metadata.xml
@@ -5,4 +5,7 @@
m@matous.dev
Martin Matouš
+
+ mmatous/eselect-ld
+
diff --git a/app-misc/dpscreenocr/metadata.xml b/app-misc/dpscreenocr/metadata.xml
index 1d6a771217..29a57a68b4 100644
--- a/app-misc/dpscreenocr/metadata.xml
+++ b/app-misc/dpscreenocr/metadata.xml
@@ -5,4 +5,7 @@
benoit.dufour@mail.com
Benoît Dufour
+
+danpla/dpscreenocr
+
diff --git a/dev-embedded/qdl/qdl-9999.ebuild b/dev-embedded/qdl/qdl-9999.ebuild
index b2fce77dfc..d3633b649a 100644
--- a/dev-embedded/qdl/qdl-9999.ebuild
+++ b/dev-embedded/qdl/qdl-9999.ebuild
@@ -12,16 +12,17 @@ EGIT_REPO_URI="https://github.com/andersson/qdl.git"
LICENSE="BSD"
SLOT="0"
-BDEPEND="virtual/libudev
+BDEPEND="
virtual/pkgconfig
+ dev-libs/libusb
dev-libs/libxml2
"
src_compile() {
PKG_CONFIG=$(tc-getPKG_CONFIG)
emake CC=$(tc-getCC) \
- "CFLAGS=${CFLAGS} `${PKG_CONFIG} --cflags libxml-2.0`" \
- "LDFLAGS=${LDFLAGS} `${PKG_CONFIG} --libs libxml-2.0 libudev`"
+ "CFLAGS=${CFLAGS} `${PKG_CONFIG} --cflags libxml-2.0 libusb-1.0`" \
+ "LDFLAGS=${LDFLAGS} `${PKG_CONFIG} --libs libxml-2.0 libusb-1.0`"
}
src_install() {
diff --git a/dev-python/dropbox/Manifest b/dev-python/dropbox/Manifest
index 312d1388e7..99464a7c3a 100644
--- a/dev-python/dropbox/Manifest
+++ b/dev-python/dropbox/Manifest
@@ -1 +1,2 @@
DIST dropbox-sdk-python-11.36.2.gh.tar.gz 1166700 BLAKE2B afd0592bd1e18416f91d1fd673f2b7b7f605eaab80c02a9d8535fefa7fb23c8bc6a08c191492e1ced5d4b2d17fa72e8e5b6a58ba797f170c0efb75e755a451c9 SHA512 ec27685b4e5344e706bffb68b110ef2d7b307a5865bed3e042d6835f3666d2eefca646627a07bae1a3142e5f0346865fe285b037b00f3da081eb5797f9a768f5
+DIST dropbox-sdk-python-12.0.0.gh.tar.gz 1155006 BLAKE2B dc75c8c0be5d8c44820cddf8e39b8e86180fc8ddc482ef4656ad5525e268f6f13fa1529138290205acd0a946b6d8d90a3df48aff9fb14f410d5c2c409ee399c3 SHA512 5cf28c0e338a3399e4448c64fde823bfc872a6a6a93dc25241c96f55c21abe194b9e882d32d098f4c329941f36d0dec79786e521f2686c7d4c0eeb64bd745f21
diff --git a/dev-python/dropbox/dropbox-12.0.0.ebuild b/dev-python/dropbox/dropbox-12.0.0.ebuild
new file mode 100644
index 0000000000..d32005804c
--- /dev/null
+++ b/dev-python/dropbox/dropbox-12.0.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2021-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} )
+inherit distutils-r1
+
+GH_PN=dropbox-sdk-python
+
+DESCRIPTION="The offical Dropbox SDK for Python"
+HOMEPAGE="https://www.dropbox.com/developers"
+# pypi does not have tests, stick with gh
+SRC_URI="https://github.com/dropbox/${GH_PN}/archive/refs/tags/v${PV}.tar.gz -> ${GH_PN}-${PV}.gh.tar.gz"
+S="${WORKDIR}"/${GH_PN}-${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+ dev-python/stone[${PYTHON_USEDEP}]
+ dev-python/urllib3[${PYTHON_USEDEP}]
+"
+
+# disable tests that need SCOPED_USER_DROPBOX_TOKEN
+# and tests that fail
+EPYTEST_DESELECT=(
+ test/integration/test_dropbox.py
+ test/unit/test_dropbox_unit.py::TestClient
+ test/unit/test_dropbox_unit.py::TestOAuth::test_NoRedirect_whole_flow
+)
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ # this is wrong
+ sed -i -e "s/^import mock$/from unittest import mock/" test/unit/test_dropbox_unit.py || die
+
+ distutils-r1_python_prepare_all
+}
diff --git a/dev-python/stone/Manifest b/dev-python/stone/Manifest
index 36cafb5472..7c1b0983e9 100644
--- a/dev-python/stone/Manifest
+++ b/dev-python/stone/Manifest
@@ -1 +1 @@
-DIST stone-3.3.5.gh.tar.gz 281069 BLAKE2B 659048ef899c0a40d466d2c7cafca69ddbfea79f0efa1a95d153dec1a7382903c706d97e7ee71346235fd2d69e8121ef5c822f97cbadefd92eb349e40644fc84 SHA512 28431dabec6f5698b40b7f759a56a330b38266ce9824132d46cda1d2453199f44913469e3ae3b13e466f8023d154a896bc75affd67aa9a385de9b6df8cf99afa
+DIST stone-3.3.6.gh.tar.gz 281082 BLAKE2B 5c2d19e98ad6f14b63a63e54a993820e8d31004d2e7fefcba4498c5315e3ec83548565cc575523e95801806add4185f0c14dc08c75d76cf4b44ba41e7e853463 SHA512 9a136f6b532390e7cc35880ebbc49a341b6730ebd9c27a2d1ea6d6bef62e09f79ac7bb41e66f26fec5debee4145ebb27b23a06c1087b3fd2dacde025c3710b7a
diff --git a/dev-python/stone/stone-3.3.5.ebuild b/dev-python/stone/stone-3.3.6.ebuild
similarity index 100%
rename from dev-python/stone/stone-3.3.5.ebuild
rename to dev-python/stone/stone-3.3.6.ebuild
diff --git a/games-puzzle/blockout/blockout-2.5.ebuild b/games-puzzle/blockout/blockout-2.5.ebuild
index 2b644921de..e7bdce187a 100644
--- a/games-puzzle/blockout/blockout-2.5.ebuild
+++ b/games-puzzle/blockout/blockout-2.5.ebuild
@@ -5,7 +5,7 @@ EAPI=8
inherit desktop
DESCRIPTION="BlockOut II is an adaptation of the original Blockout DOS game"
-HOMEPAGE="http://www.blockout.net/blockout2"
+HOMEPAGE="https://www.blockout.net/blockout2/"
SRC_URI="
https://downloads.sourceforge.net/blockout/bl25-src.tar.gz
https://downloads.sourceforge.net/blockout/bl25-linux-x86.tar.gz"
diff --git a/games-puzzle/blockout/metadata.xml b/games-puzzle/blockout/metadata.xml
index a471078e75..4fba57bc50 100644
--- a/games-puzzle/blockout/metadata.xml
+++ b/games-puzzle/blockout/metadata.xml
@@ -5,4 +5,17 @@
andres.becerra@gmail.com
Andrés Becerra Sandoval
+
+
+ https://www.blockout.net/forum/viewforum.php?f=8
+
+
+ https://www.blockout.net/blockout2/version.php
+
+
+ Jean-Luc Pons
+ jlp_38@yahoo.com
+
+ blockout
+
diff --git a/gui-apps/fnott/metadata.xml b/gui-apps/fnott/metadata.xml
index 989de187db..b645d3edbc 100644
--- a/gui-apps/fnott/metadata.xml
+++ b/gui-apps/fnott/metadata.xml
@@ -5,4 +5,10 @@
leohdz172@proton.me
Leonardo Hernández Hernández
+
+
+ Daniel Eklöf
+
+ dnkl/fnott
+
diff --git a/mail-filter/postfix-mta-sts-resolver/metadata.xml b/mail-filter/postfix-mta-sts-resolver/metadata.xml
index f830caa955..a62daaa1fe 100644
--- a/mail-filter/postfix-mta-sts-resolver/metadata.xml
+++ b/mail-filter/postfix-mta-sts-resolver/metadata.xml
@@ -1,5 +1,12 @@
-
+
+
+
+ Snawoot
+
+ Snawoot/postfix-mta-sts-resolver
+ postfix-mta-sts-resolver
+
diff --git a/media-gfx/nsxiv/metadata.xml b/media-gfx/nsxiv/metadata.xml
index 38c2d5dad4..74bad32add 100644
--- a/media-gfx/nsxiv/metadata.xml
+++ b/media-gfx/nsxiv/metadata.xml
@@ -5,7 +5,7 @@
nrk@disroot.org
- nsxiv/nsxiv
+ nsxiv/nsxiv