diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-03-12 06:53:13 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-03-12 06:53:13 +0000 |
| commit | 39a45434e4c1f3e22d2f2d2d8d25314eeb141294 (patch) | |
| tree | 296ee0fdd37af0b171d0ba46d594f3c504f21f1d | |
| parent | 3e9fa44e9c862fccfedf3cfdad18bf1f3c29d64c (diff) | |
| download | baldeagleos-repo-39a45434e4c1f3e22d2f2d2d8d25314eeb141294.tar.gz baldeagleos-repo-39a45434e4c1f3e22d2f2d2d8d25314eeb141294.tar.xz baldeagleos-repo-39a45434e4c1f3e22d2f2d2d8d25314eeb141294.zip | |
Adding metadata
459 files changed, 2097 insertions, 3406 deletions
diff --git a/app-admin/winbox/Manifest b/app-admin/winbox/Manifest index cedcbcb0d7e6..a8eaa73526b5 100644 --- a/app-admin/winbox/Manifest +++ b/app-admin/winbox/Manifest @@ -1 +1 @@ -DIST winbox-4.0_beta17.zip 23500419 BLAKE2B a13e6699a0059846be6fb5d3917ebfa299f967411b9bef144f5e295f0f687ac5d160babcb56b1c8f062e8a4421590c6de45d89715a2a543b8c8f435e65455270 SHA512 79669b35a78e7353ad3ab04f144acfd8c3722beb1df17e6ed7b7285f5a8059222a27dacdbdb31454570cc53da77f172305fe285e334d957d7606963efe2d57e1 +DIST winbox-4.0_beta18.zip 23507054 BLAKE2B 522d2e80fc9c9790a776121324472e8a682420af9e25c55d6103d05bf0bd1dddb2711ddb095c4a0efbcdb31e98d1d8092a86102ae10b53a7eecf090003063642 SHA512 49c2266103f6d0b47225f263c87c06a2ce817bed6e7c46c9c96a860d4afeb792f884c502bc799d5eee5e28867bbbd17829d6274b3526795a91cf068b1ec5fa0e diff --git a/app-admin/winbox/winbox-4.0_beta17.ebuild b/app-admin/winbox/winbox-4.0_beta18.ebuild index 84392ba5ea14..84392ba5ea14 100644 --- a/app-admin/winbox/winbox-4.0_beta17.ebuild +++ b/app-admin/winbox/winbox-4.0_beta18.ebuild diff --git a/app-arch/patool/files/patool-3.1.0-fix-file-5.46-compat.patch b/app-arch/patool/files/patool-3.1.0-fix-file-5.46-compat.patch deleted file mode 100644 index 6d9aeec17639..000000000000 --- a/app-arch/patool/files/patool-3.1.0-fix-file-5.46-compat.patch +++ /dev/null @@ -1,189 +0,0 @@ -https://github.com/wummel/patool/pull/173 - -Used the above PR but removed changes that aren't 100% required. - -From d10324eac4429ff3d7d38ad24a19210699229e07 Mon Sep 17 00:00:00 2001 -From: Alfred Wingate <parona@protonmail.com> -Date: Wed, 11 Dec 2024 06:34:36 +0200 -Subject: [PATCH 1/4] Use application/gzip as the preferred mimetype for gzip - -Signed-off-by: Alfred Wingate <parona@protonmail.com> ---- a/patoolib/__init__.py -+++ b/patoolib/__init__.py -@@ -127,7 +127,6 @@ - 'application/x-cpio': 'cpio', - 'application/x-debian-package': 'deb', - 'application/x-dms': 'dms', -- 'application/x-gzip': 'gzip', - 'application/x-iso9660-image': 'iso', - 'application/x-lz4': 'lz4', - 'application/x-lzop': 'lzop', ---- a/patoolib/mime.py -+++ b/patoolib/mime.py -@@ -135,9 +135,11 @@ def guess_mime(filename: str) -> tuple[str | None, str | None]: - Mime2Encoding: dict[str, str] = dict( - [(_val, _key) for _key, _val in Encoding2Mime.items()] - ) --# libmagic before version 5.14 identified .gz files as application/x-gzip --Mime2Encoding['application/x-gzip'] = 'gzip' - -+LegacyMimeType: dict[str, str] = { -+ # libmagic before version 5.14 identified .gz files as application/x-gzip -+ 'application/x-gzip': "application/gzip", -+} - - def guess_mime_mimedb(filename: str) -> tuple[str | None, str | None]: - """Guess MIME type from given filename. -@@ -192,6 +194,10 @@ def guess_mime_file(filename: str) -> tuple[str | None, str | None]: - except (OSError, subprocess.CalledProcessError) as err: - log_warning(f"error executing {cmd}: {err}") - mime2 = None -+ -+ if mime2 in LegacyMimeType: -+ mime2 = LegacyMimeType[mime2] -+ - # Some file(1) implementations return an empty or unknown mime type - # when the uncompressor program is not installed, other - # implementation return the original file type. -@@ -227,6 +233,10 @@ def guess_mime_file_mime( - except OSError as err: - # ignore errors, as file(1) is only a fallback - log_warning(f"error executing {cmd}: {err}") -+ -+ if mime in LegacyMimeType: -+ mime = LegacyMimeType[mime] -+ - if mime not in ArchiveMimetypes: - mime, encoding = None, None - return mime, encoding -@@ -253,7 +263,7 @@ def get_file_mime_encoding(parts: Sequence[str]) -> str | None: - "cpio archive": "application/x-cpio", - "ASCII cpio archive": "application/x-cpio", - "Debian binary package": "application/x-debian-package", -- "gzip compressed data": "application/x-gzip", -+ "gzip compressed data": "application/gzip", - "LZMA compressed data": "application/x-lzma", - "LRZIP compressed data": "application/x-lrzip", - "lzop compressed data": "application/x-lzop", ---- a/tests/test_mime.py -+++ b/tests/test_mime.py -@@ -81,8 +81,8 @@ def test_mime_file(self): - self.mime_test_file("t.cpio.foo", "application/x-cpio") - self.mime_test_file("t.deb", "application/x-debian-package") - self.mime_test_file("t.deb.foo", "application/x-debian-package") -- self.mime_test_file("t.txt.gz", ("application/gzip", "application/x-gzip")) -- self.mime_test_file("t.txt.gz.foo", ("application/gzip", "application/x-gzip")) -+ self.mime_test_file("t.txt.gz", "application/gzip") -+ self.mime_test_file("t.txt.gz.foo", "application/gzip") - self.mime_test_file("t.jar", "application/zip") - self.mime_test_file("t.jar.foo", "application/zip") - self.mime_test_file("t.txt.lzma", "application/x-lzma") - -From e7501d1c7805696ff5b2ecc779f7a56ab2425c3f Mon Sep 17 00:00:00 2001 -From: Alfred Wingate <parona@protonmail.com> -Date: Wed, 11 Dec 2024 06:37:54 +0200 -Subject: [PATCH 2/4] Change rar mime type to application/vnd.rar - -https://github.com/file/file/commit/d46a1f3dbbf58eb510c1779b8bdcc59d5ee24ab9 -https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068700 - -Signed-off-by: Alfred Wingate <parona@protonmail.com> ---- a/patoolib/__init__.py -+++ b/patoolib/__init__.py -@@ -136,7 +136,6 @@ - 'application/x-lrzip': 'lrzip', - 'application/x-lzh': 'lzh', - 'application/x-ms-wim': 'wim', -- 'application/x-rar': 'rar', - 'application/x-redhat-package-manager': 'rpm', - 'application/x-rpm': 'rpm', - 'application/x-rzip': 'rzip', -@@ -147,6 +146,7 @@ - 'application/x-xz': 'xz', - 'application/x-zip-compressed': 'zip', - 'application/x-zoo': 'zoo', -+ 'application/vnd.rar': 'rar', - 'application/zip': 'zip', - 'application/zpaq': 'zpaq', - "application/zstd": "zstd", ---- a/patoolib/mime.py -+++ b/patoolib/mime.py -@@ -54,8 +54,8 @@ def add_mimedb_data(mimedb: mimetypes.MimeTypes) -> None: - add_mimetype(mimedb, 'application/x-lzma', '.lzma') - add_mimetype(mimedb, 'application/x-xz', '.xz') - add_mimetype(mimedb, 'application/java-archive', '.jar') -- add_mimetype(mimedb, 'application/x-rar', '.rar') -- add_mimetype(mimedb, 'application/x-rar', '.cbr') -+ add_mimetype(mimedb, 'application/vnd.rar', '.rar') -+ add_mimetype(mimedb, 'application/vnd.rar', '.cbr') - add_mimetype(mimedb, 'application/x-7z-compressed', '.7z') - add_mimetype(mimedb, 'application/x-7z-compressed', '.cb7') - add_mimetype(mimedb, 'application/x-cab', '.cab') -@@ -139,8 +139,11 @@ def guess_mime(filename: str) -> tuple[str | None, str | None]: - LegacyMimeType: dict[str, str] = { - # libmagic before version 5.14 identified .gz files as application/x-gzip - 'application/x-gzip': "application/gzip", -+ # libmagic before version 5.46 identified .rar files as application/x-rar -+ 'application/x-rar': "application/vnd.rar", - } - -+ - def guess_mime_mimedb(filename: str) -> tuple[str | None, str | None]: - """Guess MIME type from given filename. - @return: tuple (mime, encoding) -@@ -268,7 +271,7 @@ def get_file_mime_encoding(parts: Sequence[str]) -> str | None: - "LRZIP compressed data": "application/x-lrzip", - "lzop compressed data": "application/x-lzop", - "Microsoft Cabinet archive data": "application/vnd.ms-cab-compressed", -- "RAR archive data": "application/x-rar", -+ "RAR archive data": "application/vnd.rar", - "RPM ": "application/x-redhat-package-manager", - "POSIX tar archive": "application/x-tar", - "xz compressed data": "application/x-xz", ---- a/tests/test_mime.py -+++ b/tests/test_mime.py -@@ -91,10 +91,10 @@ def test_mime_file(self): - self.mime_test_file("t.txt.lz.foo", "application/x-lzip") - self.mime_test_file("t.txt.lzo", "application/x-lzop") - self.mime_test_file("t.txt.lzo.foo", "application/x-lzop") -- self.mime_test_file("t.rar", "application/x-rar") -- self.mime_test_file("t.rar.foo", "application/x-rar") -- self.mime_test_file("t.cbr", "application/x-rar") -- self.mime_test_file("t.cbr.foo", "application/x-rar") -+ self.mime_test_file("t.rar", "application/vnd.rar") -+ self.mime_test_file("t.rar.foo", "application/vnd.rar") -+ self.mime_test_file("t.cbr", "application/vnd.rar") -+ self.mime_test_file("t.cbr.foo", "application/vnd.rar") - self.mime_test_file("t.rpm", "application/x-rpm") - self.mime_test_file("t.rpm.foo", "application/x-rpm") - self.mime_test_file("t.tar", "application/x-tar") -@@ -197,8 +197,8 @@ def test_nested_gzip(self): - """Test mime detection of archives with double compression""" - # We won't extract this with rar, as it doesn't support archives wrapped in gzip - # compression, but we will recognize the archive as a gzip-wrapped rar-file -- self.mime_test_file("t.rar.gz", "application/x-rar", "gzip") -- self.mime_test_file("t.rar.gz.foo", "application/x-rar", "gzip") -+ self.mime_test_file("t.rar.gz", "application/vnd.rar", "gzip") -+ self.mime_test_file("t.rar.gz.foo", "application/vnd.rar", "gzip") - - @needs_program('file') - @needs_program('gzip') -@@ -237,7 +237,7 @@ def test_mime_mimedb(self): - self.mime_test_mimedb("t .bz2", "application/x-bzip2") - self.mime_test_mimedb("t .bz3", "application/x-bzip3") - self.mime_test_mimedb("t.cab", "application/x-cab") -- self.mime_test_mimedb("t.cbr", ("application/rar", "application/x-rar")) -+ self.mime_test_mimedb("t.cbr", ("application/rar", "application/vnd.rar")) - self.mime_test_mimedb("t.cpio", "application/x-cpio") - self.mime_test_mimedb("t.deb", "application/x-debian-package") - self.mime_test_mimedb("t.gz", "application/gzip") -@@ -247,7 +247,7 @@ def test_mime_mimedb(self): - self.mime_test_mimedb("t.txt.lz", "application/x-lzip") - self.mime_test_mimedb("t.txt.lz4", "application/x-lz4") - self.mime_test_mimedb("t.lzo", "application/x-lzop") -- self.mime_test_mimedb("t.rar", ("application/rar", "application/x-rar")) -+ self.mime_test_mimedb("t.rar", ("application/rar", "application/vnd.rar")) - self.mime_test_mimedb( - "t.rpm", ("application/x-redhat-package-manager", "application/x-rpm") - ) - diff --git a/app-backup/rdiff-backup/files/rdiff-backup-2.0.3-no-docs.patch b/app-backup/rdiff-backup/files/rdiff-backup-2.0.3-no-docs.patch deleted file mode 100644 index 7ac2e4aea213..000000000000 --- a/app-backup/rdiff-backup/files/rdiff-backup-2.0.3-no-docs.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -Naur rdiff-backup-2.0.3.orig/setup.py rdiff-backup-2.0.3/setup.py ---- rdiff-backup-2.0.3.orig/setup.py 2020-05-17 11:28:17.000000000 +0200 -+++ rdiff-backup-2.0.3/setup.py 2020-05-31 00:36:19.404101919 +0200 -@@ -194,19 +194,6 @@ - scripts=["src/rdiff-backup", "src/rdiff-backup-statistics", "src/rdiff-backup-delete"], - data_files=[ - ("share/man/man1", ["build/rdiff-backup.1", "build/rdiff-backup-statistics.1"]), -- ( -- "share/doc/rdiff-backup", -- [ -- "CHANGELOG.md", -- "COPYING", -- "README.md", -- "docs/FAQ.md", -- "docs/examples.md", -- "docs/DEVELOP.md", -- "docs/Windows-README.md", -- "docs/Windows-DEVELOP.md", -- ], -- ), - ("share/bash-completion/completions", ["tools/bash-completion/rdiff-backup"]), - ], - # options is a hash of hash with command -> option -> value diff --git a/app-backup/rdiff-backup/files/rdiff-backup-2.0.5-py311.patch b/app-backup/rdiff-backup/files/rdiff-backup-2.0.5-py311.patch deleted file mode 100644 index 87531ca7c4a6..000000000000 --- a/app-backup/rdiff-backup/files/rdiff-backup-2.0.5-py311.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 5e5cc54b5a633d3c6c0469283b2f26dbdde7908f Mon Sep 17 00:00:00 2001 -From: Frank Crawford <frank@crawford.emu.id.au> -Date: Sun, 2 Jan 2022 18:44:57 +1100 -Subject: [PATCH] Added patch for Python3.11 as per bpo-39573. - ---- - src/_librsyncmodule.c | 15 +++++++++++++-- - 1 file changed, 13 insertions(+), 2 deletions(-) - -diff --git a/src/_librsyncmodule.c b/src/_librsyncmodule.c -index a46567fc4..158104d2e 100644 ---- a/src/_librsyncmodule.c -+++ b/src/_librsyncmodule.c -@@ -25,6 +25,16 @@ - #include <librsync.h> - #define RSM_JOB_BLOCKSIZE 65536 - -+/* ----------------------------------------------------------------------- * -+ * Update for Python 3.11 - Contributed by Victor Stinner in bpo-39573. -+ * Compatibility macro for older Python versions. -+ * ----------------------------------------------------------------------- */ -+#if PY_VERSION_HEX < 0x030900A4 && !defined(Py_SET_TYPE) -+static inline void _Py_SET_TYPE(PyObject *ob, PyTypeObject *type) -+{ ob->ob_type = type; } -+#define Py_SET_TYPE(ob, type) _Py_SET_TYPE((PyObject*)(ob), type) -+#endif -+ - static PyObject *librsyncError; - - /* Sets python error string from result */ -@@ -540,8 +550,9 @@ PyMODINIT_FUNC PyInit__librsync(void) - { - PyObject *m, *d; - -- Py_TYPE(&_librsync_SigMakerType) = &PyType_Type; -- Py_TYPE(&_librsync_DeltaMakerType) = &PyType_Type; -+ /* Update for Python 3.11 - bpo-39573. */ -+ Py_SET_TYPE(&_librsync_SigMakerType, &PyType_Type); -+ Py_SET_TYPE(&_librsync_DeltaMakerType, &PyType_Type); - static struct PyModuleDef librsync_def = { - PyModuleDef_HEAD_INIT, "_librsync", "RSync Lib", -1, _librsyncMethods, }; - m = PyModule_Create(&librsync_def); diff --git a/app-crypt/acme/acme-2.11.1.ebuild b/app-crypt/acme/acme-2.11.1.ebuild index e57bfae5152d..d211ecdff2f9 100644 --- a/app-crypt/acme/acme-2.11.1.ebuild +++ b/app-crypt/acme/acme-2.11.1.ebuild @@ -22,7 +22,7 @@ else https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> ${PARENT_P}.gh.tar.gz " - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86" fi DESCRIPTION="An implementation of the ACME protocol" diff --git a/app-crypt/certbot-apache/certbot-apache-2.11.1.ebuild b/app-crypt/certbot-apache/certbot-apache-2.11.1.ebuild index 346f2b48effb..3e1f0defcd7a 100644 --- a/app-crypt/certbot-apache/certbot-apache-2.11.1.ebuild +++ b/app-crypt/certbot-apache/certbot-apache-2.11.1.ebuild @@ -22,7 +22,7 @@ else https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> ${PARENT_P}.gh.tar.gz " - KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + KEYWORDS="amd64 ~arm64 ~riscv x86" fi DESCRIPTION="Apache plugin for Certbot (Let’s Encrypt client)" diff --git a/app-crypt/certbot-nginx/certbot-nginx-2.11.1.ebuild b/app-crypt/certbot-nginx/certbot-nginx-2.11.1.ebuild index b9038f808588..cdfd6c44e0df 100644 --- a/app-crypt/certbot-nginx/certbot-nginx-2.11.1.ebuild +++ b/app-crypt/certbot-nginx/certbot-nginx-2.11.1.ebuild @@ -22,7 +22,7 @@ else https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> ${PARENT_P}.gh.tar.gz " - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86" fi DESCRIPTION="Nginx plugin for Certbot (Let’s Encrypt client)" diff --git a/app-crypt/certbot/certbot-2.11.1.ebuild b/app-crypt/certbot/certbot-2.11.1.ebuild index 044b5435a068..cd4b405f3d74 100644 --- a/app-crypt/certbot/certbot-2.11.1.ebuild +++ b/app-crypt/certbot/certbot-2.11.1.ebuild @@ -19,7 +19,7 @@ else https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz " - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86" fi DESCRIPTION="Let’s Encrypt client to automate deployment of X.509 certificates" diff --git a/app-crypt/certbot/certbot-3.2.0-r100.ebuild b/app-crypt/certbot/certbot-3.2.0-r100.ebuild index 8093e46423b5..305b19a06e0c 100644 --- a/app-crypt/certbot/certbot-3.2.0-r100.ebuild +++ b/app-crypt/certbot/certbot-3.2.0-r100.ebuild @@ -23,7 +23,7 @@ else # Only for amd64, arm64 and x86 because of dev-python/python-augeas #KEYWORDS="~amd64 ~arm64 ~x86" # Only for amd64 and x86 because of dev-python/dns-lexicon - KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" fi DESCRIPTION="Let’s Encrypt client to automate deployment of X.509 certificates" diff --git a/app-crypt/certbot/metadata.xml b/app-crypt/certbot/metadata.xml index 33a6bceb4d80..a2c77cf57dd3 100644 --- a/app-crypt/certbot/metadata.xml +++ b/app-crypt/certbot/metadata.xml @@ -5,6 +5,10 @@ <email>prometheanfire@gentoo.org</email> <name>Matthew Thode</name> </maintainer> + <maintainer type="person"> + <email>thican@thican.net</email> + <name>Thibaud CANALE</name> + </maintainer> <use> <flag name="certbot-apache">Enable Apache plugin.</flag> diff --git a/app-editors/ghostwriter/files/ghostwriter-24.08.2-fix-segfault.patch b/app-editors/ghostwriter/files/ghostwriter-24.08.2-fix-segfault.patch deleted file mode 100644 index 5466e47a319e..000000000000 --- a/app-editors/ghostwriter/files/ghostwriter-24.08.2-fix-segfault.patch +++ /dev/null @@ -1,175 +0,0 @@ -From bfca43e551729b9518772fed6fba19bb5dbe6646 Mon Sep 17 00:00:00 2001 -From: Megan Conkle <megan.conkle@kdemail.net> -Date: Sat, 12 Oct 2024 23:34:27 -0700 -Subject: [PATCH] Fix segmentation fault when .conf file is missing - -Whenever ghostwriter.conf is missing (or the last used exporter within -is empty), the app will crash with a segmentation fault due to accessing -an uninitialed pointer to the current HTML exporter in appsettings.cpp. -This commit ensures that the pointer is initialized to null before being -checked for whether obtaining an exporter was successful. -BUG: 465799 - -(cherry picked from commit f82070ac7916b36bb0bfd84a5c0e96cb084a6e28) -Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> ---- - CHANGELOG.md | 8 ++++++++ - src/preview/htmlpreview.cpp | 24 ++++++++++++------------ - src/settings/appsettings.cpp | 18 ++++++++++++------ - 3 files changed, 32 insertions(+), 18 deletions(-) - -diff --git a/CHANGELOG.md b/CHANGELOG.md -index 6f34002f..89017211 100644 ---- a/CHANGELOG.md -+++ b/CHANGELOG.md -@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - ## [Unreleased] - -+## [24.08.3] -+ -+### Fixed -+ -+* Issue #465799: Segmentation fault no longer occurs when .conf file is missing on first launch. -+ -+## [24.08.0] -+ - ### Added - - * Added more icons to menu actions. -diff --git a/src/preview/htmlpreview.cpp b/src/preview/htmlpreview.cpp -index db89dd29..5a600769 100644 ---- a/src/preview/htmlpreview.cpp -+++ b/src/preview/htmlpreview.cpp -@@ -1,5 +1,5 @@ --/* -- * SPDX-FileCopyrightText: 2014-2023 Megan Conkle <megan.conkle@kdemail.net> -+/* -+ * SPDX-FileCopyrightText: 2014-2024 Megan Conkle <megan.conkle@kdemail.net> - * - * SPDX-License-Identifier: GPL-3.0-or-later - */ -@@ -38,7 +38,7 @@ public: - HtmlPreviewPrivate(HtmlPreview *q_ptr) - : q_ptr(q_ptr) - { -- ; -+ proxy = new PreviewProxy(q_ptr); - } - - ~HtmlPreviewPrivate() -@@ -51,7 +51,7 @@ public: - MarkdownDocument *document; - bool updateInProgress; - bool updateAgain; -- PreviewProxy proxy; -+ PreviewProxy *proxy; - QString baseUrl; - QRegularExpression headingTagExp; - Exporter *exporter; -@@ -91,7 +91,7 @@ HtmlPreview::HtmlPreview - d->updateInProgress = false; - d->updateAgain = false; - d->exporter = exporter; -- d->proxy.setMathEnabled(d->exporter->supportsMath()); -+ d->proxy->setMathEnabled(d->exporter->supportsMath()); - - d->baseUrl = ""; - -@@ -153,7 +153,7 @@ HtmlPreview::HtmlPreview - this->setZoomFactor((horizontalDpi / 96.0)); - - QWebChannel *channel = new QWebChannel(this); -- channel->registerObject(QStringLiteral("previewProxy"), &d->proxy); -+ channel->registerObject(QStringLiteral("previewProxy"), d->proxy); - this->page()->setWebChannel(channel); - - QFile wrapperHtmlFile(":/resources/preview.html"); -@@ -240,22 +240,22 @@ void HtmlPreview::setHtmlExporter(Exporter *exporter) - - d->exporter = exporter; - d->setHtmlContent(""); -- d->proxy.setMathEnabled(d->exporter->supportsMath()); -+ d->proxy->setMathEnabled(d->exporter->supportsMath()); - updatePreview(); - } - - void HtmlPreview::setStyleSheet(const QString &css) - { - Q_D(HtmlPreview); -- -- d->proxy.setStyleSheet(css); -+ -+ d->proxy->setStyleSheet(css); - } - - void HtmlPreview::setMathEnabled(bool enabled) - { - Q_D(HtmlPreview); -- -- d->proxy.setMathEnabled(enabled); -+ -+ d->proxy->setMathEnabled(enabled); - } - - void HtmlPreviewPrivate::onHtmlReady() -@@ -312,7 +312,7 @@ void HtmlPreview::closeEvent(QCloseEvent *event) - - void HtmlPreviewPrivate::setHtmlContent(const QString &html) - { -- this->proxy.setHtmlContent(html); -+ this->proxy->setHtmlContent(html); - } - - QString HtmlPreviewPrivate::exportToHtml -diff --git a/src/settings/appsettings.cpp b/src/settings/appsettings.cpp -index a76c25a5..7d51ac5d 100644 ---- a/src/settings/appsettings.cpp -+++ b/src/settings/appsettings.cpp -@@ -65,6 +65,7 @@ public: - static AppSettings *instance; - - AppSettingsPrivate() -+ : currentHtmlExporter(nullptr) - { - ; - } -@@ -677,6 +678,7 @@ void AppSettings::setShowUnbreakableSpaceEnabled(bool enabled) - d->showUnbreakableSpaceEnabled = enabled; - emit showUnbreakableSpaceEnabledChanged(d->showUnbreakableSpaceEnabled); - } -+ - AppSettings::AppSettings() - : d_ptr(new AppSettingsPrivate()) - { -@@ -843,17 +845,21 @@ AppSettings::AppSettings() - - QString exporterName = appSettings.value(constants::GW_LAST_USED_EXPORTER_KEY).toString(); - -+ d->currentHtmlExporter = nullptr; -+ - if (!exporterName.isEmpty()) { - d->currentHtmlExporter = ExporterFactory::instance()->exporterByName(exporterName); -- } - -- if (d->currentHtmlExporter) { -- auto lastExportOptions = appSettings.value(constants::GW_LAST_USED_EXPORTER_PARAMS_KEY).toString(); -+ if (d->currentHtmlExporter) { -+ auto lastExportOptions = appSettings.value(constants::GW_LAST_USED_EXPORTER_PARAMS_KEY).toString(); - -- if (!lastExportOptions.isEmpty()) { -- d->currentHtmlExporter->setOptions(lastExportOptions); -+ if (!lastExportOptions.isEmpty()) { -+ d->currentHtmlExporter->setOptions(lastExportOptions); -+ } - } -- } else { -+ } -+ -+ if (!d->currentHtmlExporter) { - d->currentHtmlExporter = ExporterFactory::instance()->htmlExporters().first(); - } - } --- -GitLab - diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest index fc640e99442b..51d65913337d 100644 --- a/app-editors/vscode/Manifest +++ b/app-editors/vscode/Manifest @@ -1,9 +1,6 @@ -DIST vscode-1.97.1-amd64.tar.gz 150733407 BLAKE2B d2100a17d2ce027bdb734049a5ac3a63405a01cb3835419c2f7c942b102020dd0879263171586a95b0f7470e1d55ef779487a19a43b40e73d70234b857131603 SHA512 959e5d9e649befa2b72d15cf1e8fe839eea99eb237727e00c0fdc78c04437d404770e27d31ca28dca31242f6a306dd6862424e1abb3be289c1d1a3c692bf9035 -DIST vscode-1.97.1-arm.tar.gz 134817766 BLAKE2B 7513e1781682c80bbd1ffd4a27a261ee9bd5cd351dd50a5adfb6e5a075820ebc8ad8269f75ad532878778230c3ec58cc0bb5483c34156dd9fe1115ecbb55d003 SHA512 7ad5f8c3ebdec00c3335ac000e97a825abbe2fe7f5ac4f6fa4f74330a0f3a4d9a1203f43d527cb545dc2cf7ef9ef742fcb3116a91e508e5af63653d3c9a0cd13 -DIST vscode-1.97.1-arm64.tar.gz 146757140 BLAKE2B b295f1332bb934c867bdb5f8e15b8e702f17ae786d7c945e386c03d4ca6ec8d681f4b44bc8f7fedd1428e575f84f54ccd02d5be1e678d008cc70a532705e3cad SHA512 db35c677b057d380893000c83fa42304e8758c00cd0348acda5e37eafb301d1848851ee9c734fea09e5650cbd396512806e4daa4be7ca9b1c0ee4598f77ed365 -DIST vscode-1.97.2-amd64.tar.gz 150732857 BLAKE2B ef29fa8a3b3cfce79a10b9d5f7b76c63695107ac92be64da434a8702a9cb89dcf46359ba5beaa4f6cdafa785a1dce660143c39ca21118933dd81542752bb7733 SHA512 96d78ddf029e8058fddffb01052448346ecc3a67ecea1ae51bbf228f0145e0445260a0120ffd12d644fc569b2f1122f9b89b05db2fea04f0a4602d7928322d75 -DIST vscode-1.97.2-arm.tar.gz 134818178 BLAKE2B 6115bcdaa4603cd00444c923cff51a1477ef8fd8490b7310a4df17383db5f6340a81af1b1f06bc37bc8e49de3e4e87fc8ba5469ef2cb058fe232c20f462f6233 SHA512 bb8d1ccecfdca982024f6d995edf4a7b4d5fa0e2f0e35fe393205ca6204104ab591183333ce0e361afbdd6e123d5a71eafc87d8dcb2b871e39d0ae64f57b8583 -DIST vscode-1.97.2-arm64.tar.gz 146748925 BLAKE2B 045a6d5cb9e652452f934fd57acf17c853b45052372730cb4383a1b34b337e7629bb1973ebc661e69e1a6a9a6bbf79cefca48aaff183d38b4642f25ddf1f320f SHA512 51e58b0e789f76510d7f3ebf7a2f72d98099fcb3e8bd5faafb57c8c2031d512be79ce51709d408a4fc4fcced3ebed3fec1665ea903ab47063067738f6f6361db DIST vscode-1.98.0-amd64.tar.gz 148573919 BLAKE2B 5ac95e06e304b7b4fa8e04d6eb22b622124d1b2b7615a707db7e588babe2613045626eb574b52678fc7a26a2828fc633f5f29328ff38417917eb69bf5c1f2130 SHA512 fa9e59d7cb30f55636dab6f58df114d0ac0bbca4bae7b939e3fb4cab970012987bc8bda54065abe349e34d17a0639431f844c17f2a8e4ec7d644079173f591c4 DIST vscode-1.98.0-arm.tar.gz 138870063 BLAKE2B 6dd1e7af92cac62ed30f52ecf721da7e5cea087fe9323cf2b3c128bffcdae200f75399a40b31e55e33a8244e6d2ccb8954a92ae829b976bc6e2be738506a4fe1 SHA512 77b6378f982ac552dc8028b928def72ac2d82d7f0d26c2862222bc283f3d288d42aec3367029f04e9ef2a2744bd479dabda4805bd81177079b699ea708398b55 DIST vscode-1.98.0-arm64.tar.gz 149345224 BLAKE2B 568c342a262cfa8f6b3520072d63eb7343f9676f16ed679d2af5ad90825325ab0dd02d643a4c1398667ef0f95997fec533ffc038f6d139a3b1a06a8e90ae2b96 SHA512 4bcc2d6af85e0a392cb5463d9aa8cbce459b01e8acacd609e0e5ff57f9a0f3f6c5e7b547a2c4f755c6cde0ab29e0d271058c47ee91b102be37f259c22b2463bb +DIST vscode-1.98.1-amd64.tar.gz 148575540 BLAKE2B addb847defc1e476da88b591fb13cddd965142bc6f43a33eec961e901b043575ab296498a4bc5b456979bb5c27a429eed16edfff3f8a2b729f2242f3d529a29c SHA512 f9056bf8c477ea170be6c34c20d321f482042dfa23899d7e3f225097ad2d10e2f5620d882d542b03f7291aaf95835943b7a74de53c2667e952f652a0f1a3884e +DIST vscode-1.98.1-arm.tar.gz 138886561 BLAKE2B b62c7c33185b79da9d071d50b21cac3f87797fd14f4e2c9cc2a5f95f438df255fdee38d7eeabafa1f0a0b44180db46e3fb725587304f1da81c459ac949c9c0e1 SHA512 53a9c93f26c66441f971a7cbf4bd57468c5f53b461c270733701c8cc3586869cdda9e78a5bd339001b0647a494a005ad7c8ce28f7c6ba7587db234a524c8d15b +DIST vscode-1.98.1-arm64.tar.gz 149342137 BLAKE2B 43836e1792a6f9d7bbfcc44e6c75d775b2748e172b332f62b02e7bb793284b32bf3c57dab47d87fbdf80680e5881c294add504701d0fec6e78227a9298598f90 SHA512 fc5de008a1742be595804868d14abb2c34844acf564eae02a1a3dbc2d6ad23a1603ab2784f1f80350defc4151a330f99a725e9fe4fb5db5845eb77d2a957f303 diff --git a/app-editors/vscode/vscode-1.97.2.ebuild b/app-editors/vscode/vscode-1.97.2.ebuild deleted file mode 100644 index 04f694acb893..000000000000 --- a/app-editors/vscode/vscode-1.97.2.ebuild +++ /dev/null @@ -1,137 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop pax-utils xdg optfeature - -DESCRIPTION="Multiplatform Visual Studio Code from Microsoft" -HOMEPAGE="https://code.visualstudio.com" -SRC_URI=" - amd64? ( https://update.code.visualstudio.com/${PV}/linux-x64/stable -> ${P}-amd64.tar.gz ) - arm? ( https://update.code.visualstudio.com/${PV}/linux-armhf/stable -> ${P}-arm.tar.gz ) - arm64? ( https://update.code.visualstudio.com/${PV}/linux-arm64/stable -> ${P}-arm64.tar.gz ) -" -S="${WORKDIR}" - -LICENSE=" - Apache-2.0 - BSD - BSD-1 - BSD-2 - BSD-4 - CC-BY-4.0 - ISC - LGPL-2.1+ - Microsoft-vscode - MIT - MPL-2.0 - openssl - PYTHON - TextMate-bundle - Unlicense - UoI-NCSA - W3C -" -SLOT="0" -KEYWORDS="-* amd64 ~arm ~arm64" -IUSE="egl kerberos wayland" -RESTRICT="mirror strip bindist" - -RDEPEND=" - >=app-accessibility/at-spi2-core-2.46.0:2 - app-crypt/libsecret[crypt] - app-misc/ca-certificates - dev-libs/expat - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/libglvnd - media-libs/mesa - net-misc/curl - sys-apps/dbus - sys-libs/zlib - sys-process/lsof - 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/libxkbfile - x11-libs/libXrandr - x11-libs/libXScrnSaver - x11-libs/pango - x11-misc/xdg-utils - kerberos? ( app-crypt/mit-krb5 ) -" - -QA_PREBUILT="*" - -src_install() { - if use amd64; then - cd "${WORKDIR}/VSCode-linux-x64" || die - elif use arm; then - cd "${WORKDIR}/VSCode-linux-armhf" || die - elif use arm64; then - cd "${WORKDIR}/VSCode-linux-arm64" || die - else - die "Visual Studio Code only supports amd64, arm and arm64" - fi - - # Cleanup - rm -r ./resources/app/ThirdPartyNotices.txt || die - - # Disable update server - sed -e "/updateUrl/d" -i ./resources/app/product.json || die - - if ! use kerberos; then - rm -r ./resources/app/node_modules/kerberos || die - fi - - # Install - pax-mark m code - mkdir -p "${ED}/opt/${PN}" || die - cp -r . "${ED}/opt/${PN}" || die - fperms 4711 /opt/${PN}/chrome-sandbox - - dosym -r "/opt/${PN}/bin/code" "usr/bin/vscode" - dosym -r "/opt/${PN}/bin/code" "usr/bin/code" - - local EXEC_EXTRA_FLAGS=() - if use wayland; then - EXEC_EXTRA_FLAGS+=( "--ozone-platform-hint=auto" "--enable-wayland-ime" ) - fi - if use egl; then - EXEC_EXTRA_FLAGS+=( "--use-gl=egl" ) - fi - - sed "s|@exec_extra_flags@|${EXEC_EXTRA_FLAGS[*]}|g" \ - "${FILESDIR}/code-url-handler.desktop" \ - > "${T}/code-url-handler.desktop" || die - - sed "s|@exec_extra_flags@|${EXEC_EXTRA_FLAGS[*]}|g" \ - "${FILESDIR}/code.desktop" \ - > "${T}/code.desktop" || die - - sed "s|@exec_extra_flags@|${EXEC_EXTRA_FLAGS[*]}|g" \ - "${FILESDIR}/code-open-in-new-window.desktop" \ - > "${T}/code-open-in-new-window.desktop" || die - - domenu "${T}/code.desktop" - domenu "${T}/code-url-handler.desktop" - domenu "${T}/code-open-in-new-window.desktop" - newicon "resources/app/resources/linux/code.png" "vscode.png" -} - -pkg_postinst() { - xdg_pkg_postinst - optfeature "desktop notifications" x11-libs/libnotify - optfeature "keyring support inside vscode" "virtual/secret-service" - optfeature "Live Share" dev-libs/icu -} diff --git a/app-editors/vscode/vscode-1.97.1.ebuild b/app-editors/vscode/vscode-1.98.1.ebuild index 04f694acb893..04f694acb893 100644 --- a/app-editors/vscode/vscode-1.97.1.ebuild +++ b/app-editors/vscode/vscode-1.98.1.ebuild diff --git a/app-editors/zile/Manifest b/app-editors/zile/Manifest index ba1561a3565d..ad03f740f9fb 100644 --- a/app-editors/zile/Manifest +++ b/app-editors/zile/Manifest @@ -1 +1,2 @@ DIST zile-2.6.2.tar.gz 1152751 BLAKE2B db51b534c8d76e1def91bbfe49cab501ff1bccd6fbeddd5622d8fca3695305c53e480eed1978e880621e09955e2b98519cfa02cf259006a08d1a8722122148ea SHA512 16d5cece403fc215d53b35c31fe6f743d53d7a01cdc7d101cabe6760173539c9c31e092b29c374f28a723708027f6de626fcfee302962848091f85078fa81761 +DIST zile-2.6.3.tar.gz 1329853 BLAKE2B 258a0251b3462e10d84d267ebcb1523696f2c2e79c776d9f4a35487c4266cf526389f38bdc39d52cbbd40be5d17664ed81dd0ebdd1aec5201696d500a3fed33e SHA512 7efdabcee8193a873ae79903b19c582abb8d7470384afe93f8764b4a9422ecb980b3fc961795e760ea4d0816d1af6773f6f58f8ff7f36550a4418c236dcbd529 diff --git a/app-editors/zile/zile-2.6.3.ebuild b/app-editors/zile/zile-2.6.3.ebuild new file mode 100644 index 000000000000..50c08396bf7d --- /dev/null +++ b/app-editors/zile/zile-2.6.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs vala + +DESCRIPTION="Zile is a small Emacs clone" +HOMEPAGE="https://www.gnu.org/software/zile/" +SRC_URI="mirror://gnu/zile/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND="dev-libs/glib:2 + dev-libs/libgee:0.8= + sys-libs/ncurses:0=" + +DEPEND="${RDEPEND}" + +BDEPEND="dev-lang/perl + sys-apps/help2man + virtual/pkgconfig + $(vala_depend)" + +# AUTHORS, FAQ, and NEWS are installed by the build system +DOCS="README THANKS" + +QA_AM_MAINTAINER_MODE=".*help2man.*" #450278 + +src_prepare() { + default + vala_setup + rm *_vala.stamp || die +} + +src_configure() { + econf CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" +} + +src_test() { + if tput cup 0 0 >/dev/null || tput cuu1 >/dev/null; then + # We have a sane terminal that can move the cursor + emake check + else + ewarn "Terminal type \"${TERM}\" is too stupid to run zile" + ewarn "Running the tests with unset TERM instead" + ( unset TERM; emake check ) + fi +} diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest index d94f40060c90..94f53d836e32 100644 --- a/app-emacs/dape/Manifest +++ b/app-emacs/dape/Manifest @@ -1,2 +1,2 @@ -DIST dape-0.21.0.tar.gz 78689 BLAKE2B 12ae2ea5771ff303693b1477fe5f535d9295d138bd16ca0859bd7cbdfbf93c18347cb6dc9910c93001947dc58cba4064c0782f0007057ea99932a2674963da90 SHA512 0ecbe997859148f5bd1154b946d617df054772244cadb8697c97fe82d1deb572d47d26668229e3d0dbb02f4339b51a334cd06922050dbb592a4f05581fb35012 DIST dape-0.22.0.tar.gz 78792 BLAKE2B 42743bcb2c82680b90f42c01a9212eca08eba7c41bc8874ffebbe9f1b4003812ad453afb8ef049c085def3466c835a7f63c4b96efe6fccfd6366089d303df990 SHA512 057776fd479dbf1ca3206593fd778e35182e9a2915966ff6e45c87c76e62a96dc19474d35a5bba4015f419e34cf8fa31d214c4164c6cab2ed6e5edb788e4a658 +DIST dape-0.23.0.tar.gz 79466 BLAKE2B 70c6741d11c392eb420aa3173aff8b4c293d640b28ee02c352bc2f2ccff9293c15d8855aca421fff3e7d2824865c8fa6e3f218471b8cb2bceef51e3e7e30355a SHA512 e3c4fb922cb1cd328e49afd8cb52df15fd0dcf5636f9ba0b5c882cfdaf12a2c7349749f23a7c6bae98210cf5e2f9224570edbdcba9748c2a7ac216b4890d5952 diff --git a/app-emacs/dape/dape-0.21.0.ebuild b/app-emacs/dape/dape-0.23.0.ebuild index c4b8f0561c5d..e3cc513f8bb9 100644 --- a/app-emacs/dape/dape-0.21.0.ebuild +++ b/app-emacs/dape/dape-0.23.0.ebuild @@ -38,6 +38,9 @@ DEPEND=" # js-debug. Most tests use only the former. RESTRICT="test" +# Remove tests.el to skip compilation and failing tests (see above comment). +ELISP_REMOVE="${PN}-tests.el" + DOCS=( README.org CHANGELOG.org LICENSE ) SITEFILE="50${PN}-gentoo.el" @@ -59,10 +62,6 @@ src_compile() { elisp-make-autoload-file } -# src_test() { -# elisp-test -# } - src_install() { # Need to ignore dape-tests.el. einstalldocs diff --git a/app-emacs/proofgeneral/files/proofgeneral-4.5-posix-no-which.patch b/app-emacs/proofgeneral/files/proofgeneral-4.5-posix-no-which.patch new file mode 100644 index 000000000000..cd1ed1529407 --- /dev/null +++ b/app-emacs/proofgeneral/files/proofgeneral-4.5-posix-no-which.patch @@ -0,0 +1,40 @@ +From 2dac06d9e3f8e66f1619585c86f05a538a75de08 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Ulrich=20M=C3=BCller?= <ulm@gentoo.org> +Date: Mon, 24 Feb 2025 19:29:48 +0100 +Subject: [PATCH] Makefile: Replace "which" by POSIX "command -v" + +--- + Makefile | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/Makefile b/Makefile +index 7a5df5602..b9b28aab5 100644 +--- a/Makefile ++++ b/Makefile +@@ -21,7 +21,7 @@ + + # Set this according to your version of Emacs. + # NB: this is also used to set default install path names below. +-EMACS=$(shell if [ -z "`which emacs`" ]; then echo "Emacs executable not found"; exit 1; else echo emacs; fi) ++EMACS=$(shell if [ -z "`command -v emacs`" ]; then echo "Emacs executable not found"; exit 1; else echo emacs; fi) + + # We default to /usr rather than /usr/local because installs of + # desktop and doc files under /usr/local are unlikely to work with +@@ -273,7 +273,7 @@ scripts: bashscripts perlscripts + + .PHONY: bashscripts + bashscripts: +- (bash="`which bash`"; \ ++ (bash="`command -v bash`"; \ + if [ -z "$$bash" ]; then \ + echo "Could not find bash - bash paths not checked" >&2; \ + exit 0; \ +@@ -281,7 +281,7 @@ bashscripts: + + .PHONY: perlscripts + perlscripts: +- (perl="`which perl`"; \ ++ (perl="`command -v perl`"; \ + if [ -z "$$perl" ]; then \ + echo "Could not find perl - perl paths not checked" >&2; \ + exit 0; \ diff --git a/app-emacs/proofgeneral/proofgeneral-4.5.ebuild b/app-emacs/proofgeneral/proofgeneral-4.5.ebuild index 021c56340c58..a5ca4a5d9022 100644 --- a/app-emacs/proofgeneral/proofgeneral-4.5.ebuild +++ b/app-emacs/proofgeneral/proofgeneral-4.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,7 +18,9 @@ KEYWORDS="amd64 ppc x86" PATCHES=( "${FILESDIR}"/${PN}-4.4-desktop.patch "${FILESDIR}"/${PN}-4.5-paths.patch + "${FILESDIR}"/${PN}-4.5-posix-no-which.patch ) + DOCS=( AUTHORS BUGS CHANGES COMPATIBILITY FAQ.md INSTALL README.md ) SITEFILE="50${PN}-gentoo.el" diff --git a/app-misc/openrgb/openrgb-9999.ebuild b/app-misc/openrgb/openrgb-9999.ebuild index 1d00eb21c792..d5be8e1b92c7 100644 --- a/app-misc/openrgb/openrgb-9999.ebuild +++ b/app-misc/openrgb/openrgb-9999.ebuild @@ -50,11 +50,9 @@ CHECKREQS_DISK_BUILD="2G" src_prepare() { default + rm -r dependencies/{httplib,hidapi,libusb,mdns,json,mbedtls}* \ || die "Failed to remove unneded deps" - - rm dependencies/hueplusplus-1.1.0/include/json/json.hpp || die - echo "#include <nlohmann/json.hpp>" > dependencies/hueplusplus-1.1.0/include/json/json.hpp || die } src_configure() { diff --git a/app-text/doxygen/files/doxygen-1.12.0-clang-19.patch b/app-text/doxygen/files/doxygen-1.12.0-clang-19.patch deleted file mode 100644 index acca39a18d51..000000000000 --- a/app-text/doxygen/files/doxygen-1.12.0-clang-19.patch +++ /dev/null @@ -1,43 +0,0 @@ -https://github.com/doxygen/doxygen/commit/cff64a87dea7596fd506a85521d4df4616dc845f -https://github.com/doxygen/doxygen/pull/11064 -https://github.com/bisqwit/TinyDeflate/commit/68ced8bd5c819264e628d4f063500753b77f613d -https://github.com/bisqwit/TinyDeflate/pull/9 - -From cff64a87dea7596fd506a85521d4df4616dc845f Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Bernhard=20Rosenkr=C3=A4nzer?= <bero@lindev.ch> -Date: Fri, 9 Aug 2024 14:13:34 +0200 -Subject: [PATCH] Fix build with clang >= 19.0 - -Clang >= 19.0 requires a template argument list after the template -keyword for CWG96 compliance, see -https://github.com/llvm/llvm-project/pull/80801 - -This patch has also been submitted to upstream TinyDeflate as -https://github.com/bisqwit/TinyDeflate/pull/9 ---- a/deps/TinyDeflate/gunzip.hh -+++ b/deps/TinyDeflate/gunzip.hh -@@ -1141,21 +1141,21 @@ namespace gunzip_ns - //fprintf(stderr, "both track flag\n"); - SizeTracker<DeflateTrackBothSize> tracker; - return tracker(Gunzip<code & Flag_NoTrackFlagMask> -- (tracker.template ForwardInput(i), tracker.template ForwardOutput(o), tracker.template ForwardWindow(c), std::forward<B>(b))); -+ (tracker.template ForwardInput<I>(i), tracker.template ForwardOutput<O>(o), tracker.template ForwardWindow<C>(c), std::forward<B>(b))); - } - else if constexpr(code & Flag_TrackIn) - { - //fprintf(stderr, "in track flag\n"); - SizeTracker<DeflateTrackInSize> tracker; - return tracker(Gunzip<code & Flag_NoTrackFlagMask> -- (tracker.template ForwardInput(i),std::forward<O>(o),std::forward<C>(c),std::forward<B>(b))); -+ (tracker.template ForwardInput<I>(i),std::forward<O>(o),std::forward<C>(c),std::forward<B>(b))); - } - else if constexpr(code & Flag_TrackOut) - { - //fprintf(stderr, "out track flag\n"); - SizeTracker<DeflateTrackOutSize> tracker; - return tracker(Gunzip<code & Flag_NoTrackFlagMask> -- (std::forward<I>(i), tracker.template ForwardOutput(o), tracker.template ForwardWindow(c), std::forward<B>(b))); -+ (std::forward<I>(i), tracker.template ForwardOutput<O>(o), tracker.template ForwardWindow<C>(c), std::forward<B>(b))); - } - else - { diff --git a/app-text/doxygen/files/doxygen-1.12.0-libfmt-11.patch b/app-text/doxygen/files/doxygen-1.12.0-libfmt-11.patch deleted file mode 100644 index a73f6ad58514..000000000000 --- a/app-text/doxygen/files/doxygen-1.12.0-libfmt-11.patch +++ /dev/null @@ -1,112 +0,0 @@ -https://bugs.gentoo.org/937599 -https://github.com/doxygen/doxygen/pull/11083 - -From 567aca983f70b01103271e431bc71a13ac79213c Mon Sep 17 00:00:00 2001 -From: Alfred Wingate <parona@protonmail.com> -Date: Fri, 9 Aug 2024 03:00:05 +0300 -Subject: [PATCH] Adjust to libfmt-11 changes - -Bug: https://bugs.gentoo.org/937599 -See-Also: https://github.com/fmtlib/fmt/commit/d70729215fba1d54862e407b626abf86ddf409bf -Signed-off-by: Alfred Wingate <parona@protonmail.com> ---- a/src/trace.h -+++ b/src/trace.h -@@ -156,7 +156,7 @@ namespace fmt { template<typename T> struct formatter {}; } - //! adds support for formatting QCString - template<> struct fmt::formatter<QCString> : formatter<std::string> - { -- auto format(const QCString &c, format_context& ctx) { -+ auto format(const QCString &c, format_context& ctx) const { - return formatter<std::string>::format(c.str(), ctx); - } - }; -@@ -164,7 +164,7 @@ template<> struct fmt::formatter<QCString> : formatter<std::string> - //! adds support for formatting Protected - template<> struct fmt::formatter<Protection> : formatter<std::string> - { -- auto format(Protection prot, format_context& ctx) { -+ auto format(Protection prot, format_context& ctx) const { - std::string result="Unknown"; - switch (prot) - { -@@ -180,7 +180,7 @@ template<> struct fmt::formatter<Protection> : formatter<std::string> - //! adds support for formatting Specifier - template<> struct fmt::formatter<Specifier> : formatter<std::string> - { -- auto format(Specifier spec, format_context& ctx) { -+ auto format(Specifier spec, format_context& ctx) const { - std::string result="Unknown"; - switch (spec) - { -@@ -195,7 +195,7 @@ template<> struct fmt::formatter<Specifier> : formatter<std::string> - //! adds support for formatting MethodTypes - template<> struct fmt::formatter<MethodTypes> : formatter<std::string> - { -- auto format(MethodTypes mtype, format_context& ctx) { -+ auto format(MethodTypes mtype, format_context& ctx) const { - std::string result="Unknown"; - switch (mtype) - { -@@ -213,7 +213,7 @@ template<> struct fmt::formatter<MethodTypes> : formatter<std::string> - //! adds support for formatting RelatesType - template<> struct fmt::formatter<RelatesType> : formatter<std::string> - { -- auto format(RelatesType type, format_context& ctx) { -+ auto format(RelatesType type, format_context& ctx) const { - std::string result="Unknown"; - switch (type) - { -@@ -228,7 +228,7 @@ template<> struct fmt::formatter<RelatesType> : formatter<std::string> - //! adds support for formatting RelationShip - template<> struct fmt::formatter<Relationship> : formatter<std::string> - { -- auto format(Relationship relation, format_context& ctx) { -+ auto format(Relationship relation, format_context& ctx) const { - std::string result="Unknown"; - switch (relation) - { -@@ -243,7 +243,7 @@ template<> struct fmt::formatter<Relationship> : formatter<std::string> - //! adds support for formatting SrcLangExt - template<> struct fmt::formatter<SrcLangExt> : formatter<std::string> - { -- auto format(SrcLangExt lang, format_context& ctx) { -+ auto format(SrcLangExt lang, format_context& ctx) const { - std::string result="Unknown"; - switch (lang) - { -@@ -273,7 +273,7 @@ template<> struct fmt::formatter<SrcLangExt> : formatter<std::string> - //! adds support for formatting MemberType - template<> struct fmt::formatter<MemberType> : formatter<std::string> - { -- auto format(MemberType mtype, format_context& ctx) { -+ auto format(MemberType mtype, format_context& ctx) const { - std::string result="Unknown"; - switch (mtype) - { -@@ -301,7 +301,7 @@ template<> struct fmt::formatter<MemberType> : formatter<std::string> - //! adds support for formatting TypeSpecifier - template<> struct fmt::formatter<TypeSpecifier> : formatter<std::string> - { -- auto format(TypeSpecifier type, format_context& ctx) { -+ auto format(TypeSpecifier type, format_context& ctx) const { - return formatter<std::string>::format(type.to_string(),ctx); - } - }; -@@ -309,7 +309,7 @@ template<> struct fmt::formatter<TypeSpecifier> : formatter<std::string> - //! adds support for formatting EntryType - template<> struct fmt::formatter<EntryType> : formatter<std::string> - { -- auto format(EntryType type, format_context& ctx) { -+ auto format(EntryType type, format_context& ctx) const { - return formatter<std::string>::format(type.to_string(),ctx); - } - }; -@@ -317,7 +317,7 @@ template<> struct fmt::formatter<EntryType> : formatter<std::string> - //! adds support for formatting MemberListType - template<> struct fmt::formatter<MemberListType> : formatter<std::string> - { -- auto format(MemberListType type, format_context& ctx) { -+ auto format(MemberListType type, format_context& ctx) const { - return formatter<std::string>::format(type.to_string(),ctx); - } - }; diff --git a/app-text/doxygen/files/doxygen-1.9.7-musl-1.2.4.patch b/app-text/doxygen/files/doxygen-1.9.7-musl-1.2.4.patch deleted file mode 100644 index 2c71a0af9ae8..000000000000 --- a/app-text/doxygen/files/doxygen-1.9.7-musl-1.2.4.patch +++ /dev/null @@ -1,26 +0,0 @@ -https://bugs.gentoo.org/906920 -https://gitlab.exherbo.org/exherbo/arbor/-/commit/7b517ba0068adc471fe7b2ed8cfbb191a197ca17 - -From 6d713aa98b36ee8219294515142c0225fbd09dfc Mon Sep 17 00:00:00 2001 -From: Heiko Becker <heirecka@exherbo.org> -Date: Thu, 25 May 2023 10:52:29 +0200 -Subject: [PATCH] Apply upstream fix for spdlog - -Fixes the build with musl >= 1.2.4, see -https://github.com/gabime/spdlog/commit/287a00d364990edbb621fe5e392aeb550135fb96 -for details. ---- a/deps/spdlog/include/spdlog/details/os-inl.h -+++ b/deps/spdlog/include/spdlog/details/os-inl.h -@@ -236,8 +236,8 @@ SPDLOG_INLINE size_t filesize(FILE *f) - # else - int fd = ::fileno(f); - # endif --// 64 bits(but not in osx or cygwin, where fstat64 is deprecated) --# if (defined(__linux__) || defined(__sun) || defined(_AIX)) && (defined(__LP64__) || defined(_LP64)) -+// 64 bits(but not in osx, linux/musl or cygwin, where fstat64 is deprecated) -+# if ((defined(__linux__) && defined(__GLIBC__)) || defined(__sun) || defined(_AIX)) && (defined(__LP64__) || defined(_LP64)) - struct stat64 st; - if (::fstat64(fd, &st) == 0) - { --- -2.41.0.rc2 diff --git a/app-text/doxygen/files/doxygen-1.9.8-spdlog-link.patch b/app-text/doxygen/files/doxygen-1.9.8-spdlog-link.patch deleted file mode 100644 index e73385dec3b2..000000000000 --- a/app-text/doxygen/files/doxygen-1.9.8-spdlog-link.patch +++ /dev/null @@ -1,51 +0,0 @@ -https://github.com/doxygen/doxygen/issues/10265 -https://github.com/doxygen/doxygen/pull/10284 - -From 70bb112352ae7f3130647dcc009d8de5d4134e6d Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=D9=85=D9=87=D8=AF=D9=8A=20=D8=B4=D9=8A=D9=86=D9=88=D9=86?= - =?UTF-8?q?=20=28Mehdi=20Chinoune=29?= <mehdi.chinoune@hotmail.com> -Date: Mon, 4 Sep 2023 18:49:27 +0100 -Subject: [PATCH 1/2] doxyapp: Fix linking to spdlog - ---- - addon/doxyapp/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/addon/doxyapp/CMakeLists.txt b/addon/doxyapp/CMakeLists.txt -index 4f3c31feacd..6097a3cca69 100644 ---- a/addon/doxyapp/CMakeLists.txt -+++ b/addon/doxyapp/CMakeLists.txt -@@ -46,7 +46,7 @@ mscgen - doxygen_version - doxycfg - vhdlparser --spdlog -+spdlog::spdlog - ${ICONV_LIBRARIES} - ${CMAKE_THREAD_LIBS_INIT} - ${SQLITE3_LIBRARIES} - -From 71f2ed171a6d14a67f1905802714add974c31789 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=D9=85=D9=87=D8=AF=D9=8A=20=D8=B4=D9=8A=D9=86=D9=88=D9=86?= - =?UTF-8?q?=20=28Mehdi=20Chinoune=29?= <mehdi.chinoune@hotmail.com> -Date: Mon, 4 Sep 2023 18:50:25 +0100 -Subject: [PATCH 2/2] doxyparse: Fix linking to spdlog - ---- - addon/doxyparse/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/addon/doxyparse/CMakeLists.txt b/addon/doxyparse/CMakeLists.txt -index 24881e3ef12..0157afb45e2 100644 ---- a/addon/doxyparse/CMakeLists.txt -+++ b/addon/doxyparse/CMakeLists.txt -@@ -35,7 +35,7 @@ mscgen - doxygen_version - doxycfg - vhdlparser --spdlog -+spdlog::spdlog - ${ICONV_LIBRARIES} - ${CMAKE_THREAD_LIBS_INIT} - ${SQLITE3_LIBRARIES} - diff --git a/app-text/doxygen/files/doxygen-1.9.8-unbundle-sqlite.patch b/app-text/doxygen/files/doxygen-1.9.8-unbundle-sqlite.patch deleted file mode 100644 index 04d1d69b7b86..000000000000 --- a/app-text/doxygen/files/doxygen-1.9.8-unbundle-sqlite.patch +++ /dev/null @@ -1,119 +0,0 @@ -https://github.com/doxygen/doxygen/issues/10263 -https://github.com/doxygen/doxygen/commit/28609fecd41d885e54fa170e499a0e5b55def2c2 - -From 28609fecd41d885e54fa170e499a0e5b55def2c2 Mon Sep 17 00:00:00 2001 -From: Dimitri van Heesch <doxygen@gmail.com> -Date: Mon, 28 Aug 2023 20:19:16 +0200 -Subject: [PATCH] issue #10263 please add a use_sys_sqlite3 config option - ---- - CMakeLists.txt | 6 +++++- - cmake/FindSQLite3.cmake | 38 ++++++++++++++++++++++++++++++++++++++ - deps/CMakeLists.txt | 4 +++- - src/CMakeLists.txt | 4 +++- - 4 files changed, 49 insertions(+), 3 deletions(-) - create mode 100644 cmake/FindSQLite3.cmake - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4957c34c24d..31e53cc8440 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -25,7 +25,8 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - option(use_libc++ "Use libc++ as C++ standard library." ON) - endif() - option(use_libclang "Add support for libclang parsing." OFF) --option(use_sys_spdlog "Use system spdlog instead of bundled." OFF) -+option(use_sys_spdlog "Use system spdlog library instead of the one bundled." OFF) -+option(use_sys_sqlite3 "Use system sqlite3 library instead of the one bundled." OFF) - option(static_libclang "Link to a statically compiled version of LLVM/libclang." OFF) - option(win_static "Link with /MT in stead of /MD on windows" OFF) - option(enable_console "Enable that executables on Windows get the CONSOLE bit set for the doxywizard executable [development]" OFF) -@@ -67,6 +68,9 @@ endif() - if (use_sys_spdlog) - find_package(spdlog CONFIG REQUIRED) - endif() -+if (use_sys_sqlite3) -+ find_package(SQLite3 REQUIRED) -+endif() - if (build_wizard) - if (force_qt STREQUAL "Qt6") - if (CMAKE_SYSTEM MATCHES "Darwin") -diff --git a/cmake/FindSQLite3.cmake b/cmake/FindSQLite3.cmake -new file mode 100644 -index 00000000000..7c21de223a7 ---- /dev/null -+++ b/cmake/FindSQLite3.cmake -@@ -0,0 +1,38 @@ -+# Copyright (C) 2007-2009 LuaDist. -+# Created by Peter Kapec <kapecp@gmail.com> -+# Redistribution and use of this file is allowed according to the terms of the MIT license. -+# For details see the COPYRIGHT file distributed with LuaDist. -+# Note: -+# Searching headers and libraries is very simple and is NOT as powerful as scripts -+# distributed with CMake, because LuaDist defines directories to search for. -+# Everyone is encouraged to contact the author with improvements. Maybe this file -+# becomes part of CMake distribution sometimes. -+ -+# - Find sqlite3 -+# Find the native SQLite3 headers and libraries. -+# -+# SQLite3_INCLUDE_DIRS - where to find sqlite3.h, etc. -+# SQLite3_LIBRARIES - List of libraries when using sqlite. -+# SQLite3_FOUND - True if sqlite found. -+ -+# Look for the header file. -+FIND_PATH(SQLite3_INCLUDE_DIR NAMES sqlite3.h) -+ -+# Look for the library. -+FIND_LIBRARY(SQLite3_LIBRARY NAMES sqlite3) -+ -+# Handle the QUIETLY and REQUIRED arguments and set SQLITE3_FOUND to TRUE if all listed variables are TRUE. -+INCLUDE(FindPackageHandleStandardArgs) -+FIND_PACKAGE_HANDLE_STANDARD_ARGS(SQLite3 DEFAULT_MSG SQLite3_LIBRARY SQLite3_INCLUDE_DIR) -+ -+# Copy the results to the output variables. -+IF(SQLite3_FOUND) -+ SET(SQLite3_LIBRARIES ${SQLite3_LIBRARY}) -+ SET(SQLite3_INCLUDE_DIRS ${SQLite3_INCLUDE_DIR}) -+ELSE(SQLite3_FOUND) -+ SET(SQLite3_LIBRARIES) -+ SET(SQLite3_INCLUDE_DIRS) -+ENDIF(SQLite3_FOUND) -+ -+MARK_AS_ADVANCED(SQLite3_INCLUDE_DIRS SQLite3_LIBRARIES) -+ -diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt -index a689b4a7018..eb716417f22 100644 ---- a/deps/CMakeLists.txt -+++ b/deps/CMakeLists.txt -@@ -4,4 +4,6 @@ add_subdirectory(libmscgen) - if (NOT use_sys_spdlog) - add_subdirectory(spdlog) - endif() --add_subdirectory(sqlite3) -+if (NOT use_sys_sqlite3) -+ add_subdirectory(sqlite3) -+endif() -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 78a55c3f2bf..02c52240e5b 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -6,7 +6,6 @@ include_directories( - ${PROJECT_SOURCE_DIR}/deps/libmd5 - ${PROJECT_SOURCE_DIR}/deps/liblodepng - ${PROJECT_SOURCE_DIR}/deps/libmscgen -- ${PROJECT_SOURCE_DIR}/deps/sqlite3 - ${PROJECT_SOURCE_DIR}/libversion - ${PROJECT_SOURCE_DIR}/libxml - ${PROJECT_SOURCE_DIR}/vhdlparser -@@ -18,6 +17,9 @@ include_directories( - if (NOT use_sys_spdlog) - include_directories(${PROJECT_SOURCE_DIR}/deps/spdlog/include) - endif() -+if (NOT use_sys_sqlite) -+ include_directories(${PROJECT_SOURCE_DIR}/deps/sqlite3) -+endif() - - - file(MAKE_DIRECTORY ${GENERATED_SRC}) - diff --git a/dev-db/mongodb-compass-bin/Manifest b/dev-db/mongodb-compass-bin/Manifest index e5e4ed08fe0f..7664698c34e2 100644 --- a/dev-db/mongodb-compass-bin/Manifest +++ b/dev-db/mongodb-compass-bin/Manifest @@ -1,2 +1,3 @@ DIST mongodb-compass_1.45.2_amd64.deb 114271168 BLAKE2B ec330d75f86ec6bec81ffb57266b54833859785867e1fb375a1ae1f57de9a6fff7215da7f67766ed1bc603c4a12a43605701af8aa26e8672f57721abecd3403f SHA512 cd249a3bb7c3290031caba21af038281ca62a9a2aa4322f0dadc32411c1292c37f5f2d4cc1aa664e6d3c17fb5cbe366fc76d68304041758116f58064fe1bfb88 DIST mongodb-compass_1.45.3_amd64.deb 114199008 BLAKE2B e3a3c79277757038dd36f5160e9ac8340cd701b9d34dec5c6c07473fea1c3dc59c419f30d3985f4818d61b8191d475a770630504bd24e8a0c02bbff19a5a6391 SHA512 25f0bd3130fab11cb71afa42ea63b8d2f5dc80eab28c615a12ed198580b3891bd9b02847ebe8dc4f92aa1329ef6f2232d6e1cb97f9b50fd1addfa9a8d9544f40 +DIST mongodb-compass_1.45.4_amd64.deb 114319260 BLAKE2B b9849d5d53002dafa4f8bb1ec2bd2950aeed935f8fbfde1f8c8c3927477673f48725b88d21ed7d5681dbdd63d85210444354a6c0b2d334f310ce2b1eb2ae7398 SHA512 457ee8891839db5d45f3aef388a18f8a8c17055ca936987af121a5d5108d7ce138f37ed1599bdc9fe8219aa9d0b61c204848cae8473542834ac1c42978c34e95 diff --git a/dev-db/mongodb-compass-bin/mongodb-compass-bin-1.45.4.ebuild b/dev-db/mongodb-compass-bin/mongodb-compass-bin-1.45.4.ebuild new file mode 100644 index 000000000000..a6af371e3ef6 --- /dev/null +++ b/dev-db/mongodb-compass-bin/mongodb-compass-bin-1.45.4.ebuild @@ -0,0 +1,56 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop unpacker wrapper xdg + +DESCRIPTION="GUI for MongoDB" +HOMEPAGE="https://mongodb.com/compass https://github.com/mongodb-js/compass" +SRC_URI="https://github.com/mongodb-js/compass/releases/download/v${PV}/mongodb-compass_${PV}_amd64.deb" +S=${WORKDIR} + +LICENSE="SSPL-1" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + dev-libs/nss + dev-libs/openssl:0/3 + media-libs/alsa-lib + media-libs/mesa + net-misc/curl + net-print/cups + sys-apps/dbus + sys-libs/glibc + sys-libs/zlib + virtual/secret-service + 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=" + usr/lib/mongodb-compass/.* +" + +src_install() { + insinto /usr/lib/mongodb-compass + doins -r usr/lib/mongodb-compass/. + + fperms +x "/usr/lib/mongodb-compass/MongoDB Compass" + fperms 4755 /usr/lib/mongodb-compass/{chrome_crashpad_handler,chrome-sandbox} + + domenu usr/share/applications/mongodb-compass.desktop + doicon usr/share/pixmaps/mongodb-compass.png + + make_wrapper mongodb-compass "'/usr/lib/mongodb-compass/MongoDB Compass'" +} diff --git a/dev-java/openjdk-bin/Manifest b/dev-java/openjdk-bin/Manifest index 6a64d50f86ff..3be8a5dd6d11 100644 --- a/dev-java/openjdk-bin/Manifest +++ b/dev-java/openjdk-bin/Manifest @@ -1,9 +1,9 @@ -DIST OpenJDK-jdk_aarch64_alpine-linux_hotspot_25_10-ea.tar.gz 137483191 BLAKE2B 993d2185884fce226f0b5bcd6ab5ca3852977a943d764eff43a369de04c553d2619d68f87fcc63eabafcce2457238ce109bdc2add01fc17e14a82292476bfffd SHA512 7671b0517782ebbda4a4bd77da56399e7d1e4501489bed9f7e915e76c625881edafd0803320d404bfeb4f0f0d1a3f6b1861160b904e163a59c6570b9e253de8d -DIST OpenJDK-jdk_aarch64_linux_hotspot_25_10-ea.tar.gz 137518320 BLAKE2B 89a4b934429a3ae365748e97fafd458124620e2e18e635b8c2db3e5b190bd263f3e12e7188b9739c48f0aebe9ddcac8e18641ac2b1a7bf4a476c7ca0ee8c8dcf SHA512 638bd02d528ba53def3c5d8fd7ce3749d882ed16dfe23650e282f241d0d77a0c65c9315f8e085f0bfe2d085105bc9531d4ce5c8be405e6aefc3f04550600d54b -DIST OpenJDK-jdk_ppc64le_linux_hotspot_25_10-ea.tar.gz 138070693 BLAKE2B b527cfa2fbd81eeb34783f844e428c2133b97c56caa43c2b7b12b8da931c4d9fef2a0e323e20650b8586d1f1b813d3c951dee0b8fd2c61e80ca1e09983e5eb84 SHA512 2a1e7d48b7434882439159fb5023160a751ea0b37b6dd7fd885a8e87062cab9e810ca960b3c446512023ab34091557b024e909256cb183aaf52fea735b0b2591 -DIST OpenJDK-jdk_riscv64_linux_hotspot_25_10-ea.tar.gz 136377538 BLAKE2B b5a118e614bcfb312f52682c58fe6940fda6eb032faf2fb2bdf4f6c3ca9dbc545aa3e44f5d39396d9c34ef21ab16c88fa914e20726762676032e22ad9cb0c2c3 SHA512 5780522026b32f94a4d8f2e97772e681eeaad2b8f5d9d78e2e2b441ecad25bf84d9c2f9432d806f887c0e99f3838d5fdb80103043d37506bafcaaf8925c0c2ce -DIST OpenJDK-jdk_x64_alpine-linux_hotspot_25_10-ea.tar.gz 138612408 BLAKE2B 18c16d4509cfc2fbe994a2392b9085cfed72c1ec5c38cc6da1d7f226a300648e6b6b6aaf2c1c3b9de63c7608284d775aaa94a01de904aa22fe4dc9d7806cbdfc SHA512 87d9b39f1a4586edb64c5b89872163316d6fee20260759b538df118c68076a00ae3846e07ab47794024e1cf0626ac9b62ad31f9cd73f24b5563096d0d6a3ac94 -DIST OpenJDK-jdk_x64_linux_hotspot_25_10-ea.tar.gz 138520925 BLAKE2B 3231f0353520b2eacac737d58d42577dea49ec4012ce12646b1db888fb0e8e2c21fe9bce0869229179d28019f258b23fe6ad6b056c086295ac7af02b87efacfa SHA512 d46b85ba7da1e1c9657116e23080cc7c95b18eec301765d7ff5f4060eaabbe567929ccc9b757a66ec184b6193af154c7aab7e8dc8a5cc6aebfa919e7e173519f +DIST OpenJDK-jdk_aarch64_alpine-linux_hotspot_25_13-ea.tar.gz 137473307 BLAKE2B ebdf439c90c477dc7f88fe8e7e7e10c51a50d49891beeb0f498e49b8cc117c9295abc6581b05c8637c51b93096c6445a86c60f13a1376d9109ab909f31f6574d SHA512 baacffce9bcb48d922e527d4e1b0927525120d27c65013cf3ea3d5f28205fd14926302b9fcabaa25de8f6592583ad167d12e1f01ab84b5bf054703e562d34d07 +DIST OpenJDK-jdk_aarch64_linux_hotspot_25_13-ea.tar.gz 137475039 BLAKE2B ebf2834c91b9d3a42435fd28fa4332a511b49d26c9e2a427d70d0dcdad00e464268089b9badfb602ce500ec502f5ba06a1905e1987fe145bd82eac32c7ab2a29 SHA512 58328735b12521d73bc32f7e6f89e72a43feb46777f1c06b16c1ff99709287361166a1ce52f30cc0a1fc7c479d8473761c4ea156129a4e3a0e29d5e22dbdc2a0 +DIST OpenJDK-jdk_ppc64le_linux_hotspot_25_13-ea.tar.gz 137999218 BLAKE2B 77864d4b1e6d8b85f519feccf89556f6360a30c98c1d8b5f5d40decbe42df76959e4d59bc6b233c604be88794bbd879aeb5730f9d31a3474ac42a15040f9af2d SHA512 224fcfbd5234e5134054caff3086212023d6ef3cf1b0be631a06f3dbfd7646c7aa8cc531bb83c3d5dd8a211d405a8bcf98b42cd3b8dcc7b24bbd777cd3aab4db +DIST OpenJDK-jdk_riscv64_linux_hotspot_25_13-ea.tar.gz 136339597 BLAKE2B b92e25418915030bb90e3dcdae806dbb38253816471c4b0d8dea01cfa39b4b5fc01c02fdc7f4a4a030d106acf98761d375111eff91beb3cb2ac267d8ffad3ae0 SHA512 20bfe10e8533ed6d1e2750843df1ede19f789b428a3c4fede4447d323072f5f936403e9f3bc6414e29fb7d83c2f088cb03d0bf53a7eed2ab4a7d6765a78fc66b +DIST OpenJDK-jdk_x64_alpine-linux_hotspot_25_13-ea.tar.gz 138583081 BLAKE2B 10d1b9fc108bbf4310492f01d2a615952026005408d0df22eea49aaaa3b7495007fecb420617378dd7a7bd7aaa0e493e28988409f0605b4154a07ad2313627db SHA512 363bdf6d3ff36e6437080667dd9524005ea30568f514d2360a84b4725831ea7e69c616e4fec8c78f27ac8f534c8b87f281e6ea1ce5ef22d39766629ff87dad87 +DIST OpenJDK-jdk_x64_linux_hotspot_25_13-ea.tar.gz 138454776 BLAKE2B 6fc4051dc6b22a67dbae5be4aa8da3088a9402450d3c6b69cf97125ca519ec0f4c7226b925c39b8974952692a86e9be67ad3948fd8eb1981e1465c7b733bf966 SHA512 23f8363a15fb93ce35d6ba0fa92f3bab9b7a0e8f02fbab13efbdaf7eceeab5a6838f243c07afdae16811d5f3e29de68ee0180924381677def10d9d17f86edc20 DIST OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.26_4.tar.gz 192142736 BLAKE2B ee6d2496dc6f8182d22fe7621110c783ac5506cbd88b9ee820f820eecb38348bd02990cbd20be91262d5dca5c27bd5476be8a529412f5f50efd412ce8a460629 SHA512 4afa228939aa26d131c829299bac90a863488c32f81ef61ad47ffc8ebac358399c460faca734994c4b6aed61fa68f669f45f375390dcb0698b6f7eb1db12834d DIST OpenJDK11U-jdk_arm_linux_hotspot_11.0.26_4.tar.gz 182888570 BLAKE2B e8e8f3bdfebe7ea4b62486370f5be37234aabb7d92561f72d2442b7d35cc09990083d8d256abbce5360e864cdc3f4b9e0e5cbb2313ea12ae6367622e489552a2 SHA512 e1b56b7052888c79a95c4a306e17730651a2d0c23f8b3784e27cbd89a42c00d34e29ed10ae103a5964f7e80efdda9700aef2028791e337c6986e4a86bde350f0 DIST OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.26_4.tar.gz 177550935 BLAKE2B 0e439a3b16cca15b588c00d4c4fc125057e531bfd5c274b76ca05b81bcdfa687561f13c3a46089a0efcadd323788ef8d4478830f1cd7bf69fe3a222c44ce05ca SHA512 77669c41ff3b5bf19789c3b8dedf532ec51a4f3f62cce5a5f80b4995c757f1af34dca73f2eba7132582679fde195e908aa81e02caf0c51ab2dc5b6330d95ed8c diff --git a/dev-java/openjdk-bin/openjdk-bin-25_p10_beta.ebuild b/dev-java/openjdk-bin/openjdk-bin-25_p13_beta.ebuild index 1df73d6d9ac5..1df73d6d9ac5 100644 --- a/dev-java/openjdk-bin/openjdk-bin-25_p10_beta.ebuild +++ b/dev-java/openjdk-bin/openjdk-bin-25_p13_beta.ebuild diff --git a/dev-java/openjdk/Manifest b/dev-java/openjdk/Manifest index 27b114ba2a12..c2ad3fddd98e 100644 --- a/dev-java/openjdk/Manifest +++ b/dev-java/openjdk/Manifest @@ -2,7 +2,7 @@ DIST openjdk-11.0.18-riscv.patch.xz 272672 BLAKE2B b079612032a5bf135b05bdd1da16f DIST openjdk-11.0.26_p4.tar.gz 116557373 BLAKE2B 0d3dc31b4568778da2612d002c8e92eb3aa0e2b1b1eed973adb82fe3ca2ebdddafa9cae116e0b91cfb4cfdd7a40c381b3c8dd14e5b4ee28c0cf388b467166b76 SHA512 b5375de7c39aafa4fe1ef6556e17bf5c8ace577953ea8e666c4e8adc3e8b0f6fdbf20b7c426a156420acb99787363e0e4c9d36df20cefcef5e74a48bb75eeb24 DIST openjdk-17.0.14_p7.tar.gz 107408032 BLAKE2B 006be4d75d3d9ef3a40b1853dded3cced6f345ea473b7c03c89f04b1d74df7532878246bafde932b49da39c1cf66bcd7c2ee42dc9049c19efc653db8f7367971 SHA512 0643ac52b68e5884734289ab13592feef7273db96f7b5c0fd77d801e4d4e44a84abcc439fd1b138119c5583986f1d0b058aa74f55b00e0dfd31333cbb536744d DIST openjdk-21.0.6_p7.tar.gz 113221815 BLAKE2B 2b3d240037baa2b306a1064f260b7ed57a4f4dafe97626bf6e1de3e54357d8a7652c1798f6946d58aba30ca0be334d9a1f918b25381ab370d515f829abea4952 SHA512 fb03362608a35b0f6e131eaa974a52e6ff8a96f90d3bdaeccd2e1268f46db65c72387ed7bba1c8b0d9457c56950eae607fba29e102a338b009259262e1024726 -DIST openjdk-25_p10.tar.gz 120861908 BLAKE2B 04fedf4b3e23e5fba4a851f3b33b9f92680d8d6f8a0fafef5c84ba0c879dd3f2224a7614d1e3782b8e94897c0c28aa2b1319cf15cfe6c2500b319ab8c3778ac9 SHA512 3a8f19e27277f2f8ab2586e6fbc6554fe2364ccf66d0a2a52bc8147b67774460d7c252214286798ee0017028a6aba173b2182b6fff4a74720dec50f5fab44db6 +DIST openjdk-25_p13.tar.gz 120956985 BLAKE2B 039e569707d6803cc42a3fdb29fdb6f4fc9c6af0f207e894c6237e73ee087b3025b386e1b5afcd2a03675e39638608d45cd49915008e9812ff1aeb28f611e328 SHA512 35769b7318eea53b4d079dfe2a33fb28c11c48fd448c036ffba350147398927e5078bf53e67246d4adf6ca93fc81e99944cbcee14800c57824b49f0d4ccc55d3 DIST openjdk-8.442_p06.tar.gz 92775643 BLAKE2B dfcac25f30d8178b9c9d9b2f90e06b7c8cd417dc43c00954d2e9a748f979c596b1b77f989a7137e022868dfc8d12a148f9281cf9a387ff91e9d4b505d416128b SHA512 6c0fe0b7aaf5ff887c720cced4203231c7ea6490817a5cb10196dabe0f3941833ddcc8024d2fe04f3a84502b6fe08277a6ff2f84ce605f4209a3494b9f0a80b7 DIST openjdk-bootstrap-11.0.13_p8-ppc64.tar.xz 108215404 BLAKE2B 5e6c0b905b34b437137922b73a9724da96b8832186fea945f8c73d941db822ca1cc5718f3ecb4607ed98d1f8241c9f365b54caaf978863e8b84680a94f067b5d SHA512 732e2220219d42be10589fcaf2420da87ebc8564b4afc6bd02f61f31cdca9c31b339366e34d374fb814499b92f8aa796435a18f28e10c8cb00d9a0f5953bb60e DIST openjdk-bootstrap-11.0.13_p8-x86.tar.xz 105420236 BLAKE2B d3137ad497937a9a04dedf38776f3ac45bf3b115d275991fd8582b72ade48390b6aa8ad89e0b4d34fa6a787a3c413dab20b32ef347dc8733544e810150c55d29 SHA512 f71a7ef8fbf19b0595dd7d4ebe52bbe1c95b8c17f34d092472c5f5ce8caf52a053f22db8587f1649f9a96ad01c0c632be343342812f5a8cc4ff843b33b8d9b0f diff --git a/dev-java/openjdk/openjdk-25_p10.ebuild b/dev-java/openjdk/openjdk-25_p13.ebuild index 8d8d8b9b9b4f..8d8d8b9b9b4f 100644 --- a/dev-java/openjdk/openjdk-25_p10.ebuild +++ b/dev-java/openjdk/openjdk-25_p13.ebuild diff --git a/dev-lang/crystal/files/crystal-1.7.2-extra-spec-flags.patch b/dev-lang/crystal/files/crystal-1.7.2-extra-spec-flags.patch deleted file mode 100644 index cc9e21abcbd6..000000000000 --- a/dev-lang/crystal/files/crystal-1.7.2-extra-spec-flags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -33,7 +33,7 @@ SOURCES := $(shell find src -name '*.cr') - SPEC_SOURCES := $(shell find spec -name '*.cr') - override FLAGS += -D strict_multi_assign -D preview_overload_order $(if $(release),--release )$(if $(stats),--stats )$(if $(progress),--progress )$(if $(threads),--threads $(threads) )$(if $(debug),-d )$(if $(static),--static )$(if $(LDFLAGS),--link-flags="$(LDFLAGS)" )$(if $(target),--cross-compile --target $(target) )$(if $(interpreter),,-Dwithout_interpreter ) - SPEC_WARNINGS_OFF := --exclude-warnings spec/std --exclude-warnings spec/compiler --exclude-warnings spec/primitives --SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )$(if $(order),--order=$(order) ) -+SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )$(if $(order),--order=$(order) )$(EXTRA_SPEC_FLAGS) - CRYSTAL_CONFIG_LIBRARY_PATH := '$$ORIGIN/../lib/crystal' - CRYSTAL_CONFIG_BUILD_COMMIT := $(shell git rev-parse --short HEAD 2> /dev/null) - CRYSTAL_CONFIG_PATH := '$$ORIGIN/../share/crystal/src' diff --git a/dev-ml/batteries/batteries-3.5.1.ebuild b/dev-ml/batteries/batteries-3.5.1-r1.ebuild index 3ba6fc834d33..a7abff76c3c7 100644 --- a/dev-ml/batteries/batteries-3.5.1.ebuild +++ b/dev-ml/batteries/batteries-3.5.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,7 +20,10 @@ RDEPEND=" ${DEPEND} dev-ml/num:= " -BDEPEND="dev-ml/ocamlbuild" +BDEPEND=" + dev-ml/ocamlbuild + <dev-lang/ocaml-5 +" src_compile() { emake BATTERIES_NATIVE=$(usex ocamlopt yes no) diff --git a/dev-ml/batteries/batteries-3.6.0-r1.ebuild b/dev-ml/batteries/batteries-3.6.0-r2.ebuild index f9dfcf4e2fb0..fa10a8e6b2f8 100644 --- a/dev-ml/batteries/batteries-3.6.0-r1.ebuild +++ b/dev-ml/batteries/batteries-3.6.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,10 @@ RDEPEND=" dev-ml/num:= " DEPEND="${RDEPEND}" -BDEPEND="dev-ml/ocamlbuild" +BDEPEND=" + dev-ml/ocamlbuild + <dev-lang/ocaml-5 +" src_compile() { emake BATTERIES_NATIVE=$(usex ocamlopt yes no) diff --git a/dev-ml/batteries/batteries-3.6.1.ebuild b/dev-ml/batteries/batteries-3.6.1-r1.ebuild index 620523f69008..fa10a8e6b2f8 100644 --- a/dev-ml/batteries/batteries-3.6.1.ebuild +++ b/dev-ml/batteries/batteries-3.6.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2023 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,10 @@ RDEPEND=" dev-ml/num:= " DEPEND="${RDEPEND}" -BDEPEND="dev-ml/ocamlbuild" +BDEPEND=" + dev-ml/ocamlbuild + <dev-lang/ocaml-5 +" src_compile() { emake BATTERIES_NATIVE=$(usex ocamlopt yes no) diff --git a/dev-ml/batteries/batteries-3.8.0.ebuild b/dev-ml/batteries/batteries-3.8.0-r1.ebuild index 873203851413..b6380c19199c 100644 --- a/dev-ml/batteries/batteries-3.8.0.ebuild +++ b/dev-ml/batteries/batteries-3.8.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2024 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,3 +22,4 @@ RDEPEND=" dev-ml/num:=[ocamlopt?] " DEPEND="${RDEPEND}" +BDEPEND="<dev-lang/ocaml-5.3" diff --git a/dev-ml/calendar/calendar-2.04.ebuild b/dev-ml/calendar/calendar-2.04-r1.ebuild index d1bf98476f13..ee9f5e211003 100644 --- a/dev-ml/calendar/calendar-2.04.ebuild +++ b/dev-ml/calendar/calendar-2.04-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,7 +14,7 @@ SLOT="0/${PV}" KEYWORDS="~amd64" IUSE="doc" -DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt]" +DEPEND="<dev-lang/ocaml-5:=[ocamlopt]" RDEPEND="${DEPEND}" src_compile() { diff --git a/dev-ml/camldbm/camldbm-1.2.ebuild b/dev-ml/camldbm/camldbm-1.2-r1.ebuild index 5708dbeea498..c89a9f993656 100644 --- a/dev-ml/camldbm/camldbm-1.2.ebuild +++ b/dev-ml/camldbm/camldbm-1.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ SLOT="0/${PV}" KEYWORDS="amd64 arm ~ppc x86" DEPEND=">=sys-libs/gdbm-1.9.1-r2[berkdb] - >=dev-lang/ocaml-3.12:=[ocamlopt]" + <dev-lang/ocaml-5:=[ocamlopt]" RDEPEND="${DEPEND}" QA_FLAGS_IGNORED=( diff --git a/dev-ml/facile/facile-1.1.4.ebuild b/dev-ml/facile/facile-1.1.4.ebuild index 41a016660704..43e94e694256 100644 --- a/dev-ml/facile/facile-1.1.4.ebuild +++ b/dev-ml/facile/facile-1.1.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,3 +19,15 @@ RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]" DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-dune.patch ) + +src_prepare() { + default + sed -i \ + -e "s:Pervasives:Stdlib:g" \ + lib/fcl_misc.ml \ + lib/fcl_cstr.ml \ + lib/fcl_fdArray.ml \ + lib/fcl_nonlinear.ml \ + lib/fcl_sorting.ml \ + || die +} diff --git a/dev-ml/gsl-ocaml/gsl-ocaml-1.24.3-r1.ebuild b/dev-ml/gsl-ocaml/gsl-ocaml-1.24.3-r2.ebuild index c72639216ff3..e3060e6255dc 100644 --- a/dev-ml/gsl-ocaml/gsl-ocaml-1.24.3-r1.ebuild +++ b/dev-ml/gsl-ocaml/gsl-ocaml-1.24.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -20,7 +20,7 @@ IUSE="+ocamlopt" DEPEND=" dev-ml/dune-configurator >=sci-libs/gsl-1.19:=" -RDEPEND="${DEPEND} - !dev-ml/ocamlgsl" +RDEPEND="${DEPEND}" +BDEPEND="<dev-lang/ocaml-5" # DOCS=( CHANGES.txt README.md NOTES.md TODO.md ) diff --git a/dev-ml/lablgl/lablgl-1.06-r1.ebuild b/dev-ml/lablgl/lablgl-1.06-r2.ebuild index 02fdc47b1948..7a6b227cba26 100644 --- a/dev-ml/lablgl/lablgl-1.06-r1.ebuild +++ b/dev-ml/lablgl/lablgl-1.06-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86 ~amd64-linux ~x86-linux" IUSE="doc glut +ocamlopt tk" RDEPEND=" - >=dev-lang/ocaml-3.10.2:=[ocamlopt?] + <dev-lang/ocaml-5:=[ocamlopt?] x11-libs/libXext x11-libs/libXmu x11-libs/libX11 diff --git a/dev-ml/ocaml-gettext/ocaml-gettext-0.4.2-r1.ebuild b/dev-ml/ocaml-gettext/ocaml-gettext-0.4.2-r2.ebuild index 1f12d2b9d7a0..f465c89828e4 100644 --- a/dev-ml/ocaml-gettext/ocaml-gettext-0.4.2-r1.ebuild +++ b/dev-ml/ocaml-gettext/ocaml-gettext-0.4.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -25,6 +25,7 @@ RDEPEND=" dev-ml/base:= >=dev-ml/ocaml-fileutils-0.4.0:=[ocamlopt=] sys-devel/gettext + <dev-lang/ocaml-5 " DEPEND=" ${RDEPEND} diff --git a/dev-ml/ocamlnet/ocamlnet-4.1.8-r1.ebuild b/dev-ml/ocamlnet/ocamlnet-4.1.8-r2.ebuild index 5eb163cf9132..e79e1f7d0784 100644 --- a/dev-ml/ocamlnet/ocamlnet-4.1.8-r1.ebuild +++ b/dev-ml/ocamlnet/ocamlnet-4.1.8-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -26,7 +26,7 @@ BDEPEND=" " RDEPEND=" >=dev-ml/findlib-1.0 - >=dev-lang/ocaml-3.10.2:=[ocamlopt?] + <dev-lang/ocaml-5:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) diff --git a/dev-ml/ocamlnet/ocamlnet-4.1.9-r1.ebuild b/dev-ml/ocamlnet/ocamlnet-4.1.9-r2.ebuild index 791b193f2a11..94f8c4880f36 100644 --- a/dev-ml/ocamlnet/ocamlnet-4.1.9-r1.ebuild +++ b/dev-ml/ocamlnet/ocamlnet-4.1.9-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -26,7 +26,7 @@ BDEPEND=" " RDEPEND=" >=dev-ml/findlib-1.0 - >=dev-lang/ocaml-3.10.2:=[ocamlopt?] + <dev-lang/ocaml-5:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) diff --git a/dev-ml/ocamlsdl/ocamlsdl-0.9.1.ebuild b/dev-ml/ocamlsdl/ocamlsdl-0.9.1-r1.ebuild index ae6b805fe014..3cb93607525a 100644 --- a/dev-ml/ocamlsdl/ocamlsdl-0.9.1.ebuild +++ b/dev-ml/ocamlsdl/ocamlsdl-0.9.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~ppc x86" IUSE="doc +ocamlopt opengl truetype" #noimage nomixer RDEPEND=" - >=dev-lang/ocaml-3.12:=[ocamlopt=] + <dev-lang/ocaml-5:=[ocamlopt=] >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98:= ) >=media-libs/sdl-mixer-1.2 diff --git a/dev-ml/ocamlweb/ocamlweb-1.41-r1.ebuild b/dev-ml/ocamlweb/ocamlweb-1.41-r2.ebuild index 50d07a216410..71e8467a476b 100644 --- a/dev-ml/ocamlweb/ocamlweb-1.41-r1.ebuild +++ b/dev-ml/ocamlweb/ocamlweb-1.41-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,7 +16,7 @@ IUSE="test" RESTRICT="!test? ( test )" -DEPEND=">=dev-lang/ocaml-4.08.0:= +DEPEND="<dev-lang/ocaml-5:= virtual/latex-base dev-texlive/texlive-latexextra" RDEPEND="${DEPEND}" diff --git a/dev-ml/stdcompat/stdcompat-19-r1.ebuild b/dev-ml/stdcompat/stdcompat-19-r2.ebuild index 731c0bed6669..fd7184f8ab04 100644 --- a/dev-ml/stdcompat/stdcompat-19-r1.ebuild +++ b/dev-ml/stdcompat/stdcompat-19-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022-2024 Gentoo Authors +# Copyright 2022-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ LICENSE="BSD-2" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" -DEPEND="dev-lang/ocaml:=[ocamlopt] +DEPEND="<dev-lang/ocaml-5:=[ocamlopt] dev-ml/result:=[ocamlopt] dev-ml/uchar:=[ocamlopt]" RDEPEND="${DEPEND}" diff --git a/dev-ml/typerep/typerep-0.14.0.ebuild b/dev-ml/typerep/typerep-0.14.0-r1.ebuild index 07af2c0a2dc2..14bd4cedbd68 100644 --- a/dev-ml/typerep/typerep-0.14.0.ebuild +++ b/dev-ml/typerep/typerep-0.14.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,3 +16,4 @@ IUSE="+ocamlopt" DEPEND="dev-ml/base:=" RDEPEND="${DEPEND}" +BDEPEND="<dev-lang/ocaml-5" diff --git a/dev-ml/typerep/typerep-0.16.0.ebuild b/dev-ml/typerep/typerep-0.15.0-r1.ebuild index a19840a68389..ee7cd26d8555 100644 --- a/dev-ml/typerep/typerep-0.16.0.ebuild +++ b/dev-ml/typerep/typerep-0.15.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,3 +16,4 @@ IUSE="+ocamlopt" DEPEND="dev-ml/base:${SLOT}" RDEPEND="${DEPEND}" +BDEPEND="<dev-lang/ocaml-5" diff --git a/dev-ml/typerep/typerep-0.15.0.ebuild b/dev-ml/typerep/typerep-0.16.0-r1.ebuild index 0a92b498627c..ee7cd26d8555 100644 --- a/dev-ml/typerep/typerep-0.15.0.ebuild +++ b/dev-ml/typerep/typerep-0.16.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,3 +16,4 @@ IUSE="+ocamlopt" DEPEND="dev-ml/base:${SLOT}" RDEPEND="${DEPEND}" +BDEPEND="<dev-lang/ocaml-5" diff --git a/dev-python/aioresponses/aioresponses-0.7.8.ebuild b/dev-python/aioresponses/aioresponses-0.7.8.ebuild index 52caf782eff1..3dc103f4c58e 100644 --- a/dev-python/aioresponses/aioresponses-0.7.8.ebuild +++ b/dev-python/aioresponses/aioresponses-0.7.8.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~riscv x86" +KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" RDEPEND=" >=dev-python/aiohttp-3.3.0[${PYTHON_USEDEP}] diff --git a/dev-python/dns-lexicon/dns-lexicon-3.20.1.ebuild b/dev-python/dns-lexicon/dns-lexicon-3.20.1.ebuild index 9bb74db2cb33..025f4ab3d79d 100644 --- a/dev-python/dns-lexicon/dns-lexicon-3.20.1.ebuild +++ b/dev-python/dns-lexicon/dns-lexicon-3.20.1.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" RDEPEND=" >=dev-python/beautifulsoup4-4[${PYTHON_USEDEP}] diff --git a/dev-python/langdetect/Manifest b/dev-python/langdetect/Manifest index 37a64204a00a..a11d7c268c91 100644 --- a/dev-python/langdetect/Manifest +++ b/dev-python/langdetect/Manifest @@ -1,3 +1 @@ DIST langdetect-1.0.9.tar.gz 981474 BLAKE2B ea8a9c3f16a2987c080742473bff4f2c1503f53fb3c2b40b0b1d6212bb6133ea22dce7864ffcfb8968c3a46b157d45cb3e2cf6f84bdbed0266cc716a853b032c SHA512 7558d674c47b080c79e43a00a25d2c7f77188cf60bea2cecb3bebb803d75e1aa42b43c74bd26ea1b541f4cb927421908882cbec01a91f0913984217e71ccc8db -EBUILD langdetect-1.0.9.ebuild 494 BLAKE2B 9b3521c5721afa49a58e0c35267f7d82bb56bd7e1d6d3152be0d36cd220180a526cb20b90b1113fbf0fff4a512137570f0b3bcf864498b7b7cc00403cb61ca27 SHA512 16d311400bf84a5f04e15f3da4b68b2810e4b005009f4d03dc8a487176dfc294403c976c412c83dcfa8084a49ef7b7d5389b43fb2ba446ce107ce4595e3558c6 -MISC metadata.xml 457 BLAKE2B 630128a3e982b6d60cc7b9f74c79fcb5ee47a71a02c73a50af9da8cedb6fad8e20a7f74b881e5b25c6483b92c9edbd56552cd38b2d9cbfa8b3eb4530facea969 SHA512 674f4f5cd809c6c77bc14e0f5687fa972bef14bdfa0b3343c5d66b7163eef1906eb87d060c8288732f825de71dce291ad0b841a5f2f0dd230f957b5687e45d45 diff --git a/dev-python/langdetect/files/langdetect-1.0.9-explicit-config.patch b/dev-python/langdetect/files/langdetect-1.0.9-explicit-config.patch new file mode 100644 index 000000000000..637368d2f237 --- /dev/null +++ b/dev-python/langdetect/files/langdetect-1.0.9-explicit-config.patch @@ -0,0 +1,13 @@ +Fix "Package 'langdetect.profiles' is absent from the `packages` configuration." + +--- a/setup.py ++++ b/setup.py +@@ -18,7 +18,7 @@ setup( + author_email='michal.danilak@gmail.com', + url='https://github.com/Mimino666/langdetect', + keywords='language detection library', +- packages=['langdetect', 'langdetect.utils', 'langdetect.tests'], ++ packages=['langdetect', 'langdetect.utils', 'langdetect.tests', 'langdetect.profiles'], + include_package_data=True, + install_requires=['six'], + license='MIT', diff --git a/dev-python/langdetect/langdetect-1.0.9.ebuild b/dev-python/langdetect/langdetect-1.0.9.ebuild index 56733bbffc48..eb2586280d80 100644 --- a/dev-python/langdetect/langdetect-1.0.9.ebuild +++ b/dev-python/langdetect/langdetect-1.0.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,4 +19,6 @@ KEYWORDS="~amd64" RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +PATCHES=( "${FILESDIR}/${P}-explicit-config.patch" ) + distutils_enable_tests unittest diff --git a/dev-python/langdetect/metadata.xml b/dev-python/langdetect/metadata.xml index 020e07f2a3dd..c0f74ac187e2 100644 --- a/dev-python/langdetect/metadata.xml +++ b/dev-python/langdetect/metadata.xml @@ -2,11 +2,9 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>marcin.deranek@slonko.net</email> - <name>Marcin Deranek</name> + <email>pastalian46@gmail.com</email> + <name>Takuya Wakazono</name> </maintainer> - <upstream> - <bugs-to>https://github.com/Mimino666/langdetect/issues</bugs-to> - </upstream> - <origin>slonko-overlay</origin> + + <origin>gentoo-guru-overlay</origin> </pkgmetadata>
\ No newline at end of file diff --git a/dev-python/pyotp/pyotp-2.9.0.ebuild b/dev-python/pyotp/pyotp-2.9.0.ebuild index 8c02a546cc64..f3e90cc75ac8 100644 --- a/dev-python/pyotp/pyotp-2.9.0.ebuild +++ b/dev-python/pyotp/pyotp-2.9.0.ebuild @@ -16,6 +16,6 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" distutils_enable_tests unittest diff --git a/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild b/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild index ca1d3c1f86bc..3a7a6d195665 100644 --- a/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild +++ b/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE=" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~arm64 ~riscv x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" RDEPEND=" app-admin/augeas diff --git a/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild b/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild index 9b8fab1a245f..dc4914d52e48 100644 --- a/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild +++ b/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~riscv x86" +KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" RDEPEND=" dev-python/six[${PYTHON_USEDEP}] diff --git a/dev-python/requests-file/requests-file-2.1.0.ebuild b/dev-python/requests-file/requests-file-2.1.0.ebuild index cc9a79417599..13ed029324d6 100644 --- a/dev-python/requests-file/requests-file-2.1.0.ebuild +++ b/dev-python/requests-file/requests-file-2.1.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 arm64 ~loong ~riscv x86" +KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86" RDEPEND=" dev-python/requests[${PYTHON_USEDEP}] diff --git a/dev-python/tldextract/tldextract-5.1.3.ebuild b/dev-python/tldextract/tldextract-5.1.3.ebuild index fc23ea404f0f..11e1454d1cdd 100644 --- a/dev-python/tldextract/tldextract-5.1.3.ebuild +++ b/dev-python/tldextract/tldextract-5.1.3.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm64 ~loong ~riscv x86" +KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86" RDEPEND=" >=dev-python/filelock-3.0.8[${PYTHON_USEDEP}] diff --git a/dev-python/xmlsec/xmlsec-1.3.14.ebuild b/dev-python/xmlsec/xmlsec-1.3.14.ebuild index 97a3744effdd..fecd967fc9b0 100644 --- a/dev-python/xmlsec/xmlsec-1.3.14.ebuild +++ b/dev-python/xmlsec/xmlsec-1.3.14.ebuild @@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86" +KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" DEPEND=" dev-libs/xmlsec:=[openssl] diff --git a/dev-python/zeep/zeep-4.3.1.ebuild b/dev-python/zeep/zeep-4.3.1.ebuild index 02e6aed9bbf8..c96af5da8a9c 100644 --- a/dev-python/zeep/zeep-4.3.1.ebuild +++ b/dev-python/zeep/zeep-4.3.1.ebuild @@ -17,7 +17,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm64 ~riscv x86" +KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" IUSE="async" RDEPEND=" diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.8.2-glibc2.41.patch b/dev-qt/qtwebengine/files/qtwebengine-6.8.2-glibc2.41.patch index eaaf7cbc57f0..7fb572cd3064 100644 --- a/dev-qt/qtwebengine/files/qtwebengine-6.8.2-glibc2.41.patch +++ b/dev-qt/qtwebengine/files/qtwebengine-6.8.2-glibc2.41.patch @@ -1,7 +1,5 @@ https://bugs.gentoo.org/949654 - -Quick downstream fix for now. Hasn't been sent to upstream(s) yet -as of the writing of this, but believe it should happen soon. +https://bugreports.qt.io/browse/QTBUG-134631 --- a/src/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.cc +++ b/src/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.cc @@ -36,4 +36,8 @@ diff --git a/dev-ruby/faraday-multipart/Manifest b/dev-ruby/faraday-multipart/Manifest index 9bb03d97a53e..7bc0b76b5584 100644 --- a/dev-ruby/faraday-multipart/Manifest +++ b/dev-ruby/faraday-multipart/Manifest @@ -1 +1,2 @@ DIST faraday-multipart-1.0.4.tar.gz 11558 BLAKE2B 3e68fa1c7d28b25a6b6b3a1a3a8c64081bfbff619eb59e2235d0853d1853e34063c96d3a450e89ef6ec383acd05b34abd0b472527f66d76528cbc65521aac64b SHA512 a155cc1cd572157c33df75f342bc9c1d8971ee3c92a3b184098b19b3bee56f1ee79e68983ccbc6df4f8e97f8ab877dca9d28b3ed22fea1d49197c07a81d8092a +DIST faraday-multipart-1.1.0.tar.gz 12024 BLAKE2B b12b3a27431b57ce403a2467fc2ce4ca6ff8b0b21e72f23754db54f05273618cdc727923771d1fcafa6aaec1315d1204cf8af1a5ce041681115da17ca8cae886 SHA512 54fae7d34068d2d26db4e2383bbc75080035ed915dabc6b262b2421756e2e81093c1dcab37fde542ec6063fcb05040602528765e0953adedf353a091cef7f00b diff --git a/dev-ruby/faraday-multipart/faraday-multipart-1.1.0.ebuild b/dev-ruby/faraday-multipart/faraday-multipart-1.1.0.ebuild new file mode 100644 index 000000000000..d0194f9c3fac --- /dev/null +++ b/dev-ruby/faraday-multipart/faraday-multipart-1.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby31 ruby32 ruby33" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Perform multipart-post requests using Faraday" +HOMEPAGE="https://github.com/lostisland/faraday-multipart" +SRC_URI="https://github.com/lostisland/faraday-multipart/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="test" + +ruby_add_rdepend "dev-ruby/multipart-post:0" + +ruby_add_bdepend "test? ( + || ( dev-ruby/faraday:2 dev-ruby/faraday:1 ) + dev-ruby/multipart-parser +)" + +all_ruby_prepare() { + sed -i -e "s:_relative ':'./:" ${RUBY_FAKEGEM_GEMSPEC} || die +} diff --git a/dev-util/gitlab-runner/Manifest b/dev-util/gitlab-runner/Manifest index 7e72bb88c5ac..62b4515518c3 100644 --- a/dev-util/gitlab-runner/Manifest +++ b/dev-util/gitlab-runner/Manifest @@ -1,10 +1,6 @@ -DIST gitlab-runner-17.6.1-deps.tar.xz 108538744 BLAKE2B 67a89a4d10d7cac07cc6c0328960b46a54360b73b69f82b09320fceec2d849bf661f8c8bb4c9e349f9827f90edee182e169c089f4677cd9ce05f743553d9c80d SHA512 8382b42ac69af665dba632495fc543cbfd97674a5e88b271bf1862e1bbb382f30a461410cc93d615b5a3114ff28cfa376f30b6186313485ec3353fce34aee96b -DIST gitlab-runner-17.6.1.tar.bz2 1744419 BLAKE2B c56ce5e2f9185efe0068faa39ba305d0dc2ec036d83c86445151d90d230351c2a5b2e1124f9e7d6109bf7c04c8ff0d0fc72b920ad675975a9f840c72267d75c1 SHA512 21e73bf3d99f2d5e500bb3a1c2b95534c96f673ff51eae086a06386ae954f23fd7cb5950e347b97ee52d15824bde2b4e8999d27660602f8803383d748cc86c03 -DIST gitlab-runner-17.7.0-deps.tar.xz 108544204 BLAKE2B 0e9049a8a56e705dc2d6d1585d75fa356b3aa3b9eb0ff14cea76adf6021636dcc2a6989e75f4ba1cb64be17cf3b4417a31db73b8d3b73eb92f0d12b8659343d2 SHA512 be76825ddcb22ead48338f9023777f4a610fd468e4020ab4455881ec1b4b02cd594c7fbffd29d9f79645551e075f150090f75ac21b2250b8c73381f67ae866dd -DIST gitlab-runner-17.7.0.tar.bz2 1758329 BLAKE2B 942ce344664ee7067e98e5ce50d011180c2189cde14a7dff517af5fb64b60892404bc367031aeeb7320aece993ae4674808548436e8d077172075d183b9e69e0 SHA512 57b5b0882d1190ed88b01b729b577531a2a8c9831a7037437ff16343bd9582b3d7e436e13f3e1cee0aa5457ff95e78f2ddd81d4df8a57589ffe71c0a68642a38 DIST gitlab-runner-17.7.1-deps.tar.xz 108516732 BLAKE2B cba771fb005fccaa19816fb5f4bf45e63f2de3d69f2477e4d1f68388a98a46a9332767d5bb455f4076cd7fdf1c1a63ea728bb8142dcea957e2f60e0577cc4733 SHA512 c2332bdee6b7bfbe0d3ec93b7f0825b6f5df1440bd04eae44ea63375b57690ba5e7d1aa08907d5ba45a771b49e286c1b82c0f0a75de4da51192a2038d9aa6e17 DIST gitlab-runner-17.7.1.tar.bz2 1757310 BLAKE2B 44fa445f30ae65be18a63788bcdda1086af0226f0a44c792f898a7c8fae584e48d4a84e132b3257121cafc2f7df1760bc24f6d9154c2c359167530e57e4afe89 SHA512 f1d21ee94873652ee7aa62a165707088f957334ee90f3fab7b66df8b63589c2e6e41e1bb9f7cfa13835ca992b8ba773bdc88ad2a72e1b46accfd558eaf1d2a22 -DIST gitlab-runner-17.8.2-deps.tar.xz 111056812 BLAKE2B cd128a90a363d67bf27d6497166ebd1fb75290771b648a1fd1c3b462546ad2da070b01b9a9d84dc820de10a89d907892692df07081579d3c7be3e9a9569652f1 SHA512 6dc858e6fe038b8d01c05272e11b63537aa49e01349499713224e8bd25d46db9f0450651a6b778ec0481ec90bbd4d6a940cfc0764877d1b195f8b73584b2d4c1 -DIST gitlab-runner-17.8.2.tar.bz2 1751213 BLAKE2B e43cac58039c48a902ff0819084e39909561d0dca982bc3825720b114a5dc16f6e84e3d5c0e3d311b99ce27618085e6f2de0e33df28b1b5e4050cbd19412bc32 SHA512 9e4df1cd735d9e6245dda4273cae908a563666679a08e1d03c9bb26e4b49453cec4310040f846e03823d78fbc25955440ab2ee314affdd0c8a80162313985ee8 DIST gitlab-runner-17.8.3-deps.tar.xz 109232796 BLAKE2B cd307c8fba9bcc3b3d955c4443813f44f419f57382c910a66c67da3d955d5ff7772815d8ab3fc35e51fe8b795fe72167cc6e6c5ae3011ee90a36d6106287bed3 SHA512 b5db3a95aaaf6e6b8c532e52a56aaed3c6ea3bcaa5185b88778208c44f98b42c8b6a2b2269676e67dd9adb6f4a7f7ff4755e513347417d56b1c326574b91e2ba DIST gitlab-runner-17.8.3.tar.bz2 1751505 BLAKE2B 104a37aa7f659baba08d3623e76821df286e24093ba192665c27a3ca33df9721c4cf89851ebc59f37519b80e74fa9aebe6ad1d99f17ba6bf03dd9c96d6357286 SHA512 c4ae576ea5e158c78fb10021bbf0240dee5f16342bebf3e5ebc25c6803d78c3b2e84f3ffd73a6622743bb3720ff21525c1be762912cd3c5f4fc8fc483b38db79 +DIST gitlab-runner-17.9.1-deps.tar.xz 110086112 BLAKE2B ecc28024da70114e1106a361bd94263e473e1f4eef394b495338ff9eae71d23ce215c8df88e7c442e89e45b34b72ffa15e6b19fdb5f2708ea24e1fdcdb669f6b SHA512 59247fb84d7466b820640dbc0a9d79a872c58295088d489bb6778b30a85dab30e52a211463f52e94e70773da7b430f012e2b359b3761bfb2cb9c3fd5ebd146ec +DIST gitlab-runner-17.9.1.tar.bz2 1784302 BLAKE2B b75f44e79358647e4456cae93348ccaa4039909417cdf97cc754e19300059b4aaf9ae8c7b5344a0b79b66cf39295f2836e52ddff28a5d86ea61420a3b0f9127d SHA512 6c40c3f60b007b01aafe4e2b5d0930e401be3ad781480c6db5fa3dfb986ab135b7d25d86eb45a69a8551349a1bcd446e53ac9744fd97aca50e1af2b490532d08 diff --git a/dev-util/gitlab-runner/gitlab-runner-17.6.1.ebuild b/dev-util/gitlab-runner/gitlab-runner-17.6.1.ebuild deleted file mode 100644 index 6c46d20ec9df..000000000000 --- a/dev-util/gitlab-runner/gitlab-runner-17.6.1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module systemd tmpfiles - -# make sure this gets updated for every bump -GIT_COMMIT=6826a62f - -DESCRIPTION="The official GitLab Runner, written in Go" -HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner" -SRC_URI="https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" -SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" - -S="${WORKDIR}/${PN}-v${PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc64 ~riscv" - -COMMON_DEPEND="acct-group/gitlab-runner - acct-user/gitlab-runner" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND="dev-go/gox" - -DOCS=( docs CHANGELOG.md README.md config.toml.example ) - -src_compile() { - emake \ - BUILT="$(date -u '+%Y-%m-%dT%H:%M:%S%:z')" \ - GOX="${EPREFIX}/usr/bin/gox" \ - REVISION=${GIT_COMMIT} \ - VERSION=${PV} \ - runner-bin-host -} - -src_test() { - CI=0 ego test -} - -src_install() { - dobin out/binaries/gitlab-runner - einstalldocs - - newconfd "${FILESDIR}/${PN}.confd" "${PN}" - newinitd "${FILESDIR}/${PN}.initd" "${PN}" - systemd_dounit "${FILESDIR}/${PN}.service" - newtmpfiles "${FILESDIR}"/${PN}.tmpfile ${PN}.conf - keepdir /{etc,var/log}/${PN} - fperms 0700 /{etc,var/log}/gitlab-runner - fowners gitlab-runner:gitlab-runner /{etc,var/log}/${PN} -} - -pkg_postinst() { - tmpfiles_process gitlab-runner.conf - [[ -f ${EROOT}/etc/gitlab-runner/config.toml ]] && return - elog - elog "To use the runner, you need to register it with this command:" - elog "# gitlab-runner register" - elog "This will also create the configuration file in /etc/gitlab-runner/config.toml" -} diff --git a/dev-util/gitlab-runner/gitlab-runner-17.7.0.ebuild b/dev-util/gitlab-runner/gitlab-runner-17.7.0.ebuild deleted file mode 100644 index 3af23ee4cc0d..000000000000 --- a/dev-util/gitlab-runner/gitlab-runner-17.7.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module systemd tmpfiles - -# make sure this gets updated for every bump -GIT_COMMIT=3153ccc6 - -DESCRIPTION="The official GitLab Runner, written in Go" -HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner" -SRC_URI="https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" -SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" - -S="${WORKDIR}/${PN}-v${PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc64 ~riscv" - -COMMON_DEPEND="acct-group/gitlab-runner - acct-user/gitlab-runner" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND}" -BDEPEND="dev-go/gox" - -DOCS=( docs CHANGELOG.md README.md config.toml.example ) - -src_compile() { - emake \ - BUILT="$(date -u '+%Y-%m-%dT%H:%M:%S%:z')" \ - GOX="${EPREFIX}/usr/bin/gox" \ - REVISION=${GIT_COMMIT} \ - VERSION=${PV} \ - runner-bin-host -} - -src_test() { - CI=0 ego test -} - -src_install() { - dobin out/binaries/gitlab-runner - einstalldocs - - newconfd "${FILESDIR}/${PN}.confd" "${PN}" - newinitd "${FILESDIR}/${PN}.initd" "${PN}" - systemd_dounit "${FILESDIR}/${PN}.service" - newtmpfiles "${FILESDIR}"/${PN}.tmpfile ${PN}.conf - keepdir /{etc,var/log}/${PN} - fperms 0700 /{etc,var/log}/gitlab-runner - fowners gitlab-runner:gitlab-runner /{etc,var/log}/${PN} -} - -pkg_postinst() { - tmpfiles_process gitlab-runner.conf - [[ -f ${EROOT}/etc/gitlab-runner/config.toml ]] && return - elog - elog "To use the runner, you need to register it with this command:" - elog "# gitlab-runner register" - elog "This will also create the configuration file in /etc/gitlab-runner/config.toml" -} diff --git a/dev-util/gitlab-runner/gitlab-runner-17.8.2.ebuild b/dev-util/gitlab-runner/gitlab-runner-17.9.1.ebuild index a1495835745f..5d8df79a1037 100644 --- a/dev-util/gitlab-runner/gitlab-runner-17.8.2.ebuild +++ b/dev-util/gitlab-runner/gitlab-runner-17.9.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 inherit go-module systemd tmpfiles # make sure this gets updated for every bump -GIT_COMMIT=f9c5437e +GIT_COMMIT=bbf75488 DESCRIPTION="The official GitLab Runner, written in Go" HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner" diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 24464c73c9a6..2d479c9c7267 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -340,7 +340,7 @@ if [[ ${PN} != kgcc64 && ${PN} != gcc-* ]] ; then tc_version_is_at_least 14.0.0_pre20230423 ${PV} && IUSE+=" rust" TC_FEATURES+=( rust ) tc_version_is_at_least 14.2.1_p20241026 ${PV} && IUSE+=" time64" tc_version_is_at_least 15.0.0_pre20241124 ${PV} && IUSE+=" libgdiagnostics" - tc_version_is_at_least 15.0.0_pre20250316 ${PV} && IUSE+=" cobol" + tc_version_is_at_least 15.0.1_pre20250316 ${PV} && IUSE+=" cobol" fi if tc_version_is_at_least 10; then diff --git a/kde-plasma/aurorae/Manifest b/kde-plasma/aurorae/Manifest index 44642955edde..5e8691a72faa 100644 --- a/kde-plasma/aurorae/Manifest +++ b/kde-plasma/aurorae/Manifest @@ -1,3 +1,3 @@ DIST aurorae-6.3.2-decouple-from-libkwin.patch.xz 4256 BLAKE2B 800376975ac6e2cdf5d3713a94a2d9f55d23d27d8da0437d914fa0d79df6082225183d8f427980967bdd41b7388221e99d1301517b78c2732090c65b91938d80 SHA512 10bfa3ea8c7e1ffda8284954176eea34effa0414811a012822e46c8291f06bc17791de66487693e415cc96aa548ec34f6bc33890fe18f1fa2af96e75544eb398 DIST aurorae.CMakeLists.txt.xz 1136 BLAKE2B f2501ac110f1250fa35fdac117f794d9ec4cfbdd858eb9999a1e8b7da936c75537339924503efa43bacb56ea102a08a37c3d7d20ba4a4853bd70e3dbcd233247 SHA512 2c065d64c39a1b5ca235cd3fcb7e54c1ab85401b48252bcc4b00dae2a03bffbb2802bab79f47c0678d11eb6f8356e4872d55e9ad237451da09e7858cb22788c4 -DIST kwin-6.3.2.tar.xz 8868688 BLAKE2B 6e96edcf69895998e39dc37db417cc192aaef9b37ee7419687bfbfaaaa12b26701345abf4d7c16c4bfb4d61624e094268eb6a575e3d6ffcc29d631aea58540e0 SHA512 6d3510b5d9198239660dc27c3ea3de6c53d7b414945f335175b5327e78540b7a17023e3883c3f3b8ed4b91b6dca236eaaf2bd0c0bcd0cc59da620ba74e5ee3a5 +DIST kwin-6.3.3.tar.xz 8968752 BLAKE2B 7e27db7b93ec4b37bb139adf2e37a969525ed37b7a4ac51e529129ca433891afdd262ccf65a1bbcc9baf885c94ccefcdf397302a291b146117247110eb5c25f0 SHA512 1504a71162e90f458a42e86646e816234c4aa98b1bb884670545ae9e47b6d567d6b27dd09ac6a7337f84cb06db28d2c43e7997d0a65c9a3ac243ede8715183ea diff --git a/kde-plasma/aurorae/aurorae-6.3.2.ebuild b/kde-plasma/aurorae/aurorae-6.3.3.ebuild index aaebf1dea959..aaebf1dea959 100644 --- a/kde-plasma/aurorae/aurorae-6.3.2.ebuild +++ b/kde-plasma/aurorae/aurorae-6.3.3.ebuild diff --git a/kde-plasma/bluedevil/Manifest b/kde-plasma/bluedevil/Manifest index e1ba65bb8722..efc5422389c1 100644 --- a/kde-plasma/bluedevil/Manifest +++ b/kde-plasma/bluedevil/Manifest @@ -1,2 +1,2 @@ DIST bluedevil-6.2.5.tar.xz 389416 BLAKE2B a9b085ab866b0b8149a37bb7b5a61e34b1cf494e0346e281b14ff2a2cec45036b4151aca0932f1058e0c3e570ca9a43d3ebf8fa742c19870f093600770e63d95 SHA512 94a006f3137e7a5e3fd83b47641f9c9b2e5daebfd1569938cca3f53958453abe74cba3ede0b35a85fe843d4d5f1bcea81798e9e3f12905853d527c71b58696e6 -DIST bluedevil-6.3.2.tar.xz 396648 BLAKE2B 706d88b3cce14ec4ccd32b18cadb3b21de8d5f6087a601b3ac1349244d907ae4b10ce5e61a3c788c8d97eccaa13faa2de881e14a1ab5da4f7bbc31699a3b5c8f SHA512 a4979a1e5cbdf7197c4a4b1451ac71158cd141e80754d6ea41a14efb4ee9a5325d296dcc9043a4a5bf4864c114ebab43c797cbba4bfa9ca56ab3d305258f9aab +DIST bluedevil-6.3.3.tar.xz 396632 BLAKE2B e6890d1a9aeae835b409895da1c890e25e1a062fb4718be616d59d83e8607e9945d532a9d785acdccffd9949ade95aa1cb8c693d6de48cfc36c755e4c74affe3 SHA512 745dd62685e3a179008cd9c294a04ceec0f8de670e7ba119d33c296a10454e8367daf2e0faab70c6327188973bf10fbcf40eee068000ee9595ee9fbc38f25dd8 diff --git a/kde-plasma/bluedevil/bluedevil-6.3.2.ebuild b/kde-plasma/bluedevil/bluedevil-6.3.3.ebuild index 96b474b4805a..96b474b4805a 100644 --- a/kde-plasma/bluedevil/bluedevil-6.3.2.ebuild +++ b/kde-plasma/bluedevil/bluedevil-6.3.3.ebuild diff --git a/kde-plasma/breeze-grub/Manifest b/kde-plasma/breeze-grub/Manifest index a9c99aa86f28..b0156a0fe027 100644 --- a/kde-plasma/breeze-grub/Manifest +++ b/kde-plasma/breeze-grub/Manifest @@ -1,2 +1,2 @@ DIST breeze-grub-6.2.5.tar.xz 1445060 BLAKE2B 3da1f2fd3a7fe99aa843f329379f261aade035a334b53a5978a4b60eb42de6d09f0bf404f96ce8de9663f453e57f128dea1b4d819e02ddf6ebd5c97ede3107a0 SHA512 ea4b02fa656b3f1b1816b902f75d3b0cfeda4a5c6c98c7707765c41fba2ea5c6245812c7a176a8b888ce68e5fc26965f95c2cd86963cfd214689f83d0cd6ce9a -DIST breeze-grub-6.3.2.tar.xz 1445144 BLAKE2B e8ee72ef6f50ee6b5d3e0ea5ec18528a222997778d30d186a4aa35be00870c17e4a7fe3a5202ae13ebf7800e8a9f12c762055afdc99c817bcf9519e817f4c69e SHA512 7621dcf267d6f9bcd796b10f1b5316b067b0a8b7459284237596154b2c29258d90f95bd3c81d763e629306dec6e7d26917acaab57ae23020334e7fca07933e34 +DIST breeze-grub-6.3.3.tar.xz 1444688 BLAKE2B 4061a61a9941f02cdfd554ac641d75ee5c97b2e155055907ee79cdf9ba846aa8ade8f2c1a4d4b3972e14f42127285888c6971c15d6a683a85110d48664b5bf7e SHA512 54a543fd69c920ff3da83c8f9de62be5918797bda6b1f8433c3ca1537e404b5089c831a6ddb99494796a9de4d4670dd59bd95c8285fb3d18b052ad58a93b1c10 diff --git a/kde-plasma/breeze-grub/breeze-grub-6.3.2.ebuild b/kde-plasma/breeze-grub/breeze-grub-6.3.3.ebuild index e06f0d471239..e06f0d471239 100644 --- a/kde-plasma/breeze-grub/breeze-grub-6.3.2.ebuild +++ b/kde-plasma/breeze-grub/breeze-grub-6.3.3.ebuild diff --git a/kde-plasma/breeze-gtk/Manifest b/kde-plasma/breeze-gtk/Manifest index 6f1b36ef414e..79c753a46baf 100644 --- a/kde-plasma/breeze-gtk/Manifest +++ b/kde-plasma/breeze-gtk/Manifest @@ -1,2 +1,2 @@ DIST breeze-gtk-6.2.5.tar.xz 40856 BLAKE2B 52298d50c837c433dcea5849bb6fcd843126101cc46e163d02919b78ea7cd365a35b34a5ff0b4f6c843ce3dff457a4d30800cb5c226e01cbd7191717bc63ade2 SHA512 a74aee49d2f0b989059bdb7e684ed420e13c4fa70d5cef25855ac046c031199c9f295f34b71440cd447eb87be0e2fa08a4325274426716b4663edde9c8f3e3b0 -DIST breeze-gtk-6.3.2.tar.xz 40740 BLAKE2B 4321308cbae461cb7ea39f581fcad27d23f95a8399511f5f97b42ecadfd2360fe3d57d70887b16fa2ffcfd52b29823fdf5d7d8aab8c27090bf66cb6c21243963 SHA512 03474bf8d50c4fef5b86a51ac4fc490e8a5bc587221ce2f67226631a4fed0bb5fe1da1ecdf4571014703a8ed0908d66ae2b81a88586c43b2d06b1b46e6a8d364 +DIST breeze-gtk-6.3.3.tar.xz 40748 BLAKE2B ce69e7b1cc9b0dbdba0e158fa526362538fd92e243fe6eb6f8be0486a3f4fbf57c8c246862f4cc9379584901a198620bace23ad7a3f24134a81ed075f3d77655 SHA512 d22c71f15573b68bcf1d2c6449a69048d76a539ea8e05d29ccd45313316b115a4f733c06dbc676e596570652e0467757c907b7cf9679611597b0720d011546c7 diff --git a/kde-plasma/breeze-gtk/breeze-gtk-6.3.2.ebuild b/kde-plasma/breeze-gtk/breeze-gtk-6.3.3.ebuild index 8a9e26cf439a..8a9e26cf439a 100644 --- a/kde-plasma/breeze-gtk/breeze-gtk-6.3.2.ebuild +++ b/kde-plasma/breeze-gtk/breeze-gtk-6.3.3.ebuild diff --git a/kde-plasma/breeze-plymouth/Manifest b/kde-plasma/breeze-plymouth/Manifest index 2ea4e79be27c..c916201d6cf1 100644 --- a/kde-plasma/breeze-plymouth/Manifest +++ b/kde-plasma/breeze-plymouth/Manifest @@ -1,2 +1,2 @@ DIST breeze-plymouth-6.2.5.tar.xz 111304 BLAKE2B 86d87c3d718c80440b33464e15e900c3fb50e1a9f16377c3733b3045bd0257443be33f2d9a736eb81830b81e7a304feb4a6dd8ec3e99f3e70e2ef7af762a28f0 SHA512 4e06b07e28e227b7cb34f4514cef835956d5bfb3fc838de0a016aceb7588c45670e881e7f6f219cb73c7438d8146886dc17cd5020755319723a307e28bf67e73 -DIST breeze-plymouth-6.3.2.tar.xz 111332 BLAKE2B 19aad344efe1a2402d930fc37dd42341abac1232632583bf8e9b49983b68e427f66e5f00785da853f21dea5c2873134b6de24b872c6aee0420a60c8d33d96c26 SHA512 431e832e7ca082e79b64772fc8ddc704a82fcfa4489388bcb559e316fcc3d588d9941b3efd1a19f48a575e49dd9ebe557f215744851a9838e7f9c79da60500f9 +DIST breeze-plymouth-6.3.3.tar.xz 111464 BLAKE2B 3d962a230a1e8b515e0b909692bfc53422d3b410bd7b11f712f7b3c220a84f7d5c61ef76589d3120d2ce41a5132e8d9df1efa27c95082b0265f8fcceb459eece SHA512 4e375c9af35636ef5aff1e19ed8ffb8248c589a1614f620b7ca18027fa6df0f42cc9bc2ec0f61ef409a10bf2942d142c61c051d1e616657b42139a8b12473b43 diff --git a/kde-plasma/breeze-plymouth/breeze-plymouth-6.3.2.ebuild b/kde-plasma/breeze-plymouth/breeze-plymouth-6.3.3.ebuild index 20b9c830a506..20b9c830a506 100644 --- a/kde-plasma/breeze-plymouth/breeze-plymouth-6.3.2.ebuild +++ b/kde-plasma/breeze-plymouth/breeze-plymouth-6.3.3.ebuild diff --git a/kde-plasma/breeze/Manifest b/kde-plasma/breeze/Manifest index 61cf72708b7a..ddf3e8302dcc 100644 --- a/kde-plasma/breeze/Manifest +++ b/kde-plasma/breeze/Manifest @@ -1,2 +1,2 @@ DIST breeze-6.2.5.tar.xz 110838704 BLAKE2B 063ef38268f96345fde692fa7884b2a25431bcc9ff3f7fb97c2cbca7142d6f83383bcbd526b69fca93054f6df664719722e0fb804377539aea15a65827435b4a SHA512 c4e5f5ca93ed65396e4444f664988f78e30d2620ffd6a5f35a1f87eb3820ab6d762410e237b30fee5fc767d672e4f56100245d5f36f43bc507c5da87c8ab2065 -DIST breeze-6.3.2.tar.xz 45513692 BLAKE2B 74cb8a0479263d9baab4fdeb7e3c5acb18e7fb9e190e1953ac4bdd8f32bad8177fb095713fcc61052863e38feddf4a05a5f49542e0853a3b2da1ca4ae272f991 SHA512 2d50c00aa9e80682791f9e5e2ab4e8857e20bf219780514092bf0dbe0f128ef63d626363eb63f492def33b00c15d388ee5dadd8879217ab086ac0b1a33f747ca +DIST breeze-6.3.3.tar.xz 45513084 BLAKE2B b49cd5ca0e8d94582b723513ef61ef16ee5e6aff802873558814801e41431cb562a6e1b4f3a46f3544b2723ec920b9ea7b0a48accf088cf2e141f77b8e89e471 SHA512 3510f77bd4fbed4e67844e5148d25e7aa8629a7c68038b6ca9fb5f17888f4e6b5ae21e3c2de1884ba7bb7954035bfff16da49a630266da929dae526c13ccbfd7 diff --git a/kde-plasma/breeze/breeze-6.3.2.ebuild b/kde-plasma/breeze/breeze-6.3.3.ebuild index 61dfc879ddec..61dfc879ddec 100644 --- a/kde-plasma/breeze/breeze-6.3.2.ebuild +++ b/kde-plasma/breeze/breeze-6.3.3.ebuild diff --git a/kde-plasma/discover/Manifest b/kde-plasma/discover/Manifest index 1f9f59443645..b61adf26b31b 100644 --- a/kde-plasma/discover/Manifest +++ b/kde-plasma/discover/Manifest @@ -1,2 +1,2 @@ DIST discover-6.2.5.tar.xz 1104540 BLAKE2B c623a31e46f41141b99ae4f20a48c4ac66ab9c0e03fea74b663302430852962ec7524d36204a6e1c1f550d37c6a09cdd4ed2ba337c68af72906ea87727b5e391 SHA512 bdb889c4f20b150a4d15cde907c265e5b2b87ab3d6631e7a5af4c26746339980dde30f4c59e741fdec91e7504c171e048afc24902ff79418d826f507277809aa -DIST discover-6.3.2.tar.xz 1102604 BLAKE2B 85546260a1ef4614d5a029dddaf7f8b2b15ca1e80ea1bceffeeed1e018850b0d5b896d1815885581abc3ec6ae2006002056a32091c9b8dfa310ca57a16eea66c SHA512 709383986e955fb3117cb3820b9ad9d0d388053855907a66700d3b28e186deaa29ac32f278f9124913f6ebbdee8334fdd9913ac61f9f2d001fc99c3bfd2b2a55 +DIST discover-6.3.3.tar.xz 1102260 BLAKE2B 71ae14b58f9e169c084861f38290d556a426088869ba49ae6287079dc5646df934542536a14aef974ab4601ed118f1627b59d2ab1067de9744b989dde27f2cb6 SHA512 eaafe4a548d527acbb16d45ca93902ab5661cc60b1c5175e685a12365bb20c9cc99ab0e7cd1c5f12fa5aee1e567775789d3af9e3950a70caa38471d876c0544d diff --git a/kde-plasma/discover/discover-6.3.2.ebuild b/kde-plasma/discover/discover-6.3.3.ebuild index 917e4f8eb240..917e4f8eb240 100644 --- a/kde-plasma/discover/discover-6.3.2.ebuild +++ b/kde-plasma/discover/discover-6.3.3.ebuild diff --git a/kde-plasma/drkonqi/Manifest b/kde-plasma/drkonqi/Manifest index 1806841be1fb..dafc7448a6c9 100644 --- a/kde-plasma/drkonqi/Manifest +++ b/kde-plasma/drkonqi/Manifest @@ -1,2 +1,2 @@ DIST drkonqi-6.2.5.tar.xz 882572 BLAKE2B 88ce9d219c42ba8578cfc649be7a19e4819daecfc629aecaffc983b7f09f57a9afb4258b9cdfca670317d5da365e5e5f1c71e7a8383525c7d304f9aa0f3010e0 SHA512 e9037f8c1ce657e14faf70c147a6ec8c478db405f8672b11682023b7aa212f55cc7896b504531c8fba0edbbb644b1f995ce47691048e5ded497d7e3fc998d58d -DIST drkonqi-6.3.2.tar.xz 892088 BLAKE2B ceb9411aec888bb41a0bd44f639ad07bc64194ce48cea89c8dd925590a565e118aad0ce2ea8dd2153c62afe7833c5e2340aa8f25930a5a5472e07b6b91b511d2 SHA512 344f71ea689543cd0b3951595a1593f4b53827379f915d3c6af42e6a1602594199d873c176dc7237d5b71a0f6556c6477bc607e5cabbada60e7926764a589300 +DIST drkonqi-6.3.3.tar.xz 892000 BLAKE2B 55a31844223948efa9385bc455ba6a5caaae8fe1542816ec65061345d609d7dc6dd2816634fce56cd5da6f258d18606ed1348d8271572f24c1d49748d9c5f694 SHA512 5adbca8498e9b2af59a4c0a424310d04a1d557a1448e704f9cf816a0ceb8475bbc6d87b868ad52b834778e52fee954cce37b41e9f3dc0f40ab76fa95ade6b13b diff --git a/kde-plasma/drkonqi/drkonqi-6.3.2.ebuild b/kde-plasma/drkonqi/drkonqi-6.3.3.ebuild index 4bc2876445ac..4bc2876445ac 100644 --- a/kde-plasma/drkonqi/drkonqi-6.3.2.ebuild +++ b/kde-plasma/drkonqi/drkonqi-6.3.3.ebuild diff --git a/kde-plasma/flatpak-kcm/Manifest b/kde-plasma/flatpak-kcm/Manifest index 44a8bd2371d0..5423237c24e3 100644 --- a/kde-plasma/flatpak-kcm/Manifest +++ b/kde-plasma/flatpak-kcm/Manifest @@ -1,2 +1,2 @@ DIST flatpak-kcm-6.2.5.tar.xz 248088 BLAKE2B 39e2bc2cf6385b83224b5eb54516ee4aafaa495e02ef50390aad6b7a82c7132fafb8c08c7a0f0dd0ba03a5b680f64aa6b04f935b456f4be8be36487361cc8bf1 SHA512 a909a2ccc28db94a31ca52cab07269d86857f16fcc16e3d436f085b9f6620d931815bd409016d75215e0cc990142259ed5fe537b146aff04ac8558a3d65d79e1 -DIST flatpak-kcm-6.3.2.tar.xz 250604 BLAKE2B 7887bb6f2d335c456a4d8b186aad86c83893e7561d66e931a88c0954ace71cb01f0358fdf5eb973944a8e2fac0ef5b4bde5146b27695085a63a3181f0a20035f SHA512 895b2b09a3a0aeeaa3e99d8198a101af1c82e9176072efb4d8cd2c40d0add9ac21465c1db1483e6cf6ffa9020598ade3bcdb2737a02a648c92e77bba74242311 +DIST flatpak-kcm-6.3.3.tar.xz 250688 BLAKE2B 28dc2726ca4ea2c645e6b835f7564ab9dd61b0343a687b135dcb8556132cd81fa711a19a9b8ffd7cce885b4542d999de1e37892b30433fcfa372aec37d9005eb SHA512 350861d9fb65c9de264d01c2e39ebf598ce6b9063b088dee4188306aa37849cb6422b8982f62150e340b96d00bb56c5f58c1fd79a5828d9ef49bf05909e07e29 diff --git a/kde-plasma/flatpak-kcm/flatpak-kcm-6.3.2.ebuild b/kde-plasma/flatpak-kcm/flatpak-kcm-6.3.3.ebuild index 32b113c41fc9..32b113c41fc9 100644 --- a/kde-plasma/flatpak-kcm/flatpak-kcm-6.3.2.ebuild +++ b/kde-plasma/flatpak-kcm/flatpak-kcm-6.3.3.ebuild diff --git a/kde-plasma/kactivitymanagerd/Manifest b/kde-plasma/kactivitymanagerd/Manifest index 16e2619abe06..ab889b9a4508 100644 --- a/kde-plasma/kactivitymanagerd/Manifest +++ b/kde-plasma/kactivitymanagerd/Manifest @@ -1,2 +1,2 @@ DIST kactivitymanagerd-6.2.5.tar.xz 107624 BLAKE2B aa396076c36b3540e6bd1397b4b837c52d559c08de13c2f276e85c61a01a456a69e2acc8527f737a7d89a18010e28140ab7f253fa94a6d77c41ecf64db1d2320 SHA512 2394a0147029847c8b211613ab124577b9e7bb2ad239f90308cb75c742c07cc6574bf7d8dcf6666b9eb1f382b53583a8519eeecfb4b898e7bbbf9b33420e0a48 -DIST kactivitymanagerd-6.3.2.tar.xz 103212 BLAKE2B 08e025659d6fd63a79b26572de108cee7156459425e7d04bc2cf741fb2fb99c493cdeabde5caedd7a95182b93e1bbc948935e9aad2b552400aaa8de259a6be55 SHA512 e3a5749949efb303a6770b04c953f0184f7988c1c11b085947c9aab1dae244238c7f700f4f4a91608f67b34ba0fb33f42799abecf449186e2aeecc7078286601 +DIST kactivitymanagerd-6.3.3.tar.xz 103216 BLAKE2B 0c2a6d09c3b39aeb96751d14f93f2403193301e30e37df89a1ba311fc5a341bf57bc94be3d9ed5cb321cfb3bdd86994d9ed97a53fe378b3ea48ba3d32c5eb0fb SHA512 a0d794ff1c59b48323d7b630e6d687b5ef627a0ef35c6738afc485dc903ff5d7ab4ef410c898604a51d416539442f0741f9087619a3eb9eb60308efd4d0c5f7c diff --git a/kde-plasma/kactivitymanagerd/kactivitymanagerd-6.3.2.ebuild b/kde-plasma/kactivitymanagerd/kactivitymanagerd-6.3.3.ebuild index eb1d567dd422..eb1d567dd422 100644 --- a/kde-plasma/kactivitymanagerd/kactivitymanagerd-6.3.2.ebuild +++ b/kde-plasma/kactivitymanagerd/kactivitymanagerd-6.3.3.ebuild diff --git a/kde-plasma/kde-cli-tools-common/Manifest b/kde-plasma/kde-cli-tools-common/Manifest index 9f6f8ae51129..9d96b1b6fe13 100644 --- a/kde-plasma/kde-cli-tools-common/Manifest +++ b/kde-plasma/kde-cli-tools-common/Manifest @@ -1,2 +1,2 @@ DIST kde-cli-tools-6.2.5.tar.xz 636896 BLAKE2B 2b4b7f7dcf026abbae3ace4bd92c660bb8d29796f24a138a20f3f1ab02102f650b070058912bf1759def406676122a810bc15520576d60823077fe9e9c98b235 SHA512 5c003c0119af245601f68b1c312875a363b5b4a1efa61f9327d20ab372d223a330b86480083fda46d0a1b5627ea694b8c57323905aaf100e4774d69285dfb16c -DIST kde-cli-tools-6.3.2.tar.xz 645092 BLAKE2B a69a17c1ce3baefa542f4d0d64bc90e6d303f17b9af46aa680a81c5677344b57ae2df17d5dd8bc10beb4c1f81f7f79247de42ed2af4c3d78d8562d96881df725 SHA512 6618d4f9f4c69c9dbfb07c4bd5940739c2f51299aecec2305707d251c56ef1105e29ca8e00bdffbcc889ef7ada4ff1a7f3729176a4f5a9d6aa06418332e29330 +DIST kde-cli-tools-6.3.3.tar.xz 645044 BLAKE2B 42b0a08afd9a3a1f31c4a86252ff9649a4de09ef164ef85aadbae92373714f976f26dc307b149bcd9c99d2a8c1a9b76578f9825f37b34ecdf5ba30f4bb7e6d04 SHA512 918927f02a453f935b27f3ac021cc1b0852d50f3e427ee0bdb623f43972ba3d5ecdece1c73bae6edb5a76c5453c12e625c2939329982bcc4154ec6db529237aa diff --git a/kde-plasma/kde-cli-tools-common/kde-cli-tools-common-6.3.2.ebuild b/kde-plasma/kde-cli-tools-common/kde-cli-tools-common-6.3.3.ebuild index e062cf05f967..e062cf05f967 100644 --- a/kde-plasma/kde-cli-tools-common/kde-cli-tools-common-6.3.2.ebuild +++ b/kde-plasma/kde-cli-tools-common/kde-cli-tools-common-6.3.3.ebuild diff --git a/kde-plasma/kde-cli-tools/Manifest b/kde-plasma/kde-cli-tools/Manifest index 9f6f8ae51129..9d96b1b6fe13 100644 --- a/kde-plasma/kde-cli-tools/Manifest +++ b/kde-plasma/kde-cli-tools/Manifest @@ -1,2 +1,2 @@ DIST kde-cli-tools-6.2.5.tar.xz 636896 BLAKE2B 2b4b7f7dcf026abbae3ace4bd92c660bb8d29796f24a138a20f3f1ab02102f650b070058912bf1759def406676122a810bc15520576d60823077fe9e9c98b235 SHA512 5c003c0119af245601f68b1c312875a363b5b4a1efa61f9327d20ab372d223a330b86480083fda46d0a1b5627ea694b8c57323905aaf100e4774d69285dfb16c -DIST kde-cli-tools-6.3.2.tar.xz 645092 BLAKE2B a69a17c1ce3baefa542f4d0d64bc90e6d303f17b9af46aa680a81c5677344b57ae2df17d5dd8bc10beb4c1f81f7f79247de42ed2af4c3d78d8562d96881df725 SHA512 6618d4f9f4c69c9dbfb07c4bd5940739c2f51299aecec2305707d251c56ef1105e29ca8e00bdffbcc889ef7ada4ff1a7f3729176a4f5a9d6aa06418332e29330 +DIST kde-cli-tools-6.3.3.tar.xz 645044 BLAKE2B 42b0a08afd9a3a1f31c4a86252ff9649a4de09ef164ef85aadbae92373714f976f26dc307b149bcd9c99d2a8c1a9b76578f9825f37b34ecdf5ba30f4bb7e6d04 SHA512 918927f02a453f935b27f3ac021cc1b0852d50f3e427ee0bdb623f43972ba3d5ecdece1c73bae6edb5a76c5453c12e625c2939329982bcc4154ec6db529237aa diff --git a/kde-plasma/kde-cli-tools/kde-cli-tools-6.3.2.ebuild b/kde-plasma/kde-cli-tools/kde-cli-tools-6.3.3.ebuild index 20864c97c6c0..20864c97c6c0 100644 --- a/kde-plasma/kde-cli-tools/kde-cli-tools-6.3.2.ebuild +++ b/kde-plasma/kde-cli-tools/kde-cli-tools-6.3.3.ebuild diff --git a/kde-plasma/kde-gtk-config/Manifest b/kde-plasma/kde-gtk-config/Manifest index 938999dbabcc..5514c450646b 100644 --- a/kde-plasma/kde-gtk-config/Manifest +++ b/kde-plasma/kde-gtk-config/Manifest @@ -1,2 +1,2 @@ DIST kde-gtk-config-6.2.5.tar.xz 78904 BLAKE2B c23e43cf0e5cbaa581e617d570456a344cc0bf09a1249d9b74f1afc4374ce57db531898e093985a057b6bb646c817a69468c64e5cc6544c2823cc559da0a4883 SHA512 dcbe5f8db1406a0dd35d630b463206944b1d021c78ab6eeb29f7161fb1256c1c277857409f6368d92677d9aaeaab8b505795d48b393f92aee6867fce3f0fe662 -DIST kde-gtk-config-6.3.2.tar.xz 79032 BLAKE2B 4f013da58318b532079b83b2f41189770debf1b172368798a7ffe7a669d23c00ca2a8d1be9278b96277a2ebdb5b73039138af2141599f2ceaef675b844fe09fd SHA512 5df74cf544fd6d0dc12b347696067b75dca44894b79371b0a4d33fdaa9312102ce76be6c1b0ec6514c925490f1a959d1c8411d7393a4ead4fcc7bd28b1d5c390 +DIST kde-gtk-config-6.3.3.tar.xz 79028 BLAKE2B 41ae3f606e5241ed4ad82bb4696f5c7e6309dca7acf68ab172dbf2985c51cab1598deeb9bb8c88eb259224a44d6a9396931ed412404770c19d66fdb9c3ec1836 SHA512 b7f14a00e1eb7430d0bf2e9b9867d9bfe018dfd0bfcfb0ba2997398cdf1d5c442eb85b98df4ed3632a905e1570f94fa417e69828a4822b708637723f242dd0f2 diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-6.3.2.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-6.3.3.ebuild index d04201d8c952..d04201d8c952 100644 --- a/kde-plasma/kde-gtk-config/kde-gtk-config-6.3.2.ebuild +++ b/kde-plasma/kde-gtk-config/kde-gtk-config-6.3.3.ebuild diff --git a/kde-plasma/kdecoration/Manifest b/kde-plasma/kdecoration/Manifest index abdfbb1465be..cd7b12bf98f4 100644 --- a/kde-plasma/kdecoration/Manifest +++ b/kde-plasma/kdecoration/Manifest @@ -1,2 +1,2 @@ DIST kdecoration-6.2.5.tar.xz 55104 BLAKE2B 6821d38cec7c9d80b24cf53ca6c372d9832c975e1d1113293dc306e34abb5dbe47df9921de24df74d03b04bf434f1cdf480c404979743ed6daf9247ac38e792c SHA512 84bd6be9fa070476c66d31deeaa2f6aa140d0b72025253812ca0669f5808661444a4bbdf780d241d394fd7f832b82bdbb5c8088e5a80381e2a4d69b664ca144f -DIST kdecoration-6.3.2.tar.xz 57592 BLAKE2B d053eeced270485c93d00271a791467cac714cb7153e4edeac1a0d2352972b893cbd26e8c69bf7d180e09880c154cc6cf2b4eb0fe39afbf497be9a9d636564ba SHA512 20beba7516d8035bb6b1acc9789eb61283e3607c9b92e66f37849b411aa41b845ef75bc6311334f7727ab86a2b0f1cefb4e490a67bb6a9675fd4c79f1e1eba2b +DIST kdecoration-6.3.3.tar.xz 57564 BLAKE2B 9e9ef69c8af4f42adeb557b90b49230b1f2f9a9cfeb74d301c954b82e5521582501a70833bb50ec3977a233461622a1319621ca2e772aa83d22d0ea23a11ee7d SHA512 23f61d91f112c2c9095b2157bacadebfc0750a2625885827ae2ad88c59a3b298cddcdbcb5707d4bf276ce4b1ebb184f789aa1f21015d9e4059a6d20512520e98 diff --git a/kde-plasma/kdecoration/kdecoration-6.3.2.ebuild b/kde-plasma/kdecoration/kdecoration-6.3.3.ebuild index a9c086b10617..a9c086b10617 100644 --- a/kde-plasma/kdecoration/kdecoration-6.3.2.ebuild +++ b/kde-plasma/kdecoration/kdecoration-6.3.3.ebuild diff --git a/kde-plasma/kdeplasma-addons/Manifest b/kde-plasma/kdeplasma-addons/Manifest index 022f9f29cf8b..dd19a0775584 100644 --- a/kde-plasma/kdeplasma-addons/Manifest +++ b/kde-plasma/kdeplasma-addons/Manifest @@ -1,2 +1,2 @@ DIST kdeplasma-addons-6.2.5.tar.xz 902876 BLAKE2B 1c5da59c7cd7c8cabcef3f3167fa38811e1312f53f6d0c4991b9b9a93cb16e26067ff4229ff6cefe8c1e365bcc6924ad46c8f578991c3fbf7046da3d13d91633 SHA512 0116dfc3fc5a443204b9d50a29035b76c06bf5f824be7fc3b76b4ce4f9e8db7ad86298b0b5d0f6ee8da96aed35c4edc7acbe86c2cfee3adfe31a47c05b9d6029 -DIST kdeplasma-addons-6.3.2.tar.xz 924012 BLAKE2B 20dad4f69b389a0e9adcaf3b4c8197c73ebfe60a9ac2c44b75e0f0802574d7bebc583d019d6fe54e742de1778412014a129261ea01c871de4b50764876d2779c SHA512 3eeabcdda648496efe3165fdfc0c902dfecdea621ffd1463b132c916c1fd8f2e2882ea7f41875061fb2f7e24164bd04982de3134e15e581cfa5b9f4d1a62553a +DIST kdeplasma-addons-6.3.3.tar.xz 923412 BLAKE2B 902eecfe54105fc8895924cc2121ad2b4aeb298346fa11ab5451a033529cfb907e88a5900e19674572d9a22aed96a7d533e758b723d8c7db65a8a5281adc8640 SHA512 cd81a63186ee0434b71933cdfe6e7748a07a8954a63e507013400ebc9e92070d9413b852ba4e147cb9314fe30e85996943ebabebb42732def6c6af3b1ada2f11 diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-6.3.2.ebuild b/kde-plasma/kdeplasma-addons/kdeplasma-addons-6.3.3.ebuild index 02774b9f8c5c..02774b9f8c5c 100644 --- a/kde-plasma/kdeplasma-addons/kdeplasma-addons-6.3.2.ebuild +++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-6.3.3.ebuild diff --git a/kde-plasma/kdesu-gui/Manifest b/kde-plasma/kdesu-gui/Manifest index 9f6f8ae51129..9d96b1b6fe13 100644 --- a/kde-plasma/kdesu-gui/Manifest +++ b/kde-plasma/kdesu-gui/Manifest @@ -1,2 +1,2 @@ DIST kde-cli-tools-6.2.5.tar.xz 636896 BLAKE2B 2b4b7f7dcf026abbae3ace4bd92c660bb8d29796f24a138a20f3f1ab02102f650b070058912bf1759def406676122a810bc15520576d60823077fe9e9c98b235 SHA512 5c003c0119af245601f68b1c312875a363b5b4a1efa61f9327d20ab372d223a330b86480083fda46d0a1b5627ea694b8c57323905aaf100e4774d69285dfb16c -DIST kde-cli-tools-6.3.2.tar.xz 645092 BLAKE2B a69a17c1ce3baefa542f4d0d64bc90e6d303f17b9af46aa680a81c5677344b57ae2df17d5dd8bc10beb4c1f81f7f79247de42ed2af4c3d78d8562d96881df725 SHA512 6618d4f9f4c69c9dbfb07c4bd5940739c2f51299aecec2305707d251c56ef1105e29ca8e00bdffbcc889ef7ada4ff1a7f3729176a4f5a9d6aa06418332e29330 +DIST kde-cli-tools-6.3.3.tar.xz 645044 BLAKE2B 42b0a08afd9a3a1f31c4a86252ff9649a4de09ef164ef85aadbae92373714f976f26dc307b149bcd9c99d2a8c1a9b76578f9825f37b34ecdf5ba30f4bb7e6d04 SHA512 918927f02a453f935b27f3ac021cc1b0852d50f3e427ee0bdb623f43972ba3d5ecdece1c73bae6edb5a76c5453c12e625c2939329982bcc4154ec6db529237aa diff --git a/kde-plasma/kdesu-gui/kdesu-gui-6.3.2.ebuild b/kde-plasma/kdesu-gui/kdesu-gui-6.3.3.ebuild index cf8ddb2f9848..cf8ddb2f9848 100644 --- a/kde-plasma/kdesu-gui/kdesu-gui-6.3.2.ebuild +++ b/kde-plasma/kdesu-gui/kdesu-gui-6.3.3.ebuild diff --git a/kde-plasma/keditfiletype/Manifest b/kde-plasma/keditfiletype/Manifest index 9f6f8ae51129..9d96b1b6fe13 100644 --- a/kde-plasma/keditfiletype/Manifest +++ b/kde-plasma/keditfiletype/Manifest @@ -1,2 +1,2 @@ DIST kde-cli-tools-6.2.5.tar.xz 636896 BLAKE2B 2b4b7f7dcf026abbae3ace4bd92c660bb8d29796f24a138a20f3f1ab02102f650b070058912bf1759def406676122a810bc15520576d60823077fe9e9c98b235 SHA512 5c003c0119af245601f68b1c312875a363b5b4a1efa61f9327d20ab372d223a330b86480083fda46d0a1b5627ea694b8c57323905aaf100e4774d69285dfb16c -DIST kde-cli-tools-6.3.2.tar.xz 645092 BLAKE2B a69a17c1ce3baefa542f4d0d64bc90e6d303f17b9af46aa680a81c5677344b57ae2df17d5dd8bc10beb4c1f81f7f79247de42ed2af4c3d78d8562d96881df725 SHA512 6618d4f9f4c69c9dbfb07c4bd5940739c2f51299aecec2305707d251c56ef1105e29ca8e00bdffbcc889ef7ada4ff1a7f3729176a4f5a9d6aa06418332e29330 +DIST kde-cli-tools-6.3.3.tar.xz 645044 BLAKE2B 42b0a08afd9a3a1f31c4a86252ff9649a4de09ef164ef85aadbae92373714f976f26dc307b149bcd9c99d2a8c1a9b76578f9825f37b34ecdf5ba30f4bb7e6d04 SHA512 918927f02a453f935b27f3ac021cc1b0852d50f3e427ee0bdb623f43972ba3d5ecdece1c73bae6edb5a76c5453c12e625c2939329982bcc4154ec6db529237aa diff --git a/kde-plasma/keditfiletype/keditfiletype-6.3.2.ebuild b/kde-plasma/keditfiletype/keditfiletype-6.3.3.ebuild index bb668c679e5e..bb668c679e5e 100644 --- a/kde-plasma/keditfiletype/keditfiletype-6.3.2.ebuild +++ b/kde-plasma/keditfiletype/keditfiletype-6.3.3.ebuild diff --git a/kde-plasma/kgamma/Manifest b/kde-plasma/kgamma/Manifest index ff5a4546dc56..cb0c232b39b7 100644 --- a/kde-plasma/kgamma/Manifest +++ b/kde-plasma/kgamma/Manifest @@ -1,2 +1,2 @@ DIST kgamma-6.2.5.tar.xz 87900 BLAKE2B d930cf30545af8ed8a657c747122c52866c76844b8a5d4048173e48d7ebd08fae64b02692b6250185e18a508622a7a36613eee69b042da00624a1f46b4373672 SHA512 45773f01ab9988df55b71cda9d01a64e6700409f69e44309971073a44693630eda2007a46df3a35b928a40b18dc56e76c16feef59276a64687a66cb65bcd56f5 -DIST kgamma-6.3.2.tar.xz 88352 BLAKE2B 798d252c487bbd65dad098f16578f2d9592042f44964b7e1ab336e602936e826144b4338945c1d49d76823a682454785a24ba92a1b6dbea4fab248fce2646223 SHA512 d3e91c5448d105ae0c48e0456f03896a61025c79554605f1215e97c548abf0de12944c1af068424a923907f0d2565a244f538bf5c7e6c60ea3f1437bc91b40ef +DIST kgamma-6.3.3.tar.xz 88380 BLAKE2B cd8001c6d194cc2efe31bcda6a3142e23f4a84d3ef5dbe853027fbd49722ce1cd86ae9dd26cbbf5f565aaffbf5e25b31cd48416e90cca27de015bef17f0d0046 SHA512 9569686e535519aaa00ee8cf6b45cc436ed70603fcd2cc07fa385fc7d0d6ae364d5265481cca0bcf7b8300b51022f0a21884694fff90371a89deb476cfdb6692 diff --git a/kde-plasma/kgamma/kgamma-6.3.2.ebuild b/kde-plasma/kgamma/kgamma-6.3.3.ebuild index 3ed3708bd329..3ed3708bd329 100644 --- a/kde-plasma/kgamma/kgamma-6.3.2.ebuild +++ b/kde-plasma/kgamma/kgamma-6.3.3.ebuild diff --git a/kde-plasma/kglobalacceld/Manifest b/kde-plasma/kglobalacceld/Manifest index 2ccff6781a72..cdf5dffb741c 100644 --- a/kde-plasma/kglobalacceld/Manifest +++ b/kde-plasma/kglobalacceld/Manifest @@ -1,2 +1,2 @@ DIST kglobalacceld-6.2.5.tar.xz 56336 BLAKE2B c5a50f0617574da8792b1ac914e8663468eb3ed9689c767d79fcbed13eb5993d40d890e065f587a1d75a09ddb8c28b0931a4886e41660f8a9a90cf1bf30a4e6d SHA512 2ea01f16fea31ebd01b7629eddd07bc19fd27a4a5908dd42b94ecae5fdee99cfa05dd9c3f45e11aa428c918b7041a8111205ca1cc851b750c91cfb163664e468 -DIST kglobalacceld-6.3.2.tar.xz 56516 BLAKE2B 92ffe8493c329058a8127f5a52651b96bddf3c18ec52596005663a73d960aab7e762b06b757567df7ed8ec79825667ec31c58dbe74e855790df0de44cdde3c3c SHA512 fb2f621bdd971e58200220620f807fa5707d8906ca6e9257e8f9177d6c7d1cd484c23f9b2f32505c64f13ad6aa717340f750fbe2b750d20ffb21b169749678e6 +DIST kglobalacceld-6.3.3.tar.xz 56516 BLAKE2B 36bbbdb5d7b24629f561fbe2730f732f8d56cec919d850248ca21d93e40565e02d11b0afec7b30022bdd6c3416fdc3ad0db581558544243c85b1d5e78812cbd9 SHA512 112025e941d2d16ed4de9d3c4c8942be545505e913f412d3195c0eb4a0442fa3f489db3ed391bb3328542a57ce396fbceea6aa6e82f11b51ca2dd033cb306685 diff --git a/kde-plasma/kglobalacceld/kglobalacceld-6.3.2.ebuild b/kde-plasma/kglobalacceld/kglobalacceld-6.3.3.ebuild index 4155b2e2097a..4155b2e2097a 100644 --- a/kde-plasma/kglobalacceld/kglobalacceld-6.3.2.ebuild +++ b/kde-plasma/kglobalacceld/kglobalacceld-6.3.3.ebuild diff --git a/kde-plasma/kinfocenter/Manifest b/kde-plasma/kinfocenter/Manifest index 7ddf7410d0b1..bf5e67f0ab0a 100644 --- a/kde-plasma/kinfocenter/Manifest +++ b/kde-plasma/kinfocenter/Manifest @@ -1,3 +1,3 @@ DIST glogo-small.png 24583 BLAKE2B 0af2ceae708e56f217120e5d8b880fb71401e3761ab26c4af5e74c0622368aa4e34b05160fae15fbfbbc832077810ab5c1e424826632748299fd22997cbe665c SHA512 648be463ec3812a2edcdab54d7a230bf2bd7e6895f4ffe72321d8fca28a5e1e0980f6e3b9a32f369c8369943ceb802a65a94b9dad820dcf2c81d4581d814cb48 DIST kinfocenter-6.2.5.tar.xz 732392 BLAKE2B 13e583696bcebda5a26935b66619314fa723c60463e5350963acaa6982ce8315c82355c911ae32b8c6ca4ee4832f017cb009fbd5e3b5a36f9f4c95a914a146fa SHA512 dba69043aa09df314275b9cbc6b3aed858dd3bab62381b8fdf83f8aad167581a06ff44a14f9f4cdefb4e205b088065dbdefb7e0fb78fb30508314ed929f3c669 -DIST kinfocenter-6.3.2.tar.xz 748688 BLAKE2B 25c41333800fb4834da43ca4b7bf2653276faef945b65d5977bd7ea2a75c11eea2bfbdff326675f477d47228c1bdd114133e85faead10a799b76ab30ed8f371d SHA512 bcde852577f8ff33b6a48578f8f4cb4316c9bc6cf5d159ea8fb45c013b4e113b197df24978bee27d37e78fe8ca0ad381b2822bb4abb7824e8a9b19945c62d1ff +DIST kinfocenter-6.3.3.tar.xz 749032 BLAKE2B 0ecf69e32153489f8a0cab56701f36c2728eadb44c5f99a58f2d653065e74ed60b1a8e6ee4c9f5f05bbcc2603164df37684b2199780205b8a784244cb5d6ee91 SHA512 b17b08d7c1444cef30d10008ebac152dec6675f45dba0b431e7208e61e3e25c7e32cf59f73ef40d37bc2c98cc0f1fdaaaebaaa863a26dc111622a415ea0e7011 diff --git a/kde-plasma/kinfocenter/kinfocenter-6.3.2.ebuild b/kde-plasma/kinfocenter/kinfocenter-6.3.3.ebuild index 6b4dd3a5124f..6b4dd3a5124f 100644 --- a/kde-plasma/kinfocenter/kinfocenter-6.3.2.ebuild +++ b/kde-plasma/kinfocenter/kinfocenter-6.3.3.ebuild diff --git a/kde-plasma/kmenuedit/Manifest b/kde-plasma/kmenuedit/Manifest index 43dea0ac279e..c2e7d16632c2 100644 --- a/kde-plasma/kmenuedit/Manifest +++ b/kde-plasma/kmenuedit/Manifest @@ -1,2 +1,2 @@ DIST kmenuedit-6.2.5.tar.xz 877516 BLAKE2B 769d47996720269c7b6d2181e8f5b2d680c361326afe64c217338d8aa9c0555e0b00a9dcfc334c4bb6ebed9c62a8f30f9a176c9e529db09df55da019c0eb8c4f SHA512 c5bab66f8dc9a5db8e0f4f5114406a916fa37922fc43d75b8d4471f4e1a458aabab70d7384dceedb0d6e92cfc73ba1343e6a6d33eeaa9aedaca90edda8e99a38 -DIST kmenuedit-6.3.2.tar.xz 878848 BLAKE2B 856105fcc49809360c8bd5dfbad8aeb824b9019fecc99e155cf0050faee1f8ad69aab5a6e873020dd6177e59479273d46beee11f78be08219f23bb61529e4f33 SHA512 15dd1fb4a4ce17fae6df7cc8243359b301779a4b48aa235edac37ffcdcfa5fc6389337fef3cfe6c69bf664344b86f7ef6665c65caf0407fe5400eb1a0b51ee67 +DIST kmenuedit-6.3.3.tar.xz 878872 BLAKE2B 4943c12f9ef5d46f86d68e271058070eea2d9d29f6f0e20bec02c1fdb00be1ad864ebd49161c931221a2497837a466c004ecc3c28ef573ea121334eb986c7342 SHA512 39047a991c874a0601699b5f131ee94a81cf3dca9393df5c75b9cf675f0144f562e344016809ff683314bdf6bdadc3ea8f2d91d5c4435558f59366ddb3bcab27 diff --git a/kde-plasma/kmenuedit/kmenuedit-6.3.2.ebuild b/kde-plasma/kmenuedit/kmenuedit-6.3.3.ebuild index 95dfa0a7b1d8..95dfa0a7b1d8 100644 --- a/kde-plasma/kmenuedit/kmenuedit-6.3.2.ebuild +++ b/kde-plasma/kmenuedit/kmenuedit-6.3.3.ebuild diff --git a/kde-plasma/kpipewire/Manifest b/kde-plasma/kpipewire/Manifest index 90cb6dd1e6b7..9eef1e5450d0 100644 --- a/kde-plasma/kpipewire/Manifest +++ b/kde-plasma/kpipewire/Manifest @@ -1,2 +1,2 @@ DIST kpipewire-6.2.5.tar.xz 150412 BLAKE2B 065c3943fd9db8a3c57d74d886f0f8026b188d391d7b25a7aed6fc30450b8273be6855da1aeab2bcf0887418314ad8dbaa3f3de030cee34ad8d1b22a5a99e8f6 SHA512 38571b80aec7553a3020b82b788567797b8037150881dcf23539cc8c0a52dc1551fa0c370a07c51e891cce7c0ee8c72dfeefd545fe3d8940abab50af4bd85a1a -DIST kpipewire-6.3.2.tar.xz 152748 BLAKE2B 75e7e6d1fd825693e001099456c1b19e95b16c40f80369245a1f9f9213809bbd0f9c21608b2eeee3df1fdd5c7c784da1c0545ef69f3616fd43cc714926de8b89 SHA512 05d9769aad91d542aae83094d226c7850a0e2832eaa794f25905c5638b6bb33df9579b5eac88fa47bfd3069a41da07b9ca7be3312b97171a0e8bc4e0999cc8c8 +DIST kpipewire-6.3.3.tar.xz 152784 BLAKE2B c0ffc470550f4a04cd85321182d8c062165264499b42e5336dbb20cfc142c99fa27ad9f392fe04e38e5ae1a52fed5f4cbf8495aaca8b1bc2470d5a36f32672e3 SHA512 c3358510f67d746ef03aa822ca82ed4123b5e731f7006177b735cc6a56dc410a3d4dda2c24cf0628f057c4e23d4632dabd5a00391c5a380878e81cd478dab8a8 diff --git a/kde-plasma/kpipewire/kpipewire-6.3.2.ebuild b/kde-plasma/kpipewire/kpipewire-6.3.3.ebuild index 6220e3b642f3..6220e3b642f3 100644 --- a/kde-plasma/kpipewire/kpipewire-6.3.2.ebuild +++ b/kde-plasma/kpipewire/kpipewire-6.3.3.ebuild diff --git a/kde-plasma/krdp/Manifest b/kde-plasma/krdp/Manifest index b0049f72f966..ba9869713622 100644 --- a/kde-plasma/krdp/Manifest +++ b/kde-plasma/krdp/Manifest @@ -1,2 +1,2 @@ DIST krdp-6.2.5.tar.xz 96420 BLAKE2B 2ea0e711c64f178e5d2c0ce45a3e2d548494145af5cee4fdf30d1f165b21f005327116575150fcd6a69a9ed3a4937112826d2497a637b02c23c608b129b5b52c SHA512 c8d78e4a88ef845a26467fea4175855d685fe6e42c3538e0baba438e00eccbf9c2958a893105344fd9159d2019b923b8cb54c1aeeaa63fd091d4cc989c45c69d -DIST krdp-6.3.2.tar.xz 101228 BLAKE2B 30bb93bf9e3bfb296a7e162a4c2bb4fc75346462c31106b7e1fb3244913dd6fb9db649e3f2eb9657b92c6028db5e0f6118119e25a43ef3f8576ce8124a4cb0a5 SHA512 1110a3aec08f70bca24033ab383f941a3e98234e1760b6ff6272bd6d2e9fdfc06ce91a0a37a7f033d82b8bc3c7daa45ba20139801df9aa69bb212f9aa92c01bd +DIST krdp-6.3.3.tar.xz 101288 BLAKE2B 4208977a87db60703095893a9d6591d5e33edc8a1c5a127be6e5f4bfc0e5887ec3d8ca942d86790e998ba3b998bbbc5620936bbe62ab86cf19c5df7a679c1bec SHA512 c0590d7119e6f890d00613adc9c730b89c3f7b9faa9811be07438067ceedf0c255516be0a223859f821446560463c14dffba72be1cf3a37ddaedb72135084b9c diff --git a/kde-plasma/krdp/krdp-6.3.2.ebuild b/kde-plasma/krdp/krdp-6.3.3.ebuild index 0182d90987b6..0182d90987b6 100644 --- a/kde-plasma/krdp/krdp-6.3.2.ebuild +++ b/kde-plasma/krdp/krdp-6.3.3.ebuild diff --git a/kde-plasma/kscreen/Manifest b/kde-plasma/kscreen/Manifest index de9f526f1cbc..13e104c4d316 100644 --- a/kde-plasma/kscreen/Manifest +++ b/kde-plasma/kscreen/Manifest @@ -1,2 +1,2 @@ DIST kscreen-6.2.5.tar.xz 211884 BLAKE2B 2751d0395a436d3b8003ad2d2087a9e29dc367bfebc72f18818bbf970c9e0ceb38bb5ea36945006d9430c0804fd681743dc63b8c256193a999e062b946fa249b SHA512 ca749f9acb18ceb0531017e9d7ec6aafeced699550f75ab7bd02af13fe7e6826d1bc8149e5b650aa6066d3fe920b5bc6ed09d1f3f991f6b934bccc37aa3cf839 -DIST kscreen-6.3.2.tar.xz 225360 BLAKE2B 4ef21dd4b85c7b7e6dbb4946e68b4051c7579750bc4013abe19761abc0bc19e881d42c078af7bac739ff86335e38912d23e203a00b95047691a473f043c3eb4d SHA512 02fcd6bf1a855df63c99987ef76b86d4e1fd53a3913d1f76306470311202f622d707f402a1d3454e5db8b2a897ac29376ea9b54162a91480a839ca13c6e7809c +DIST kscreen-6.3.3.tar.xz 225480 BLAKE2B ecc7e4a38138f7ccb63802b0016300fbe130021438b2d5482be28b830efd1a7845f0a23ff547c289a7a5d80f34a24eb3d9ace76a9dd2b4d62e7b7473d14c811f SHA512 cbc37c0b326dab13f546d87ed5e4b297a4ff8dd225b26c03b3b0585aac947472887b69e5e1181dd507e52f652196e61485f3e2570882ee736eebef0ed544eb96 diff --git a/kde-plasma/kscreen/kscreen-6.3.2.ebuild b/kde-plasma/kscreen/kscreen-6.3.3.ebuild index a4b20ef00b42..a4b20ef00b42 100644 --- a/kde-plasma/kscreen/kscreen-6.3.2.ebuild +++ b/kde-plasma/kscreen/kscreen-6.3.3.ebuild diff --git a/kde-plasma/kscreenlocker/Manifest b/kde-plasma/kscreenlocker/Manifest index 6eba2e4e425f..aaa6d85eb7c6 100644 --- a/kde-plasma/kscreenlocker/Manifest +++ b/kde-plasma/kscreenlocker/Manifest @@ -1,2 +1,2 @@ DIST kscreenlocker-6.2.5.tar.xz 181704 BLAKE2B 944021489a33f4a66a784b817cabec8a832b0acded05286c03c927feaae90c8442395fe2061c99654a37e8c95b97e698221e1b8967b15284160b222b42806e1f SHA512 6c340388bd47298915160497e9fd7d9b5ae0d75edd059e5d7ecf47ae13f0acc7e2726e674deb06c0aaff0eff7d91542ad3297fb09aa087b3f7a24ce6721c7edc -DIST kscreenlocker-6.3.2.tar.xz 184508 BLAKE2B 092534067f7045cf135be7075395621e8d9552c19d8b3fcf7502abc8f004fa38df8d3841de5d074907fbb55dfa1e5cc6c66c01f3caf417872f178517587441a1 SHA512 a2d9c4a63416e67869306e39d0d5e3a3d8bace56f76d78875c07349e9824bf886503c42ae365fe0e75db3fb4581dfe76a6a097aec5b28d12d1a6ab1d483f7bf1 +DIST kscreenlocker-6.3.3.tar.xz 184488 BLAKE2B 6819001f70e59e328815462c7b4dfefdcd4f97b8d42cce8f34fe4884bd7e237164588b8fdedc8142453097c3e2b772a0ec914ac2f340e84f48267498394f4f80 SHA512 9512ff4db5ed596672c04d083f754e3876781d100784c8efa79759bb2d808649ea68a7e93edfc1a6cfcbd6574432e3a9ae81d8c0aaea982dc2969505ad2fe3d9 diff --git a/kde-plasma/kscreenlocker/kscreenlocker-6.3.2.ebuild b/kde-plasma/kscreenlocker/kscreenlocker-6.3.3.ebuild index 3800fa14e404..3800fa14e404 100644 --- a/kde-plasma/kscreenlocker/kscreenlocker-6.3.2.ebuild +++ b/kde-plasma/kscreenlocker/kscreenlocker-6.3.3.ebuild diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index a96aa83e4948..d427d7387c6d 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1,2 +1,2 @@ DIST ksshaskpass-6.2.5.tar.xz 30732 BLAKE2B b9a1c9f0af750c8f757a30893ebd894d8930aea22985de653c8cf15504c4c7f13b63f7f3e70ccf34ff1f57ea90c4d322c3cfab0c57c3f45e3b1206fce89553a9 SHA512 f1ce7e8708646eefe08a06b365646118f7e8c237c1c324ed129fd07152bcbf6dd3078fd3d94356aac6738473399f4bd61cf2e8b594a9bbaabc352883a0f98ffe -DIST ksshaskpass-6.3.2.tar.xz 30984 BLAKE2B ee651835fab383db59302e9c1cd7235d0874f486eafba1e7f1030330bd2b053b3596647c2e03cf7d015ec6b52b2bac9f4f398f9a5fde7b5111c1ca2ca6b4028d SHA512 2fc9b4566629d5aaf480bbd29d5ba35a72516552bb10159ff817c7e22d9e794fb31b1482b0dc07eb5ccc28ee401aaf0c7d4bf96e38ae250fa345d0769b8ae5f8 +DIST ksshaskpass-6.3.3.tar.xz 30984 BLAKE2B f53c72bf9814ffd9b5b747db69dd10158dc80821d9f975328c5714b8afcc76729b1548d741c32fc210bd579d89b6fa5f5b3bdad2d62f7366ec1574a86359421b SHA512 b72c46d14c1be7a55c27bbd7730abda35474d94147367f7436a2fecfcc26a4ecd05b24175ebc5b5ff52919241a37b3654ef7ec2639317280b8ec40370f9d9ee1 diff --git a/kde-plasma/ksshaskpass/ksshaskpass-6.3.2.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-6.3.3.ebuild index 8c712b6bd2fa..8c712b6bd2fa 100644 --- a/kde-plasma/ksshaskpass/ksshaskpass-6.3.2.ebuild +++ b/kde-plasma/ksshaskpass/ksshaskpass-6.3.3.ebuild diff --git a/kde-plasma/ksystemstats/Manifest b/kde-plasma/ksystemstats/Manifest index a49f80e82aa3..f8ccb503cc05 100644 --- a/kde-plasma/ksystemstats/Manifest +++ b/kde-plasma/ksystemstats/Manifest @@ -1,2 +1,2 @@ DIST ksystemstats-6.2.5.tar.xz 144156 BLAKE2B b03f7050f6f7eb99ca52aec3eebb612248c858d3e5a92d3f50a14c181115e9a6d2e5e0cb4fac516090db0b72066a4363c5527934845361dc3b81c9eb09a5f82e SHA512 8e2d2823f126e0701248eb707a1d67fcf8eb849f69d95b34d8dc859ec8c4bf8b4fd46a447d42487add90f442ba917beb76cfb490d0a857a6e19be2e438be48df -DIST ksystemstats-6.3.2.tar.xz 151312 BLAKE2B 783e48ecaa77a00f1e5d41f5be9862e6713d9bdc39feedac0dacc35797fddba260927ba39e8fcec16048b21a3477e3b8b2b689a14a844dd011cddecb02501150 SHA512 c70eb19094494f2924dc03bfd82c6447a3878a744d09427cbf1d1774851ad351e3e71a1409deac16d3dcb4ed66349c270dab0c1024de811c9146f48a68261ae3 +DIST ksystemstats-6.3.3.tar.xz 151332 BLAKE2B 1cc01248a8acd7e62457e0ff906a2572a0006b8302fbf94b46b78a415047d0cd42bd19e684b5cd4ed688758138c34fc48584a7d3e7d0ce04204d1fa9141b0248 SHA512 c29310fb3e2b8f5ad525a0a11120a250144fe4d3c6999799387fce0860a9bc01d172d2e3addb3f05d5eb8911c1a5a4d029aadefef5a6f33ff58ada5420c1ba3c diff --git a/kde-plasma/ksystemstats/ksystemstats-6.3.2.ebuild b/kde-plasma/ksystemstats/ksystemstats-6.3.3.ebuild index a4ef339002f3..a4ef339002f3 100644 --- a/kde-plasma/ksystemstats/ksystemstats-6.3.2.ebuild +++ b/kde-plasma/ksystemstats/ksystemstats-6.3.3.ebuild diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest index 434372271669..85568383bad0 100644 --- a/kde-plasma/kwallet-pam/Manifest +++ b/kde-plasma/kwallet-pam/Manifest @@ -1,2 +1,2 @@ DIST kwallet-pam-6.2.5.tar.xz 22480 BLAKE2B 268bd1e78d949e7f4092a9c4c90d61c8f4e728fbba1c95795e651ae46aaf08ce8c86e8b19832c1c412df7fd728203c892718a1b0ee4e94ab4142e436a720e2b8 SHA512 d9b0660cc2ac5630bc74ea3d4ebc8c153ef2f0e8edbedaabc95744e1171e12fc6cb810069b2d7aa3851698ba30ab8a35c872c7e1c410e41b82c64a789fc6f67b -DIST kwallet-pam-6.3.2.tar.xz 22484 BLAKE2B e9a841edd5bbf72e87d11abf68ac29fbbf3388ba33266187d472e05a10bebf8dbf585ef3e5577e5285fae006cfd8460bcff107aa2c27b15e4608ea406817df04 SHA512 2fffdf42115b0efe141b9738dc663929658ccef10aa5ef329614014ab661c4b991c8e0a3c5c5df482bd5f27965b09b20c83e946f24a7092d28dc37582e230e7b +DIST kwallet-pam-6.3.3.tar.xz 22480 BLAKE2B ea6f80c0763a6830c6913204cacb956155024126057baa96940cb11fe0e759567b228081a4359f92b385e47a830fbbf6ce6b4d1216714c3f73f0685dd81a8616 SHA512 f8cbc2f0b9b1abfc139b4b9a11a3283da87d67050a9facc5b2a2f3b6ce43b129f29de0edea4d775b1a8b6e05320a386a79508c95a83e89d5cc82dffc0ec7ae56 diff --git a/kde-plasma/kwallet-pam/kwallet-pam-6.3.2.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-6.3.3.ebuild index 31917fa1f86a..31917fa1f86a 100644 --- a/kde-plasma/kwallet-pam/kwallet-pam-6.3.2.ebuild +++ b/kde-plasma/kwallet-pam/kwallet-pam-6.3.3.ebuild diff --git a/kde-plasma/kwayland-integration/Manifest b/kde-plasma/kwayland-integration/Manifest index 278a569015a2..e47f8ee9f9f1 100644 --- a/kde-plasma/kwayland-integration/Manifest +++ b/kde-plasma/kwayland-integration/Manifest @@ -1,2 +1,2 @@ DIST kwayland-integration-6.2.5.tar.xz 26420 BLAKE2B e5c93a190c0a66a53cab1942d0254be1e2a77f875c22cda4480a3a3a7c8fb19c4cc558db214fe5aa5399f62fd1fe56d19ea089f86b9d7b6c47dd76f400e301cc SHA512 a0c93f58664cc3540c82609b14244cab9214f0b6712fe2409cd2b0aaaa55bad452d06083a2b1800cb7d37c7aceb5edfa210a3686aed442a1b9f5fb34ad2e3967 -DIST kwayland-integration-6.3.2.tar.xz 26536 BLAKE2B 59c401fd6e114775c7bd3143ab32d18f5787d91c23e318d18e239ea0670c03765eea49e29fdd8d82e36f6e56db2fa06af8acdb8da033f355b13f145fb36588a3 SHA512 665cd948fca3396107daab6496a9963c3fd128f316ac9be0da561f02ff0f6bfebd8e49b999042e9d7e669cf5d372356593bcdde22ae1b415ca8de4b5992246f6 +DIST kwayland-integration-6.3.3.tar.xz 26536 BLAKE2B 448d71cc375740fc018bfa5b878c665cf845d5dd209b12800b0eef98f7773a239f2857a537f07ceb0309bc7dfc8eb9dc8d083e2f4a85343dfbadf3c6258d32eb SHA512 10f0aa95a592dc36f40fa6c5e04d51861c9b5379835887ee32ac85759abbc1b575842b4bcfe3620c3e167984d7e877afe1fda48cf35ff2f52c844d12160b1af4 diff --git a/kde-plasma/kwayland-integration/kwayland-integration-6.3.2.ebuild b/kde-plasma/kwayland-integration/kwayland-integration-6.3.3.ebuild index daf2450c03b8..daf2450c03b8 100644 --- a/kde-plasma/kwayland-integration/kwayland-integration-6.3.2.ebuild +++ b/kde-plasma/kwayland-integration/kwayland-integration-6.3.3.ebuild diff --git a/kde-plasma/kwayland/Manifest b/kde-plasma/kwayland/Manifest index 9bb646223648..3d106ecb0fb7 100644 --- a/kde-plasma/kwayland/Manifest +++ b/kde-plasma/kwayland/Manifest @@ -1,3 +1,3 @@ DIST kwayland-5.116.0.tar.xz 337540 BLAKE2B e238af4a122317fde2b207762858fb913005afde60f1b9cf2dfd90163021d8c3d7d9c3b055a4bb3ae26b5d0560e90c9e0d1e1e51480315bf1a5bc5592a231d11 SHA512 48b24c88872a21d237274868fea601120fb9700f888ab0a7531651dc6501db8559af3a70b6131d89d31010e1f32013222d42e9d1244ae91bf9972588494957a9 DIST kwayland-6.2.5.tar.xz 134116 BLAKE2B 2c3cfff31e795d3f7eda5158ca811ea2a9c989e907c6392bcbb40e17f896311a894549b965a9e552a254fe2380364f5c8d61f380a8f3c2b82896298e47690e18 SHA512 5c21be7b6ad89c99221b8f02e92f54125d39c7e83890398b0509d5b637af077c193b57b05ae7a814f77d39b4ba3692c36698306968072e28aeb3dc5e8bc546e6 -DIST kwayland-6.3.2.tar.xz 134084 BLAKE2B 2ab3f233ae1a028d589dfd51963d28fa88f9b32a854a2fe7ef61199896761270c0dde4112e42e4b740c64a6eb0be68ac505a22290ce898fa25bd11e053c7d9ab SHA512 d97e757d1f002c073bbe5dce86983fb3d2e30385c690fc97329a6f4201241ed7dde27cf1bd3243eb1fcf3de26a0cdbfc5c379b62e30d43586ef3b10f95696992 +DIST kwayland-6.3.3.tar.xz 134080 BLAKE2B 66d804bc37e6acf80a0910d5c2a5aa2339c66f15021ddcf61bd6d70e50f7b4135d4c18bf7d2d97569339ea4eb4d495f39b9f2c02f501d36ab2651922f6b3699d SHA512 38fe7a16b4fb98e6b7a7c13d126f9f2efeba6035c5d9d688b43d57c9d875433fcfa440d7f8ec035797283c317a6182263bc351a7afb20d9a3f1e3c6c0568e15f diff --git a/kde-plasma/kwayland/kwayland-6.3.2.ebuild b/kde-plasma/kwayland/kwayland-6.3.3.ebuild index f98e74678e32..f98e74678e32 100644 --- a/kde-plasma/kwayland/kwayland-6.3.2.ebuild +++ b/kde-plasma/kwayland/kwayland-6.3.3.ebuild diff --git a/kde-plasma/kwin/Manifest b/kde-plasma/kwin/Manifest index c56cb0308b8b..339d594b22a0 100644 --- a/kde-plasma/kwin/Manifest +++ b/kde-plasma/kwin/Manifest @@ -1,2 +1,2 @@ DIST kwin-6.2.5.tar.xz 8563352 BLAKE2B 9a1ac80c337722d6a6411c338ac31f14f542f6d84505cc65c66e1ceedea2b88cbc9dabba68c42acf5dbace28b62e04cadc09a010a7972bc5ceb22d79344033fe SHA512 06a78d41003f2fb676f3cadca21a1e26a0006b78dcd9188c09d92fbc45f934aa9e923a69013b1cb496396d924a1848feb136d3016d64e14eca9cc525743b095b -DIST kwin-6.3.2.1.tar.xz 8869196 BLAKE2B 2f1578278c8c977cbd6e1f149e6bd83290779242a1cddad8596e8a7f71f5a439ea65f681772aff0dcd47c6d2283a50c5474f82f0bab606c31bd072b75de8f698 SHA512 551e3860babe05d69f267075fa4cd99b4ce8864717b62f99e09febc63df500c7d355e2f4d59d911e833023e43eb85f9c0fd02190622c26f5361d2b7bdb785894 +DIST kwin-6.3.3.tar.xz 8968752 BLAKE2B 7e27db7b93ec4b37bb139adf2e37a969525ed37b7a4ac51e529129ca433891afdd262ccf65a1bbcc9baf885c94ccefcdf397302a291b146117247110eb5c25f0 SHA512 1504a71162e90f458a42e86646e816234c4aa98b1bb884670545ae9e47b6d567d6b27dd09ac6a7337f84cb06db28d2c43e7997d0a65c9a3ac243ede8715183ea diff --git a/kde-plasma/kwin/files/kwin-6.3.2.1-another-crashfix.patch b/kde-plasma/kwin/files/kwin-6.3.2.1-another-crashfix.patch deleted file mode 100644 index 7a0330c4deed..000000000000 --- a/kde-plasma/kwin/files/kwin-6.3.2.1-another-crashfix.patch +++ /dev/null @@ -1,34 +0,0 @@ -https://bugs.kde.org/show_bug.cgi?id=501181 - -(This is a minimal backport of https://invent.kde.org/plasma/kwin/-/commit/e652bdd3118fa55563caf0125deb0999f5ebd503, -but given the next release is on Tuesday, let's just go with the thing that -is confirmed to work.) - -From d63e308604d6b45f5c572acd4f299e2c5cfbab44 Mon Sep 17 00:00:00 2001 -From: Mike Lothian <mike@fireburn.co.uk> -Date: Fri, 7 Mar 2025 15:24:00 +0000 -Subject: [PATCH] Quick fix - ---- - src/backends/drm/drm_gpu.cpp | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/src/backends/drm/drm_gpu.cpp b/src/backends/drm/drm_gpu.cpp -index 4599b3d..a47f5ce 100644 ---- a/src/backends/drm/drm_gpu.cpp -+++ b/src/backends/drm/drm_gpu.cpp -@@ -443,6 +443,10 @@ DrmPipeline::Error DrmGpu::testPendingConfiguration() - - DrmPipeline::Error DrmGpu::testPipelines() - { -+ if (m_pipelines.isEmpty()) { -+ // nothing to do -+ return DrmPipeline::Error::None; -+ } - QList<DrmPipeline *> inactivePipelines; - std::copy_if(m_pipelines.constBegin(), m_pipelines.constEnd(), std::back_inserter(inactivePipelines), [](const auto pipeline) { - return pipeline->enabled() && !pipeline->active(); --- -2.48.1 - - diff --git a/kde-plasma/kwin/files/kwin-6.3.2.1-crashfix.patch b/kde-plasma/kwin/files/kwin-6.3.2.1-crashfix.patch deleted file mode 100644 index ef481cc513f3..000000000000 --- a/kde-plasma/kwin/files/kwin-6.3.2.1-crashfix.patch +++ /dev/null @@ -1,46 +0,0 @@ -commit b97892417ec1649c780e85e403842a77a6ab87b6 -Author: Xaver Hugl <xaver.hugl@gmail.com> -Date: Wed Feb 26 12:58:09 2025 +0100 - - backends/drm: fix testing for more connectors than CRTCs - - The connectors may not actually be enabled, so the checks could sometimes result in - wrongly returning Error::NotEnoughCrtcs. - - BUG: 500819 - CCBUG: 500797 - - (cherry picked from commit aa11d89a90bc4eb77bfe191a2cadede4d957d2a9) - -diff --git a/src/backends/drm/drm_gpu.cpp b/src/backends/drm/drm_gpu.cpp -index 9291b5296d..4599b3dc46 100644 ---- a/src/backends/drm/drm_gpu.cpp -+++ b/src/backends/drm/drm_gpu.cpp -@@ -345,15 +345,7 @@ void DrmGpu::removeOutputs() - - DrmPipeline::Error DrmGpu::checkCrtcAssignment(QList<DrmConnector *> connectors, const QList<DrmCrtc *> &crtcs) - { -- if (connectors.isEmpty() || crtcs.isEmpty()) { -- if (m_pipelines.isEmpty()) { -- // nothing to do -- return DrmPipeline::Error::None; -- } -- if (!connectors.empty()) { -- // we have no crtcs left to drive the remaining connectors -- return DrmPipeline::Error::InvalidArguments; -- } -+ if (connectors.isEmpty()) { - return testPipelines(); - } - auto connector = connectors.takeFirst(); -@@ -363,6 +355,10 @@ DrmPipeline::Error DrmGpu::checkCrtcAssignment(QList<DrmConnector *> connectors, - pipeline->setCrtc(nullptr); - return checkCrtcAssignment(connectors, crtcs); - } -+ if (crtcs.isEmpty()) { -+ // we have no crtc left to drive this connector -+ return DrmPipeline::Error::InvalidArguments; -+ } - DrmCrtc *currentCrtc = nullptr; - if (m_atomicModeSetting) { - // try the crtc that this connector is already connected to first diff --git a/kde-plasma/kwin/files/kwin-6.3.3-remove-pragma.patch b/kde-plasma/kwin/files/kwin-6.3.3-remove-pragma.patch new file mode 100644 index 000000000000..556a41681423 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-6.3.3-remove-pragma.patch @@ -0,0 +1,29 @@ +From a3249e495907f0090119fc92e5d33530e0c4c285 Mon Sep 17 00:00:00 2001 +From: Ismael Asensio <isma.af@gmail.com> +Date: Tue, 11 Mar 2025 20:48:15 +0100 +Subject: [PATCH] kcms/rules: Remove pragma on OptionsComboBox + +It is suggested by qmlls, but this seems to cause graphical artifacts +on some systems, rendering the comboboxes unusable + +BUG: 501357 +--- + src/kcms/rules/ui/OptionsComboBox.qml | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/src/kcms/rules/ui/OptionsComboBox.qml b/src/kcms/rules/ui/OptionsComboBox.qml +index 5a5d02eee9..d8a2eb8bf0 100644 +--- a/src/kcms/rules/ui/OptionsComboBox.qml ++++ b/src/kcms/rules/ui/OptionsComboBox.qml +@@ -11,8 +11,6 @@ import QtQuick.Controls as QQC2 + import org.kde.kirigami 2.10 as Kirigami + import org.kde.kcms.kwinrules + +-pragma ComponentBehavior: Bound +- + + QQC2.ComboBox { + id: optionsCombo +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-6.3.3-version.patch b/kde-plasma/kwin/files/kwin-6.3.3-version.patch new file mode 100644 index 000000000000..cfb544b4d7fc --- /dev/null +++ b/kde-plasma/kwin/files/kwin-6.3.3-version.patch @@ -0,0 +1,24 @@ +From 0005710eccdf702915ec776830c79102a6b66f1b Mon Sep 17 00:00:00 2001 +From: Jonathan Riddell <jr@jriddell.org> +Date: Tue, 25 Feb 2025 16:45:29 +0000 +Subject: [PATCH] update version for new release + +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 6ab65f06bf8..61932a493c1 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,6 +1,6 @@ + cmake_minimum_required(VERSION 3.16) + +-set(PROJECT_VERSION "6.3.2") # Handled by release scripts ++set(PROJECT_VERSION "6.3.3") # Handled by release scripts + project(KWin VERSION ${PROJECT_VERSION}) + + set(CMAKE_C_STANDARD 99) +-- +GitLab + diff --git a/kde-plasma/kwin/kwin-6.3.2.1-r1.ebuild b/kde-plasma/kwin/kwin-6.3.2.1-r1.ebuild deleted file mode 100644 index 1f63d7f5a050..000000000000 --- a/kde-plasma/kwin/kwin-6.3.2.1-r1.ebuild +++ /dev/null @@ -1,152 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -ECM_HANDBOOK="optional" -ECM_TEST="true" -KFMIN=6.10.0 -QTMIN=6.8.1 -inherit ecm fcaps plasma.kde.org xdg - -DESCRIPTION="Flexible, composited Window Manager for windowing systems on Linux" - -LICENSE="GPL-2+" -SLOT="6" -KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" -IUSE="accessibility gles2-only lock screencast +shortcuts systemd" - -RESTRICT="test" - -# qtbase slot op: GuiPrivate use in tabbox -COMMON_DEPEND=" - dev-libs/libei - >=dev-libs/libinput-1.27:= - >=dev-libs/wayland-1.23.0 - >=dev-qt/qt5compat-${QTMIN}:6[qml] - >=dev-qt/qtbase-${QTMIN}:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] - >=dev-qt/qtdeclarative-${QTMIN}:6 - >=dev-qt/qtsensors-${QTMIN}:6 - >=dev-qt/qtshadertools-${QTMIN}:6 - >=dev-qt/qtsvg-${QTMIN}:6 - >=kde-frameworks/kauth-${KFMIN}:6 - >=kde-frameworks/kcmutils-${KFMIN}:6 - >=kde-frameworks/kcolorscheme-${KFMIN}:6 - >=kde-frameworks/kconfig-${KFMIN}:6[qml] - >=kde-frameworks/kconfigwidgets-${KFMIN}:6 - >=kde-frameworks/kcoreaddons-${KFMIN}:6 - >=kde-frameworks/kcrash-${KFMIN}:6 - >=kde-frameworks/kdbusaddons-${KFMIN}:6 - >=kde-frameworks/kdeclarative-${KFMIN}:6 - >=kde-frameworks/kglobalaccel-${KFMIN}:6=[X(+)] - >=kde-frameworks/kguiaddons-${KFMIN}:6[wayland] - >=kde-frameworks/ki18n-${KFMIN}:6 - >=kde-frameworks/kidletime-${KFMIN}:6=[wayland] - >=kde-frameworks/knewstuff-${KFMIN}:6 - >=kde-frameworks/knotifications-${KFMIN}:6 - >=kde-frameworks/kpackage-${KFMIN}:6 - >=kde-frameworks/kservice-${KFMIN}:6 - >=kde-frameworks/ksvg-${KFMIN}:6 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 - >=kde-frameworks/kwindowsystem-${KFMIN}:6=[wayland,X] - >=kde-frameworks/kxmlgui-${KFMIN}:6 - >=kde-plasma/breeze-${KDE_CATV}:6 - >=kde-plasma/kdecoration-${KDE_CATV}:6 - >=kde-plasma/kwayland-${KDE_CATV}:6 - >=kde-plasma/plasma-activities-${KDE_CATV}:6 - media-libs/fontconfig - media-libs/freetype - media-libs/lcms:2 - media-libs/libcanberra - >=media-libs/libdisplay-info-0.2.0:= - media-libs/libepoxy - media-libs/libglvnd - >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] - virtual/libudev:= - x11-libs/libX11 - x11-libs/libXi - >=x11-libs/libdrm-2.4.116 - >=x11-libs/libxcb-1.10:= - >=x11-libs/libxcvt-0.1.1 - >=x11-libs/libxkbcommon-1.5.0 - x11-libs/xcb-util-cursor - x11-libs/xcb-util-keysyms - x11-libs/xcb-util-wm - accessibility? ( media-libs/libqaccessibilityclient:6 ) - gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) - lock? ( >=kde-plasma/kscreenlocker-${KDE_CATV}:6 ) - screencast? ( >=media-video/pipewire-1.2.0:= ) - shortcuts? ( >=kde-plasma/kglobalacceld-${KDE_CATV}:6 ) -" -RDEPEND="${COMMON_DEPEND} - !kde-plasma/kdeplasma-addons:5 - >=dev-qt/qtmultimedia-${QTMIN}:6[qml] - || ( - dev-qt/qtmultimedia:6[ffmpeg] - ( - dev-qt/qtmultimedia:6[gstreamer] - media-plugins/gst-plugins-soup:1.0 - ) - ) - >=kde-frameworks/kirigami-${KFMIN}:6 - >=kde-frameworks/kitemmodels-${KFMIN}:6 - >=kde-plasma/aurorae-${KDE_CATV}:6 - >=kde-plasma/libplasma-${KDE_CATV}:6[wayland(+)] - sys-apps/hwdata - >=x11-base/xwayland-23.1.0[libei] -" -DEPEND="${COMMON_DEPEND} - >=dev-libs/plasma-wayland-protocols-1.16.0 - >=dev-libs/wayland-protocols-1.38 - >=dev-qt/qttools-${QTMIN}:6[widgets] - >=dev-qt/qtbase-${QTMIN}:6[concurrent] - >=dev-qt/qtwayland-${QTMIN}:6 - x11-base/xorg-proto - x11-libs/xcb-util-image - test? ( screencast? ( >=kde-plasma/kpipewire-${KDE_CATV}:6 ) ) -" -BDEPEND=" - >=dev-qt/qtwayland-${QTMIN}:6 - dev-util/wayland-scanner - >=kde-frameworks/kcmutils-${KFMIN}:6 -" - -# https://bugs.gentoo.org/941628 -# -m 0755 to avoid suid with USE="-filecaps" -FILECAPS=( -m 0755 cap_sys_nice=ep usr/bin/kwin_wayland ) - -PATCHES=( "${FILESDIR}/${P}-crashfix.patch" ) - -src_prepare() { - ecm_src_prepare - - # TODO: try to get a build switch upstreamed - if ! use screencast; then - sed -e "s/^pkg_check_modules.*PipeWire/#&/" -i CMakeLists.txt || die - fi - - # TODO: try to get a build switch upstreamed - if ! use systemd; then - sed -e "s/^pkg_check_modules.*libsystemd/#&/" -i CMakeLists.txt || die - fi - - cmake_run_in src/plugins cmake_comment_add_subdirectory kdecorations -} - -src_configure() { - local mycmakeargs=( - # TODO: KWIN_BUILD_X11=$(usex xwayland) KWIN_BUILD_X11_BACKEND=$(usex X) - # KWIN_BUILD_NOTIFICATIONS exists, but kdeclarative still hard-depends on it - $(cmake_use_find_package accessibility QAccessibilityClient6) - -DCMAKE_DISABLE_FIND_PACKAGE_Libcap=ON - -DKWIN_BUILD_SCREENLOCKER=$(usex lock) - -DKWIN_BUILD_GLOBALSHORTCUTS=$(usex shortcuts) - ) - - ecm_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - fcaps_pkg_postinst -} diff --git a/kde-plasma/kwin/kwin-6.3.2.1.ebuild b/kde-plasma/kwin/kwin-6.3.2.1.ebuild deleted file mode 100644 index ad356a50bab6..000000000000 --- a/kde-plasma/kwin/kwin-6.3.2.1.ebuild +++ /dev/null @@ -1,150 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -ECM_HANDBOOK="optional" -ECM_TEST="true" -KFMIN=6.10.0 -QTMIN=6.8.1 -inherit ecm fcaps plasma.kde.org xdg - -DESCRIPTION="Flexible, composited Window Manager for windowing systems on Linux" - -LICENSE="GPL-2+" -SLOT="6" -KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" -IUSE="accessibility gles2-only lock screencast +shortcuts systemd" - -RESTRICT="test" - -# qtbase slot op: GuiPrivate use in tabbox -COMMON_DEPEND=" - dev-libs/libei - >=dev-libs/libinput-1.27:= - >=dev-libs/wayland-1.23.0 - >=dev-qt/qt5compat-${QTMIN}:6[qml] - >=dev-qt/qtbase-${QTMIN}:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] - >=dev-qt/qtdeclarative-${QTMIN}:6 - >=dev-qt/qtsensors-${QTMIN}:6 - >=dev-qt/qtshadertools-${QTMIN}:6 - >=dev-qt/qtsvg-${QTMIN}:6 - >=kde-frameworks/kauth-${KFMIN}:6 - >=kde-frameworks/kcmutils-${KFMIN}:6 - >=kde-frameworks/kcolorscheme-${KFMIN}:6 - >=kde-frameworks/kconfig-${KFMIN}:6[qml] - >=kde-frameworks/kconfigwidgets-${KFMIN}:6 - >=kde-frameworks/kcoreaddons-${KFMIN}:6 - >=kde-frameworks/kcrash-${KFMIN}:6 - >=kde-frameworks/kdbusaddons-${KFMIN}:6 - >=kde-frameworks/kdeclarative-${KFMIN}:6 - >=kde-frameworks/kglobalaccel-${KFMIN}:6=[X(+)] - >=kde-frameworks/kguiaddons-${KFMIN}:6[wayland] - >=kde-frameworks/ki18n-${KFMIN}:6 - >=kde-frameworks/kidletime-${KFMIN}:6=[wayland] - >=kde-frameworks/knewstuff-${KFMIN}:6 - >=kde-frameworks/knotifications-${KFMIN}:6 - >=kde-frameworks/kpackage-${KFMIN}:6 - >=kde-frameworks/kservice-${KFMIN}:6 - >=kde-frameworks/ksvg-${KFMIN}:6 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 - >=kde-frameworks/kwindowsystem-${KFMIN}:6=[wayland,X] - >=kde-frameworks/kxmlgui-${KFMIN}:6 - >=kde-plasma/breeze-${KDE_CATV}:6 - >=kde-plasma/kdecoration-${KDE_CATV}:6 - >=kde-plasma/kwayland-${KDE_CATV}:6 - >=kde-plasma/plasma-activities-${KDE_CATV}:6 - media-libs/fontconfig - media-libs/freetype - media-libs/lcms:2 - media-libs/libcanberra - >=media-libs/libdisplay-info-0.2.0:= - media-libs/libepoxy - media-libs/libglvnd - >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] - virtual/libudev:= - x11-libs/libX11 - x11-libs/libXi - >=x11-libs/libdrm-2.4.116 - >=x11-libs/libxcb-1.10:= - >=x11-libs/libxcvt-0.1.1 - >=x11-libs/libxkbcommon-1.5.0 - x11-libs/xcb-util-cursor - x11-libs/xcb-util-keysyms - x11-libs/xcb-util-wm - accessibility? ( media-libs/libqaccessibilityclient:6 ) - gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) - lock? ( >=kde-plasma/kscreenlocker-${KDE_CATV}:6 ) - screencast? ( >=media-video/pipewire-1.2.0:= ) - shortcuts? ( >=kde-plasma/kglobalacceld-${KDE_CATV}:6 ) -" -RDEPEND="${COMMON_DEPEND} - !kde-plasma/kdeplasma-addons:5 - >=dev-qt/qtmultimedia-${QTMIN}:6[qml] - || ( - dev-qt/qtmultimedia:6[ffmpeg] - ( - dev-qt/qtmultimedia:6[gstreamer] - media-plugins/gst-plugins-soup:1.0 - ) - ) - >=kde-frameworks/kirigami-${KFMIN}:6 - >=kde-frameworks/kitemmodels-${KFMIN}:6 - >=kde-plasma/aurorae-${KDE_CATV}:6 - >=kde-plasma/libplasma-${KDE_CATV}:6[wayland(+)] - sys-apps/hwdata - >=x11-base/xwayland-23.1.0[libei] -" -DEPEND="${COMMON_DEPEND} - >=dev-libs/plasma-wayland-protocols-1.16.0 - >=dev-libs/wayland-protocols-1.38 - >=dev-qt/qttools-${QTMIN}:6[widgets] - >=dev-qt/qtbase-${QTMIN}:6[concurrent] - >=dev-qt/qtwayland-${QTMIN}:6 - x11-base/xorg-proto - x11-libs/xcb-util-image - test? ( screencast? ( >=kde-plasma/kpipewire-${KDE_CATV}:6 ) ) -" -BDEPEND=" - >=dev-qt/qtwayland-${QTMIN}:6 - dev-util/wayland-scanner - >=kde-frameworks/kcmutils-${KFMIN}:6 -" - -# https://bugs.gentoo.org/941628 -# -m 0755 to avoid suid with USE="-filecaps" -FILECAPS=( -m 0755 cap_sys_nice=ep usr/bin/kwin_wayland ) - -src_prepare() { - ecm_src_prepare - - # TODO: try to get a build switch upstreamed - if ! use screencast; then - sed -e "s/^pkg_check_modules.*PipeWire/#&/" -i CMakeLists.txt || die - fi - - # TODO: try to get a build switch upstreamed - if ! use systemd; then - sed -e "s/^pkg_check_modules.*libsystemd/#&/" -i CMakeLists.txt || die - fi - - cmake_run_in src/plugins cmake_comment_add_subdirectory kdecorations -} - -src_configure() { - local mycmakeargs=( - # TODO: KWIN_BUILD_X11=$(usex xwayland) KWIN_BUILD_X11_BACKEND=$(usex X) - # KWIN_BUILD_NOTIFICATIONS exists, but kdeclarative still hard-depends on it - $(cmake_use_find_package accessibility QAccessibilityClient6) - -DCMAKE_DISABLE_FIND_PACKAGE_Libcap=ON - -DKWIN_BUILD_SCREENLOCKER=$(usex lock) - -DKWIN_BUILD_GLOBALSHORTCUTS=$(usex shortcuts) - ) - - ecm_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - fcaps_pkg_postinst -} diff --git a/kde-plasma/kwin/kwin-6.3.2.1-r2.ebuild b/kde-plasma/kwin/kwin-6.3.3.ebuild index 1c265dfd90bd..6dad38dd8eb3 100644 --- a/kde-plasma/kwin/kwin-6.3.2.1-r2.ebuild +++ b/kde-plasma/kwin/kwin-6.3.3.ebuild @@ -116,8 +116,8 @@ BDEPEND=" FILECAPS=( -m 0755 cap_sys_nice=ep usr/bin/kwin_wayland ) PATCHES=( - "${FILESDIR}/${P}-crashfix.patch" - "${FILESDIR}/${P}-another-crashfix.patch" + "${FILESDIR}/${P}-version.patch" # temp. downstream fix + "${FILESDIR}/${P}-remove-pragma.patch" # MR 7317, KDE-Bug: 501357 ) src_prepare() { diff --git a/kde-plasma/kwrited/Manifest b/kde-plasma/kwrited/Manifest index d84140d2beb2..97f5dd7cb2b0 100644 --- a/kde-plasma/kwrited/Manifest +++ b/kde-plasma/kwrited/Manifest @@ -1,2 +1,2 @@ DIST kwrited-6.2.5.tar.xz 23736 BLAKE2B 63136085dff8f2cf0ed00c73d29d95f61c8a0c3c23f8a205e9b5996328bf3fa7322ea3bed3b0b1c5653d092bae790fca6cc4cf9b16c82634ad52d45bb229b04f SHA512 298f32ff2d95e8c2bd27df1700ae277428b9a21157c92eddca6ad98e9c7284f52a7d94918e5c90a771c23abc63db37a7b1ffa3ef435a71565cefa9c202de0f8f -DIST kwrited-6.3.2.tar.xz 23672 BLAKE2B 78350a2e144d7b8ddf35772da1c54e2afe889a6bf1af1080d299f43eadaf46c75a8cfff829da5fd644600b689c3cd0060ef4dac0ad280f6f207990ca7cd47f94 SHA512 767f4859d5628e763007c6c1eb732abe78e92a9e4f51ba5724d421fa1b6b652d8e6d642f0b77910b91fe3d3432a6ab510f87b34c0c8bba08421c901adcd4d30d +DIST kwrited-6.3.3.tar.xz 23672 BLAKE2B 3ed777fdc68c471e66842b1ecf7933b6e309338e023fbbc613c1dd0804a38e8109d7b731b690822fe1938586f290ac49f3a6546e9b6299147348941952f96222 SHA512 99389877f5e9610d21406ddd996a77f83416b3ab26aebc1ccf7350bc8a18f498b7542ecc29b871ea877da5075109fd02a413be7fadc7add4d59afbc924078896 diff --git a/kde-plasma/kwrited/kwrited-6.3.2.ebuild b/kde-plasma/kwrited/kwrited-6.3.3.ebuild index 6cbac89091ab..6cbac89091ab 100644 --- a/kde-plasma/kwrited/kwrited-6.3.2.ebuild +++ b/kde-plasma/kwrited/kwrited-6.3.3.ebuild diff --git a/kde-plasma/layer-shell-qt/Manifest b/kde-plasma/layer-shell-qt/Manifest index dd2b059452fd..35af029326a1 100644 --- a/kde-plasma/layer-shell-qt/Manifest +++ b/kde-plasma/layer-shell-qt/Manifest @@ -1,2 +1,2 @@ DIST layer-shell-qt-6.2.5.tar.xz 35972 BLAKE2B c9ad480a3af9d81a925a7bd5c02407141f3205251d2844438774e504aa6ad45f4da400de901816cf9083f9424d50038eb79814132e2d475216ffee50805d07bf SHA512 6eb158ceea1bb2ddb4a9f63a76d4d3082c2edde47a667485bfc01a27cfcefdd77ae093f254c7e5e7e9cbe8de59acbf4eee2f8f10f8a4091bee77006be7460dc9 -DIST layer-shell-qt-6.3.2.tar.xz 35892 BLAKE2B 833659937e930d161a1e3defcdd67c5ae0bbf76cb3571769e3fb1b2eaaf96d553e21a2552eec064c12c6bf9793aaa95aea30ecbc877d9c825ab8792426ef3b25 SHA512 117ff72ec1399b6b5e5006153f569b637ae965bbeebdb3f73f5ba6bcdd64d5b3c7dc07109a064460ae744b5d7e54d8fdd956c74147c4d065cdc192f2518c8827 +DIST layer-shell-qt-6.3.3.tar.xz 35904 BLAKE2B d8db0168bd9496747115227437c2993a8989d02092d5a3e2a18a34fd5276e905375cda2cb48c3eaaa3dc925df738364df3f20d10f502cb4169f80a2a60fc4751 SHA512 67ad32425cdf3d1f4afe456fea0687a964b80916e459c773312f0a9a4ab96765bd237e5ede6697840d5c75fa50a3bf9d561edf39a96444d57126412020daaa7f diff --git a/kde-plasma/layer-shell-qt/layer-shell-qt-6.3.2.ebuild b/kde-plasma/layer-shell-qt/layer-shell-qt-6.3.3.ebuild index 4520ae59951b..4520ae59951b 100644 --- a/kde-plasma/layer-shell-qt/layer-shell-qt-6.3.2.ebuild +++ b/kde-plasma/layer-shell-qt/layer-shell-qt-6.3.3.ebuild diff --git a/kde-plasma/libkscreen/Manifest b/kde-plasma/libkscreen/Manifest index bb33ff23a9ca..1324c19beec5 100644 --- a/kde-plasma/libkscreen/Manifest +++ b/kde-plasma/libkscreen/Manifest @@ -1,2 +1,2 @@ DIST libkscreen-6.2.5.tar.xz 119352 BLAKE2B 98ad034f4d3f23870ecc2da9dc48a08c3d709d563bce36cb7fccc5fc2fa4f79729d4f907ddd7faec556ed39138a28158490e5e27fb97c7663b6aff4b699088e3 SHA512 4ef1a196628194a8d34ad3e1cb0c2c381dac81ac382f3d7386474608fdb7329c54b9e791b27fa2009808a41cd11bf1ee3c1df60ad2fff025218201a6baec8786 -DIST libkscreen-6.3.2.tar.xz 120756 BLAKE2B e3806f9feb15eb3cbab9aa899cb8b3ba7ffd874fd122ec1932bec9598879587f17f7d16f012ba16781411cc6379f8d4b47d89c387bc433cb72ba06e9edb094cb SHA512 cb28dc42e7f587a87dc0819333007261028b52e8650f4836226b5b1a99d0089416707b9c301408d9c0189778168ebb24f8ac9820aa473e1b279303c5871cf05e +DIST libkscreen-6.3.3.tar.xz 120780 BLAKE2B 731ab1936ccbf0f9cb60ac344d3f56c8570281abd463ca7e6b04a788207da06550496ac6fdfec2043a1f358f1bc0bec80ac1514d329e888a59bb1257877f8fc8 SHA512 91558805e87a8233e31abd02012e1763a9252c0b8fcbc087166a0bf792dc3d621872d8f922cf56e7fef3f6f91c1156e83880af534e74361d844ae59776b34d14 diff --git a/kde-plasma/libkscreen/libkscreen-6.3.2.ebuild b/kde-plasma/libkscreen/libkscreen-6.3.3.ebuild index e3d080a12a96..e3d080a12a96 100644 --- a/kde-plasma/libkscreen/libkscreen-6.3.2.ebuild +++ b/kde-plasma/libkscreen/libkscreen-6.3.3.ebuild diff --git a/kde-plasma/libksysguard/Manifest b/kde-plasma/libksysguard/Manifest index 9f50ae45e76d..3bf73c44e516 100644 --- a/kde-plasma/libksysguard/Manifest +++ b/kde-plasma/libksysguard/Manifest @@ -1,2 +1,2 @@ DIST libksysguard-6.2.5.tar.xz 316092 BLAKE2B 2120dd96fc2225013006db95f208d2a16ff7f3d0addf7ed150248311d8a2428b7d1a2748c6827c656411236beb9734f3899370137339bcc622440f45cec1ff05 SHA512 8ca81df27cfc65a5dcac987e13a24086d98c6f8e228da613806f7310a4dc9a66ded1abc782e6ded3fc81de9fe9e6d1d33433b2a23db7cd0fc401ed9632cea8aa -DIST libksysguard-6.3.2.tar.xz 328944 BLAKE2B 60dba498d591888884efbe4600f7d8ce740b6afd50fac10b51d126fcc6f05a9d5b228986f58a8548de62e32b0df0793ffb1516c44f798261f2127e41eb81707b SHA512 e27e4c296ba4290f2f6b5c75c9abfa4031b612040460caf4492d52c0808cd1e09f901df630a0af27e93a602c698985225b07e21a5484228745256a1e871375c9 +DIST libksysguard-6.3.3.tar.xz 328704 BLAKE2B 44078f1bfd41bb4cc69a26c332d99e64ffa64ec7a41cecf5e8c4d01df462e0b63d262c7f6099e6c84d4d503d0e4a3233bdbed47c347dcef6dc3c2bacd1348a3c SHA512 2465c894d75347d2a99db75330fb3d9259b7dd0aa7223cd49ad316435e2e7265fd13029b056d26504d00776ef9e53502a748159268170c4eae339e7d848d09dc diff --git a/kde-plasma/libksysguard/libksysguard-6.3.2.ebuild b/kde-plasma/libksysguard/libksysguard-6.3.3.ebuild index a303e013def4..a303e013def4 100644 --- a/kde-plasma/libksysguard/libksysguard-6.3.2.ebuild +++ b/kde-plasma/libksysguard/libksysguard-6.3.3.ebuild diff --git a/kde-plasma/libplasma/Manifest b/kde-plasma/libplasma/Manifest index e3c3d7f0e674..d5eb9d56f21e 100644 --- a/kde-plasma/libplasma/Manifest +++ b/kde-plasma/libplasma/Manifest @@ -1,2 +1,2 @@ DIST libplasma-6.2.5.tar.xz 1970096 BLAKE2B b88752499d55606d6236f2eed2c4641cf5be3686e0ac20ac210e306b0541d6d674e41d8d778dd3fe362d0cb40ad195a7f275e9c64104a3e90bca401081df405f SHA512 07f4fb1091bae5f8006af8666c6348a947a49ee897ad28631d8d51f2e4f49e78bf019ad38d740713ddca3dd58c5e991db9807bb2e67b46542c0b973027565c37 -DIST libplasma-6.3.2.tar.xz 1971824 BLAKE2B 432b4c9fb9680d0d8343524691b8cbd66df829ab80b4e42390ef00945871a61950a2718b014a53e4fcc65523b8dcb1e5ac5d023d2abe837eb5db4d41c4b3c3b8 SHA512 a1968873ec98c9bd9b869be45edd3d046bc1787046b16f6b99ede8311520e71ece92b12ae2d652835eb47f57b8b4ae206e8d788efc40a3800cb988e2bf3be691 +DIST libplasma-6.3.3.tar.xz 1971832 BLAKE2B 13d71da682b73f1d23320e7fea26b912e16fde641d46862e9feae8963af6d54af4682002ef369627e26f289193d67e3bdceb1f7e9b1c2dc70ccecfd23b542321 SHA512 da4a929fc4759ad2fd2d7178c5a6c1163e7e17c73fbe73d66cf8e190243208e8ff55929f79d8877fee8702e19971052a5135ffa43e4d9213d4f69e5d1d7e33df diff --git a/kde-plasma/libplasma/libplasma-6.3.2.ebuild b/kde-plasma/libplasma/libplasma-6.3.3.ebuild index bb0938466c36..bb0938466c36 100644 --- a/kde-plasma/libplasma/libplasma-6.3.2.ebuild +++ b/kde-plasma/libplasma/libplasma-6.3.3.ebuild diff --git a/kde-plasma/milou/Manifest b/kde-plasma/milou/Manifest index 3e17b696eb30..a891e8c87389 100644 --- a/kde-plasma/milou/Manifest +++ b/kde-plasma/milou/Manifest @@ -1,2 +1,2 @@ DIST milou-6.2.5.tar.xz 50072 BLAKE2B 656008f8b96f0dcc120ece8ea2880d4066fe071f2d44993fdbc8c8f40c4ac3dbbe893487e60e52208c804e0520b50124d16a48b3cbad0b177f53f43d5f5fe659 SHA512 e7c56dc45470e039f800748a5d464705ec5cda2568e0075d51bc034c3a116f67955a6c82098ed3233b2661887f38d485014edf1300056aee4996eeafa45db526 -DIST milou-6.3.2.tar.xz 50652 BLAKE2B e48f51a4a255aeeba39066d89ca0e5495c793b1a08f215f74b6362de9ec583b7dd2f234f78cdbeb176652aa93ce35651b46727ef856b501d2db4d817613d1a2e SHA512 1360f8fb7e9fbfb3b028c424d61bb574800b98d2560a9350e3542e9ef1e693e084c30acb4f1cacbe22f5318ef18db0c1c3f317c37ee7a24df4c0b9afefd93206 +DIST milou-6.3.3.tar.xz 50636 BLAKE2B 26cddea1ed3f97cd63631af86fd8d249a55a4ddd0a08835eb8bd4240844c159842da2484a28459857846aa253dddeefff9c452e01372ca3483ab9111653d8cd5 SHA512 b7040d5368c5ec12d81c71a81b01fd43f39a33932e820aeb2589b946ca8de67d14aef098b3ce63df6a1eb590ed152f109ba7935d9417304133bfa43aefdbfc03 diff --git a/kde-plasma/milou/milou-6.3.2.ebuild b/kde-plasma/milou/milou-6.3.3.ebuild index 64a977513ba3..64a977513ba3 100644 --- a/kde-plasma/milou/milou-6.3.2.ebuild +++ b/kde-plasma/milou/milou-6.3.3.ebuild diff --git a/kde-plasma/ocean-sound-theme/Manifest b/kde-plasma/ocean-sound-theme/Manifest index 11b361cb6986..06ca7a0192e7 100644 --- a/kde-plasma/ocean-sound-theme/Manifest +++ b/kde-plasma/ocean-sound-theme/Manifest @@ -1,2 +1,2 @@ DIST ocean-sound-theme-6.2.5.tar.xz 2113172 BLAKE2B 9e17ee84667396a6bc098aeb1387f7d2e62bac0f920b2b048601468e2d54c8781a7e7dfa39a3b61c2ab43f3c5958fdc4336f2575fb61d7ea508c767f0ab4244d SHA512 605812e33f775d5f2653f1228910eeb89b3d5edca160cb718592793768c39aba39f3d7ff3ba620d7df9a7eda66ad665a3ef066a14f6a2209ef4c3897c235f55d -DIST ocean-sound-theme-6.3.2.tar.xz 2117900 BLAKE2B 4053e907706c7aee47091a60db2bb2267987fe22fb83ebd1806e2bd38fa25accd87953eaf64668cba746e9975753dbac11f697c86ca16b2b9fc16a0b2fdd99b9 SHA512 8b466c3ae257aa62d5140c9eb38771742d8ca44314c110d0bbaec85846c21d1fb67bb76237153abb93be4d635b313eb909dee3d5da0148762ebc1ae0d73f30c7 +DIST ocean-sound-theme-6.3.3.tar.xz 2117564 BLAKE2B b693a79611551c091d5532b3bec28eb1a3185393f452c7435346f7cc2ec08bf8ad915f02857c30c3d9124a3759d2b0725f033ced8a70747d089336f8282854d7 SHA512 657ff2a5ea9c26a3fa5d955fb7a01f27ae7d33cb4cb9e20a14dbe4961435ca44c3ffbd0562d3815585ff6f9a2c958177dd282fd0bb35fa372224af3551c01f4b diff --git a/kde-plasma/ocean-sound-theme/ocean-sound-theme-6.3.2.ebuild b/kde-plasma/ocean-sound-theme/ocean-sound-theme-6.3.3.ebuild index 94a2d5ee5496..94a2d5ee5496 100644 --- a/kde-plasma/ocean-sound-theme/ocean-sound-theme-6.3.2.ebuild +++ b/kde-plasma/ocean-sound-theme/ocean-sound-theme-6.3.3.ebuild diff --git a/kde-plasma/oxygen-sounds/Manifest b/kde-plasma/oxygen-sounds/Manifest index 0acf12a1827b..a860d279e233 100644 --- a/kde-plasma/oxygen-sounds/Manifest +++ b/kde-plasma/oxygen-sounds/Manifest @@ -1,2 +1,2 @@ DIST oxygen-sounds-6.2.5.tar.xz 1936604 BLAKE2B 3a121ccb99a900e35f20b7541d20324e6c7dedb94f441d1b402f0a362131255178ded5c3fe4d3ae1fcaa09cb25f933a8eed42fe80da3fe4dd592cbedaabb3987 SHA512 771837fdb6354fb59741da207229b0246dfaeb7e94f54c5dfd454746a996eae8c06286f9836f7bc0e4f54a91f520f07363b08229ba020b87fff7a5205ad4266b -DIST oxygen-sounds-6.3.2.tar.xz 1936380 BLAKE2B 3015bfd6eea83236926fb573b9f2ff3e2f59b835506d8ebb0f1d0e3e9f445984ee90476404df8e021126eff85dec1b6db67e41ca598bec9ea6de3aaaedff38a4 SHA512 410eaac34e0300fff6ed3d182a2b58f2513d1de28552c7e05043ab9b4bb80ee45afc07ae552f942f90e80b9e897fb0a98b092a10f8728d329f9d6305d6efc4e0 +DIST oxygen-sounds-6.3.3.tar.xz 1936252 BLAKE2B ed0f0b919a0dceb96414c0271453f28bbe1e44e7947a3e7a36150fa6ee462da51f3565205e2cc1f8095d32f6541f62deb88d51a7e5dbcf076d63dabdd43dad0d SHA512 8a82ed32b447200dcf86f19dd432711f1bbbec0f9a7ceb3bcbd036fe6ab87588bf808af4f089b87e45da61b314794838e1a617333599c4b30534e6506a8f2e77 diff --git a/kde-plasma/oxygen-sounds/oxygen-sounds-6.3.2.ebuild b/kde-plasma/oxygen-sounds/oxygen-sounds-6.3.3.ebuild index 8ab2b98f7cec..8ab2b98f7cec 100644 --- a/kde-plasma/oxygen-sounds/oxygen-sounds-6.3.2.ebuild +++ b/kde-plasma/oxygen-sounds/oxygen-sounds-6.3.3.ebuild diff --git a/kde-plasma/oxygen/Manifest b/kde-plasma/oxygen/Manifest index eb52f693747e..69f58727dd01 100644 --- a/kde-plasma/oxygen/Manifest +++ b/kde-plasma/oxygen/Manifest @@ -1,2 +1,2 @@ DIST oxygen-6.2.5.tar.xz 2947676 BLAKE2B 481bad1358e4b6eccc6c4b193bcba19c6527beb461e86fc940a688a5c9a923d88e6ac1b21369fc43899d7c31e3a0fed6103cda29c3780658a3ad259a8edf81b7 SHA512 8aba20c4b5df22fd2470733432ecc2ef744f180979ff01288d133145ff30c1015d0aa3c744b2d7026a5962959f11f61ed7119eb4572d642c4f06a75480c5b909 -DIST oxygen-6.3.2.tar.xz 2967588 BLAKE2B 31f60ecc8fe63740abec862da1f6119f050a4d59170b91f255485059e425d1541a3d30e015bec2dadec5f8361c435ff09ce497d43b1f6c36145ddf7105bcb2bf SHA512 bc7863b015630971971672189ef8ea2c6e3379c6c360daa59dad14ea493d25fb359193a2d76547f9edc64a9fe68b9b09676017d4820430d40f0d4424ae064c95 +DIST oxygen-6.3.3.tar.xz 2967400 BLAKE2B 68c4ec24de1f6e3d2224c5a645a1606b257721a09b9648d90dd1889301514c1618b030be37afd7acc14e2efe006d209ba852da598246c64acc71c64e511e2c3c SHA512 8de4266bcb7c367257c67e43d093a78460c897ebf05aac11970fa59f4caee7775f298c74ea870e18a5c9d84cf782bc960d4251869ee2b2db13621dfed7623b3f diff --git a/kde-plasma/oxygen/oxygen-6.3.2.ebuild b/kde-plasma/oxygen/oxygen-6.3.3.ebuild index f362f9e75ec5..f362f9e75ec5 100644 --- a/kde-plasma/oxygen/oxygen-6.3.2.ebuild +++ b/kde-plasma/oxygen/oxygen-6.3.3.ebuild diff --git a/kde-plasma/plasma-activities-stats/Manifest b/kde-plasma/plasma-activities-stats/Manifest index 05ee551b587e..73c7486da141 100644 --- a/kde-plasma/plasma-activities-stats/Manifest +++ b/kde-plasma/plasma-activities-stats/Manifest @@ -1,2 +1,2 @@ DIST plasma-activities-stats-6.2.5.tar.xz 83200 BLAKE2B 6a7d7acd6e44ebbc3b34dda5afc992c8823eef45dd457a9c39aca1f549a230a491bbd7c67efe658e746a052f8b600ba5666ef464b94d9b9467813a2550f1b931 SHA512 945554b8849c8ca8d5af0c24f08aaa35405ff209424dc2f6ee09ff7dd1c96281856db9d2acfd8e09c6666d9aaed78fb3d1de1904f0d3fcb9ee5c4a7c3572086e -DIST plasma-activities-stats-6.3.2.tar.xz 83160 BLAKE2B be745094bc084e4c69b1d353c07e2b94f552a20b6ad984947e0d0d4de1abbe02ec40c5a95f1e4353bb1c31ea0cd96a8c6a79462201dc7fc6d1b96fe332739da0 SHA512 fc2cb6ceeb17c3dd9cc10ddc92debf7759fdd38a7268e3948b610e2a8c718aba6dbcecd5aeefd2f7bea5ca02df2c2f0d552fa91a5a40e2525db31bbe92c06468 +DIST plasma-activities-stats-6.3.3.tar.xz 83152 BLAKE2B fcd8cc769e90351923c8bcfefb17bdb93e402bce082a9cd457c6cef8c37a071c4b3438070639d7d9226a788b66d0b2f906930cfcbcbcbb791536cb924a50ddb8 SHA512 4910c55e5f3d0f364fa3f070626561815aed121bbe7f5deef85cf2f7e68b8910e7fe92b7b6f861f93afc172ca50a47d6e96aa81b2d57b7538fcbfd840141639f diff --git a/kde-plasma/plasma-activities-stats/plasma-activities-stats-6.3.2.ebuild b/kde-plasma/plasma-activities-stats/plasma-activities-stats-6.3.3.ebuild index c903b5e0df37..c903b5e0df37 100644 --- a/kde-plasma/plasma-activities-stats/plasma-activities-stats-6.3.2.ebuild +++ b/kde-plasma/plasma-activities-stats/plasma-activities-stats-6.3.3.ebuild diff --git a/kde-plasma/plasma-activities/Manifest b/kde-plasma/plasma-activities/Manifest index 74b783884e47..e3afd6620192 100644 --- a/kde-plasma/plasma-activities/Manifest +++ b/kde-plasma/plasma-activities/Manifest @@ -1,3 +1,3 @@ DIST kactivities-5.116.0.tar.xz 73556 BLAKE2B 16a978a9df89bb74aa97553e53c7cd4a1ac69c99868a381090b46d37702cc38c847ae404b989adee9b00511f228ffa07b4e5b830802f9aa923d0f79508ea24ff SHA512 d36755cbf3e28262086da2d737c99eb6829c75c374972b97f8dfa7ba0f5d2c02c4d00e833702d23c04d02a6883d14735950cbdc0d92bb6dfa3fe615a488d5adf DIST plasma-activities-6.2.5.tar.xz 66752 BLAKE2B 77a4c9da37e9b8c8efa38803ed7c1465264efebd8240f4bb355a9f78e49c55711f8101b9c4673cfde5fea783ecc3ba993f60ead7b2eb5bceb5c0ef9f7c1059ea SHA512 d5d5db6d953e82177b1719b5b8b43c8d90432aae2bde10a571e10899f35a1f0e16e33e383ff0617d792a3725cc3da50eba14ef34f44ba45b2474ac37fad334fb -DIST plasma-activities-6.3.2.tar.xz 66684 BLAKE2B 3eecfcd6fcb5e4398a49c2e0ccc602079d7305c2fa8d067b48f4a83744e15f0f6d74e68a26d5f1b41fe44bf85a350d708c5fb599612f7b3ee8979d7bb643d272 SHA512 78d26f069b50756d8d2151f4e353f0ca161bf798422d51cbe11780d9382731ddf9d6944938fc3f740139000e89cea324d03754c40c00eb56a08a8bc7d575fc18 +DIST plasma-activities-6.3.3.tar.xz 66716 BLAKE2B 02eb4c63ea4bc0239554713296de5e012c985ae8ba956c40de0c45eb43d0b88a8a6eb241e805f14eed7ed5a7a7b8be8eb79a5b08b4a66526d58b24ac36d967d4 SHA512 f011bbc39b97ea7eac87f31a2873651a48e4efa247c83cf3dcd13353d4fb8e52ab87817a946b85938ca6a04f57b7c244a8d9ec1c67f5cbdf362e21ed3626a917 diff --git a/kde-plasma/plasma-activities/plasma-activities-6.3.2.ebuild b/kde-plasma/plasma-activities/plasma-activities-6.3.3.ebuild index 2ab59ece4849..2ab59ece4849 100644 --- a/kde-plasma/plasma-activities/plasma-activities-6.3.2.ebuild +++ b/kde-plasma/plasma-activities/plasma-activities-6.3.3.ebuild diff --git a/kde-plasma/plasma-browser-integration/Manifest b/kde-plasma/plasma-browser-integration/Manifest index 8e5c1977a46e..4418be31f4e5 100644 --- a/kde-plasma/plasma-browser-integration/Manifest +++ b/kde-plasma/plasma-browser-integration/Manifest @@ -1,2 +1,2 @@ DIST plasma-browser-integration-6.2.5.tar.xz 223716 BLAKE2B 91ae20f15fe805544dc58603438137644e5baa6655f8516be3a5bf40fc74117e227dee2d0ee2e772b0d1046c37892c78736dd96db2b093983437e405857a10c7 SHA512 7e7dfe77aa87b1d53d758706b9cd9bf9a76ee4a72fc2e8f64e9e3e342810dd454596709d46475db726c72025a00a9d3945fe5ad20ace169b26c37edd1baeeb96 -DIST plasma-browser-integration-6.3.2.tar.xz 233672 BLAKE2B 50c1463ee9fdb52fef13ce5e5f4a8e297f0b2536f035f5fbb3315b4ba3a2d76b8f8e27e5fd257348d55077b5060accda936b9cce061f20d4f92b7ca4fbeedbc2 SHA512 35cc14301e6fd894883e86c7fc709deba4db453dcd15dd718ebe5b92588d9c069d933918f350ca1bba7600fee6fd322a0e6c94d471199b7c6bdd7325d41c98ab +DIST plasma-browser-integration-6.3.3.tar.xz 233672 BLAKE2B 46598361c8d6f16b6ae79d3bee7dbc446c7504f6a8ee75149e009e52fb29facbe55832fe4fa09fc32d1e1ce68fa86bfb61192daa864edf298ce3188f68460953 SHA512 70476ff01331d7b961fd85ef263c9c7225627bfa1f6797af6a17905ef4888fa31185ad153aba7a725ae36beae8af2dd083fe46c0e88bdb12b47dde31f7390853 diff --git a/kde-plasma/plasma-browser-integration/plasma-browser-integration-6.3.2.ebuild b/kde-plasma/plasma-browser-integration/plasma-browser-integration-6.3.3.ebuild index c5580af3782d..c5580af3782d 100644 --- a/kde-plasma/plasma-browser-integration/plasma-browser-integration-6.3.2.ebuild +++ b/kde-plasma/plasma-browser-integration/plasma-browser-integration-6.3.3.ebuild diff --git a/kde-plasma/plasma-desktop/Manifest b/kde-plasma/plasma-desktop/Manifest index 9a9f885bf749..e3365820eb36 100644 --- a/kde-plasma/plasma-desktop/Manifest +++ b/kde-plasma/plasma-desktop/Manifest @@ -1,3 +1,3 @@ DIST plasma-desktop-6.2.5.tar.xz 16342172 BLAKE2B c59e4069360ee17ccc4c96a9d02eb34aeb2baf082d346354cfe29390a111aa519afc5c5f514ef36e193df583c3bb9b3dd56ee3d9e441f7f8f528f326eaf7f397 SHA512 c0d2776fa740dcfa072db606e7eb852e4c50b0b06a1e097c882addbbb04c81fc3d20384ba2cd8abce8d983f99e71824b770c6dc5420e5510f779b9e7eff4a2a2 -DIST plasma-desktop-6.3.2.tar.xz 16882028 BLAKE2B aa2efabae5c0d0c65d3f4ccac352103dd8c49966a5a88c0e3bf5d7bda037a525e4835b26c5b80600498aae9620befab2e932818aefc1aa63cfae220db7397779 SHA512 90c83502d32a9a1bf10d199343d66a37d8e3271acd08a89b9c8ea8a994c9e413e9f3872b69c866116cce152e167ccfe2414f892574ab8663b2e39c254ffd155c +DIST plasma-desktop-6.3.3.tar.xz 16879628 BLAKE2B 63e08e8f8ecd354693bc8ec3d9c1a94151a581ff1f48106e103c0be705c05785b6c00e5a4c9ed642d21567331e7c84fffd6eb172e27df08abaa5423a6686470e SHA512 d6ccf9d808b1c960ce25008e1acffb103d72eff5d989a88b4c3b76a2a67d8c4d7b3dfd72057e594e1baff3be404e7883590992b5ef9eb267cf7bead656821855 DIST plasma-desktop-override-include-dirs-4.tar.xz 6360 BLAKE2B 8d4340f7b520ec2a4d47d7679028d5d75ceb141877248f7c411a082197ca9c0735ff2d21bd30333236c50dcae8bbdabd41164daa392b803504d2707ffd013960 SHA512 5273df12260d90e7aacc90b9ed7f6f1868c8996e2609229c59a771b3fb541b720f53fe2c2198d9d91870b05d06797bc4b2cec5afcf97d8b2b754f0da197584a1 diff --git a/kde-plasma/plasma-desktop/plasma-desktop-6.3.2.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-6.3.3.ebuild index 3c3369dae3eb..5cf802b01eeb 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-6.3.2.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-6.3.3.ebuild @@ -104,7 +104,6 @@ DEPEND="${COMMON_DEPEND} ) " RDEPEND="${COMMON_DEPEND} - !<kde-plasma/kdeplasma-addons-5.25.50 !<kde-plasma/plasma-workspace-6.0.80 dev-libs/kirigami-addons:6 >=dev-qt/qtwayland-${QTMIN}:6 diff --git a/kde-plasma/plasma-disks/Manifest b/kde-plasma/plasma-disks/Manifest index 71b076319846..4ef059ecaa51 100644 --- a/kde-plasma/plasma-disks/Manifest +++ b/kde-plasma/plasma-disks/Manifest @@ -1,2 +1,2 @@ DIST plasma-disks-6.2.5.tar.xz 102936 BLAKE2B 6f38f9269b977baa153718f75274e7d74df6b233b1d97b87a72973d124c8584cd795883e45a82a6eb0ecd5adfa5de2744e1f53e3135843c844446ea741d9d6d9 SHA512 a89f9714fcd220dac33b76e1308004492487c29c73ba742ce1afb7cb56a776f36c25436c5520fbab3176dca8a5cbac6599afe21ab078776d0ec0342581e70f0b -DIST plasma-disks-6.3.2.tar.xz 105592 BLAKE2B 54b3aa9b7585e58a5b98c0614429febbdfbf83d9a8f64524024b1e0ee0a7ac905a4d7ef0c07be210d7f8c2e7adcf7bbfb8a25a0613a004178d9bcb90bd1c11c0 SHA512 9f4ca9aa902a778f7a96b52bffe5131b59022a536fcc3997c11a04f53ecd7379a1170b7da49c9cbd5383f1c8cc066ee318fa4e7c67e30f9ae94a32241b207a2b +DIST plasma-disks-6.3.3.tar.xz 105568 BLAKE2B adeb46aea255ec9cd343b487f169722225155dd3aa3bda9254c2a23ccfbab837e0cc66d332ec49d9742e55bfe78ed50d6265bde5086b733f09833af419b12f60 SHA512 f4e6d0f180f68ed64d8acf7ce27811bdad82e0d4b93af491888e273520af85ac35623e2f4dcc0176ef94da7aecf382dd7ce97e4950f96a21f44a57ad6b8a415c diff --git a/kde-plasma/plasma-disks/plasma-disks-6.3.2.ebuild b/kde-plasma/plasma-disks/plasma-disks-6.3.3.ebuild index cf59c9d3b3cc..cf59c9d3b3cc 100644 --- a/kde-plasma/plasma-disks/plasma-disks-6.3.2.ebuild +++ b/kde-plasma/plasma-disks/plasma-disks-6.3.3.ebuild diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest index 9f6a1e638773..988c9c5c58f6 100644 --- a/kde-plasma/plasma-firewall/Manifest +++ b/kde-plasma/plasma-firewall/Manifest @@ -1,2 +1,2 @@ DIST plasma-firewall-6.2.5.tar.xz 375988 BLAKE2B 20662364af172d7832bf914a39d94008e58383af5071fc605015da52936a34e82f15ab466e87538e5b53a889de0f66559568a9e3b4d384ff0160241dcb797aad SHA512 4655764d4644dc09d98e3408574a9ffda333211dbd7b939cb4280976f456c7fcc69913a765aaa6bb1c381e64c3e3d0d2155f092f8701c81a483655f32463344a -DIST plasma-firewall-6.3.2.tar.xz 382448 BLAKE2B a6b2d60ad9dfb36cd17da53c6ad3b1c555d92ce52b3fe08dc1c2a3da104fa6e35d357ba8fb16e4798b262aeca52a9fbf2871abe863da5c7726bd67fc095f12ec SHA512 7d30230eaf729115b0360fa8a5ad61d5d5200f3dc40b462db54ec098739fcc8b4d91080f070baf1ba12d1da7eb9f3fe2a05f1b445c349a79605dae67e7833708 +DIST plasma-firewall-6.3.3.tar.xz 382372 BLAKE2B ae5ed7345073d2788b3a621dbf36ac6338195e33dabc6374b845db5983d87dcf710c99d03df56051bde4e983ab0732a905759d2165e9e9da40b3f1922fea2240 SHA512 c5fc9c2d4d236f9b5c391ab91f0b389e00652dec528f2c7e5cedf5b5a69cdfa22127cf279ce7b2cba512dbbdd79080760194fc820c60a762a720089210147296 diff --git a/kde-plasma/plasma-firewall/plasma-firewall-6.3.2.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-6.3.3.ebuild index 4be7a9bb7cf0..4be7a9bb7cf0 100644 --- a/kde-plasma/plasma-firewall/plasma-firewall-6.3.2.ebuild +++ b/kde-plasma/plasma-firewall/plasma-firewall-6.3.3.ebuild diff --git a/kde-plasma/plasma-integration/Manifest b/kde-plasma/plasma-integration/Manifest index 2385f1751956..7ccf08ca8ea4 100644 --- a/kde-plasma/plasma-integration/Manifest +++ b/kde-plasma/plasma-integration/Manifest @@ -1,2 +1,2 @@ DIST plasma-integration-6.2.5.tar.xz 96116 BLAKE2B 96c14b2422bf54f94cb23f62388ccc961d1a6284111c297049ed2ea6d4793e0f15d807ee14826a066ae1cdbbbe70824057edee7c534dca5072251b1e554daa6e SHA512 fcb25f357fb5cad41dccfcbdd4a452fca64a87a8a2c67d1e738a771d0de7fc36bf1c7b74f846e7f40bb85fd84cfd213d9c5c8cf4f0cc4f3737d5c89852934c42 -DIST plasma-integration-6.3.2.tar.xz 96816 BLAKE2B 2752abbb4dd473ebe626a019a934ede6708a27962075968d321f361250481f14c7e32b8928f49a0f7c4b81a9be230d346d5c329c4f78660bec01ba74d4ce7c9e SHA512 d4ca017d614f8d0b8d27c5a138767d535e70b9733159038e2ee210aae809bf3a44adefb0eab4e8fbed80bcc60c5a7d3ca4b3ca9117ec79556514227ed0c67c1c +DIST plasma-integration-6.3.3.tar.xz 96800 BLAKE2B 443441015bd231ea91b4f462b522e1a64f496fe1335d651bc90b15d924738b4952fccd5b34e571c81a68ae38abc278407473803619a26e309c2ad75cf8ec4b67 SHA512 4b74a17624e270ba84f6ecbd243aaa5acd8cf9303c9865bbb7d9f2b3546f680dc59a7c7f5263053b255f58a006fea1329776985afdf2136eeb058f12e9adf030 diff --git a/kde-plasma/plasma-integration/plasma-integration-6.3.2.ebuild b/kde-plasma/plasma-integration/plasma-integration-6.3.3.ebuild index bda8e30ebe96..bda8e30ebe96 100644 --- a/kde-plasma/plasma-integration/plasma-integration-6.3.2.ebuild +++ b/kde-plasma/plasma-integration/plasma-integration-6.3.3.ebuild diff --git a/kde-plasma/plasma-login-sessions/Manifest b/kde-plasma/plasma-login-sessions/Manifest index 56ea28c93969..8078f332c995 100644 --- a/kde-plasma/plasma-login-sessions/Manifest +++ b/kde-plasma/plasma-login-sessions/Manifest @@ -1,2 +1,2 @@ DIST plasma-workspace-6.2.5.tar.xz 19136676 BLAKE2B 38d211247cfeee10df6f4fff5cbef91d9a7daa760033e29743e1c78577baf876c8c416d0a84e45efb5d6bab007965b3cd8c6d1feec7749bd4dd8cb24df4a71ee SHA512 228d183c9561cbf3d5630582b80c687868eaf420310010bd417de0e9f0ababaa4767805c1ce84f4eb3539ea32bfe6c2849b70d7ddd133f6095ab71f94f854dea -DIST plasma-workspace-6.3.2.tar.xz 19143616 BLAKE2B d1366176975f130af6441ab62907b9ebc4ff7226cd2301670d18b22169e6b962f3018f57161e56c3c202bbbe76af191ad61fb96aeb97311d461a0871f3b1e4f8 SHA512 f5fef2ec46a80f68891aae1a3408878416e1b9347dce8a1d67aec0325d4255e8126a6dc8bc8f92ef49e78f703b558621f1f34c8c9022adcc8687d27d025c56ff +DIST plasma-workspace-6.3.3.tar.xz 19145592 BLAKE2B 88d94e4bef9393fc54157c8590662845f67a7efc4e07815446cf7a9d15f894fca20c0dc4f8cdfbbe0a16570eee55043365ded871e3d89673f0bdda82a3a81b8a SHA512 7711313fc93f052e898ef7ba883a87e17217b94c2658bb586a9e7623e34971a5add986d63c4bd7dadc7152fc6ab592a01840034d384312de7711dfb6112f114b diff --git a/kde-plasma/plasma-login-sessions/plasma-login-sessions-6.3.2.ebuild b/kde-plasma/plasma-login-sessions/plasma-login-sessions-6.3.3.ebuild index dedd10ee7194..dedd10ee7194 100644 --- a/kde-plasma/plasma-login-sessions/plasma-login-sessions-6.3.2.ebuild +++ b/kde-plasma/plasma-login-sessions/plasma-login-sessions-6.3.3.ebuild diff --git a/kde-plasma/plasma-meta/plasma-meta-6.3.2.ebuild b/kde-plasma/plasma-meta/plasma-meta-6.3.3.ebuild index e7306a545540..6999a8003a1c 100644 --- a/kde-plasma/plasma-meta/plasma-meta-6.3.2.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-6.3.3.ebuild @@ -21,6 +21,7 @@ REQUIRED_USE="^^ ( elogind systemd )" RDEPEND=" !${CATEGORY}/${PN}:5 !kde-plasma/khotkeys:5 + >=kde-plasma/aurorae-${PV}:${SLOT} >=kde-plasma/breeze-${PV}:${SLOT}[qt5?] >=kde-plasma/kactivitymanagerd-${PV}:${SLOT} >=kde-plasma/kde-cli-tools-${PV}:${SLOT} @@ -59,6 +60,7 @@ RDEPEND=" >=kde-plasma/polkit-kde-agent-${PV}:* >=kde-plasma/powerdevil-${PV}:${SLOT} >=kde-plasma/qqc2-breeze-style-${PV}:${SLOT} + >=kde-apps/spectacle-${PV}:${SLOT} >=kde-plasma/systemsettings-${PV}:${SLOT} >=kde-plasma/xdg-desktop-portal-kde-${PV}:${SLOT} sys-apps/dbus[elogind?,systemd?] diff --git a/kde-plasma/plasma-nm/Manifest b/kde-plasma/plasma-nm/Manifest index d207ebbb7991..8e5ad3cec2fb 100644 --- a/kde-plasma/plasma-nm/Manifest +++ b/kde-plasma/plasma-nm/Manifest @@ -1,2 +1,2 @@ DIST plasma-nm-6.2.5.tar.xz 1243156 BLAKE2B ba7e375a3570a25301c8e32679ef995d7a6b24f0f6ab3de3750fdcfe844b57ca03319a131c2305794041cb1b8677ae3d3571a913bb725d4b7d33fadfe508e2fc SHA512 110c1ce9614a043f7d1aee0f3fe5c0700db4e2708ea9c444006aa90ecbf813acda61c578245929117c39c24a041afb725fec928adf04d8bc077adf4efae0ffaf -DIST plasma-nm-6.3.2.tar.xz 1318488 BLAKE2B af0ca5ac9280fc20c1913b2cd8af78c70fd69b9d9a4e032a1bd6bfe27f515e4392d9689a77b5b7b2a788148c55c21f42380bfc2edf13c7725235a4bd617bb722 SHA512 0e4de3ec2063c47b2d3a1ffb70e4009c9321e64f99ac1142d9b1c318cf5a28cdf53816a3a263200a1a8c208d839c8024259fc2fee31f7a782900c07300ba11ff +DIST plasma-nm-6.3.3.tar.xz 1318748 BLAKE2B a50556b95eab936d3f1d887e9731bfa857e2c4211cc2498ac9e0a1795e677e56a9435ab878b7b68283cdcaf4de3f1b5d77b5a57aed64e26f4fbed4c8549575bb SHA512 6cff1843fd01e0fafcd7e4caf20a99bd93f06923206f8bbdf76697bb8c5177028c58e13445a7e4fba0703bffa4344922791ee45326acd4de5259c0425404fa56 diff --git a/kde-plasma/plasma-nm/plasma-nm-6.3.2.ebuild b/kde-plasma/plasma-nm/plasma-nm-6.3.3.ebuild index 872f1c55e7cb..872f1c55e7cb 100644 --- a/kde-plasma/plasma-nm/plasma-nm-6.3.2.ebuild +++ b/kde-plasma/plasma-nm/plasma-nm-6.3.3.ebuild diff --git a/kde-plasma/plasma-pa/Manifest b/kde-plasma/plasma-pa/Manifest index 43f9300ef2f3..38e8ba217ae6 100644 --- a/kde-plasma/plasma-pa/Manifest +++ b/kde-plasma/plasma-pa/Manifest @@ -1,2 +1,2 @@ DIST plasma-pa-6.2.5.tar.xz 186776 BLAKE2B a51327f947270a3f6a44c373e045f1e77d79cb2f92c9909876794043fa3b98355a0cba6649a7db8f84ac0c63098e039ac8e29e0c226064cce37777871c69393e SHA512 ff0a9c902a29e64493b3505be082ee1c692e1d0ba16627b3eca9927da96e991b952189d67e48f2caa294ce71cfa6606e59446c85fbd591e195a16df9419d8ba3 -DIST plasma-pa-6.3.2.tar.xz 192176 BLAKE2B be14532c7462e1d96df09db7c21a83fb42ecfc617be2250a022094d44ce59776459fd5ed2ea977759928519a292aaa8a4a8f7b349534388767cf3a933872f675 SHA512 5a176079aca0d9ac2e61abc49eb4fe655144b6929fd3d18d70aeafea354154aac3dfb219875169566fdfecaee63d0cb11f88b7c8c02c4d5f1f2324d02c6b4d84 +DIST plasma-pa-6.3.3.tar.xz 192068 BLAKE2B 0cb8a0e48ed888329de0172b302f9c2de49d43e9f15043782b0e7d64ed7095b2c482b7cdec38f6f400fd9c2fcff9f1c95e9ef99eaa449a5425769225d7218e2d SHA512 54a3fa94a90191dec4acc67b6d1a31612c3667440440c08dfd4a6522d5f98fe3bd43aac26aeb343282524e34b47ef81029014dff24d681476a2d4dfbce48ff50 diff --git a/kde-plasma/plasma-pa/plasma-pa-6.3.2.ebuild b/kde-plasma/plasma-pa/plasma-pa-6.3.3.ebuild index 7f7ab5eaf448..7f7ab5eaf448 100644 --- a/kde-plasma/plasma-pa/plasma-pa-6.3.2.ebuild +++ b/kde-plasma/plasma-pa/plasma-pa-6.3.3.ebuild diff --git a/kde-plasma/plasma-sdk/Manifest b/kde-plasma/plasma-sdk/Manifest index 630e41fe3cc6..750495578bc2 100644 --- a/kde-plasma/plasma-sdk/Manifest +++ b/kde-plasma/plasma-sdk/Manifest @@ -1,2 +1,2 @@ DIST plasma-sdk-6.2.5.tar.xz 349404 BLAKE2B 1b252e91ab354033697be37bd3b307e8ebcb00de0984a1f001a6441a9a62943a4676d3ca367555381e3f9bfdcdfc110c5b8fe70527eb159da3301f6d7e8d1564 SHA512 04028f39f58cfbac3a0695d48f8d40d263b691d04ccf6700d5b56ba765543a1301ef419a872d5f8157324aae4a8ff863ad2e288221146c6a2e1e30d5cac71b45 -DIST plasma-sdk-6.3.2.tar.xz 360720 BLAKE2B b9bbf442f23b1e5faf01b98e999e7f32799196c314d0d9ccc5a03689a1bf056d17d53d01af546d095388ec92d0334f73251b626a9c9588c94c80bd38101ce92d SHA512 2709c539e880385e75b01a8c7d8bedd7313ecff78f28be5508dc79722c438a43452e6da4837f5eb83c17ef10aeb9fe90bc606b5ac4889c3dfec9c707b8c3e924 +DIST plasma-sdk-6.3.3.tar.xz 360740 BLAKE2B 865f1276407a0a613f3bee425ca921aa16167d6270fd97adda36dbc2a0e73584c1bb3b01069114494728e0d4b6e224f4ffbea98e940138cc7795e6d17b0bd0ee SHA512 b713dfa5d3a969520b2316b5e8cae4c15b3cb0e72cd4003ef6140e8ef2ca67f41fd1f6f555b3671ac2e8728f64f85493afd458d79825859e44d97297c803afa0 diff --git a/kde-plasma/plasma-sdk/plasma-sdk-6.3.2.ebuild b/kde-plasma/plasma-sdk/plasma-sdk-6.3.3.ebuild index 3f298692c4ec..3f298692c4ec 100644 --- a/kde-plasma/plasma-sdk/plasma-sdk-6.3.2.ebuild +++ b/kde-plasma/plasma-sdk/plasma-sdk-6.3.3.ebuild diff --git a/kde-plasma/plasma-systemmonitor/Manifest b/kde-plasma/plasma-systemmonitor/Manifest index b45655992c15..96331c1af8e3 100644 --- a/kde-plasma/plasma-systemmonitor/Manifest +++ b/kde-plasma/plasma-systemmonitor/Manifest @@ -1,2 +1,2 @@ DIST plasma-systemmonitor-6.2.5.tar.xz 197520 BLAKE2B 9dfafa9efb8c0fa488a4436df5b82ae572a1629d455f614da833f6a64f7128d7186899704a770fa2d105962621846feb86a48682be7420126a557a390fba51b3 SHA512 6d123234e7461796d3f9a64dd7539e966d23a684ffe042d25b4a062fd70f9083bdcc151e0b4cf7a7096aacb6c364bffdaeb47af3d256801386072ff5ba6e7a72 -DIST plasma-systemmonitor-6.3.2.tar.xz 201868 BLAKE2B 50f6dffa2d7f02564a92e6ccb525d0dfd1409d23f28bb0604250529fb36527f0f96bdcdd6387ca2b4145d5c25e825b2ef095258021cb30a7dba0ad49b10338ba SHA512 d70d4f70e5e40fa7d934a57c365c9fa2921a71e167ea7fb478af1e3af171957839688e96308d0029d60bd7494a2311fd7e1ef5893465e45dea1face92783b040 +DIST plasma-systemmonitor-6.3.3.tar.xz 201876 BLAKE2B a2592d57ebf8a64ab4ecc55b1d8cabefd9254cbac9fa5bcaf323db807e9039c3a797fde4a79f158ab75adea9e077464014b64963df9a5f6f24979ef72d3d9702 SHA512 862b4eec3e95f0b34109a0068c5b23a500a39e35a5038b7f0cb999c797d2940daeb1b9089fdfda6a22ba188c971f19ec3363eea39063e7aabf32c552aac0fe26 diff --git a/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-6.3.2.ebuild b/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-6.3.3.ebuild index f96d6b317c56..f96d6b317c56 100644 --- a/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-6.3.2.ebuild +++ b/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-6.3.3.ebuild diff --git a/kde-plasma/plasma-thunderbolt/Manifest b/kde-plasma/plasma-thunderbolt/Manifest index 23b4bd98d234..550416a34422 100644 --- a/kde-plasma/plasma-thunderbolt/Manifest +++ b/kde-plasma/plasma-thunderbolt/Manifest @@ -1,2 +1,2 @@ DIST plasma-thunderbolt-6.2.5.tar.xz 81308 BLAKE2B c1b7255f5243f952180d0ada9b14e4dff9e26c46df56696e4aa1e469cd1e78dce340d35e5e816d8c769d378459d3df9d83ebbf197b7c73c06471aead904eeddf SHA512 2a8b7c97119996777b68c8eb33b165ee6e0fc4794ae3e96e87cd4050a1c440c320184119d36cda243f05fed1868186cea8c3874ec5548a26536635b4d45934fc -DIST plasma-thunderbolt-6.3.2.tar.xz 83456 BLAKE2B e5befa9ff6b5b62c5309645285a0e3c219868949fe7a101d96bcca44ab53578beae00d453d744c42b24542e2e840f9d1fc6b4a1e81f25694a29e0b9c0d673581 SHA512 6c11b7b60e7f98fb255da7fff9c41ace2f11c6dadcd837162b1cbc417ace2d26d1cdf5aea91483422dedd9be09f36fb2e2654624878d232d8d6acc873db696aa +DIST plasma-thunderbolt-6.3.3.tar.xz 83484 BLAKE2B 505f435df3a71ba1f83c36d17c2585c98f459a6c9a42fc76028943b5971ba41fd0bb1c64f6882bd93f0c17fe7c24382fec4fb6348ad59f74c60c11995aef827e SHA512 415b4e6ab9fa63f34330579186ffac4f108843ea17e6c8af097fcfd7df49ba991ec7242231fb63dff4386b40cb95b99baa61834b055072e7354a5c458433b1a4 diff --git a/kde-plasma/plasma-thunderbolt/plasma-thunderbolt-6.3.2.ebuild b/kde-plasma/plasma-thunderbolt/plasma-thunderbolt-6.3.3.ebuild index fb4667be8a92..fb4667be8a92 100644 --- a/kde-plasma/plasma-thunderbolt/plasma-thunderbolt-6.3.2.ebuild +++ b/kde-plasma/plasma-thunderbolt/plasma-thunderbolt-6.3.3.ebuild diff --git a/kde-plasma/plasma-vault/Manifest b/kde-plasma/plasma-vault/Manifest index 1c7824fc90d0..4d2441ca895d 100644 --- a/kde-plasma/plasma-vault/Manifest +++ b/kde-plasma/plasma-vault/Manifest @@ -1,2 +1,2 @@ DIST plasma-vault-6.2.5.tar.xz 201264 BLAKE2B 4e09cecb29273f8b2ca2c8abaa60904003ff30aa22af3f5feb142562df2fcba4ddecd08ce1ea98f9f3882323c02924176b340ed2c5108cea2c44d47c01a02e9f SHA512 5f403afc973c3ce1a98dddbb0ecedfca9290b858b81c7e221c2fdbbbffa520ba557f785e3e43cce5acf89488c4d21ddf1865966831bd9012c154d3d23d2e0c94 -DIST plasma-vault-6.3.2.tar.xz 205200 BLAKE2B ea805514a88b5087840cdeca8adec779e76df491ea7f3aad4eee7d1feec35ad06fa319e94750457c16907d30021af143413cda064463490d7713839813fca9c2 SHA512 f38462e2cd777f12d53b80970eb9082ae1c13b4c8d61872ee4ca1d61123e7e2986979b0381274573e409324c2c321938c45ed5396288144651a9fb2b26507ffa +DIST plasma-vault-6.3.3.tar.xz 205184 BLAKE2B fc5199889418a72fe5d12b466b873efc0ad094970308afc7d87c8909cc0d38d0fedf8c8b160954967890f99edecf4aba529a65b4e90a0ec9636bb3f4e509ef7b SHA512 233a06384af0cb09e144bb5a192230214b7a78ccb1e4723fe29440a7b82bf2a2a7e3b1d012becdc9df0a10807644262b8347b10561722ca6c219b54df4c5912f diff --git a/kde-plasma/plasma-vault/plasma-vault-6.3.2.ebuild b/kde-plasma/plasma-vault/plasma-vault-6.3.3.ebuild index 10dd11d45cea..10dd11d45cea 100644 --- a/kde-plasma/plasma-vault/plasma-vault-6.3.2.ebuild +++ b/kde-plasma/plasma-vault/plasma-vault-6.3.3.ebuild diff --git a/kde-plasma/plasma-welcome/Manifest b/kde-plasma/plasma-welcome/Manifest index 585892af2d02..772bb311d2d3 100644 --- a/kde-plasma/plasma-welcome/Manifest +++ b/kde-plasma/plasma-welcome/Manifest @@ -1,2 +1,2 @@ DIST plasma-welcome-6.2.5.tar.xz 693712 BLAKE2B 88e7b377a8b2c7c93ccba033ad98474236c06413be9670ab3f9da73baa6abab09a7d60e1021158aa0550076591fca56c2fa6f0d7c129675be8ba6566083ef38b SHA512 a53730a47b138d28b523d14096d8b21afa9f3703984747679a9c2b201431c0422d11b1fa16336cbd5405d9f37780c3ab10ca7e95bb1334658fab368b86f58410 -DIST plasma-welcome-6.3.2.tar.xz 703100 BLAKE2B 68bbeebdb0f1fa29776d8777288ae1ececc8f80d0c64e58b7ac09ff5e07c57ba958a0457f770175dd90503d51e16ff3796d6ed4bebe25276e67c9f93cc2d00a7 SHA512 dd2ed71c4f1f2f1a9e2d10776a79dfee2c03aa241064a9296e19822abf8905f3846e537d556a56da9fcdd3d22d659189af46e0756f906c98e555796f338eac52 +DIST plasma-welcome-6.3.3.tar.xz 704564 BLAKE2B 43c722fbbeceb9ceddc1cc4d4a8a922ec853a549ccbec4380eab584472186ce1977dc43711b8f33b77e1505ac2d0c92e8bd8e6b1e146741e5b23c98e659a95d2 SHA512 f1ca6b4cca2758f49ecae9f0ac3e5965c42e414dc3f45334643bbc801dda939d88b0ea3b60f329371eb6e40d8718a764280930a31cf7a0174172b65340d67398 diff --git a/kde-plasma/plasma-welcome/plasma-welcome-6.3.2.ebuild b/kde-plasma/plasma-welcome/plasma-welcome-6.3.3.ebuild index 98993918e620..98993918e620 100644 --- a/kde-plasma/plasma-welcome/plasma-welcome-6.3.2.ebuild +++ b/kde-plasma/plasma-welcome/plasma-welcome-6.3.3.ebuild diff --git a/kde-plasma/plasma-workspace-wallpapers/Manifest b/kde-plasma/plasma-workspace-wallpapers/Manifest index 7bbcd6503954..47f1d2cc4629 100644 --- a/kde-plasma/plasma-workspace-wallpapers/Manifest +++ b/kde-plasma/plasma-workspace-wallpapers/Manifest @@ -1,2 +1,2 @@ DIST plasma-workspace-wallpapers-6.2.5.tar.xz 111403856 BLAKE2B 9124b0dd61b605730af832e665a06c137af1875ed78e87d5c4f1adae84dd7820a6be4544c1afd38485e6842733c17faa5a554258b47e3c44b69f2917135b6118 SHA512 76d972a8fe00245f0f0195091414b36959b5b120114ab466c7eb1ace3850e2398ebbe85c47a25702bbdc307d1586139303893ee690299877e87f0f15a9d68a20 -DIST plasma-workspace-wallpapers-6.3.2.tar.xz 131045056 BLAKE2B 5ca7436be75ce648b88df5b13ffb86c054cd6919b6acc21d330093e07e2337831d512b7fd65c3dee3a198651b492bccce3b3cf9328592b5309605a3a2cabaa48 SHA512 86080587346c7bc4331fdcf908205fbddef3d7105a2cb126059cebcbb4607e75a3387afe967f14855435821dbb8499a4efc6fd3dbec6c532108e98e68be784e7 +DIST plasma-workspace-wallpapers-6.3.3.tar.xz 131044960 BLAKE2B dffeca3198cfc41de137c6e9cdb01f7e89e9984b16757b8e5c502e0f5fd63617c587eef6192b9a641f7576705b7f529ddd765b541f8380597b63e74cf109569e SHA512 ae8830f8c5e037c6764c295870ce1efa236a130a74466f7718b63c72e375d0f4283491f78646c461b73cf1d4bd94f0363c2916d8dae527597a65c32ea3e6d2e3 diff --git a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-6.3.2.ebuild b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-6.3.3.ebuild index 3c0701c9c431..3c0701c9c431 100644 --- a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-6.3.2.ebuild +++ b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-6.3.3.ebuild diff --git a/kde-plasma/plasma-workspace/Manifest b/kde-plasma/plasma-workspace/Manifest index 56ea28c93969..8078f332c995 100644 --- a/kde-plasma/plasma-workspace/Manifest +++ b/kde-plasma/plasma-workspace/Manifest @@ -1,2 +1,2 @@ DIST plasma-workspace-6.2.5.tar.xz 19136676 BLAKE2B 38d211247cfeee10df6f4fff5cbef91d9a7daa760033e29743e1c78577baf876c8c416d0a84e45efb5d6bab007965b3cd8c6d1feec7749bd4dd8cb24df4a71ee SHA512 228d183c9561cbf3d5630582b80c687868eaf420310010bd417de0e9f0ababaa4767805c1ce84f4eb3539ea32bfe6c2849b70d7ddd133f6095ab71f94f854dea -DIST plasma-workspace-6.3.2.tar.xz 19143616 BLAKE2B d1366176975f130af6441ab62907b9ebc4ff7226cd2301670d18b22169e6b962f3018f57161e56c3c202bbbe76af191ad61fb96aeb97311d461a0871f3b1e4f8 SHA512 f5fef2ec46a80f68891aae1a3408878416e1b9347dce8a1d67aec0325d4255e8126a6dc8bc8f92ef49e78f703b558621f1f34c8c9022adcc8687d27d025c56ff +DIST plasma-workspace-6.3.3.tar.xz 19145592 BLAKE2B 88d94e4bef9393fc54157c8590662845f67a7efc4e07815446cf7a9d15f894fca20c0dc4f8cdfbbe0a16570eee55043365ded871e3d89673f0bdda82a3a81b8a SHA512 7711313fc93f052e898ef7ba883a87e17217b94c2658bb586a9e7623e34971a5add986d63c4bd7dadc7152fc6ab592a01840034d384312de7711dfb6112f114b diff --git a/kde-plasma/plasma-workspace/plasma-workspace-6.3.2.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-6.3.3.ebuild index 5432ba093eaf..5432ba093eaf 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-6.3.2.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-6.3.3.ebuild diff --git a/kde-plasma/plasma5support/Manifest b/kde-plasma/plasma5support/Manifest index e85bbb80570c..00309b2184e1 100644 --- a/kde-plasma/plasma5support/Manifest +++ b/kde-plasma/plasma5support/Manifest @@ -1,2 +1,2 @@ DIST plasma5support-6.2.5.tar.xz 191624 BLAKE2B 32f204d1d3a4b0c7a61f180c2e4e9577927fa80d3f4f1ba9be5edb17146080f04b5670cb4ff41daa8717781c5df8f0291af15427124a63df0ecb15e1ad592fdf SHA512 0cbd74cf799b50c4e0baf834940b503c61c5af54f24a3aec52d5a50866ff430590ec6ca1712129b6584734e26f4b537e61b1d3a91313597400bc57bdfaa27dbc -DIST plasma5support-6.3.2.tar.xz 229700 BLAKE2B e3726a77b2536aa53996dad8472939eb4c5420b0e0d84f74feebed1894c80a997317360086662e16f194f167e9b0a1ecf8e43c70cecb9a7df598990f463bca06 SHA512 4ecf97cfa1fcf5e6ca1bad538ee5fc641110a54de95f1f9f15bc9dae0b66e502cc440f725416f343b633616656547fa8a6188f04cf88d9429a158ea264f1cdf6 +DIST plasma5support-6.3.3.tar.xz 229712 BLAKE2B 373ac2c6ebbedf86eda0b722429619e1b7c9c7c4648376a55045cb53cbf7a2bf0ac590c46ab099cf271bcac97935c0992be8253c7514e4b77271872d5356c936 SHA512 a3efc0af1a318799c08a22ea51cd7b51e624fb2214be710ed26e9b8e7fae41597e95330ae5f435a531d6908fd41c7bd9a761bfca642966d1b581a6889f146ecc diff --git a/kde-plasma/plasma5support/plasma5support-6.3.2.ebuild b/kde-plasma/plasma5support/plasma5support-6.3.3.ebuild index 0972202b3dc3..0972202b3dc3 100644 --- a/kde-plasma/plasma5support/plasma5support-6.3.2.ebuild +++ b/kde-plasma/plasma5support/plasma5support-6.3.3.ebuild diff --git a/kde-plasma/plymouth-kcm/Manifest b/kde-plasma/plymouth-kcm/Manifest index 246db15d0ad5..6f41354149d2 100644 --- a/kde-plasma/plymouth-kcm/Manifest +++ b/kde-plasma/plymouth-kcm/Manifest @@ -1,2 +1,2 @@ DIST plymouth-kcm-6.2.5.tar.xz 47684 BLAKE2B 33d5c7b6096a04b33b9315846205c615679a67a35a53766c88bbfd5c2ac109e1ad0fd1252133442bc39f5398c547907be4846727b623d279d6be7d6fc2f17a33 SHA512 e69e5ad514badb36cdbca77d56093834309ccc2f41a76587f2d3ee0690658ecd8124adb3c3b7b2348edf4a05286bed0f8c12d58fd7d5182827b65e93381b189f -DIST plymouth-kcm-6.3.2.tar.xz 49368 BLAKE2B 728cb04376b9700ceb03b2cbb7d3f7aba7fdc4f754dfc63cb0e7c1c8092feb98e67e49968923f5dddb14c2bc879de714a4e3ca3a1c5cee89e5adafccd20b8ded SHA512 43c7eaea1f5b4f94cf3ec55a2b44d5db233efaf10d8ff7206f2b6edba877503e10d2fb3393d393bc59130613a576895b3f1d7e62579562fdd30031035cc7223b +DIST plymouth-kcm-6.3.3.tar.xz 49388 BLAKE2B a6c8d990b3ddf1547dcae153dda933cb7c711d63a6e40d5269fd2690a5acf28889942681f7f575d048f1f3ee49d8ce679b748b95c1a68dd82477685a748ffde9 SHA512 d761542224b7fd937a5008d4e51cb7277b019100a3c7808c78b0f16945432ed3bd0b2975ec689a2e2049bd1d3059c60748faeef5c7a03c4f90cba0082d586dd1 diff --git a/kde-plasma/plymouth-kcm/plymouth-kcm-6.3.2.ebuild b/kde-plasma/plymouth-kcm/plymouth-kcm-6.3.3.ebuild index 9cfb252448d9..9cfb252448d9 100644 --- a/kde-plasma/plymouth-kcm/plymouth-kcm-6.3.2.ebuild +++ b/kde-plasma/plymouth-kcm/plymouth-kcm-6.3.3.ebuild diff --git a/kde-plasma/polkit-kde-agent/Manifest b/kde-plasma/polkit-kde-agent/Manifest index fb9e7558fdfa..3b11ed216d8f 100644 --- a/kde-plasma/polkit-kde-agent/Manifest +++ b/kde-plasma/polkit-kde-agent/Manifest @@ -1,2 +1,2 @@ DIST polkit-kde-agent-1-6.2.5.tar.xz 56940 BLAKE2B 5538b189a0683bb41159f80cfb57a8eefce925f58f72313c3d8263bbd34d0df34c564543ad88885bebc813f9eca97cefa52464d8d919a42cbe3ee412b204d095 SHA512 d4e428d934671f53f4409c40b4904f2a9343f6462fed25e77b9bf845d0bcbdd173db4bc00ca2ab01a5cbece676450a7cb35ba389143739082e48095c7c305301 -DIST polkit-kde-agent-1-6.3.2.tar.xz 58220 BLAKE2B 0e0313b6b2a81f99435c4a06311be36ccd7c0c41f40ec550b310ddc4fc672dbdab0570ab7585ee6d74638ad8a6c2467226ef991a1b97cba30aab9910b0654c2c SHA512 9bfa51e14ba14a4521564efad53bd99c9c7c781a17a36b6b2269b07ae38bf4e62920eba1cc802e57cc5b32c1ee8aa9c1b52c2fe3edaf71fc1888b6d827e1fa0d +DIST polkit-kde-agent-1-6.3.3.tar.xz 58248 BLAKE2B dbf2c82d67a32484496528cb640155a619587fd90d09ced38eff676b40e6498a1e2f13e4cf294a387751cb08b01de404cb86046425249b0ae993ec3913375c03 SHA512 5ecb3e133ebd86b092f840f262294a7ece8096ca57fc941d92002177fdd0111d9f7feef32a95ec9d84b860991d35a17634d739cc157eba6105c2f28baefacd6d diff --git a/kde-plasma/polkit-kde-agent/polkit-kde-agent-6.3.2.ebuild b/kde-plasma/polkit-kde-agent/polkit-kde-agent-6.3.3.ebuild index 469d55a64ff4..469d55a64ff4 100644 --- a/kde-plasma/polkit-kde-agent/polkit-kde-agent-6.3.2.ebuild +++ b/kde-plasma/polkit-kde-agent/polkit-kde-agent-6.3.3.ebuild diff --git a/kde-plasma/powerdevil/Manifest b/kde-plasma/powerdevil/Manifest index f729fb9a509a..390037169425 100644 --- a/kde-plasma/powerdevil/Manifest +++ b/kde-plasma/powerdevil/Manifest @@ -1,2 +1,2 @@ DIST powerdevil-6.2.5.tar.xz 1189116 BLAKE2B 4e04165626d0b736147b59a34fc23570875819b20dfe76ac0d60790fe6bcfb32ad4764ddfc449449ebca214c4ddf8a1e5f289c300a14ace1ca1846fff9ca2aa4 SHA512 29cdb34422aafba5cea6bca93036fcd9e6f8641d8f83fa410e9e70d93c81c034f64fe86d89a084285c8421fc672105b81894e66b185933edeb8b025f06b38e49 -DIST powerdevil-6.3.2.tar.xz 1200220 BLAKE2B b530fb7eaca59f4138b0a873f8741df59ff192dab0a1174a0573feec843b9ba38cfe2a95bc168261af20065b70f4799ebbe459b10bef1ca2b136999ebc064382 SHA512 f3b480f0b5389ba4933dd1963530de98acf7ceea5d14f6a75a0bed8da45620d8525a98705028dceffb28caee30cc20b91b3a068ee3a2ab4f75b6ce6c50745cf0 +DIST powerdevil-6.3.3.tar.xz 1201224 BLAKE2B 2005e709156b6ac45506e29b948f8b4723ee0d515ff7c9ceb65a03bcfa0c67429fce61bb266a4f8b23c49166c9d62453f1cd20c266acadb876f68118f5815fe2 SHA512 13808f4dea11ca4e3256a2abc05111805e2d47c298722558d5d44a17af12991a0344299e7331f953792a69df6bd4138406b50487a72c408e58327fc6d5e94f32 diff --git a/kde-plasma/powerdevil/powerdevil-6.3.2.ebuild b/kde-plasma/powerdevil/powerdevil-6.3.3.ebuild index 9ee8dc994916..9ee8dc994916 100644 --- a/kde-plasma/powerdevil/powerdevil-6.3.2.ebuild +++ b/kde-plasma/powerdevil/powerdevil-6.3.3.ebuild diff --git a/kde-plasma/print-manager/Manifest b/kde-plasma/print-manager/Manifest index 20c26a4ca22c..b0962f182113 100644 --- a/kde-plasma/print-manager/Manifest +++ b/kde-plasma/print-manager/Manifest @@ -1,2 +1,2 @@ DIST print-manager-6.2.5.tar.xz 374932 BLAKE2B 1a0f88ec4744700396edd03c0877eef9b6d0f8a52d998d4df9a38f9752c93000b6c04e74c0edd389269d5bdb043faeea032a31ab877039d0e70811989dff5128 SHA512 da261c7659d85d67c04eb6b8839bc48d36be41b536312706b3356aa8e85c13832b64741dfa57656778ea6b093fbbb27f268361bf007585050e8bf63113475a9b -DIST print-manager-6.3.2.tar.xz 392308 BLAKE2B c6ef5e9864577ece3effa066f242b2c4e7c56127a7bb5c16f418383c1972f84c410cc81fd916abfcc4796d3c1824946e4f27cfa6ad52b0528f393ef309cdd25e SHA512 5ee9b61238354c8f994b5f070d2ae2d8f782778f881ab1c90622b70d19d4ca4e2720938a3cda4bde9e7c11b001e48bcf3598e54ad95d2139e6082aec159d42da +DIST print-manager-6.3.3.tar.xz 392304 BLAKE2B 8f4d46fd8d3614ef6edb73f17f6e8edf5340baa2554b7cdabfbad46db61b787e8462c5528529497d0f122ee4babfae501b983170d0409699e83b4cab75698e2f SHA512 2d892b592593ec759fda0d858978dfc4c68f6fa1bf6d4509c14f345374dab4e96a465f1589305553c8a8da406613f56d05817b71f15013a41c653a473b244570 diff --git a/kde-plasma/print-manager/print-manager-6.3.2.ebuild b/kde-plasma/print-manager/print-manager-6.3.3.ebuild index f2d8c51bd3b0..f2d8c51bd3b0 100644 --- a/kde-plasma/print-manager/print-manager-6.3.2.ebuild +++ b/kde-plasma/print-manager/print-manager-6.3.3.ebuild diff --git a/kde-plasma/qqc2-breeze-style/Manifest b/kde-plasma/qqc2-breeze-style/Manifest index 6fdb5919d40c..76d41eb83c75 100644 --- a/kde-plasma/qqc2-breeze-style/Manifest +++ b/kde-plasma/qqc2-breeze-style/Manifest @@ -1,2 +1,2 @@ DIST qqc2-breeze-style-6.2.5.tar.xz 66244 BLAKE2B c8761287cb8a934e057d387b8155683d0c996a77aa1474885d3afac3b93b270f95e5b56bab3a649e002724eeec179e7d15a9900201008c96bbe1f4d2b0ade75f SHA512 0b87c22bad2686a939dce927da2533d81616a86e5fe9aea5a55f093cb05d36f85fa430ef34d321b088c254fbb87486b4eb3dd0bbe48e8fe96e7984e97102123d -DIST qqc2-breeze-style-6.3.2.tar.xz 66608 BLAKE2B 21ff78d652269d7c38b96f3b9c8f4c0d147d1d5e7abd2e2a06c56311f6be3c4aa0a06f38bce8961f8c2ff2beb4d49a40ffa3cf23c33c034991d4b8e41b82ae0e SHA512 cc2f857b89dfaf2acedda3d4ac1cadccb47560691f6f4ff203fce83bc53e23703da3c3b9f5b183016699e4028446cacf54058d54264e6809f223a4e33797d668 +DIST qqc2-breeze-style-6.3.3.tar.xz 66984 BLAKE2B 7264db53adbf88d0c7dad5dd0c31ca2774eccd0b96af2e82f23f48d200d8cc78346804031b0f1e2bbec9cdcdab15852be5e13084e932511163e84951de291a7d SHA512 31e1963e305055f5674a6803d504170f064b11eea5fd61d8a16c93487984c6b28725ad2be7877a14603f11f0f526e23eee0bf60523d98a6790d148dfafbd9b35 diff --git a/kde-plasma/qqc2-breeze-style/qqc2-breeze-style-6.3.2.ebuild b/kde-plasma/qqc2-breeze-style/qqc2-breeze-style-6.3.3.ebuild index c61888e4e2ff..c61888e4e2ff 100644 --- a/kde-plasma/qqc2-breeze-style/qqc2-breeze-style-6.3.2.ebuild +++ b/kde-plasma/qqc2-breeze-style/qqc2-breeze-style-6.3.3.ebuild diff --git a/kde-plasma/sddm-kcm/Manifest b/kde-plasma/sddm-kcm/Manifest index a7f63a647cb2..e4ddf897ee0b 100644 --- a/kde-plasma/sddm-kcm/Manifest +++ b/kde-plasma/sddm-kcm/Manifest @@ -1,2 +1,2 @@ DIST sddm-kcm-6.2.5.tar.xz 100428 BLAKE2B 5b3cd4b7c1e984580b83174c6aeda3fef486181167d577ba8c8e4fe309d2f4721e4c7be2e5baff9dc01ef304618bc29fd52c7d19c2fc9cd69dc0ea0679257cad SHA512 b001d27b1360c6296dfd952daf9a92a96f97cc126cf5af1e55b8d64a73ffc4aecdc1f574095dcb1ef42b6fb00e0e8d058c9469dcfba5e9b37601c69b5b77b0c2 -DIST sddm-kcm-6.3.2.tar.xz 103988 BLAKE2B 27c4847c5a4aed08ff4698c49ded7703629dd6237413a4e0dc6f6a1eba40888c55217e41e5254a4574c492ca54f1fb950f807c1eab197e84a0c869dd39ee97bd SHA512 3bbd1a73d37fbd966eca30ca180592982e585cb5334619eb9872fcd96708e32609eca50db9df6269e48f5c0af749de37d554a2a6141c9ed407bd375be10c3d95 +DIST sddm-kcm-6.3.3.tar.xz 103980 BLAKE2B 58aee3e16be57f99ea14c3ad2de3fd778d694ef78671da19c1cbc4e7b13fcb2636deaada9561d04ec0078fbe1d467a6cd64b92d4ba3d218d2c075ac6486b063c SHA512 ed11e85f43a2123c975287d24dc0433e76f0d52102f6d95d831f1f794073e38755ff87bc54a4002fe179949104663d066ccf5b26ad2bae6bcff0a891d005c838 diff --git a/kde-plasma/sddm-kcm/sddm-kcm-6.3.2.ebuild b/kde-plasma/sddm-kcm/sddm-kcm-6.3.3.ebuild index 79aaad592065..79aaad592065 100644 --- a/kde-plasma/sddm-kcm/sddm-kcm-6.3.2.ebuild +++ b/kde-plasma/sddm-kcm/sddm-kcm-6.3.3.ebuild diff --git a/kde-plasma/systemsettings/Manifest b/kde-plasma/systemsettings/Manifest index 479e511eb39b..79c121b8f00c 100644 --- a/kde-plasma/systemsettings/Manifest +++ b/kde-plasma/systemsettings/Manifest @@ -1,2 +1,2 @@ DIST systemsettings-6.2.5.tar.xz 219388 BLAKE2B f7a4e1b733d2ac3fca883069974f87a6976aa5865af3fa58f19d11df13a26fd586ff370cf2f2467c121957c80f02f83e8529c20c973198bb1061aac53e9205f4 SHA512 f68d11ebfdbf395ae40fe4408a8bd467c0924cfa19b222c23017e69ce2b2e8c624b49f81306d2eabb3d2eb1d2644922bdd13d8c4db419ca43b17be043b0b0dcc -DIST systemsettings-6.3.2.tar.xz 219248 BLAKE2B 797242567f30d8cfb36f0e808c8074ca32888024a9c270770d597c21e4a684cb0504ce71bb00d2d1dfd4dab49a8205f51d8534c5ed1e171bbd78fed1ca89adce SHA512 66a679f0ea1ef7b9a1e6f7f8e4db8cb3fa89db6a42d0aeeeac6d2dd3210de83bef5f627b94eca04ea9c9d1fd5615b195ec4813c00eb54f22643697c62f15d202 +DIST systemsettings-6.3.3.tar.xz 219216 BLAKE2B be67e4c21623cd0e06818911ddd23399762bb60ec8836c4b99ccc7afb272262b75a0432a095d583162aaa020d39bed68866aa7ab93d7102522a650cdb55e9304 SHA512 50def5315bfe2160a918ff09e3086258e04986df1aeee7e28d30eb69f110f62d7835824ec55aa748c701df54be0a131063d37ebf5a24d36e08a5da43787409a2 diff --git a/kde-plasma/systemsettings/systemsettings-6.3.2.ebuild b/kde-plasma/systemsettings/systemsettings-6.3.3.ebuild index 5c2f317f3630..5c2f317f3630 100644 --- a/kde-plasma/systemsettings/systemsettings-6.3.2.ebuild +++ b/kde-plasma/systemsettings/systemsettings-6.3.3.ebuild diff --git a/kde-plasma/wacomtablet/Manifest b/kde-plasma/wacomtablet/Manifest index 5f1d22fb3b21..64d61ff5081e 100644 --- a/kde-plasma/wacomtablet/Manifest +++ b/kde-plasma/wacomtablet/Manifest @@ -1,2 +1,2 @@ DIST wacomtablet-6.2.5.tar.xz 835256 BLAKE2B 00847e926a17a6c1168f9569a4155241df7dad6f6a6406683ad40b53aa426e3063e63753230df4d088574ecfda9a1cf9a14afc42d75b61718de39fb25d5120d2 SHA512 8bd8c84ce20e1cf972540d0bf6a4d1b078fea157842c348dfb2a0090761ad967f2855073f819bb5030f530509b1595676635a31839915591c88bf563fad1e219 -DIST wacomtablet-6.3.2.tar.xz 841600 BLAKE2B df640cb813b489a8a4855e4fff95ee38f256ab9cca526779fbe91895b6ccd25aa82a59feec888b562a6d9ee3ef59f74f71df6db466723be824794cfdeae7c845 SHA512 dc2775a3536ac84b1da555c210bb9db909d068c0b4404af5461426e0df2848b05efafb2bd2e1853221f8c03e1fa246934d3bb4a2100e9018d95380ffd7ba1731 +DIST wacomtablet-6.3.3.tar.xz 841672 BLAKE2B 50bf5f9473950046237f5a617fa84f44ceccbc4c5206255f839cb4438d3fffd574a03cac472a45a8b71fd5b19662c04949522bb8d4169671fe801820c4db14bc SHA512 dd142fc5ae19df6bfe3bfc663b1d819d74a7ee3ff3605036f7fb6a5089e7707050f359b483459fb2c8feb685afefed49b9dbb45ef70c0f7ee4a54d79142e29d1 diff --git a/kde-plasma/wacomtablet/wacomtablet-6.3.2.ebuild b/kde-plasma/wacomtablet/wacomtablet-6.3.3.ebuild index 0f810873e257..0f810873e257 100644 --- a/kde-plasma/wacomtablet/wacomtablet-6.3.2.ebuild +++ b/kde-plasma/wacomtablet/wacomtablet-6.3.3.ebuild diff --git a/kde-plasma/xdg-desktop-portal-kde/Manifest b/kde-plasma/xdg-desktop-portal-kde/Manifest index 7a15939ce3f5..1dd910bb0f61 100644 --- a/kde-plasma/xdg-desktop-portal-kde/Manifest +++ b/kde-plasma/xdg-desktop-portal-kde/Manifest @@ -1,2 +1,2 @@ DIST xdg-desktop-portal-kde-6.2.5.tar.xz 180000 BLAKE2B 79ee80711311b51d955507fbf329ea723d5d890b2bc007d24c9c990839bf120e24d6a434583d402e80b3f243c9eb0ed0e8cd895556e4aa1466b90e358766fc2e SHA512 0937ef20a41aaa70e807e1707b5ced5297cbcf52852aaf90519014b50ffde8e14b742cece8ca8b1257094e0b206f146d8ca8ecdf0aabd8840910dd1145d4839b -DIST xdg-desktop-portal-kde-6.3.2.tar.xz 190608 BLAKE2B 65b5f3ffb26e356f64151a1cd05a42e7f4efbf48ae7ad47d0bc9c4a740bc9ef3cdfa4cc7053693af839bc09c6eef559a4c59559a883f623f70c2f0cd20a3e1b0 SHA512 dac8ba86e07bd51e7c48fcb9bd6c48c29e5cefda69523a39d27b2bce16a6000e29882e25dd5a4877012af11968048dd2a16b3f5fef33104b052bbcd49feac583 +DIST xdg-desktop-portal-kde-6.3.3.tar.xz 190608 BLAKE2B 0f37977a33784c262cf8b56ee5a274ad5db318e3ef68f3c7669b01d6cd2f4807f9cda01012c76ca9aa9453576103fcb7b1b1aef9b4bdf543efa6eca42ecdf51a SHA512 1b108ec7ea3a38a917efe587a7c908342a40c82234fa9c7c0dc3e431dc890414fea7541c0cb333741f4572c9d456d8e7f125d29cc73baee8239d69299143a24f diff --git a/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-6.3.2.ebuild b/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-6.3.3.ebuild index 0e07675af06d..0e07675af06d 100644 --- a/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-6.3.2.ebuild +++ b/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-6.3.3.ebuild diff --git a/media-gfx/prusaslicer/Manifest b/media-gfx/prusaslicer/Manifest index 4e2171fa73fb..4778d455350d 100644 --- a/media-gfx/prusaslicer/Manifest +++ b/media-gfx/prusaslicer/Manifest @@ -1,2 +1,3 @@ DIST prusaslicer-2.8.1.tar.gz 69409077 BLAKE2B dd3ee810ea00d03f1790386d1fe1fd044c038429700cd33f21299abdf5def12902f7a07c23aa3d2a6cfc5e18d1e2534080889d4a33beefb493a504978a742453 SHA512 0471fa579a494d66e6b49c0bc1a9fa91f3a5f9147d8b7fa8133c6f03391f8daddddb19ed222d1be44f6f22e2de3021f3fb839331e3c3ccdf5643caa8a61d6912 DIST prusaslicer-2.9.0.tar.gz 70604482 BLAKE2B 14480ad6e4257d052e65f7158e14e6eb57f2e51c5c7ce3a6545b36a47007cb528aa38a1ff00eacd70374dfaef4ba7efd185dd5add1a6807f79148a124320126a SHA512 554099ba827f8b4af37727d4e99ad6b2f339c530f35a4f8e63f0c5aaf455a5fc3261b983939c487f76964c522ea8ecd13527efea7f881749f907a039cfe7ef89 +DIST prusaslicer-2.9.1.tar.gz 76767199 BLAKE2B 0aaf606f25b449f6787905edc06c15cf89e78fa1bc51db2f1fd9e54cc5d1285be9cbe5232e98bdd24de792784c328fb6a79535414b3ff279ddc4dccc8dd0c93c SHA512 a7a7131fa0d04bbf63954e047c8db18fffd71e35650841d281b5f97ec23b8029324a187320a5b5f5abdc7da2ec44c2a757e4a67db22e17bbcc069756e59959d9 diff --git a/media-gfx/prusaslicer/prusaslicer-2.9.1.ebuild b/media-gfx/prusaslicer/prusaslicer-2.9.1.ebuild new file mode 100644 index 000000000000..ddb4522b2ddc --- /dev/null +++ b/media-gfx/prusaslicer/prusaslicer-2.9.1.ebuild @@ -0,0 +1,111 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +WX_GTK_VER="3.2-gtk3" +MY_PN="PrusaSlicer" +MY_PV="$(ver_rs 3 -)" + +inherit cmake wxwidgets xdg + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/prusa3d/prusaslicer.git" +else + SRC_URI="https://github.com/prusa3d/PrusaSlicer/archive/refs/tags/version_${MY_PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" + S="${WORKDIR}/${MY_PN}-version_${MY_PV}" +fi + +DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)" +HOMEPAGE="https://www.prusa3d.com/prusaslicer/" + +LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT" +SLOT="0" +IUSE="test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-cpp/eigen:3 + dev-cpp/tbb:= + dev-libs/boost:=[nls] + dev-libs/cereal + dev-libs/expat + dev-libs/glib:2 + dev-libs/gmp:= + dev-libs/mpfr:= + media-gfx/openvdb:= + media-gfx/libbgcode + net-misc/curl[adns] + media-libs/glew:0= + media-libs/libjpeg-turbo:= + media-libs/libpng:0= + media-libs/qhull:= + net-libs/webkit-gtk:4.1 + sci-libs/libigl + sci-libs/nlopt + sci-libs/opencascade:= + sci-mathematics/cgal:= + sci-mathematics/z3:= + sys-apps/dbus + sys-libs/zlib:= + virtual/opengl + x11-libs/gtk+:3 + >=x11-libs/wxGTK-3.2.2.1-r3:${WX_GTK_VER}[X,opengl,webkit] + media-libs/nanosvg:= +" +DEPEND="${RDEPEND} + media-libs/qhull[static-libs] + test? ( =dev-cpp/catch-2* ) +" + +PATCHES=( + "${FILESDIR}/${PN}-2.6.0-dont-force-link-to-wayland-and-x11.patch" + "${FILESDIR}/${PN}-2.8.1-cgal-6.0.patch" + "${FILESDIR}/${PN}-2.8.1-fstream.patch" + "${FILESDIR}/${PN}-2.8.1-fix-libsoup-double-linking.patch" + "${FILESDIR}/${PN}-2.8.1-boost-1.87.patch" +) + +src_prepare() { + if has_version ">=sci-libs/opencascade-7.8.0"; then + eapply "${FILESDIR}/prusaslicer-2.8.1-opencascade-7.8.0.patch" + fi + + sed -i -e 's/PrusaSlicer-${SLIC3R_VERSION}+UNKNOWN/PrusaSlicer-${SLIC3R_VERSION}+Gentoo/g' version.inc || die + + sed -i -e 's/find_package(OpenCASCADE 7.6.[0-9] REQUIRED)/find_package(OpenCASCADE REQUIRED)/g' \ + src/occt_wrapper/CMakeLists.txt || die + + cmake_src_prepare +} + +src_configure() { + CMAKE_BUILD_TYPE="Release" + + setup-wxwidgets + + local mycmakeargs=( + -DOPENVDB_FIND_MODULE_PATH="/usr/$(get_libdir)/cmake/OpenVDB" + + -DSLIC3R_BUILD_TESTS=$(usex test) + -DSLIC3R_FHS=ON + -DSLIC3R_GTK=3 + -DSLIC3R_GUI=ON + -DSLIC3R_PCH=OFF + -DSLIC3R_STATIC=OFF + -DSLIC3R_WX_STABLE=ON + -Wno-dev + ) + + cmake_src_configure +} + +src_test() { + CMAKE_SKIP_TESTS=( + "^libslic3r_tests$" + ) + cmake_src_test +} diff --git a/media-libs/libplacebo/libplacebo-7.349.0.ebuild b/media-libs/libplacebo/libplacebo-7.349.0.ebuild index e064732a4551..ab284e72c71e 100644 --- a/media-libs/libplacebo/libplacebo-7.349.0.ebuild +++ b/media-libs/libplacebo/libplacebo-7.349.0.ebuild @@ -124,3 +124,13 @@ multilib_src_configure() { meson_src_configure } + +multilib_src_install() { + meson_src_install + + # prevent vulkan from leaking into the .pc here for now (bug #951125) + if use !vulkan && has_version media-libs/vulkan-loader; then + sed -Ee '/^Requires/s/vulkan[^,]*,? ?//;s/, $//;/^Requires[^:]*: $/d' \ + -i "${ED}"/usr/$(get_libdir)/pkgconfig/libplacebo.pc || die + fi +} diff --git a/media-libs/libplacebo/libplacebo-9999.ebuild b/media-libs/libplacebo/libplacebo-9999.ebuild index e6bb6f0958f3..c8b650ecf4b6 100644 --- a/media-libs/libplacebo/libplacebo-9999.ebuild +++ b/media-libs/libplacebo/libplacebo-9999.ebuild @@ -124,3 +124,13 @@ multilib_src_configure() { meson_src_configure } + +multilib_src_install() { + meson_src_install + + # prevent vulkan from leaking into the .pc here for now (bug #951125) + if use !vulkan && has_version media-libs/vulkan-loader; then + sed -Ee '/^Requires/s/vulkan[^,]*,? ?//;s/, $//;/^Requires[^:]*: $/d' \ + -i "${ED}"/usr/$(get_libdir)/pkgconfig/libplacebo.pc || die + fi +} diff --git a/media-sound/ardour/ardour-8.11.ebuild b/media-sound/ardour/ardour-8.11.ebuild index 0fe0a3ec51e3..d657adb69b4d 100644 --- a/media-sound/ardour/ardour-8.11.ebuild +++ b/media-sound/ardour/ardour-8.11.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == *9999* ]]; then else SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/Ardour-${PV}.0.tar.bz2" S="${WORKDIR}/Ardour-${PV}.0" - KEYWORDS="~amd64 ~loong ~x86" + KEYWORDS="amd64 ~loong ~x86" fi LICENSE="GPL-2" diff --git a/media-sound/audacity/Manifest b/media-sound/audacity/Manifest index 0d233886c818..8a16a6bbf610 100644 --- a/media-sound/audacity/Manifest +++ b/media-sound/audacity/Manifest @@ -1,4 +1,5 @@ DIST Audacity-3.3.3.tar.gz 57120215 BLAKE2B 566aa2529f2708c80eb8e2887c3f3b2a1477d0825133b960f824d0697716d5b5e3a3ba0bcb14a20afc2eba7ac544da154339d1cd37261225b06326e8ee3f730c SHA512 c484e747f5207785b1872d031be2c3c50e7bbce087909c41930e593e2ab5777e0ab527a2770d90d89854bdd131e3f1f7afe3696b30420e3d8370e9f95527c937 DIST audacity-sources-3.4.2.tar.gz 57499669 BLAKE2B deb7cda94903826900c6d900883573a03a587ec3e03c6773a5452e3252f4c61ec76f09975f8e275b0fb8941f4e7d10eca66387d2f7c0a3f033ff4e1b1f08acc5 SHA512 5c754d2faa5867a98f24e8eae3fdb5d640483830ea9b62f94c6670e3689d87e61df6c14e9d557717d9fbfaca3b207188325369d8876248f1fc9edad43e4b500c DIST audacity-sources-3.7.1.tar.gz 61795370 BLAKE2B 7309418e2bcb44041b97f2d636974c9d90478051a4ecc9b6838e99f53e4d1c769bf7223df14ec822c3947293f6f784c922577b3a3824ee0b4f5783140c42d249 SHA512 cf50e2978d1c95d51f452c004a85b447fa541c669058a90485139d9c8c386d9f2dea6803c7eb96bc6eeea5db0cb2880650171973f4af8ceb0ca2e15ff4599523 +DIST audacity-sources-3.7.2.tar.gz 62087884 BLAKE2B ecb060200a4ae848872b732ebe9dfc88546b332c3ba5399a36e3374b8b4f9ca7c24be2f796efb98d14491847b84ec6b3573abdd896f9f6eeb9c89a5c7d601e4d SHA512 7d6d75fa2a953981e524656eaf3b7a621003d315b1dc101f39601468413ff3045144b7ee581fa2136c16233880e2635b3103cc56d7eacaa5853aed0dbbaaa851 DIST progschj-ThreadPool-20140926.h 2612 BLAKE2B 54d050ad443512e60e5c99449dd7133f3884c1067288cfc36b96c06855537b83d9b599cd8b8fb7f24e20cbc4898585b11d98d3a33dc7571a886b57c806ad3b14 SHA512 f927489de9afe0217bb0552c45bea238693f9f183a062cb12a48e19576dc50a4d0ba449a12397012ae790cc5ebd741decc08128b66f795310dba4778122e9f3d diff --git a/media-sound/audacity/audacity-3.7.2.ebuild b/media-sound/audacity/audacity-3.7.2.ebuild new file mode 100644 index 000000000000..af043ce141be --- /dev/null +++ b/media-sound/audacity/audacity-3.7.2.ebuild @@ -0,0 +1,235 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +WX_GTK_VER="3.2-gtk3" + +inherit cmake flag-o-matic wxwidgets xdg virtualx + +DESCRIPTION="Free crossplatform audio editor" +HOMEPAGE="https://www.audacityteam.org/" + +# A header-only thread pool library, without a build system, about 100 +# lines of code. Probably not worth packaging individually. Check +# cmake-proxies/CMakeLists.txt and search for "ThreadPool". +MY_THREADPOOL_DATE=20140926 +MY_THREADPOOL="https://raw.githubusercontent.com/progschj/ThreadPool/9a42ec1329f259a5f4881a291db1dcb8f2ad9040/ThreadPool.h -> progschj-ThreadPool-${MY_THREADPOOL_DATE}.h" + +if [[ ${PV} = 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/audacity/audacity.git" +else + KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + MY_P="Audacity-${PV}" + S="${WORKDIR}/${PN}-sources-${PV}" + SRC_URI="https://github.com/audacity/audacity/releases/download/Audacity-${PV}/${PN}-sources-${PV}.tar.gz" +fi + +SRC_URI+=" audiocom? ( ${MY_THREADPOOL} )" + +# GPL-2+, GPL-3 - Audacity itself +# ZLIB - The ThreadPool single-header library +# CC-BY-3.0 - Documentation +LICENSE="GPL-2+ + GPL-3 + audiocom? ( ZLIB ) +" +SLOT="0" +IUSE="alsa audiocom ffmpeg +flac id3tag +ladspa +lv2 mpg123 +ogg + opus +portmixer sbsms test twolame vamp +vorbis wavpack" +REQUIRED_USE=" + audiocom? ( wavpack ) + opus? ( ogg ) + test? ( mpg123 ) + vorbis? ( ogg ) +" +RESTRICT="!test? ( test )" + +# dev-db/sqlite:3 hard dependency. +# dev-libs/glib:2, x11-libs/gtk+:3 hard dependency, from +# cmake-proxies/cmake-modules/dependencies/wxwidgets.cmake +# sys-apps/util-linux hard dependency, from cmake-proxies/CMakeLists.txt +# for libuuid +# portmidi became non-optional: building without it results in build +# failures, even with some of the Debian patches. It's probably not +# in our best interest to fix that as a patch series. +# glib, gtk and gdk are all directly relied on in the source, not just + +# Libraries used at runtime via dlopen: +# - dev-libs/{serd,sord} - for LV2 support +# - media-libs/{opus,sratom} :: For Opus and LV2 respectively +# - media-sound/lame :: For MP3 export +# - media-video/ffmpeg :: For generic FFMPEG export +# This one has the interesting property of many versions being +# supported at runtime. See: libraries/lib-ffmpeg-support/impl +# Current support grid: +# - Lavf - 5[789] +# - Lavc - 5[789] +# - Lavu - 5[2567] + +RDEPEND="dev-db/sqlite:3 + dev-libs/expat + dev-libs/glib:2 + media-libs/libjpeg-turbo:= + media-libs/libpng:= + media-libs/libsndfile + media-libs/libsoundtouch:= + media-libs/portaudio[alsa?] + media-libs/portmidi + media-libs/portsmf:= + media-libs/soxr + media-sound/lame + sys-apps/util-linux + sys-libs/zlib:= + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/wxGTK:${WX_GTK_VER}[X] + alsa? ( media-libs/alsa-lib ) + audiocom? ( + net-misc/curl + ) + ffmpeg? ( media-video/ffmpeg ) + flac? ( media-libs/flac:=[cxx] ) + id3tag? ( media-libs/libid3tag:= ) + lv2? ( + dev-libs/serd + dev-libs/sord + media-libs/lilv + media-libs/lv2 + media-libs/sratom + media-libs/suil + ) + mpg123? ( media-sound/mpg123-base ) + ogg? ( media-libs/libogg ) + opus? ( + media-libs/opus + media-libs/opusfile + ) + sbsms? ( media-libs/libsbsms ) + twolame? ( media-sound/twolame ) + vamp? ( media-libs/vamp-plugin-sdk ) + vorbis? ( media-libs/libvorbis ) + wavpack? ( media-sound/wavpack ) +" +DEPEND="${RDEPEND} + dev-libs/rapidjson + x11-base/xorg-proto + test? ( <dev-cpp/catch-3:0 )" +BDEPEND="|| ( dev-lang/nasm dev-lang/yasm ) + sys-devel/gettext + virtual/pkgconfig" + +PATCHES=( + # fixes include path + "${FILESDIR}/audacity-3.7.0-portsmf.patch" + + # disables ccache + "${FILESDIR}/audacity-3.7.0-disable-ccache.patch" + + # Disables some header-based detection + "${FILESDIR}/audacity-3.7.0-allow-overriding-alsa-jack.patch" + + # For has_networking + "${FILESDIR}/audacity-3.7.0-local-threadpool-libraries.patch" + + # Allows running tests without conan + "${FILESDIR}/audacity-3.3.3-remove-conan-test-dependency.patch" + + # #920363 + "${FILESDIR}/audacity-3.7.0-audiocom-std-string.patch" + + # 915041 + "${FILESDIR}/audacity-3.7.0-do-not-include-template-on-unix-to-fix-clang-compile.patch" +) + +src_prepare() { + cmake_src_prepare + + # Keep in sync with has_networking and the ThreadPool.h SRC_URI. + if use audiocom; then + mkdir -p "${S}/lib-src/threadpool/ThreadPool/" || die + cp "${DISTDIR}/progschj-ThreadPool-${MY_THREADPOOL_DATE}.h" \ + "${S}/lib-src/threadpool/ThreadPool/ThreadPool.h" || die + fi + + # Remove documentation incorrect installations + sed -i -e \ + '/install( FILES "${topdir}\/LICENSE.txt" "${topdir}\/README.md"/,+1d' \ + src/CMakeLists.txt || die +} + +src_configure() { + setup-wxwidgets + + # bug #944212 + append-cflags -std=gnu17 + + # * always use system libraries if possible + # * USE_VST was omitted, it appears to no longer have dependencies + # (this is different from VST3) + local mycmakeargs=( + # Tell the CMake-based build system it's building a release. + -DAUDACITY_BUILD_LEVEL=2 + + -Daudacity_conan_enabled=off + + -Daudacity_has_networking=$(usex audiocom on off) + # Not useful on Gentoo. + -Daudacity_has_updates_check=OFF + -Daudacity_has_audiocom_upload=$(usex audiocom on off) + + # Disable telemetry features. + -Daudacity_has_sentry_reporting=off + -Daudacity_has_crashreports=off + + -Daudacity_has_tests=$(usex test on off) + + # The VST3 SDK is unpackaged, and it appears to be under a breed + # of a proprietary license and the GPL. + -Daudacity_has_vst3=off + + -Daudacity_lib_preference=system + -Daudacity_obey_system_dependencies=ON + -Daudacity_use_expat=system + -Daudacity_use_ffmpeg=$(usex ffmpeg loaded off) + -Daudacity_use_libid3tag=$(usex id3tag system off) + -Daudacity_use_ladspa=$(usex ladspa) + -Daudacity_use_lame=system + -Daudacity_use_wxwidgets=system + -Daudacity_use_libflac=$(usex flac system off) + -Daudacity_use_libmp3lame=system + -Daudacity_use_libmpg123=$(usex mpg123 system off) + -Daudacity_use_libogg=$(usex ogg system off) + -Daudacity_use_libopus=$(usex opus system off) + -Daudacity_use_libsndfile=system + -Daudacity_use_libvorbis=$(usex vorbis system off) + -Daudacity_use_lv2=$(usex lv2 system off) + -Daudacity_use_midi=system + -Daudacity_use_nyquist=local + -Daudacity_use_opusfile=$(usex opus system off) + -Daudacity_use_pch=off + -Daudacity_use_portaudio=system + -Daudacity_use_portmixer=$(usex portmixer system off) + -Daudacity_use_portsmf=system + -Daudacity_use_rapidjson=system + -Daudacity_use_sbsms=$(usex sbsms system off) + -Daudacity_use_soundtouch=system + -Daudacity_use_soxr=system + -Daudacity_use_twolame=$(usex twolame system off) + -Daudacity_use_vamp=$(usex vamp system off) + -Daudacity_use_wavpack=$(usex wavpack system off) + + # See the allow-overriding-alsa-jack.patch patch + -DPA_HAS_ALSA=$(usex alsa on off) + ## Keep watch of PA_HAS_OSS in lib-src/portmixer/CMakeLists.txt; + ## AFAICT it introduces no deps as-is, but that could change. + ## Similar goes for PA_HAS_JACK. + ) + + cmake_src_configure +} + +src_test() { + virtx cmake_src_test +} diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest index 62854c15765e..b50d975c8bcb 100644 --- a/media-video/ffmpeg/Manifest +++ b/media-video/ffmpeg/Manifest @@ -10,5 +10,7 @@ DIST ffmpeg-7.1.tar.xz 11011364 BLAKE2B 91b012d12a0f2bc1742d7d2e634e358d5d10976a DIST ffmpeg-7.1.tar.xz.asc 520 BLAKE2B f7bfc9633a88b172c3d2b17eb612dd8fb619bef3f8aa22fcefecde7c8026aeff3978155aebd281937eafaf61f1c4ad18d3adeafdc2d8c4289f4f9312f3fc58db SHA512 063daa6007abb86de454ba61ba47c75d8251fac07e1b2366aab022a7d80d0bb658f678f2ca2f7c422ad3f5d289201509818f312fe81d72a4176954184b5f2fe6 DIST ffmpeg-rpi-6.1-r3.patch 800738 BLAKE2B b7e449ee5eec8b50a3b3bba233c5269f3b6845dbd18a619b844c841a97345ce24c7a5d7f4da05b08e3cb49668426b9044f3d3553d9c2ef3a50aec7199bfa3c09 SHA512 aeaf12afabf5f2192fb0b6ef47397d8477b109e49cee8c02a890d1656a27b1985c62c719ef72966d8c97b0709918233b65ea2e0ef988771507e4be137fcd9158 DIST ffmpeg-rpi-6.1-r3.patch.asc 833 BLAKE2B 31fd5823c06d5884f7b0980de9072c35bbf4e1d6c0ed20b089439325d50956127238ca29469b003dba623b888a5aae3c4d8ad177862534e77b8e51f29cbed96c SHA512 3d8943b7151e20f73e9c14b121c501847bd7e01f2cf57ff135fc8c223653ec9d433bfe4012fa564f70c0471980b66d7ec3d9b5b1b14865187187719ba110cb5f +DIST ffmpeg-rpi-7.1.1.patch 847869 BLAKE2B efc3fef1810034b40eee1f637499171529fc6027c4fc0ef66da587c704a7742b454903aa060b21305e1d9a714eb31d96cd93f93d7cadb5815a0de22ac040b9e1 SHA512 a3f9013aec9b17e0fc1689d946e57e251a88eac3f9e7856d46fe9614fea29211feaf106d32a31f97c0e8c83c1685ca454c31f9bcb5dafb669a0933d683e581c8 +DIST ffmpeg-rpi-7.1.1.patch.asc 833 BLAKE2B a30e8d0216325ac86a3b7f8ac132a61a1d3eb97eff5e758cdad5af89e74ecfb577bda6438b263651d772b265a38f8ac6bf5056598f6f707411236245f939045a SHA512 a75547b38ab1445b94fea2d38f60c93092a70ecd45ec6ec0830084280d684c631a49ccbf46327ac4052ade3e7934b257f8d2c3aa107950ec9da0e66873f3e5be DIST ffmpeg-rpi-7.1.patch 759127 BLAKE2B 90588440a30ba6cd1cb32e92cccc1ae11a85d518f654a9e8148564b843553af911f33ee0fa938d56fe175c27dab95bdeaa4aa2296ced493e8e7aaab7a5d02e47 SHA512 675a4c8197a59b11e014dd2344b6d7262ea0fbb97c34b1f038d94904759cad8888fd396611e0137b0e196996ab2123db72ddfe17d7fcf8f0c34ca4a22889c172 DIST ffmpeg-rpi-7.1.patch.asc 833 BLAKE2B a0874b58be460f512f924c07db93ecb198d1399c6c99d7921d5fa3db220b05b2ca7e7d34d5c68eae66fb4d03e03eaf0b5c7e019e2a293364b50395c575a36a94 SHA512 7f62d98c7c64329c353881fd441f5af8745f76c31a39485c44ea50ce9dead74c05465f310974fc2ceb23e9ac2c8b5b97a9be8957c574e478d883c65cb3041840 diff --git a/media-video/ffmpeg/ffmpeg-7.1.1.ebuild b/media-video/ffmpeg/ffmpeg-7.1.1.ebuild index 4b6a991e68a0..a7eaa68c0f14 100644 --- a/media-video/ffmpeg/ffmpeg-7.1.1.ebuild +++ b/media-video/ffmpeg/ffmpeg-7.1.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 inherit flag-o-matic multilib-minimal toolchain-funcs -FFMPEG_SOC_PATCH= +FFMPEG_SOC_PATCH=ffmpeg-rpi-7.1.1.patch FFMPEG_SUBSLOT=59.61.61 # avutil.avcodec.avformat SONAME if [[ ${PV} == 9999 ]]; then diff --git a/metadata/md5-cache/app-admin/winbox-4.0_beta17 b/metadata/md5-cache/app-admin/winbox-4.0_beta18 index 2c6becb7f00f..edec8c6647ed 100644 --- a/metadata/md5-cache/app-admin/winbox-4.0_beta17 +++ b/metadata/md5-cache/app-admin/winbox-4.0_beta18 @@ -9,6 +9,6 @@ LICENSE=MikroTik RDEPEND=media-libs/fontconfig media-libs/freetype media-libs/libglvnd sys-libs/zlib x11-libs/libX11 x11-libs/libxcb x11-libs/libxkbcommon x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm RESTRICT=bindist mirror SLOT=0 -SRC_URI=https://download.mikrotik.com/routeros/winbox/4.0beta17/WinBox_Linux.zip -> winbox-4.0_beta17.zip +SRC_URI=https://download.mikrotik.com/routeros/winbox/4.0beta18/WinBox_Linux.zip -> winbox-4.0_beta18.zip _eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed _md5_=498504d0882dc673c43a69e142b78cef diff --git a/metadata/md5-cache/app-crypt/acme-2.11.1 b/metadata/md5-cache/app-crypt/acme-2.11.1 index 3b2460dd6d60..2e0bc98fcde2 100644 --- a/metadata/md5-cache/app-crypt/acme-2.11.1 +++ b/metadata/md5-cache/app-crypt/acme-2.11.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/certbot/certbot https://pypi.org/project/acme/ https://letsencrypt.org/ INHERIT=distutils-r1 IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-python/chardet[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/cryptography-3.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] <dev-python/josepy-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyopenssl-23.1.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-2.20.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-toolbelt-0.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v2.11.1.tar.gz -> certbot-2.11.1.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=5f551086f99d413a42661d7694ac360d +_md5_=a8418f96da69fb30607029f619cd94a9 diff --git a/metadata/md5-cache/app-crypt/certbot-2.11.1 b/metadata/md5-cache/app-crypt/certbot-2.11.1 index 90b00b625f8a..b1bd20c02332 100644 --- a/metadata/md5-cache/app-crypt/certbot-2.11.1 +++ b/metadata/md5-cache/app-crypt/certbot-2.11.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/certbot/certbot https://pypi.org/project/certbot/ https://letsencrypt.org/ INHERIT=distutils-r1 IUSE=selinux doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=app-crypt/acme-2.11.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/configargparse-1.5.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/cryptography-3.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/distro-1.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] <dev-python/josepy-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/parsedatetime-2.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] selinux? ( sec-policy/selinux-certbot ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v2.11.1.tar.gz -> certbot-2.11.1.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=823b06ccf920fe0d65759b35ee6dad26 +_md5_=a4ccea359f39de4aed3e529b2b581110 diff --git a/metadata/md5-cache/app-crypt/certbot-3.2.0-r100 b/metadata/md5-cache/app-crypt/certbot-3.2.0-r100 index e331f8a3b9ed..ee8ea1ff69b1 100644 --- a/metadata/md5-cache/app-crypt/certbot-3.2.0-r100 +++ b/metadata/md5-cache/app-crypt/certbot-3.2.0-r100 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/certbot/certbot https://pypi.org/project/certbot/ https://letsencrypt.org/ INHERIT=distutils-r1 IUSE=selinux certbot-apache certbot-dns-dnsimple certbot-dns-dnsmadeeasy certbot-dns-gehirn certbot-dns-google certbot-dns-linode certbot-dns-luadns certbot-dns-nsone certbot-dns-ovh certbot-dns-rfc2136 certbot-dns-route53 certbot-dns-sakuracloud certbot-nginx doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=!<app-crypt/acme-3.2.0-r100 !<app-crypt/certbot-apache-3.2.0-r100 !<app-crypt/certbot-dns-desec-3.2.0-r100 !<app-crypt/certbot-dns-dnsimple-3.2.0-r100 !<app-crypt/certbot-dns-nsone-3.2.0-r100 !<app-crypt/certbot-dns-rfc2136-3.2.0-r100 !<app-crypt/certbot-nginx-3.2.0-r100 dev-python/chardet[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/configargparse-1.5.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/cryptography-43.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/distro-1.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] <dev-python/josepy-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/parsedatetime-2.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyopenssl-25.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-2.20.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] certbot-apache? ( dev-python/python-augeas[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-dnsimple? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-dnsmadeeasy? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-gehirn? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-google? ( >=dev-python/google-api-python-client-1.6.5[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/google-auth-2.16.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-linode? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-luadns? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-nsone? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-ovh? ( >=dev-python/dns-lexicon-3.15.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-rfc2136? ( >=dev-python/dnspython-2.6.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-route53? ( >=dev-python/boto3-1.15.15[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-dns-sakuracloud? ( >=dev-python/dns-lexicon-3.14.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) certbot-nginx? ( >=dev-python/pyopenssl-25.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyparsing-2.4.7[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) selinux? ( sec-policy/selinux-certbot ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v3.2.0.tar.gz -> certbot-3.2.0.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=fd98d10709761c3ba921d47cec3f7dbe +_md5_=148b63ea6ce88553af12ddef786030ec diff --git a/metadata/md5-cache/app-crypt/certbot-apache-2.11.1 b/metadata/md5-cache/app-crypt/certbot-apache-2.11.1 index 0debfbeddf4f..6779b662fefc 100644 --- a/metadata/md5-cache/app-crypt/certbot-apache-2.11.1 +++ b/metadata/md5-cache/app-crypt/certbot-apache-2.11.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/certbot/certbot https://pypi.org/project/certbot-apache/ https://letsencrypt.org/ INHERIT=distutils-r1 IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +KEYWORDS=amd64 ~arm64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=app-crypt/acme-2.11.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=app-crypt/certbot-2.11.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/python-augeas[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v2.11.1.tar.gz -> certbot-2.11.1.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=b19a148fbbce86bf871fc273af1d4113 +_md5_=d4e528cbf0e5f122eac88dcda6573d7a diff --git a/metadata/md5-cache/app-crypt/certbot-nginx-2.11.1 b/metadata/md5-cache/app-crypt/certbot-nginx-2.11.1 index 8adca15557b7..c1fb8fe8c47e 100644 --- a/metadata/md5-cache/app-crypt/certbot-nginx-2.11.1 +++ b/metadata/md5-cache/app-crypt/certbot-nginx-2.11.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/certbot/certbot https://pypi.org/project/certbot-nginx/ https://letsencrypt.org/ INHERIT=distutils-r1 IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=>=app-crypt/acme-2.11.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=app-crypt/certbot-2.11.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyopenssl-23.1.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyparsing-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/certbot/certbot/archive/v2.11.1.tar.gz -> certbot-2.11.1.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=2240b8519c64e4827ce23b8c4589096b +_md5_=24c516a35856d5f73924d6a73755b8c7 diff --git a/metadata/md5-cache/app-editors/vscode-1.97.2 b/metadata/md5-cache/app-editors/vscode-1.97.2 deleted file mode 100644 index a50179c37d0e..000000000000 --- a/metadata/md5-cache/app-editors/vscode-1.97.2 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=install postinst postrm preinst -DESCRIPTION=Multiplatform Visual Studio Code from Microsoft -EAPI=8 -HOMEPAGE=https://code.visualstudio.com -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop pax-utils xdg optfeature -IUSE=egl kerberos wayland -KEYWORDS=-* amd64 ~arm ~arm64 -LICENSE=Apache-2.0 BSD BSD-1 BSD-2 BSD-4 CC-BY-4.0 ISC LGPL-2.1+ Microsoft-vscode MIT MPL-2.0 openssl PYTHON TextMate-bundle Unlicense UoI-NCSA W3C -RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-crypt/libsecret[crypt] app-misc/ca-certificates dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/libglvnd media-libs/mesa net-misc/curl sys-apps/dbus sys-libs/zlib sys-process/lsof 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/libxkbfile x11-libs/libXrandr x11-libs/libXScrnSaver x11-libs/pango x11-misc/xdg-utils kerberos? ( app-crypt/mit-krb5 ) -RESTRICT=mirror strip bindist -SLOT=0 -SRC_URI=amd64? ( https://update.code.visualstudio.com/1.97.2/linux-x64/stable -> vscode-1.97.2-amd64.tar.gz ) arm? ( https://update.code.visualstudio.com/1.97.2/linux-armhf/stable -> vscode-1.97.2-arm.tar.gz ) arm64? ( https://update.code.visualstudio.com/1.97.2/linux-arm64/stable -> vscode-1.97.2-arm64.tar.gz ) -_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=a0fe291badbcdb067e673f0ecf77b07c diff --git a/metadata/md5-cache/app-editors/vscode-1.97.1 b/metadata/md5-cache/app-editors/vscode-1.98.1 index 820ef433fe60..b89df84d01fc 100644 --- a/metadata/md5-cache/app-editors/vscode-1.97.1 +++ b/metadata/md5-cache/app-editors/vscode-1.98.1 @@ -10,6 +10,6 @@ LICENSE=Apache-2.0 BSD BSD-1 BSD-2 BSD-4 CC-BY-4.0 ISC LGPL-2.1+ Microsoft-vscod RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-crypt/libsecret[crypt] app-misc/ca-certificates dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/libglvnd media-libs/mesa net-misc/curl sys-apps/dbus sys-libs/zlib sys-process/lsof 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/libxkbfile x11-libs/libXrandr x11-libs/libXScrnSaver x11-libs/pango x11-misc/xdg-utils kerberos? ( app-crypt/mit-krb5 ) RESTRICT=mirror strip bindist SLOT=0 -SRC_URI=amd64? ( https://update.code.visualstudio.com/1.97.1/linux-x64/stable -> vscode-1.97.1-amd64.tar.gz ) arm? ( https://update.code.visualstudio.com/1.97.1/linux-armhf/stable -> vscode-1.97.1-arm.tar.gz ) arm64? ( https://update.code.visualstudio.com/1.97.1/linux-arm64/stable -> vscode-1.97.1-arm64.tar.gz ) +SRC_URI=amd64? ( https://update.code.visualstudio.com/1.98.1/linux-x64/stable -> vscode-1.98.1-amd64.tar.gz ) arm? ( https://update.code.visualstudio.com/1.98.1/linux-armhf/stable -> vscode-1.98.1-arm.tar.gz ) arm64? ( https://update.code.visualstudio.com/1.98.1/linux-arm64/stable -> vscode-1.98.1-arm64.tar.gz ) _eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a0fe291badbcdb067e673f0ecf77b07c diff --git a/metadata/md5-cache/app-editors/zile-2.6.3 b/metadata/md5-cache/app-editors/zile-2.6.3 new file mode 100644 index 000000000000..1166676e7217 --- /dev/null +++ b/metadata/md5-cache/app-editors/zile-2.6.3 @@ -0,0 +1,14 @@ +BDEPEND=dev-lang/perl sys-apps/help2man virtual/pkgconfig || ( dev-lang/vala:0.56 ) +DEFINED_PHASES=configure prepare test +DEPEND=dev-libs/glib:2 dev-libs/libgee:0.8= sys-libs/ncurses:0= +DESCRIPTION=Zile is a small Emacs clone +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/zile/ +INHERIT=toolchain-funcs vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=GPL-3+ +RDEPEND=dev-libs/glib:2 dev-libs/libgee:0.8= sys-libs/ncurses:0= +SLOT=0 +SRC_URI=mirror://gnu/zile/zile-2.6.3.tar.gz +_eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 vala e477903dbe0105930c51f170a592dc16 +_md5_=b447aa2d376c0ae091c59ee91470abe0 diff --git a/metadata/md5-cache/app-emacs/dape-0.21.0 b/metadata/md5-cache/app-emacs/dape-0.23.0 index bc4c01363900..2bcc986c3bf9 100644 --- a/metadata/md5-cache/app-emacs/dape-0.21.0 +++ b/metadata/md5-cache/app-emacs/dape-0.23.0 @@ -10,6 +10,6 @@ LICENSE=GPL-3+ RDEPEND=|| ( app-emacs/jsonrpc >=app-editors/emacs-30:* ) >=app-editors/emacs-29.1:* RESTRICT=test SLOT=0 -SRC_URI=https://github.com/svaante/dape/archive/refs/tags/0.21.0.tar.gz -> dape-0.21.0.tar.gz +SRC_URI=https://github.com/svaante/dape/archive/refs/tags/0.23.0.tar.gz -> dape-0.23.0.tar.gz _eclasses_=elisp 8dfc7a00348fe9c91895014adc78a4a5 elisp-common 4ee3453b022aae73f4d827a0f98920c2 -_md5_=53260a80f9ce47b06dfb896ed3d0552b +_md5_=214810af8fe9d1e3e74b81793951571e diff --git a/metadata/md5-cache/app-emacs/proofgeneral-4.5 b/metadata/md5-cache/app-emacs/proofgeneral-4.5 index 1fab36e0d7ee..f88d584b7c6d 100644 --- a/metadata/md5-cache/app-emacs/proofgeneral-4.5 +++ b/metadata/md5-cache/app-emacs/proofgeneral-4.5 @@ -10,4 +10,4 @@ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ProofGeneral/PG/archive/v4.5.tar.gz -> proofgeneral-4.5.tar.gz _eclasses_=elisp 8dfc7a00348fe9c91895014adc78a4a5 elisp-common 4ee3453b022aae73f4d827a0f98920c2 wrapper 11a2a3bd712784986679b60a0cab34a0 -_md5_=163db2ff177f74b072feb52927d10fa2 +_md5_=67cf572b33e9960fa486711f85a79882 diff --git a/metadata/md5-cache/app-misc/openrgb-9999 b/metadata/md5-cache/app-misc/openrgb-9999 index 0b69a2d38727..ab8acc33ce00 100644 --- a/metadata/md5-cache/app-misc/openrgb-9999 +++ b/metadata/md5-cache/app-misc/openrgb-9999 @@ -10,4 +10,4 @@ PROPERTIES=live RDEPEND=dev-cpp/cpp-httplib:= dev-libs/hidapi dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 net-libs/mbedtls:0= virtual/libusb:1 SLOT=0/3 _eclasses_=check-reqs 2a9731073c152554078a9a8df8fc0f1b flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 multilib b2a329026f2e404e9e371097dda47f96 qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 udev f3d9a4376ebd22131726a68e1a0a058f xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=1051c10852b385c1524298bd7cf5f024 +_md5_=9bc28685fc63665abcc4e107a129c0cc diff --git a/metadata/md5-cache/dev-db/mongodb-compass-bin-1.45.4 b/metadata/md5-cache/dev-db/mongodb-compass-bin-1.45.4 new file mode 100644 index 000000000000..216f47ed3a57 --- /dev/null +++ b/metadata/md5-cache/dev-db/mongodb-compass-bin-1.45.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst postrm preinst unpack +DESCRIPTION=GUI for MongoDB +EAPI=8 +HOMEPAGE=https://mongodb.com/compass https://github.com/mongodb-js/compass +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop unpacker wrapper xdg +KEYWORDS=-* ~amd64 +LICENSE=SSPL-1 +RDEPEND=dev-libs/nss dev-libs/openssl:0/3 media-libs/alsa-lib media-libs/mesa net-misc/curl net-print/cups sys-apps/dbus sys-libs/glibc sys-libs/zlib virtual/secret-service 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 +SLOT=0 +SRC_URI=https://github.com/mongodb-js/compass/releases/download/v1.45.4/mongodb-compass_1.45.4_amd64.deb +_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 unpacker fb4b84181244b3b9990fa0bf40232dd2 wrapper 11a2a3bd712784986679b60a0cab34a0 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=9cef705a6ea2e11c919bda8d9739765b diff --git a/metadata/md5-cache/dev-java/openjdk-25_p10 b/metadata/md5-cache/dev-java/openjdk-25_p13 index 47916e447e96..856df968594c 100644 --- a/metadata/md5-cache/dev-java/openjdk-25_p10 +++ b/metadata/md5-cache/dev-java/openjdk-25_p13 @@ -11,6 +11,6 @@ LICENSE=GPL-2-with-classpath-exception RDEPEND=media-libs/freetype:2= media-libs/giflib:0/7 media-libs/harfbuzz:= media-libs/libpng:0= media-libs/lcms:2= sys-libs/zlib media-libs/libjpeg-turbo:0= systemtap? ( dev-debug/systemtap ) >=sys-apps/baselayout-java-0.1.0-r1 !headless-awt? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXt x11-libs/libXtst ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) selinux? ( sec-policy/selinux-java ) >=dev-java/java-config-2.2.0-r3 dev-java/java-config app-eselect/eselect-java REQUIRED_USE=javafx? ( alsa !headless-awt ) !system-bootstrap? ( jbootstrap ) !system-bootstrap? ( ppc64 ) SLOT=25 -SRC_URI=https://github.com/openjdk/jdk/archive/jdk-25+10.tar.gz -> openjdk-25_p10.tar.gz !system-bootstrap? ( ppc64? ( big-endian? ( https://dev.gentoo.org/~arthurzam/distfiles/dev-java/openjdk/openjdk-bootstrap-21.0.0_p35-ppc64.tar.xz ) ) ) +SRC_URI=https://github.com/openjdk/jdk/archive/jdk-25+13.tar.gz -> openjdk-25_p13.tar.gz !system-bootstrap? ( ppc64? ( big-endian? ( https://dev.gentoo.org/~arthurzam/distfiles/dev-java/openjdk/openjdk-bootstrap-21.0.0_p35-ppc64.tar.xz ) ) ) _eclasses_=check-reqs 2a9731073c152554078a9a8df8fc0f1b flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 java-pkg-2 38fd81c7880666a00a638ca8deb64d72 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 java-vm-2 6c7243f2269a7c9b5c177579e49f89ab multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=6ae5770315b089d93d1e32a762cc2268 diff --git a/metadata/md5-cache/dev-java/openjdk-bin-25_p10_beta b/metadata/md5-cache/dev-java/openjdk-bin-25_p13_beta index 87cafcd14670..add7ed3813bc 100644 --- a/metadata/md5-cache/dev-java/openjdk-bin-25_p10_beta +++ b/metadata/md5-cache/dev-java/openjdk-bin-25_p13_beta @@ -11,6 +11,6 @@ LICENSE=GPL-2-with-classpath-exception RDEPEND=>=sys-apps/baselayout-java-0.1.0-r1 kernel_linux? ( media-libs/fontconfig:1.0 media-libs/freetype:2 media-libs/harfbuzz elibc_glibc? ( >=sys-libs/glibc-2.2.5:* ) elibc_musl? ( sys-libs/musl ) sys-libs/zlib alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) selinux? ( sec-policy/selinux-java ) !headless-awt? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrender x11-libs/libXtst ) ) dev-java/java-config app-eselect/eselect-java RESTRICT=preserve-libs splitdebug SLOT=25 -SRC_URI=arm64? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+10-ea-beta//OpenJDK-jdk_aarch64_linux_hotspot_25_10-ea.tar.gz ) arm64? ( elibc_musl? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+10-ea-beta//OpenJDK-jdk_aarch64_alpine-linux_hotspot_25_10-ea.tar.gz ) ) ppc64? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+10-ea-beta//OpenJDK-jdk_ppc64le_linux_hotspot_25_10-ea.tar.gz ) amd64? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+10-ea-beta//OpenJDK-jdk_x64_linux_hotspot_25_10-ea.tar.gz ) amd64? ( elibc_musl? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+10-ea-beta//OpenJDK-jdk_x64_alpine-linux_hotspot_25_10-ea.tar.gz ) ) riscv? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+10-ea-beta//OpenJDK-jdk_riscv64_linux_hotspot_25_10-ea.tar.gz ) +SRC_URI=arm64? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+13-ea-beta//OpenJDK-jdk_aarch64_linux_hotspot_25_13-ea.tar.gz ) arm64? ( elibc_musl? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+13-ea-beta//OpenJDK-jdk_aarch64_alpine-linux_hotspot_25_13-ea.tar.gz ) ) ppc64? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+13-ea-beta//OpenJDK-jdk_ppc64le_linux_hotspot_25_13-ea.tar.gz ) amd64? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+13-ea-beta//OpenJDK-jdk_x64_linux_hotspot_25_13-ea.tar.gz ) amd64? ( elibc_musl? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+13-ea-beta//OpenJDK-jdk_x64_alpine-linux_hotspot_25_13-ea.tar.gz ) ) riscv? ( https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25+13-ea-beta//OpenJDK-jdk_riscv64_linux_hotspot_25_13-ea.tar.gz ) _eclasses_=java-vm-2 6c7243f2269a7c9b5c177579e49f89ab multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=2876eb122478841a5a5e611102e1e86c diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-2021-r5 b/metadata/md5-cache/dev-lang/gnat-gpl-2021-r5 index 6f335e061c02..bf44ce85fed5 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-2021-r5 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-2021-r5 @@ -13,5 +13,5 @@ RDEPEND=!=sys-devel/gcc-10.3.1* sys-libs/zlib virtual/libiconv nls? ( virtual/li RESTRICT=test !test? ( test ) test SLOT=10 SRC_URI=https://community.download.adacore.com/v1/005d2b2eff627177986d2517eb31e1959bec6f3a?filename=gnat-2021-20210519-19A70-src.tar.gz -> gnat-2021-20210519-19A70-src.tar.gz https://community.download.adacore.com/v1/44cd393be0b468cc253bf2cf9cf7804c993e7b5b?filename=gcc-10-2021-20210519-19A74-src.tar.gz -> gcc-10-2021-20210519-19A74-src.tar.gz https://community.download.adacore.com/v1/8ace7d06e469d36d726cc8badb0ed78411e727f3?filename=gcc-interface-10-2021-20210519-19A75-src.tar.gz -> gcc-interface-10-2021-20210519-19A75-src.tar.gz !system-bootstrap? ( amd64? ( https://community.download.adacore.com/v1/6eb6eef6bb897e4c743a519bfebe0b1d6fc409c6?filename=gnat-gpl-2014-x86_64-linux-bin.tar.gz&rand=1193 -> gnat-gpl-2014-x86_64-linux-bin.tar.gz ) x86? ( https://community.download.adacore.com/v1/c5e9e6fdff5cb77ed90cf8c62536653e27c0bed6?filename=gnat-gpl-2014-x86-linux-bin.tar.gz&rand=436 -> gnat-gpl-2014-x86-linux-bin.tar.gz ) ) https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-4.tar.xz mirror://gentoo/gcc-10.3.0-patches-4.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=8995673db03010c353d7d91998993da7 diff --git a/metadata/md5-cache/dev-ml/batteries-3.5.1 b/metadata/md5-cache/dev-ml/batteries-3.5.1-r1 index d0e72d997c3f..0b82178bb602 100644 --- a/metadata/md5-cache/dev-ml/batteries-3.5.1 +++ b/metadata/md5-cache/dev-ml/batteries-3.5.1-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-ml/ocamlbuild +BDEPEND=dev-ml/ocamlbuild <dev-lang/ocaml-5 DEFINED_PHASES=compile install DEPEND=>=dev-ml/findlib-1.0.4-r1[ocamlopt?] DESCRIPTION=A community-maintained standard library extension @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/3.5.1 SRC_URI=https://github.com/ocaml-batteries-team/batteries-included/archive/v3.5.1.tar.gz -> batteries-3.5.1.tar.gz _eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e -_md5_=5c687125da31117b2c4a81e7ae94271c +_md5_=7283580c5967717d23bc7bc0eb46f470 diff --git a/metadata/md5-cache/dev-ml/batteries-3.6.0-r1 b/metadata/md5-cache/dev-ml/batteries-3.6.0-r2 index 4b0bae5f2ad0..8d3801d98357 100644 --- a/metadata/md5-cache/dev-ml/batteries-3.6.0-r1 +++ b/metadata/md5-cache/dev-ml/batteries-3.6.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=dev-ml/ocamlbuild +BDEPEND=dev-ml/ocamlbuild <dev-lang/ocaml-5 DEFINED_PHASES=compile install DEPEND=dev-ml/camlp-streams:= dev-ml/num:= >=dev-ml/findlib-1.0.4-r1[ocamlopt?] DESCRIPTION=A community-maintained standard library extension @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/3.6.0 SRC_URI=https://github.com/ocaml-batteries-team/batteries-included/archive/v3.6.0.tar.gz -> batteries-3.6.0.tar.gz _eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e -_md5_=c6a84297bf50a508bcacfb9d1442bce7 +_md5_=9b2c4709d7478fa0e0100697322dded1 diff --git a/metadata/md5-cache/dev-ml/batteries-3.6.1 b/metadata/md5-cache/dev-ml/batteries-3.6.1-r1 index fd3a81334133..fa30265df3cc 100644 --- a/metadata/md5-cache/dev-ml/batteries-3.6.1 +++ b/metadata/md5-cache/dev-ml/batteries-3.6.1-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-ml/ocamlbuild +BDEPEND=dev-ml/ocamlbuild <dev-lang/ocaml-5 DEFINED_PHASES=compile install DEPEND=dev-ml/camlp-streams:= dev-ml/num:= >=dev-ml/findlib-1.0.4-r1[ocamlopt?] DESCRIPTION=A community-maintained standard library extension @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/3.6.1 SRC_URI=https://github.com/ocaml-batteries-team/batteries-included/archive/v3.6.1.tar.gz -> batteries-3.6.1.tar.gz _eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e -_md5_=032d46fe7c214651d0c9724a6a8f8248 +_md5_=9b2c4709d7478fa0e0100697322dded1 diff --git a/metadata/md5-cache/dev-ml/batteries-3.8.0 b/metadata/md5-cache/dev-ml/batteries-3.8.0-r1 index c21a5685268c..8698db64493e 100644 --- a/metadata/md5-cache/dev-ml/batteries-3.8.0 +++ b/metadata/md5-cache/dev-ml/batteries-3.8.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-lang/ocaml dev-ml/dune +BDEPEND=<dev-lang/ocaml-5.3 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=dev-ml/camlp-streams:=[ocamlopt?] dev-ml/num:=[ocamlopt?] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=A community-maintained standard library extension @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/3.8.0 SRC_URI=https://github.com/ocaml-batteries-team/batteries-included/archive/v3.8.0.tar.gz -> batteries-3.8.0.tar.gz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=07c3ee7e7b33bc8c73fac91a1ed6fa80 +_md5_=5f208a0cb3915c2941c36f8a53be3142 diff --git a/metadata/md5-cache/dev-ml/calendar-2.04 b/metadata/md5-cache/dev-ml/calendar-2.04-r1 index fea87866efdb..f85ac70f393d 100644 --- a/metadata/md5-cache/dev-ml/calendar-2.04 +++ b/metadata/md5-cache/dev-ml/calendar-2.04-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile install test -DEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt] >=dev-ml/findlib-1.0.4-r1[ocamlopt?] +DEPEND=<dev-lang/ocaml-5:=[ocamlopt] >=dev-ml/findlib-1.0.4-r1[ocamlopt?] DESCRIPTION=Ocaml library to handle dates and time EAPI=7 HOMEPAGE=https://forge.ocamlcore.org/projects/calendar/ @@ -7,8 +7,8 @@ INHERIT=findlib IUSE=doc +ocamlopt KEYWORDS=~amd64 LICENSE=LGPL-2.1-with-linking-exception -RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt] dev-lang/ocaml:=[ocamlopt?] +RDEPEND=<dev-lang/ocaml-5:=[ocamlopt] dev-lang/ocaml:=[ocamlopt?] SLOT=0/2.04 SRC_URI=https://download.ocamlcore.org/calendar/calendar/2.04/calendar-2.04.tar.gz _eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e -_md5_=84ab2cff340c0d1312e5f73dc4542ac0 +_md5_=3fffca61419218cfc73c9a3d3d542322 diff --git a/metadata/md5-cache/dev-ml/camldbm-1.2 b/metadata/md5-cache/dev-ml/camldbm-1.2-r1 index ecd5b6805a41..b341f3926686 100644 --- a/metadata/md5-cache/dev-ml/camldbm-1.2 +++ b/metadata/md5-cache/dev-ml/camldbm-1.2-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=install prepare -DEPEND=>=sys-libs/gdbm-1.9.1-r2[berkdb] >=dev-lang/ocaml-3.12:=[ocamlopt] +DEPEND=>=sys-libs/gdbm-1.9.1-r2[berkdb] <dev-lang/ocaml-5:=[ocamlopt] DESCRIPTION=OCaml binding to the NDBM/GDBM Unix databases EAPI=7 HOMEPAGE=https://github.com/ocaml/dbm INHERIT=toolchain-funcs KEYWORDS=amd64 arm ~ppc x86 LICENSE=LGPL-2-with-linking-exception -RDEPEND=>=sys-libs/gdbm-1.9.1-r2[berkdb] >=dev-lang/ocaml-3.12:=[ocamlopt] +RDEPEND=>=sys-libs/gdbm-1.9.1-r2[berkdb] <dev-lang/ocaml-5:=[ocamlopt] SLOT=0/1.2 SRC_URI=https://github.com/ocaml/dbm/archive/camldbm-1.2.tar.gz _eclasses_=multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=25bd58723b735e7dc913a778649ffd8f +_md5_=8f094d098cf31f812441a39543fa284b diff --git a/metadata/md5-cache/dev-ml/facile-1.1.4 b/metadata/md5-cache/dev-ml/facile-1.1.4 index 742a37afae5e..7c45241d113a 100644 --- a/metadata/md5-cache/dev-ml/facile-1.1.4 +++ b/metadata/md5-cache/dev-ml/facile-1.1.4 @@ -1,5 +1,5 @@ BDEPEND=dev-lang/ocaml dev-ml/dune -DEFINED_PHASES=compile install test +DEFINED_PHASES=compile install prepare test DEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=OCaml constraint programming library on integer & integer set finite domains EAPI=8 @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-4:=[ocamlopt?] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/d SLOT=0/1.1.4 SRC_URI=https://github.com/Emmanuel-PLF/facile/releases/download/1.1.4/facile-1.1.4.tbz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=0b806810772b8c95fda63b48c56dc3d7 +_md5_=7ed47e58d90fbeb5a7fab4685c5a4b71 diff --git a/metadata/md5-cache/dev-ml/gsl-ocaml-1.24.3-r1 b/metadata/md5-cache/dev-ml/gsl-ocaml-1.24.3-r2 index 5a7e791a46df..8a377918a958 100644 --- a/metadata/md5-cache/dev-ml/gsl-ocaml-1.24.3-r1 +++ b/metadata/md5-cache/dev-ml/gsl-ocaml-1.24.3-r2 @@ -1,4 +1,4 @@ -BDEPEND=dev-lang/ocaml dev-ml/dune +BDEPEND=<dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=dev-ml/dune-configurator >=sci-libs/gsl-1.19:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=OCaml bindings for the GSL library (successor of dev-ml/ocamlgsl) @@ -8,8 +8,8 @@ INHERIT=dune IUSE=+ocamlopt KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=dev-ml/dune-configurator >=sci-libs/gsl-1.19:= !dev-ml/ocamlgsl >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +RDEPEND=dev-ml/dune-configurator >=sci-libs/gsl-1.19:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0 SRC_URI=https://github.com/mmottl/gsl-ocaml/releases/download/1.24.3/gsl-1.24.3.tbz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=da97ad6f1e66f7fbd4ee7c33c6e8e003 +_md5_=d4dd9e2be518beb898cad30b1a8e7991 diff --git a/metadata/md5-cache/dev-ml/lablgl-1.06-r1 b/metadata/md5-cache/dev-ml/lablgl-1.06-r2 index a30d6f10e458..7ac8aab50e08 100644 --- a/metadata/md5-cache/dev-ml/lablgl-1.06-r1 +++ b/metadata/md5-cache/dev-ml/lablgl-1.06-r2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install -DEPEND=>=dev-lang/ocaml-3.10.2:=[ocamlopt?] x11-libs/libXext x11-libs/libXmu x11-libs/libX11 virtual/opengl virtual/glu glut? ( media-libs/freeglut ) tk? ( >=dev-lang/tcl-8.3:0= >=dev-lang/tk-8.3:0= dev-ml/labltk:= ) +DEPEND=<dev-lang/ocaml-5:=[ocamlopt?] x11-libs/libXext x11-libs/libXmu x11-libs/libX11 virtual/opengl virtual/glu glut? ( media-libs/freeglut ) tk? ( >=dev-lang/tcl-8.3:0= >=dev-lang/tk-8.3:0= dev-ml/labltk:= ) DESCRIPTION=Objective CAML interface for OpenGL EAPI=7 HOMEPAGE=https://github.com/garrigue/lablgl @@ -7,8 +7,8 @@ INHERIT=toolchain-funcs IUSE=doc glut +ocamlopt tk KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86 ~amd64-linux ~x86-linux LICENSE=BSD -RDEPEND=>=dev-lang/ocaml-3.10.2:=[ocamlopt?] x11-libs/libXext x11-libs/libXmu x11-libs/libX11 virtual/opengl virtual/glu glut? ( media-libs/freeglut ) tk? ( >=dev-lang/tcl-8.3:0= >=dev-lang/tk-8.3:0= dev-ml/labltk:= ) +RDEPEND=<dev-lang/ocaml-5:=[ocamlopt?] x11-libs/libXext x11-libs/libXmu x11-libs/libX11 virtual/opengl virtual/glu glut? ( media-libs/freeglut ) tk? ( >=dev-lang/tcl-8.3:0= >=dev-lang/tk-8.3:0= dev-ml/labltk:= ) SLOT=0/1.06 SRC_URI=https://github.com/garrigue/lablgl/archive/v1.06.tar.gz -> lablgl-1.06.tar.gz _eclasses_=multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=201cf93c4161449bf7a3854065c3d402 +_md5_=786f8a53938e4a0f1c15bffbaba751fc diff --git a/metadata/md5-cache/dev-ml/ocaml-gettext-0.4.2-r1 b/metadata/md5-cache/dev-ml/ocaml-gettext-0.4.2-r2 index 4e03a2ecce66..2d1adc216915 100644 --- a/metadata/md5-cache/dev-ml/ocaml-gettext-0.4.2-r1 +++ b/metadata/md5-cache/dev-ml/ocaml-gettext-0.4.2-r2 @@ -1,6 +1,6 @@ BDEPEND=>=dev-ml/cppo-1.6.6 dev-ml/dune-configurator dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install prepare test -DEPEND=dev-ml/base:= >=dev-ml/ocaml-fileutils-0.4.0:=[ocamlopt=] sys-devel/gettext test? ( dev-ml/ounit2[ocamlopt=] ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +DEPEND=dev-ml/base:= >=dev-ml/ocaml-fileutils-0.4.0:=[ocamlopt=] sys-devel/gettext <dev-lang/ocaml-5 test? ( dev-ml/ounit2[ocamlopt=] ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Provides support for internationalization of OCaml program EAPI=8 HOMEPAGE=https://github.com/gildor478/ocaml-gettext @@ -8,9 +8,9 @@ INHERIT=dune IUSE=+ocamlopt test KEYWORDS=amd64 ~ppc64 ~x86 LICENSE=LGPL-2.1-with-linking-exception -RDEPEND=dev-ml/base:= >=dev-ml/ocaml-fileutils-0.4.0:=[ocamlopt=] sys-devel/gettext >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +RDEPEND=dev-ml/base:= >=dev-ml/ocaml-fileutils-0.4.0:=[ocamlopt=] sys-devel/gettext <dev-lang/ocaml-5 >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/0.4.2 SRC_URI=https://github.com/gildor478/ocaml-gettext/archive/v0.4.2.tar.gz -> ocaml-gettext-0.4.2.tar.gz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=f45ab1c8a382f7ab701694833a4e6b52 +_md5_=e8dcd80a51c0437c14628c84d4058793 diff --git a/metadata/md5-cache/dev-ml/ocamlnet-4.1.8-r1 b/metadata/md5-cache/dev-ml/ocamlnet-4.1.8-r2 index e944fc7f6dce..36998a8cfb69 100644 --- a/metadata/md5-cache/dev-ml/ocamlnet-4.1.8-r1 +++ b/metadata/md5-cache/dev-ml/ocamlnet-4.1.8-r2 @@ -1,6 +1,6 @@ BDEPEND=dev-ml/cppo virtual/pkgconfig DEFINED_PHASES=compile configure install -DEPEND=>=dev-ml/findlib-1.0 >=dev-lang/ocaml-3.10.2:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) >=dev-ml/findlib-1.0.4-r1[ocamlopt?] +DEPEND=>=dev-ml/findlib-1.0 <dev-lang/ocaml-5:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) >=dev-ml/findlib-1.0.4-r1[ocamlopt?] DESCRIPTION=Modules for OCaml application-level Internet protocols EAPI=7 HOMEPAGE=http://projects.camlcity.org/projects/ocamlnet.html @@ -8,9 +8,9 @@ INHERIT=findlib toolchain-funcs IUSE=kerberos tk httpd +ocamlopt +pcre ssl zip +ocamlopt KEYWORDS=amd64 ~ppc x86 LICENSE=ZLIB GPL-2+ -RDEPEND=>=dev-ml/findlib-1.0 >=dev-lang/ocaml-3.10.2:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) dev-lang/ocaml:=[ocamlopt?] +RDEPEND=>=dev-ml/findlib-1.0 <dev-lang/ocaml-5:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) dev-lang/ocaml:=[ocamlopt?] RESTRICT=installsources strip SLOT=0/4.1.8 SRC_URI=http://download.camlcity.org/download/ocamlnet-4.1.8.tar.gz _eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=2db44e1d6e7f6e90a1620a45d80b07ef +_md5_=06f146b18be2afb91278f87afd355987 diff --git a/metadata/md5-cache/dev-ml/ocamlnet-4.1.9-r1 b/metadata/md5-cache/dev-ml/ocamlnet-4.1.9-r2 index dfd5c4e49c67..94ae60ab9eb1 100644 --- a/metadata/md5-cache/dev-ml/ocamlnet-4.1.9-r1 +++ b/metadata/md5-cache/dev-ml/ocamlnet-4.1.9-r2 @@ -1,6 +1,6 @@ BDEPEND=dev-ml/cppo virtual/pkgconfig DEFINED_PHASES=compile configure install prepare -DEPEND=>=dev-ml/findlib-1.0 >=dev-lang/ocaml-3.10.2:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) >=dev-ml/findlib-1.0.4-r1[ocamlopt?] +DEPEND=>=dev-ml/findlib-1.0 <dev-lang/ocaml-5:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) >=dev-ml/findlib-1.0.4-r1[ocamlopt?] DESCRIPTION=Modules for OCaml application-level Internet protocols EAPI=7 HOMEPAGE=http://projects.camlcity.org/projects/ocamlnet.html @@ -8,9 +8,9 @@ INHERIT=findlib toolchain-funcs IUSE=kerberos tk httpd +ocamlopt +pcre ssl zip +ocamlopt KEYWORDS=amd64 ~ppc x86 LICENSE=ZLIB GPL-2+ -RDEPEND=>=dev-ml/findlib-1.0 >=dev-lang/ocaml-3.10.2:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) dev-lang/ocaml:=[ocamlopt?] +RDEPEND=>=dev-ml/findlib-1.0 <dev-lang/ocaml-5:=[ocamlopt?] pcre? ( >=dev-ml/pcre-ocaml-5:= ) tk? ( dev-ml/labltk:= ) ssl? ( net-libs/gnutls:= ) kerberos? ( virtual/krb5 ) zip? ( dev-ml/camlzip:= ) dev-lang/ocaml:=[ocamlopt?] RESTRICT=installsources strip SLOT=0/4.1.9 SRC_URI=http://download.camlcity.org/download/ocamlnet-4.1.9.tar.gz _eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=9fae989c346e284ca6ddd7a0b83ea2ff +_md5_=ebdfcbd1efa35c613fc020b0499b8b02 diff --git a/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 b/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 deleted file mode 100644 index f7da9a7d2fe5..000000000000 --- a/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt=] >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98:= ) >=media-libs/sdl-mixer-1.2 >=media-libs/sdl-image-1.2 truetype? ( >=media-libs/sdl-ttf-2.0 ) >=dev-ml/findlib-1.0.4-r1[ocamlopt?] -DESCRIPTION=OCaml SDL Bindings -EAPI=7 -HOMEPAGE=http://ocamlsdl.sourceforge.net -INHERIT=findlib -IUSE=doc +ocamlopt opengl truetype +ocamlopt -KEYWORDS=~amd64 ~ppc x86 -LICENSE=LGPL-2 -RDEPEND=>=dev-lang/ocaml-3.12:=[ocamlopt=] >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98:= ) >=media-libs/sdl-mixer-1.2 >=media-libs/sdl-image-1.2 truetype? ( >=media-libs/sdl-ttf-2.0 ) dev-lang/ocaml:=[ocamlopt?] -SLOT=0/0.9.1 -SRC_URI=https://downloads.sourceforge.net/ocamlsdl/ocamlsdl-0.9.1.tar.gz -_eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e -_md5_=5bd5941799b461876341d928841c8269 diff --git a/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1-r1 b/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1-r1 new file mode 100644 index 000000000000..983a36fd4e96 --- /dev/null +++ b/metadata/md5-cache/dev-ml/ocamlsdl-0.9.1-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install +DEPEND=<dev-lang/ocaml-5:=[ocamlopt=] >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98:= ) >=media-libs/sdl-mixer-1.2 >=media-libs/sdl-image-1.2 truetype? ( >=media-libs/sdl-ttf-2.0 ) >=dev-ml/findlib-1.0.4-r1[ocamlopt?] +DESCRIPTION=OCaml SDL Bindings +EAPI=7 +HOMEPAGE=http://ocamlsdl.sourceforge.net +INHERIT=findlib +IUSE=doc +ocamlopt opengl truetype +ocamlopt +KEYWORDS=~amd64 ~ppc x86 +LICENSE=LGPL-2 +RDEPEND=<dev-lang/ocaml-5:=[ocamlopt=] >=media-libs/libsdl-1.2 opengl? ( >=dev-ml/lablgl-0.98:= ) >=media-libs/sdl-mixer-1.2 >=media-libs/sdl-image-1.2 truetype? ( >=media-libs/sdl-ttf-2.0 ) dev-lang/ocaml:=[ocamlopt?] +SLOT=0/0.9.1 +SRC_URI=https://downloads.sourceforge.net/ocamlsdl/ocamlsdl-0.9.1.tar.gz +_eclasses_=findlib 49d5365fca4dea46f13825b9d763c89e +_md5_=c37786d9774428dd20b2b6e82ab3d6b2 diff --git a/metadata/md5-cache/dev-ml/ocamlweb-1.41-r1 b/metadata/md5-cache/dev-ml/ocamlweb-1.41-r2 index 7d3f0594708e..c941798c3b0f 100644 --- a/metadata/md5-cache/dev-ml/ocamlweb-1.41-r1 +++ b/metadata/md5-cache/dev-ml/ocamlweb-1.41-r2 @@ -1,6 +1,6 @@ BDEPEND=test? ( dev-tex/hevea ) virtual/latex-base >=sys-apps/texinfo-4.2-r5 DEFINED_PHASES=compile install postinst postrm -DEPEND=>=dev-lang/ocaml-4.08.0:= virtual/latex-base dev-texlive/texlive-latexextra +DEPEND=<dev-lang/ocaml-5:= virtual/latex-base dev-texlive/texlive-latexextra DESCRIPTION=O'Caml literate programming tool EAPI=7 HOMEPAGE=https://www.lri.fr/~filliatr/ocamlweb/ @@ -8,9 +8,9 @@ INHERIT=latex-package IUSE=test KEYWORDS=amd64 arm arm64 ~ppc ppc64 x86 LICENSE=LGPL-2 -RDEPEND=>=dev-lang/ocaml-4.08.0:= virtual/latex-base dev-texlive/texlive-latexextra virtual/latex-base +RDEPEND=<dev-lang/ocaml-5:= virtual/latex-base dev-texlive/texlive-latexextra virtual/latex-base RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.lri.fr/~filliatr/ftp/ocamlweb/ocamlweb-1.41.tar.gz _eclasses_=eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 edo 367e103a74bf77e6a8da7894d999fa3c latex-package f6529cd874a632d3343b4d264a70a0bc -_md5_=8eafdb70d661fd008ee2b0de2c0c630d +_md5_=1aadd17e07012d2d4f1e3c2bdc5fa610 diff --git a/metadata/md5-cache/dev-ml/stdcompat-19-r1 b/metadata/md5-cache/dev-ml/stdcompat-19-r2 index d1978c348f14..a90dc33a22ac 100644 --- a/metadata/md5-cache/dev-ml/stdcompat-19-r1 +++ b/metadata/md5-cache/dev-ml/stdcompat-19-r2 @@ -1,14 +1,14 @@ BDEPEND=dev-ml/dune dev-ml/findlib[ocamlopt] 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=configure prepare -DEPEND=dev-lang/ocaml:=[ocamlopt] dev-ml/result:=[ocamlopt] dev-ml/uchar:=[ocamlopt] +DEPEND=<dev-lang/ocaml-5:=[ocamlopt] dev-ml/result:=[ocamlopt] dev-ml/uchar:=[ocamlopt] DESCRIPTION=Compatibility module for OCaml standard library EAPI=8 HOMEPAGE=https://github.com/thierry-martinez/stdcompat INHERIT=autotools KEYWORDS=~amd64 ~x86 LICENSE=BSD-2 -RDEPEND=dev-lang/ocaml:=[ocamlopt] dev-ml/result:=[ocamlopt] dev-ml/uchar:=[ocamlopt] +RDEPEND=<dev-lang/ocaml-5:=[ocamlopt] dev-ml/result:=[ocamlopt] dev-ml/uchar:=[ocamlopt] SLOT=0/19 SRC_URI=https://github.com/thierry-martinez/stdcompat/releases/download/v19/stdcompat-19.tar.gz _eclasses_=autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=4d9947a00cb89b5a84e2f19dbb3719e5 +_md5_=638988a7aa5220c0ca4619b772743704 diff --git a/metadata/md5-cache/dev-ml/typerep-0.14.0 b/metadata/md5-cache/dev-ml/typerep-0.14.0-r1 index e0065cd0616a..b9486f555685 100644 --- a/metadata/md5-cache/dev-ml/typerep-0.14.0 +++ b/metadata/md5-cache/dev-ml/typerep-0.14.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-lang/ocaml dev-ml/dune +BDEPEND=<dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=dev-ml/base:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Library for creating runtime representation of OCaml types @@ -12,4 +12,4 @@ RDEPEND=dev-ml/base:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.14.0 SRC_URI=https://github.com/janestreet/typerep/archive/v0.14.0.tar.gz -> typerep-0.14.0.tar.gz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=3a43d25022ab5a9ec4c3a60dc4702af9 +_md5_=1212099c3d7852b077b8d7243c37340d diff --git a/metadata/md5-cache/dev-ml/typerep-0.15.0 b/metadata/md5-cache/dev-ml/typerep-0.15.0-r1 index 15d013beb5e0..846a33c0c513 100644 --- a/metadata/md5-cache/dev-ml/typerep-0.15.0 +++ b/metadata/md5-cache/dev-ml/typerep-0.15.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-lang/ocaml dev-ml/dune +BDEPEND=<dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=dev-ml/base:0/0.15 >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Library for creating runtime representation of OCaml types @@ -12,4 +12,4 @@ RDEPEND=dev-ml/base:0/0.15 >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.15 SRC_URI=https://github.com/janestreet/typerep/archive/v0.15.0.tar.gz -> typerep-0.15.0.tar.gz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=a61c633ee9627a11c31fe627615449a3 +_md5_=94f9ff8c90f438ab149f5878f36a9825 diff --git a/metadata/md5-cache/dev-ml/typerep-0.16.0 b/metadata/md5-cache/dev-ml/typerep-0.16.0-r1 index 9364751abdb3..99358ecdb72c 100644 --- a/metadata/md5-cache/dev-ml/typerep-0.16.0 +++ b/metadata/md5-cache/dev-ml/typerep-0.16.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-lang/ocaml dev-ml/dune +BDEPEND=<dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=dev-ml/base:0/0.16 >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Library for creating runtime representation of OCaml types @@ -12,4 +12,4 @@ RDEPEND=dev-ml/base:0/0.16 >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.16 SRC_URI=https://github.com/janestreet/typerep/archive/v0.16.0.tar.gz -> typerep-0.16.0.tar.gz _eclasses_=dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=bf384eee8c64abe809bc661a8476a3af +_md5_=94f9ff8c90f438ab149f5878f36a9825 diff --git a/metadata/md5-cache/dev-python/aioresponses-0.7.8 b/metadata/md5-cache/dev-python/aioresponses-0.7.8 index 357e5cb90aa8..26de2a6a71b1 100644 --- a/metadata/md5-cache/dev-python/aioresponses-0.7.8 +++ b/metadata/md5-cache/dev-python/aioresponses-0.7.8 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/pnuckowski/aioresponses/ https://pypi.org/project/aioresponses/ INHERIT=distutils-r1 pypi IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=amd64 ~arm arm64 ~riscv x86 +KEYWORDS=amd64 ~arm arm64 ~ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-python/aiohttp-3.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/a/aioresponses/aioresponses-0.7.8.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=7e36f9b21d54adf9c82308c668d21d1c +_md5_=c2c8cc87b3c97588211018e2b8754ade diff --git a/metadata/md5-cache/dev-python/dns-lexicon-3.20.1 b/metadata/md5-cache/dev-python/dns-lexicon-3.20.1 index 61c21fe27edd..3ae6e5016cd0 100644 --- a/metadata/md5-cache/dev-python/dns-lexicon-3.20.1 +++ b/metadata/md5-cache/dev-python/dns-lexicon-3.20.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/dns-lexicon/dns-lexicon/ https://pypi.org/project/dns-lexicon/ INHERIT=distutils-r1 optfeature IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=>=dev-python/beautifulsoup4-4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/cryptography-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/dnspython-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyotp-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pyyaml-3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/tldextract-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dns-lexicon/dns-lexicon/archive/v3.20.1.tar.gz -> dns-lexicon-3.20.1.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=487fcb332af40bf4476b14db403dd08d +_md5_=c445d82af5402131fe9f1229ba5ca6ea diff --git a/metadata/md5-cache/dev-python/langdetect-1.0.9 b/metadata/md5-cache/dev-python/langdetect-1.0.9 index b1a4d1215a70..d41abaa2ad9c 100644 --- a/metadata/md5-cache/dev-python/langdetect-1.0.9 +++ b/metadata/md5-cache/dev-python/langdetect-1.0.9 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/l/langdetect/langdetect-1.0.9.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=2fa40380c6b5f2635808bd62ec3d82c3 +_md5_=904568a7df255348eb39452fa8a39cf5 diff --git a/metadata/md5-cache/dev-python/pyotp-2.9.0 b/metadata/md5-cache/dev-python/pyotp-2.9.0 index e306097f4b9f..a54175e1a664 100644 --- a/metadata/md5-cache/dev-python/pyotp-2.9.0 +++ b/metadata/md5-cache/dev-python/pyotp-2.9.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/pyauth/pyotp/ https://pypi.org/project/pyotp/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 LICENSE=MIT RDEPEND=python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/pyotp/pyotp-2.9.0.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=6d9fc4b9f3f0bcd1f8798501498172b1 +_md5_=abeda9f95f1769a74c0fb9384538a751 diff --git a/metadata/md5-cache/dev-python/python-augeas-1.1.0-r1 b/metadata/md5-cache/dev-python/python-augeas-1.1.0-r1 index 017160491559..b3a871b38f52 100644 --- a/metadata/md5-cache/dev-python/python-augeas-1.1.0-r1 +++ b/metadata/md5-cache/dev-python/python-augeas-1.1.0-r1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://augeas.net/ https://github.com/hercules-team/python-augeas/ https://pypi.org/project/python-augeas/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=amd64 ~arm64 ~riscv x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 LICENSE=LGPL-2.1 RDEPEND=app-admin/augeas >=dev-python/cffi-1.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/python-augeas/python-augeas-1.1.0.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=ba103da37469ff3f517eaa7d78ca5590 +_md5_=acd1e5c9f33d8ab64134bfc7e54019ca diff --git a/metadata/md5-cache/dev-python/pyu2f-0.1.5-r1 b/metadata/md5-cache/dev-python/pyu2f-0.1.5-r1 index 9d0274fe4b0b..532253393fc1 100644 --- a/metadata/md5-cache/dev-python/pyu2f-0.1.5-r1 +++ b/metadata/md5-cache/dev-python/pyu2f-0.1.5-r1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/google/pyu2f/ https://pypi.org/project/pyu2f/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=amd64 ~arm arm64 ~riscv x86 +KEYWORDS=amd64 ~arm arm64 ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-python/six[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/pyu2f/archive/0.1.5.tar.gz -> pyu2f-0.1.5.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=54b081b3deabef370f852c2ae1006ac4 +_md5_=2f383aec030f262708652663ad055264 diff --git a/metadata/md5-cache/dev-python/requests-file-2.1.0 b/metadata/md5-cache/dev-python/requests-file-2.1.0 index dbb388f03188..51b6f101f8d2 100644 --- a/metadata/md5-cache/dev-python/requests-file-2.1.0 +++ b/metadata/md5-cache/dev-python/requests-file-2.1.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/dashea/requests-file/ https://pypi.org/project/requests-file/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=amd64 arm64 ~loong ~riscv x86 +KEYWORDS=amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=dev-python/requests[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/r/requests-file/requests_file-2.1.0.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=169de544b370e7004f84129b3a2318ee +_md5_=b88d19349dd057e622c7c129d049de9c diff --git a/metadata/md5-cache/dev-python/tldextract-5.1.3 b/metadata/md5-cache/dev-python/tldextract-5.1.3 index 765166bb3beb..41b072a1ca8a 100644 --- a/metadata/md5-cache/dev-python/tldextract-5.1.3 +++ b/metadata/md5-cache/dev-python/tldextract-5.1.3 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/john-kurkowski/tldextract/ https://pypi.org/project/tldextract/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=amd64 ~arm64 ~loong ~riscv x86 +KEYWORDS=amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86 LICENSE=BSD RDEPEND=>=dev-python/filelock-3.0.8[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/idna[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-2.1.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-file-1.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/t/tldextract/tldextract-5.1.3.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=8386d732cd489332d54f91c56f7061e9 +_md5_=c0c1b136e30723f91fcf9230b7028870 diff --git a/metadata/md5-cache/dev-python/xmlsec-1.3.14 b/metadata/md5-cache/dev-python/xmlsec-1.3.14 index 6bcf77e2ea7b..2aec15971786 100644 --- a/metadata/md5-cache/dev-python/xmlsec-1.3.14 +++ b/metadata/md5-cache/dev-python/xmlsec-1.3.14 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/xmlsec/python-xmlsec/ https://pypi.org/project/xmlsec/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 debug -KEYWORDS=amd64 arm64 ~ppc64 ~riscv x86 +KEYWORDS=amd64 ~arm arm64 ~ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-libs/xmlsec:=[openssl] dev-python/lxml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xmlsec/python-xmlsec/archive/1.3.14.tar.gz -> python-xmlsec-1.3.14.gh.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=cf095f3042e2ae0c367c48376a3fed07 +_md5_=3985bcb219220d580f380691f56bf3e2 diff --git a/metadata/md5-cache/dev-python/zeep-4.3.1 b/metadata/md5-cache/dev-python/zeep-4.3.1 index 3b921b2fc61c..0d415b5dc234 100644 --- a/metadata/md5-cache/dev-python/zeep-4.3.1 +++ b/metadata/md5-cache/dev-python/zeep-4.3.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://docs.python-zeep.org/ https://github.com/mvantellingen/python-zeep/ https://pypi.org/project/zeep/ INHERIT=distutils-r1 pypi IUSE=async test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 -KEYWORDS=amd64 arm64 ~riscv x86 +KEYWORDS=amd64 ~arm arm64 ~ppc64 ~riscv x86 LICENSE=MIT RDEPEND=>=dev-python/attrs-17.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/isodate-0.5.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/lxml-4.6.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/platformdirs-1.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-2.7.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-file-1.5.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/requests-toolbelt-0.7.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pytz[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] async? ( >=dev-python/httpx-0.15.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/z/zeep/zeep-4.3.1.tar.gz _eclasses_=distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pypi ad1b21f87d117ae9bb089bdb65b8f013 python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=453330c0f3c8b724bc90139cb5181bed +_md5_=76c56c362938134cbd641ce9d6c6d8fb diff --git a/metadata/md5-cache/dev-ruby/faraday-multipart-1.1.0 b/metadata/md5-cache/dev-ruby/faraday-multipart-1.1.0 new file mode 100644 index 000000000000..1efd6d28bb91 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/faraday-multipart-1.1.0 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby31? ( dev-ruby/multipart-post:0[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( dev-ruby/multipart-post:0[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( dev-ruby/multipart-post:0[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby31? ( test? ( || ( dev-ruby/faraday:2[ruby_targets_ruby31(-)] dev-ruby/faraday:1[ruby_targets_ruby31(-)] ) dev-ruby/multipart-parser[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( || ( dev-ruby/faraday:2[ruby_targets_ruby32(-)] dev-ruby/faraday:1[ruby_targets_ruby32(-)] ) dev-ruby/multipart-parser[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( || ( dev-ruby/faraday:2[ruby_targets_ruby33(-)] dev-ruby/faraday:1[ruby_targets_ruby33(-)] ) dev-ruby/multipart-parser[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) test? ( ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) +DESCRIPTION=Perform multipart-post requests using Faraday +EAPI=8 +HOMEPAGE=https://github.com/lostisland/faraday-multipart +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby31 ruby_targets_ruby32 ruby_targets_ruby33 doc test test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby31? ( dev-ruby/multipart-post:0[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( dev-ruby/multipart-post:0[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( dev-ruby/multipart-post:0[ruby_targets_ruby33(-)] ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby31 ruby_targets_ruby32 ruby_targets_ruby33 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=1 +SRC_URI=https://github.com/lostisland/faraday-multipart/archive/v1.1.0.tar.gz -> faraday-multipart-1.1.0.tar.gz +_eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 ruby-fakegem 92ad9217e94825cb9c8ad831b513a7ec ruby-ng f0dedda0b5f19492ca5de91d98bc1708 ruby-utils a5d18cde09a96648a4d316ada2786cdb toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_md5_=a846645f709bd9cc6c7bd9f678c6196f diff --git a/metadata/md5-cache/dev-util/gitlab-runner-17.6.1 b/metadata/md5-cache/dev-util/gitlab-runner-17.6.1 deleted file mode 100644 index 851e175531ed..000000000000 --- a/metadata/md5-cache/dev-util/gitlab-runner-17.6.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-go/gox >=dev-lang/go-1.20:= app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst test unpack -DEPEND=acct-group/gitlab-runner acct-user/gitlab-runner -DESCRIPTION=The official GitLab Runner, written in Go -EAPI=8 -HOMEPAGE=https://gitlab.com/gitlab-org/gitlab-runner -INHERIT=go-module systemd tmpfiles -KEYWORDS=amd64 ~ppc64 ~riscv -LICENSE=MIT -RDEPEND=acct-group/gitlab-runner acct-user/gitlab-runner virtual/tmpfiles -RESTRICT=strip -SLOT=0 -SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v17.6.1/gitlab-runner-v17.6.1.tar.bz2 -> gitlab-runner-17.6.1.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-17.6.1-deps.tar.xz -_eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=1694c3ff74f31397c8b7648f82a0b1f4 diff --git a/metadata/md5-cache/dev-util/gitlab-runner-17.8.2 b/metadata/md5-cache/dev-util/gitlab-runner-17.8.2 deleted file mode 100644 index 3db73e00021a..000000000000 --- a/metadata/md5-cache/dev-util/gitlab-runner-17.8.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-go/gox >=dev-lang/go-1.20:= app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst test unpack -DEPEND=acct-group/gitlab-runner acct-user/gitlab-runner -DESCRIPTION=The official GitLab Runner, written in Go -EAPI=8 -HOMEPAGE=https://gitlab.com/gitlab-org/gitlab-runner -INHERIT=go-module systemd tmpfiles -KEYWORDS=amd64 ~ppc64 ~riscv -LICENSE=MIT -RDEPEND=acct-group/gitlab-runner acct-user/gitlab-runner virtual/tmpfiles -RESTRICT=strip -SLOT=0 -SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v17.8.2/gitlab-runner-v17.8.2.tar.bz2 -> gitlab-runner-17.8.2.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-17.8.2-deps.tar.xz -_eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=27e9e231056bd9d2d449a32cbabfe375 diff --git a/metadata/md5-cache/dev-util/gitlab-runner-17.7.0 b/metadata/md5-cache/dev-util/gitlab-runner-17.9.1 index ef5fecad9f60..0c20f8882cc4 100644 --- a/metadata/md5-cache/dev-util/gitlab-runner-17.7.0 +++ b/metadata/md5-cache/dev-util/gitlab-runner-17.9.1 @@ -10,6 +10,6 @@ LICENSE=MIT RDEPEND=acct-group/gitlab-runner acct-user/gitlab-runner virtual/tmpfiles RESTRICT=strip SLOT=0 -SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v17.7.0/gitlab-runner-v17.7.0.tar.bz2 -> gitlab-runner-17.7.0.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-17.7.0-deps.tar.xz +SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v17.9.1/gitlab-runner-v17.9.1.tar.bz2 -> gitlab-runner-17.9.1.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-17.9.1-deps.tar.xz _eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=afd1667c64a4fbdc4fce006d5e439dee +_md5_=99f65c6f0aa9689f9a0c8975c5e91fe1 diff --git a/metadata/md5-cache/kde-plasma/aurorae-6.3.2 b/metadata/md5-cache/kde-plasma/aurorae-6.3.3 index 44112c8ec10c..a58fd488e5f8 100644 --- a/metadata/md5-cache/kde-plasma/aurorae-6.3.2 +++ b/metadata/md5-cache/kde-plasma/aurorae-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qttools-6.8.1:6[widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qttools-6.8.1:6[widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Themeable window decoration for KWin EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/aurorae @@ -8,8 +8,8 @@ INHERIT=ecm plasma.kde.org IUSE=debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ MIT -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qttools-6.8.1:6[widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-frameworks/kirigami-6.10.0:6 !<kde-plasma/kwin-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/aurorae:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qttools-6.8.1:6[widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.3:6 >=kde-frameworks/kirigami-6.10.0:6 !<kde-plasma/kwin-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/aurorae:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwin-6.3.2.tar.xz https://dev.gentoo.org/~asturm/distfiles/aurorae.CMakeLists.txt.xz https://dev.gentoo.org/~asturm/distfiles/aurorae-6.3.2-decouple-from-libkwin.patch.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kwin-6.3.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/aurorae.CMakeLists.txt.xz https://dev.gentoo.org/~asturm/distfiles/aurorae-6.3.2-decouple-from-libkwin.patch.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=f0daca9056978a397a3879d6b134982b diff --git a/metadata/md5-cache/kde-plasma/bluedevil-6.3.2 b/metadata/md5-cache/kde-plasma/bluedevil-6.3.3 index 0f4597314501..a659778c95d3 100644 --- a/metadata/md5-cache/kde-plasma/bluedevil-6.3.2 +++ b/metadata/md5-cache/kde-plasma/bluedevil-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/bluez-qt-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/libplasma-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/bluez-qt-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/libplasma-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Bluetooth stack for KDE Plasma EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/bluedevil @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug +handbook KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/bluez-qt-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/libplasma-6.3.2:6 >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/bluedevil:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/bluez-qt-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/libplasma-6.3.3:6 >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/bluedevil:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/bluedevil-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/bluedevil-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8fda8a8564cd64f51f07da0c07302058 diff --git a/metadata/md5-cache/kde-plasma/breeze-6.3.2 b/metadata/md5-cache/kde-plasma/breeze-6.3.3 index 80fdacb00209..8ebd251a8a37 100644 --- a/metadata/md5-cache/kde-plasma/breeze-6.3.2 +++ b/metadata/md5-cache/kde-plasma/breeze-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 qt5? ( >=kde-frameworks/kcmutils-5.115.0:5 ) app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/kdecoration-6.3.2:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=dev-qt/qtx11extras-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcmutils-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kiconthemes-5.115.0:5 >=kde-frameworks/kirigami-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/kdecoration-6.3.3:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=dev-qt/qtx11extras-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcmutils-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kiconthemes-5.115.0:5 >=kde-frameworks/kirigami-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 ) dev-qt/qtbase:6 DESCRIPTION=Breeze visual style for the Plasma desktop EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/breeze @@ -9,8 +9,8 @@ IUSE=qt5 debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 PDEPEND=>=kde-frameworks/breeze-icons-6.10.0:* -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/kdecoration-6.3.2:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=dev-qt/qtx11extras-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcmutils-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kiconthemes-5.115.0:5 >=kde-frameworks/kirigami-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/breeze:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-plasma/kdecoration-6.3.3:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=dev-qt/qtx11extras-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcmutils-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kiconthemes-5.115.0:5 >=kde-frameworks/kirigami-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/breeze:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/breeze-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/breeze-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=bfc6cadf80574291c75d938998211d1c diff --git a/metadata/md5-cache/kde-plasma/breeze-grub-6.3.2 b/metadata/md5-cache/kde-plasma/breeze-grub-6.3.3 index 785813327338..d8fda167dbae 100644 --- a/metadata/md5-cache/kde-plasma/breeze-grub-6.3.2 +++ b/metadata/md5-cache/kde-plasma/breeze-grub-6.3.3 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-3+ RDEPEND=!kde-plasma/breeze-grub:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/breeze-grub-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/breeze-grub-6.3.3.tar.xz _eclasses_=kde.org 2eea56ed41440913be4caa3d255d2db3 plasma.kde.org 7dce7e123b845b50045d250ddb278647 _md5_=fda54d18bd9df7e9d83e541aa417d017 diff --git a/metadata/md5-cache/kde-plasma/breeze-gtk-6.3.2 b/metadata/md5-cache/kde-plasma/breeze-gtk-6.3.3 index 4ab83853c87a..aab7cb1c74a0 100644 --- a/metadata/md5-cache/kde-plasma/breeze-gtk-6.3.2 +++ b/metadata/md5-cache/kde-plasma/breeze-gtk-6.3.3 @@ -1,4 +1,4 @@ -BDEPEND=|| ( dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 dev-lang/python:3.9 ) dev-lang/sassc || ( ( dev-lang/python:3.13 dev-python/pycairo[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/pycairo[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/pycairo[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/pycairo[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/pycairo[python_targets_python3_9(-)] ) ) >=kde-plasma/breeze-6.3.2:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.5.0:* +BDEPEND=|| ( dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 dev-lang/python:3.9 ) dev-lang/sassc || ( ( dev-lang/python:3.13 dev-python/pycairo[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/pycairo[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/pycairo[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/pycairo[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/pycairo[python_targets_python3_9(-)] ) ) >=kde-plasma/breeze-6.3.3:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.5.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare setup test unpack DEPEND=dev-qt/qtbase:6 DESCRIPTION=Official GTK+ port of Plasma's Breeze widget style @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1+ RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/breeze-gtk:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/breeze-gtk-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/breeze-gtk-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c9fe68468e8c690c18d569edb5bb01ec diff --git a/metadata/md5-cache/kde-plasma/breeze-plymouth-6.3.2 b/metadata/md5-cache/kde-plasma/breeze-plymouth-6.3.3 index 1496cb752a88..02bb72985c59 100644 --- a/metadata/md5-cache/kde-plasma/breeze-plymouth-6.3.2 +++ b/metadata/md5-cache/kde-plasma/breeze-plymouth-6.3.3 @@ -9,6 +9,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 LICENSE=GPL-2+ GPL-3+ RDEPEND=sys-boot/plymouth !kde-plasma/breeze-plymouth:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/breeze-plymouth-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/breeze-plymouth-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a07b4b07006e6031af597239c8103243 diff --git a/metadata/md5-cache/kde-plasma/discover-6.3.2 b/metadata/md5-cache/kde-plasma/discover-6.3.3 index e61d20c1c7de..594767206a3a 100644 --- a/metadata/md5-cache/kde-plasma/discover-6.3.2 +++ b/metadata/md5-cache/kde-plasma/discover-6.3.3 @@ -12,6 +12,6 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/appstream-1.0.0:=[qt6] dev-libs/kirigami-addons:6 dev-libs/qcoro >=dev-qt/qtbase-6.8.1:6=[concurrent,dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/attica-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/purpose-6.10.0:6 firmware? ( >=sys-apps/fwupd-1.9.4 ) flatpak? ( sys-apps/flatpak ) snap? ( sys-libs/snapd-glib:=[qt6(-)] ) telemetry? ( >=kde-frameworks/kuserfeedback-6.10.0:6 ) webengine? ( >=dev-qt/qtwebview-6.8.1:6 ) snap? ( app-containers/snapd ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/discover:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/discover-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/discover-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=272c11087ec7d630dbb2cccad052b51b diff --git a/metadata/md5-cache/kde-plasma/drkonqi-6.3.2 b/metadata/md5-cache/kde-plasma/drkonqi-6.3.3 index 5a9b1abb7caa..16359395c56d 100644 --- a/metadata/md5-cache/kde-plasma/drkonqi-6.3.2 +++ b/metadata/md5-cache/kde-plasma/drkonqi-6.3.3 @@ -13,6 +13,6 @@ RDEPEND=python_single_target_python3_9? ( dev-lang/python:3.9 ) python_single_ta REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 ) RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/drkonqi-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/drkonqi-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 ece603c43ae206e3cb06f1878908793e systemd 54bd206bb5c4efac6ae28b6b006713b0 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=9b5f296df81a44329bbb1ab09dd879ef diff --git a/metadata/md5-cache/kde-plasma/flatpak-kcm-6.3.2 b/metadata/md5-cache/kde-plasma/flatpak-kcm-6.3.3 index 6a13e1962246..342a60902f40 100644 --- a/metadata/md5-cache/kde-plasma/flatpak-kcm-6.3.2 +++ b/metadata/md5-cache/kde-plasma/flatpak-kcm-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 LGPL-2.1+ RDEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6 >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=sys-apps/flatpak-0.11.8 >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/flatpak-kcm:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/flatpak-kcm-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/flatpak-kcm-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=99387a06a0e14654079e78f98222405d diff --git a/metadata/md5-cache/kde-plasma/kactivitymanagerd-6.3.2 b/metadata/md5-cache/kde-plasma/kactivitymanagerd-6.3.3 index e863cb2866f6..421edd0469e8 100644 --- a/metadata/md5-cache/kde-plasma/kactivitymanagerd-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kactivitymanagerd-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=|| ( GPL-2 GPL-3 ) RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,sqlite,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kactivitymanagerd:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kactivitymanagerd-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kactivitymanagerd-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=55de10c8b7d24df623cbf66fe785b8c8 diff --git a/metadata/md5-cache/kde-plasma/kde-cli-tools-6.3.2 b/metadata/md5-cache/kde-plasma/kde-cli-tools-6.3.3 index ac1d5dbbffe3..ca629dd41911 100644 --- a/metadata/md5-cache/kde-plasma/kde-cli-tools-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kde-cli-tools-6.3.3 @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=kdesu X debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 X? ( >=dev-qt/qtbase-6.8.1:6=[gui,X] ) >=kde-plasma/kde-cli-tools-common-6.3.2 kdesu? ( >=kde-plasma/kdesu-gui-6.3.2 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kde-cli-tools:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 X? ( >=dev-qt/qtbase-6.8.1:6=[gui,X] ) >=kde-plasma/kde-cli-tools-common-6.3.3 kdesu? ( >=kde-plasma/kdesu-gui-6.3.3 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kde-cli-tools:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kde-cli-tools-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kde-cli-tools-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=36dd017e79ce8d79006ccb4a93e238ab diff --git a/metadata/md5-cache/kde-plasma/kde-cli-tools-common-6.3.2 b/metadata/md5-cache/kde-plasma/kde-cli-tools-common-6.3.3 index 09988ead4c81..97ba283c2d4c 100644 --- a/metadata/md5-cache/kde-plasma/kde-cli-tools-common-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kde-cli-tools-common-6.3.3 @@ -9,6 +9,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ handbook? ( FDL-1.2 ) RDEPEND=!<kde-plasma/kde-cli-tools-6.1.4-r2:* !kde-plasma/kde-cli-tools-common:5 SLOT=0 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kde-cli-tools-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kde-cli-tools-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm-common 2409ff2ed4921be52f7f7cdd30078e2d flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=252f60d2871b9d002dfe12c1fa510666 diff --git a/metadata/md5-cache/kde-plasma/kde-gtk-config-6.3.2 b/metadata/md5-cache/kde-plasma/kde-gtk-config-6.3.3 index 0b27b243dd68..3a6c470bdde5 100644 --- a/metadata/md5-cache/kde-plasma/kde-gtk-config-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kde-gtk-config-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/sassc app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtsvg-6.8.1:6 gnome-base/gsettings-desktop-schemas >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.2:6 x11-libs/gtk+:3[X] dev-qt/qtbase:6 +DEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtsvg-6.8.1:6 gnome-base/gsettings-desktop-schemas >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.3:6 x11-libs/gtk+:3[X] dev-qt/qtbase:6 DESCRIPTION=Syncs KDE Plasma theme settings to GTK applications EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/kde-gtk-config @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-3 -RDEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtsvg-6.8.1:6 gnome-base/gsettings-desktop-schemas >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.2:6 x11-libs/gtk+:3[X] x11-misc/xsettingsd || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kde-gtk-config:5 +RDEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtsvg-6.8.1:6 gnome-base/gsettings-desktop-schemas >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.3:6 x11-libs/gtk+:3[X] x11-misc/xsettingsd || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kde-gtk-config:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kde-gtk-config-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kde-gtk-config-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ca2086eced92f0ae79790ed144a6bebd diff --git a/metadata/md5-cache/kde-plasma/kdecoration-6.3.2 b/metadata/md5-cache/kde-plasma/kdecoration-6.3.3 index 9685e5104cd3..b402f4da287a 100644 --- a/metadata/md5-cache/kde-plasma/kdecoration-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kdecoration-6.3.3 @@ -11,6 +11,6 @@ LICENSE=|| ( LGPL-2.1 LGPL-3 ) RDEPEND=>=dev-qt/qtbase-6.8.1:6[gui] >=kde-frameworks/ki18n-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kdecoration:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kdecoration-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kdecoration-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=d1ca813ea46ff069a70bf791a1b88865 diff --git a/metadata/md5-cache/kde-plasma/kdeplasma-addons-6.3.2 b/metadata/md5-cache/kde-plasma/kdeplasma-addons-6.3.3 index 55ded88f0d5e..85ea424c4c15 100644 --- a/metadata/md5-cache/kde-plasma/kdeplasma-addons-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kdeplasma-addons-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kholidays-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 alternate-calendar? ( dev-libs/icu:= ) share? ( >=kde-frameworks/purpose-6.10.0:6 ) webengine? ( >=dev-qt/qtwebengine-6.8.1:6 ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kholidays-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 alternate-calendar? ( dev-libs/icu:= ) share? ( >=kde-frameworks/purpose-6.10.0:6 ) webengine? ( >=dev-qt/qtwebengine-6.8.1:6 ) dev-qt/qtbase:6 DESCRIPTION=Extra Plasma applets and engines EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org optfeature xdg IUSE=+alternate-calendar share webengine debug +handbook KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 LGPL-2 -RDEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kholidays-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 alternate-calendar? ( dev-libs/icu:= ) share? ( >=kde-frameworks/purpose-6.10.0:6 ) webengine? ( >=dev-qt/qtwebengine-6.8.1:6 ) dev-libs/kirigami-addons:6 >=dev-qt/qtquick3d-6.8.1:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kdeplasma-addons:5 +RDEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kholidays-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 alternate-calendar? ( dev-libs/icu:= ) share? ( >=kde-frameworks/purpose-6.10.0:6 ) webengine? ( >=dev-qt/qtwebengine-6.8.1:6 ) dev-libs/kirigami-addons:6 >=dev-qt/qtquick3d-6.8.1:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kdeplasma-addons:5 RESTRICT=test SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kdeplasma-addons-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kdeplasma-addons-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 538bce96e5589935b57e178e8635f301 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=edaf0fb67fa907732cec1d08e1983967 diff --git a/metadata/md5-cache/kde-plasma/kdesu-gui-6.3.2 b/metadata/md5-cache/kde-plasma/kdesu-gui-6.3.3 index bf9e9f101f03..204b3e0bd1f1 100644 --- a/metadata/md5-cache/kde-plasma/kdesu-gui-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kdesu-gui-6.3.3 @@ -8,8 +8,8 @@ INHERIT=ecm plasma.kde.org IUSE=X debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6=[gui,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdesu-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X?] !<kde-plasma/kde-cli-tools-6.1.4-r2:*[kdesu(+)] >=kde-plasma/kde-cli-tools-common-6.3.2 sys-apps/dbus[X] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kdesu-gui:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6=[gui,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdesu-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X?] !<kde-plasma/kde-cli-tools-6.1.4-r2:*[kdesu(+)] >=kde-plasma/kde-cli-tools-common-6.3.3 sys-apps/dbus[X] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kdesu-gui:5 SLOT=0 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kde-cli-tools-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kde-cli-tools-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=33b2c0f45a3d6f765a8e1425fe24bc79 diff --git a/metadata/md5-cache/kde-plasma/keditfiletype-6.3.2 b/metadata/md5-cache/kde-plasma/keditfiletype-6.3.3 index 3d31c7c10858..58e7c226f3f4 100644 --- a/metadata/md5-cache/kde-plasma/keditfiletype-6.3.2 +++ b/metadata/md5-cache/kde-plasma/keditfiletype-6.3.3 @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 !<kde-plasma/kde-cli-tools-6.2.4:* >=kde-plasma/kde-cli-tools-common-6.3.2 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/keditfiletype:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 !<kde-plasma/kde-cli-tools-6.2.4:* >=kde-plasma/kde-cli-tools-common-6.3.3 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/keditfiletype:5 RESTRICT=test !test? ( test ) SLOT=0 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kde-cli-tools-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kde-cli-tools-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c946d6da7cc6f94dfddd824a7da78eb9 diff --git a/metadata/md5-cache/kde-plasma/kgamma-6.3.2 b/metadata/md5-cache/kde-plasma/kgamma-6.3.3 index 9aa8a4484c5c..61bb8c0c50ea 100644 --- a/metadata/md5-cache/kde-plasma/kgamma-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kgamma-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=>=dev-qt/qtbase-6.8.1:6[gui,widgets] >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 x11-libs/libX11 x11-libs/libXxf86vm || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kgamma:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kgamma-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kgamma-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=9974b5b0c058f6c94582f0072f10337f diff --git a/metadata/md5-cache/kde-plasma/kglobalacceld-6.3.2 b/metadata/md5-cache/kde-plasma/kglobalacceld-6.3.3 index ab245ab087cd..c604cb18398c 100644 --- a/metadata/md5-cache/kde-plasma/kglobalacceld-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kglobalacceld-6.3.3 @@ -12,6 +12,6 @@ RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kconfig-6.10. REQUIRED_USE=test? ( X ) RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kglobalacceld-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kglobalacceld-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e2c0a6a4ac76064002f505da4698b387 diff --git a/metadata/md5-cache/kde-plasma/kinfocenter-6.3.2 b/metadata/md5-cache/kde-plasma/kinfocenter-6.3.3 index 7483522c336e..becc06ef675e 100644 --- a/metadata/md5-cache/kde-plasma/kinfocenter-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kinfocenter-6.3.3 @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org optfeature xdg IUSE=gles2-only usb debug +handbook KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gles2-only=,gui,vulkan,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 gles2-only? ( >=media-libs/mesa-24.1.0_rc1[opengl] ) usb? ( virtual/libusb:1 ) || ( >=dev-qt/qttools-6.8.1:6[qdbus] dev-qt/qdbus:* ) >=kde-frameworks/kirigami-6.10.0:6 >=kde-plasma/systemsettings-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kinfocenter:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gles2-only=,gui,vulkan,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 gles2-only? ( >=media-libs/mesa-24.1.0_rc1[opengl] ) usb? ( virtual/libusb:1 ) || ( >=dev-qt/qttools-6.8.1:6[qdbus] dev-qt/qdbus:* ) >=kde-frameworks/kirigami-6.10.0:6 >=kde-plasma/systemsettings-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kinfocenter:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kinfocenter-6.3.2.tar.xz https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png +SRC_URI=mirror://kde/stable/plasma/6.3.3/kinfocenter-6.3.3.tar.xz https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 538bce96e5589935b57e178e8635f301 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=fddc833b7d90cfa16cd83bb5295222c5 diff --git a/metadata/md5-cache/kde-plasma/kmenuedit-6.3.2 b/metadata/md5-cache/kde-plasma/kmenuedit-6.3.3 index fe58270694d1..c752cdf416a5 100644 --- a/metadata/md5-cache/kde-plasma/kmenuedit-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kmenuedit-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets,xml] >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kmenuedit:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kmenuedit-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kmenuedit-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8e3d48bbedc9a021e2d7139d83d501ca diff --git a/metadata/md5-cache/kde-plasma/kpipewire-6.3.2 b/metadata/md5-cache/kde-plasma/kpipewire-6.3.3 index ae3e1e883f17..90c65ca465e8 100644 --- a/metadata/md5-cache/kde-plasma/kpipewire-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kpipewire-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=test? ( >=dev-qt/qtwayland-6.8.1:6 ) app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 media-libs/libepoxy media-libs/libglvnd media-libs/libva:= media-libs/mesa[opengl] media-video/ffmpeg:= >=media-video/pipewire-0.3:= x11-libs/libdrm test? ( dev-libs/plasma-wayland-protocols dev-libs/wayland >=dev-qt/qtwayland-6.8.1:6 >=kde-plasma/kwayland-6.3.2:6 media-video/pipewire[extra] ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 media-libs/libepoxy media-libs/libglvnd media-libs/libva:= media-libs/mesa[opengl] media-video/ffmpeg:= >=media-video/pipewire-0.3:= x11-libs/libdrm test? ( dev-libs/plasma-wayland-protocols dev-libs/wayland >=dev-qt/qtwayland-6.8.1:6 >=kde-plasma/kwayland-6.3.3:6 media-video/pipewire[extra] ) dev-qt/qtbase:6 DESCRIPTION=Components relating to Flatpak pipewire use in Plasma EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -12,6 +12,6 @@ LICENSE=LGPL-2.1+ RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 media-libs/libepoxy media-libs/libglvnd media-libs/libva:= media-libs/mesa[opengl] media-video/ffmpeg:= >=media-video/pipewire-0.3:= x11-libs/libdrm >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kpipewire:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kpipewire-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kpipewire-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=1127a64064e006475a85d07547e07fb4 diff --git a/metadata/md5-cache/kde-plasma/krdp-6.3.2 b/metadata/md5-cache/kde-plasma/krdp-6.3.3 index abe87e011540..2385703f4101 100644 --- a/metadata/md5-cache/kde-plasma/krdp-6.3.2 +++ b/metadata/md5-cache/kde-plasma/krdp-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/qtkeychain-0.14.2:=[qt6(+)] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-plasma/kpipewire-6.3.2:6 >=net-misc/freerdp-2.10:2[server] x11-libs/libxkbcommon dev-libs/plasma-wayland-protocols dev-qt/qtbase:6 +DEPEND=>=dev-libs/qtkeychain-0.14.2:=[qt6(+)] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-plasma/kpipewire-6.3.3:6 >=net-misc/freerdp-2.10:2[server] x11-libs/libxkbcommon dev-libs/plasma-wayland-protocols dev-qt/qtbase:6 DESCRIPTION=Library and examples for creating an RDP server EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop https://quantumproductions.info/articles/2023-08/remote-desktop-using-rdp-protocol-plasma-wayland @@ -9,9 +9,9 @@ INHERIT=ecm flag-o-matic plasma.kde.org toolchain-funcs xdg IUSE=debug examples test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-libs/qtkeychain-0.14.2:=[qt6(+)] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-plasma/kpipewire-6.3.2:6 >=net-misc/freerdp-2.10:2[server] x11-libs/libxkbcommon >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/krdp:5 +RDEPEND=>=dev-libs/qtkeychain-0.14.2:=[qt6(+)] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-plasma/kpipewire-6.3.3:6 >=net-misc/freerdp-2.10:2[server] x11-libs/libxkbcommon >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/krdp:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/krdp-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/krdp-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ca2ca40cf0d343ef86abd45339f87ca4 diff --git a/metadata/md5-cache/kde-plasma/kscreen-6.3.2 b/metadata/md5-cache/kde-plasma/kscreen-6.3.3 index 4210ff631e7f..af38061cb7bb 100644 --- a/metadata/md5-cache/kde-plasma/kscreen-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kscreen-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsensors-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6= >=kde-plasma/libplasma-6.3.2:6 X? ( >=dev-qt/qtbase-6.8.1:6=[X] x11-libs/libX11 x11-libs/libxcb:= x11-libs/libXi ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsensors-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6= >=kde-plasma/libplasma-6.3.3:6 X? ( >=dev-qt/qtbase-6.8.1:6=[X] x11-libs/libX11 x11-libs/libxcb:= x11-libs/libXi ) dev-qt/qtbase:6 DESCRIPTION=KDE Plasma screen management EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/kscreen @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=X debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsensors-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6= >=kde-plasma/libplasma-6.3.2:6 X? ( >=dev-qt/qtbase-6.8.1:6=[X] x11-libs/libX11 x11-libs/libxcb:= x11-libs/libXi ) >=dev-qt/qt5compat-6.8.1:6[qml] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kscreen:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsensors-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6= >=kde-plasma/libplasma-6.3.3:6 X? ( >=dev-qt/qtbase-6.8.1:6=[X] x11-libs/libX11 x11-libs/libxcb:= x11-libs/libXi ) >=dev-qt/qt5compat-6.8.1:6[qml] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kscreen:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kscreen-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kscreen-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=51b303010bd819bb0d0529fe749b38da diff --git a/metadata/md5-cache/kde-plasma/kscreenlocker-6.3.2 b/metadata/md5-cache/kde-plasma/kscreenlocker-6.3.3 index d639612feaa3..ca408a78ba11 100644 --- a/metadata/md5-cache/kde-plasma/kscreenlocker-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kscreenlocker-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=dev-util/wayland-scanner >=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6 sys-libs/pam x11-libs/libX11 x11-libs/libXi x11-libs/libxcb x11-libs/xcb-util-keysyms x11-base/xorg-proto dev-qt/qtbase:6 +DEPEND=dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6 sys-libs/pam x11-libs/libX11 x11-libs/libXi x11-libs/libxcb x11-libs/xcb-util-keysyms x11-base/xorg-proto dev-qt/qtbase:6 DESCRIPTION=Library and components for secure lock screen architecture EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org pam xdg IUSE=debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6 sys-libs/pam x11-libs/libX11 x11-libs/libXi x11-libs/libxcb x11-libs/xcb-util-keysyms >=kde-frameworks/kirigami-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kscreenlocker:5 +RDEPEND=dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6 sys-libs/pam x11-libs/libX11 x11-libs/libXi x11-libs/libxcb x11-libs/xcb-util-keysyms >=kde-frameworks/kirigami-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kscreenlocker:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kscreenlocker-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kscreenlocker-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 pam b56d0c9c20fc5b553f13c8ae165a10a5 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=060c12365508cad4fea3dc4e1b28842f diff --git a/metadata/md5-cache/kde-plasma/ksshaskpass-6.3.2 b/metadata/md5-cache/kde-plasma/ksshaskpass-6.3.3 index c3d6b831736e..5d622b0e71c4 100644 --- a/metadata/md5-cache/kde-plasma/ksshaskpass-6.3.2 +++ b/metadata/md5-cache/kde-plasma/ksshaskpass-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=>=dev-qt/qtbase-6.8.1:6[widgets] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/ksshaskpass:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/ksshaskpass-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/ksshaskpass-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=c8f0cde4332daaf0b6861aca9efa7c6b diff --git a/metadata/md5-cache/kde-plasma/ksystemstats-6.3.2 b/metadata/md5-cache/kde-plasma/ksystemstats-6.3.3 index 6abb624ebf1f..d7873b5b0dca 100644 --- a/metadata/md5-cache/kde-plasma/ksystemstats-6.3.2 +++ b/metadata/md5-cache/kde-plasma/ksystemstats-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=dev-libs/libnl:3 >=dev-qt/qtbase-6.8.1:6[dbus,network] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 net-libs/libpcap sys-apps/lm-sensors:= sys-libs/libcap virtual/libudev:= networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) dev-qt/qtbase:6 +DEPEND=dev-libs/libnl:3 >=dev-qt/qtbase-6.8.1:6[dbus,network] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 net-libs/libpcap sys-apps/lm-sensors:= sys-libs/libcap virtual/libudev:= networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) dev-qt/qtbase:6 DESCRIPTION=Plugin-based system monitoring daemon EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -8,9 +8,9 @@ INHERIT=ecm plasma.kde.org IUSE=networkmanager debug +handbook test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ -RDEPEND=dev-libs/libnl:3 >=dev-qt/qtbase-6.8.1:6[dbus,network] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 net-libs/libpcap sys-apps/lm-sensors:= sys-libs/libcap virtual/libudev:= networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/ksystemstats:5 +RDEPEND=dev-libs/libnl:3 >=dev-qt/qtbase-6.8.1:6[dbus,network] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 net-libs/libpcap sys-apps/lm-sensors:= sys-libs/libcap virtual/libudev:= networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/ksystemstats:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/ksystemstats-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/ksystemstats-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=d2a8782b7791fdfeba161e5d1d0c67b6 diff --git a/metadata/md5-cache/kde-plasma/kwallet-pam-6.3.2 b/metadata/md5-cache/kde-plasma/kwallet-pam-6.3.3 index 1d1807a19758..67e861ede8da 100644 --- a/metadata/md5-cache/kde-plasma/kwallet-pam-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kwallet-pam-6.3.3 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=dev-libs/libgcrypt:0= >=kde-frameworks/kwallet-6.10.0:6 sys-libs/pam net-misc/socat || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kwallet-pam:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwallet-pam-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kwallet-pam-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=fdc0fa9033af9a2d69413ffb07747676 diff --git a/metadata/md5-cache/kde-plasma/kwayland-6.3.2 b/metadata/md5-cache/kde-plasma/kwayland-6.3.3 index f84cb28d9172..57fa8188006e 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kwayland-6.3.3 @@ -11,6 +11,6 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/wayland-1.15.0 >=dev-qt/qtbase-6.8.1:6=[concurrent,gui,opengl] >=dev-qt/qtwayland-6.8.1:6= media-libs/libglvnd || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwayland-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kwayland-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=572fd1c555f44502290ea0a57fa712fc diff --git a/metadata/md5-cache/kde-plasma/kwayland-integration-6.3.2 b/metadata/md5-cache/kde-plasma/kwayland-integration-6.3.3 index 5e025a8a925f..4aff15dfed7b 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-integration-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kwayland-integration-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtgui-5.15.12:5= || ( >=dev-qt/qtgui-5.15.12:5[libinput] >=dev-qt/qtgui-5.15.12:5[X] ) >=dev-qt/qtwidgets-5.15.12:5 >=dev-qt/qtwayland-5.15.12:5= >=kde-frameworks/kwindowsystem-5.115.0:5= >=kde-plasma/kwayland-5.115.0:5 x11-libs/libxkbcommon || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwayland-integration-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kwayland-integration-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=9bfd2a08512ec72ec6d6a7a193a56baa diff --git a/metadata/md5-cache/kde-plasma/kwin-6.3.2.1-r1 b/metadata/md5-cache/kde-plasma/kwin-6.3.2.1-r1 deleted file mode 100644 index b6fb3b2d9440..000000000000 --- a/metadata/md5-cache/kde-plasma/kwin-6.3.2.1-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=dev-qt/qtwayland-6.8.1:6 dev-util/wayland-scanner >=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* -DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.2:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.2:6 ) >=dev-libs/plasma-wayland-protocols-1.16.0 >=dev-libs/wayland-protocols-1.38 >=dev-qt/qttools-6.8.1:6[widgets] >=dev-qt/qtbase-6.8.1:6[concurrent] >=dev-qt/qtwayland-6.8.1:6 x11-base/xorg-proto x11-libs/xcb-util-image test? ( screencast? ( >=kde-plasma/kpipewire-6.3.2:6 ) ) dev-qt/qtbase:6 -DESCRIPTION=Flexible, composited Window Manager for windowing systems on Linux -EAPI=8 -HOMEPAGE=https://kde.org/plasma-desktop -IDEPEND=filecaps? ( sys-libs/libcap ) dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=ecm fcaps plasma.kde.org xdg -IUSE=accessibility gles2-only lock screencast +shortcuts systemd debug +handbook test +filecaps -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 -LICENSE=GPL-2+ -RDEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.2:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.2:6 ) !kde-plasma/kdeplasma-addons:5 >=dev-qt/qtmultimedia-6.8.1:6[qml] || ( dev-qt/qtmultimedia:6[ffmpeg] ( dev-qt/qtmultimedia:6[gstreamer] media-plugins/gst-plugins-soup:1.0 ) ) >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-plasma/aurorae-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6[wayland(+)] sys-apps/hwdata >=x11-base/xwayland-23.1.0[libei] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kwin:5 -RESTRICT=test !test? ( test ) -SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwin-6.3.2.1.tar.xz -_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 fcaps 27152c9e4da035accb14a2d7879744ef flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=ea54f0b429f369e7d5f9c00e14667100 diff --git a/metadata/md5-cache/kde-plasma/kwin-6.3.2.1-r2 b/metadata/md5-cache/kde-plasma/kwin-6.3.2.1-r2 deleted file mode 100644 index 8afdbfe11f15..000000000000 --- a/metadata/md5-cache/kde-plasma/kwin-6.3.2.1-r2 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=dev-qt/qtwayland-6.8.1:6 dev-util/wayland-scanner >=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* -DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.2:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.2:6 ) >=dev-libs/plasma-wayland-protocols-1.16.0 >=dev-libs/wayland-protocols-1.38 >=dev-qt/qttools-6.8.1:6[widgets] >=dev-qt/qtbase-6.8.1:6[concurrent] >=dev-qt/qtwayland-6.8.1:6 x11-base/xorg-proto x11-libs/xcb-util-image test? ( screencast? ( >=kde-plasma/kpipewire-6.3.2:6 ) ) dev-qt/qtbase:6 -DESCRIPTION=Flexible, composited Window Manager for windowing systems on Linux -EAPI=8 -HOMEPAGE=https://kde.org/plasma-desktop -IDEPEND=filecaps? ( sys-libs/libcap ) dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=ecm fcaps plasma.kde.org xdg -IUSE=accessibility gles2-only lock screencast +shortcuts systemd debug +handbook test +filecaps -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 -LICENSE=GPL-2+ -RDEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.2:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.2:6 ) !kde-plasma/kdeplasma-addons:5 >=dev-qt/qtmultimedia-6.8.1:6[qml] || ( dev-qt/qtmultimedia:6[ffmpeg] ( dev-qt/qtmultimedia:6[gstreamer] media-plugins/gst-plugins-soup:1.0 ) ) >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-plasma/aurorae-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6[wayland(+)] sys-apps/hwdata >=x11-base/xwayland-23.1.0[libei] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kwin:5 -RESTRICT=test !test? ( test ) -SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwin-6.3.2.1.tar.xz -_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 fcaps 27152c9e4da035accb14a2d7879744ef flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=732ba07072678aded34ddc8444b51c4e diff --git a/metadata/md5-cache/kde-plasma/kwin-6.3.2.1 b/metadata/md5-cache/kde-plasma/kwin-6.3.3 index a938b95fb45b..05bae4349407 100644 --- a/metadata/md5-cache/kde-plasma/kwin-6.3.2.1 +++ b/metadata/md5-cache/kde-plasma/kwin-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=dev-qt/qtwayland-6.8.1:6 dev-util/wayland-scanner >=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.2:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.2:6 ) >=dev-libs/plasma-wayland-protocols-1.16.0 >=dev-libs/wayland-protocols-1.38 >=dev-qt/qttools-6.8.1:6[widgets] >=dev-qt/qtbase-6.8.1:6[concurrent] >=dev-qt/qtwayland-6.8.1:6 x11-base/xorg-proto x11-libs/xcb-util-image test? ( screencast? ( >=kde-plasma/kpipewire-6.3.2:6 ) ) dev-qt/qtbase:6 +DEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.3:6 >=kde-plasma/kdecoration-6.3.3:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.3:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.3:6 ) >=dev-libs/plasma-wayland-protocols-1.16.0 >=dev-libs/wayland-protocols-1.38 >=dev-qt/qttools-6.8.1:6[widgets] >=dev-qt/qtbase-6.8.1:6[concurrent] >=dev-qt/qtwayland-6.8.1:6 x11-base/xorg-proto x11-libs/xcb-util-image test? ( screencast? ( >=kde-plasma/kpipewire-6.3.3:6 ) ) dev-qt/qtbase:6 DESCRIPTION=Flexible, composited Window Manager for windowing systems on Linux EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm fcaps plasma.kde.org xdg IUSE=accessibility gles2-only lock screencast +shortcuts systemd debug +handbook test +filecaps KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ -RDEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.2:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.2:6 ) !kde-plasma/kdeplasma-addons:5 >=dev-qt/qtmultimedia-6.8.1:6[qml] || ( dev-qt/qtmultimedia:6[ffmpeg] ( dev-qt/qtmultimedia:6[gstreamer] media-plugins/gst-plugins-soup:1.0 ) ) >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-plasma/aurorae-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6[wayland(+)] sys-apps/hwdata >=x11-base/xwayland-23.1.0[libei] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kwin:5 +RDEPEND=dev-libs/libei >=dev-libs/libinput-1.27:= >=dev-libs/wayland-1.23.0 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[accessibility=,gles2-only=,gui,libinput,opengl,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsensors-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6=[X(+)] >=kde-frameworks/kguiaddons-6.10.0:6[wayland] >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6=[wayland] >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6=[wayland,X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/breeze-6.3.3:6 >=kde-plasma/kdecoration-6.3.3:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 media-libs/fontconfig media-libs/freetype media-libs/lcms:2 media-libs/libcanberra >=media-libs/libdisplay-info-0.2.0:= media-libs/libepoxy media-libs/libglvnd >=media-libs/mesa-21.3[egl(+),gbm(+),wayland,X] virtual/libudev:= x11-libs/libX11 x11-libs/libXi >=x11-libs/libdrm-2.4.116 >=x11-libs/libxcb-1.10:= >=x11-libs/libxcvt-0.1.1 >=x11-libs/libxkbcommon-1.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-keysyms x11-libs/xcb-util-wm accessibility? ( media-libs/libqaccessibilityclient:6 ) gles2-only? ( >=media-libs/mesa-24.1.0_rc1 ) lock? ( >=kde-plasma/kscreenlocker-6.3.3:6 ) screencast? ( >=media-video/pipewire-1.2.0:= ) shortcuts? ( >=kde-plasma/kglobalacceld-6.3.3:6 ) !kde-plasma/kdeplasma-addons:5 >=dev-qt/qtmultimedia-6.8.1:6[qml] || ( dev-qt/qtmultimedia:6[ffmpeg] ( dev-qt/qtmultimedia:6[gstreamer] media-plugins/gst-plugins-soup:1.0 ) ) >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-plasma/aurorae-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6[wayland(+)] sys-apps/hwdata >=x11-base/xwayland-23.1.0[libei] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kwin:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwin-6.3.2.1.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kwin-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 fcaps 27152c9e4da035accb14a2d7879744ef flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=26e77425cea07c56d983a573db55eae0 +_md5_=7dee596fe80f04bd2fef04519b90f8d8 diff --git a/metadata/md5-cache/kde-plasma/kwrited-6.3.2 b/metadata/md5-cache/kde-plasma/kwrited-6.3.3 index 4fff4fe3b1f8..3fb725d68c88 100644 --- a/metadata/md5-cache/kde-plasma/kwrited-6.3.2 +++ b/metadata/md5-cache/kde-plasma/kwrited-6.3.3 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=>=dev-qt/qtbase-6.8.1:6[gui] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpty-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/kwrited:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/kwrited-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/kwrited-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ad49cfa01aee71240f81fe409e46688b diff --git a/metadata/md5-cache/kde-plasma/layer-shell-qt-6.3.2 b/metadata/md5-cache/kde-plasma/layer-shell-qt-6.3.3 index 4d649d8f856d..2256eb42b589 100644 --- a/metadata/md5-cache/kde-plasma/layer-shell-qt-6.3.2 +++ b/metadata/md5-cache/kde-plasma/layer-shell-qt-6.3.3 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-3+ RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtbase-6.8.1:6[gui] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6= x11-libs/libxkbcommon || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/layer-shell-qt:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/layer-shell-qt-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/layer-shell-qt-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=afdb66b184337a003dad98ff9487897a diff --git a/metadata/md5-cache/kde-plasma/libkscreen-6.3.2 b/metadata/md5-cache/kde-plasma/libkscreen-6.3.3 index 7b6ccfe8bebb..47393a29408c 100644 --- a/metadata/md5-cache/kde-plasma/libkscreen-6.3.2 +++ b/metadata/md5-cache/kde-plasma/libkscreen-6.3.3 @@ -11,6 +11,6 @@ LICENSE=GPL-2 RDEPEND=dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui] >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 x11-libs/libxcb:= || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 !kde-plasma/libkscreen:5 RESTRICT=test !test? ( test ) SLOT=6/8 -SRC_URI=mirror://kde/stable/plasma/6.3.2/libkscreen-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/libkscreen-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=eaf0e92e8542be2a6721188263a914b2 diff --git a/metadata/md5-cache/kde-plasma/libksysguard-6.3.2 b/metadata/md5-cache/kde-plasma/libksysguard-6.3.3 index b4d8c66d1e63..553778b8977b 100644 --- a/metadata/md5-cache/kde-plasma/libksysguard-6.3.2 +++ b/metadata/md5-cache/kde-plasma/libksysguard-6.3.3 @@ -12,6 +12,6 @@ LICENSE=LGPL-2+ RDEPEND=dev-libs/libnl:3 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 net-libs/libpcap sys-apps/lm-sensors:= sys-libs/zlib >=dev-qt/qt5compat-6.8.1:6[qml] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/libksysguard:5 RESTRICT=!test? ( test ) SLOT=6/9 -SRC_URI=mirror://kde/stable/plasma/6.3.2/libksysguard-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/libksysguard-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 fcaps 27152c9e4da035accb14a2d7879744ef flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=514cb91c65ddd91552e6500ef928a55a diff --git a/metadata/md5-cache/kde-plasma/libplasma-6.3.2 b/metadata/md5-cache/kde-plasma/libplasma-6.3.3 index d5f84d97e231..e4dc92e599d3 100644 --- a/metadata/md5-cache/kde-plasma/libplasma-6.3.2 +++ b/metadata/md5-cache/kde-plasma/libplasma-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=dev-qt/qtwayland-6.8.1:6 >=dev-util/wayland-scanner-1.19.0 app-alternatives/ninja >=dev-build/cmake-3.20.5 doc? ( >=app-text/doxygen-1.8.13-r1 ) dev-qt/qttools:6[assistant] dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6=[dbus,gles2-only=,gui,widgets,X] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-libs/wayland-1.15.0 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] =kde-plasma/plasma-activities-6.3.2*:6 media-libs/libglvnd x11-libs/libX11 x11-libs/libxcb !gles2-only? ( media-libs/libglvnd[X] ) >=dev-libs/plasma-wayland-protocols-1.16.0 x11-base/xorg-proto doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6=[dbus,gles2-only=,gui,widgets,X] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-libs/wayland-1.15.0 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] =kde-plasma/plasma-activities-6.3.3*:6 media-libs/libglvnd x11-libs/libX11 x11-libs/libxcb !gles2-only? ( media-libs/libglvnd[X] ) >=dev-libs/plasma-wayland-protocols-1.16.0 x11-base/xorg-proto doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 DESCRIPTION=Plasma library and runtime components based upon KF6 and Qt6 EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -8,9 +8,9 @@ INHERIT=ecm plasma.kde.org IUSE=gles2-only debug doc test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2+ -RDEPEND=>=dev-qt/qtbase-6.8.1:6=[dbus,gles2-only=,gui,widgets,X] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-libs/wayland-1.15.0 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] =kde-plasma/plasma-activities-6.3.2*:6 media-libs/libglvnd x11-libs/libX11 x11-libs/libxcb !gles2-only? ( media-libs/libglvnd[X] ) !kde-plasma/libplasma:5[-kf6compat(-)] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 +RDEPEND=>=dev-qt/qtbase-6.8.1:6=[dbus,gles2-only=,gui,widgets,X] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-libs/wayland-1.15.0 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6[qml] >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] =kde-plasma/plasma-activities-6.3.3*:6 media-libs/libglvnd x11-libs/libX11 x11-libs/libxcb !gles2-only? ( media-libs/libglvnd[X] ) !kde-plasma/libplasma:5[-kf6compat(-)] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/libplasma-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/libplasma-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=dd967fe03209c454b27d96338e8aa02f diff --git a/metadata/md5-cache/kde-plasma/milou-6.3.2 b/metadata/md5-cache/kde-plasma/milou-6.3.3 index 1c6fa02c0c79..6be3fa9c6b2f 100644 --- a/metadata/md5-cache/kde-plasma/milou-6.3.2 +++ b/metadata/md5-cache/kde-plasma/milou-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Dedicated search application built on top of Baloo EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/milou @@ -8,9 +8,9 @@ INHERIT=ecm plasma.kde.org IUSE=debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/milou:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/milou:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/milou-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/milou-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e53acfd773e2796a763d6108eb048f8a diff --git a/metadata/md5-cache/kde-plasma/ocean-sound-theme-6.3.2 b/metadata/md5-cache/kde-plasma/ocean-sound-theme-6.3.3 index 6821f880a92c..729c49d3629f 100644 --- a/metadata/md5-cache/kde-plasma/ocean-sound-theme-6.3.2 +++ b/metadata/md5-cache/kde-plasma/ocean-sound-theme-6.3.3 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=CC-BY-SA-4.0 RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/ocean-sound-theme-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/ocean-sound-theme-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0de9dae7d58d76e19516020e21a9d27f diff --git a/metadata/md5-cache/kde-plasma/oxygen-6.3.2 b/metadata/md5-cache/kde-plasma/oxygen-6.3.3 index b0d81bb8ed0c..c0e174ed7887 100644 --- a/metadata/md5-cache/kde-plasma/oxygen-6.3.2 +++ b/metadata/md5-cache/kde-plasma/oxygen-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcompletion-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 X? ( >=dev-qt/qtx11extras-5.15.12:5 ) ) X? ( >=dev-qt/qtbase-6.8.1:6=[gui] x11-libs/libxcb ) >=kde-frameworks/kservice-6.10.0:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcompletion-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 X? ( >=dev-qt/qtx11extras-5.15.12:5 ) ) X? ( >=dev-qt/qtbase-6.8.1:6=[gui] x11-libs/libxcb ) >=kde-frameworks/kservice-6.10.0:6 dev-qt/qtbase:6 DESCRIPTION=Oxygen visual style for the Plasma desktop EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/oxygen @@ -8,8 +8,8 @@ INHERIT=ecm plasma.kde.org IUSE=qt5 X debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcompletion-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 X? ( >=dev-qt/qtx11extras-5.15.12:5 ) ) X? ( >=dev-qt/qtbase-6.8.1:6=[gui] x11-libs/libxcb ) !<kde-plasma/libplasma-6.1.90:*[-kf6compat(-)] >=dev-qt/qtsvg-6.8.1:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/oxygen:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/frameworkintegration-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kdecoration-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtdeclarative-5.15.12:5 >=dev-qt/qtgui-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=kde-frameworks/frameworkintegration-5.115.0:5 >=kde-frameworks/kcompletion-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kwidgetsaddons-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 X? ( >=dev-qt/qtx11extras-5.15.12:5 ) ) X? ( >=dev-qt/qtbase-6.8.1:6=[gui] x11-libs/libxcb ) !<kde-plasma/libplasma-6.1.90:*[-kf6compat(-)] >=dev-qt/qtsvg-6.8.1:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/oxygen:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/oxygen-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/oxygen-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=159864757ecde1d80fdb15b50480a14b diff --git a/metadata/md5-cache/kde-plasma/oxygen-sounds-6.3.2 b/metadata/md5-cache/kde-plasma/oxygen-sounds-6.3.3 index b9afba68b2a5..2b0ad00a3bff 100644 --- a/metadata/md5-cache/kde-plasma/oxygen-sounds-6.3.2 +++ b/metadata/md5-cache/kde-plasma/oxygen-sounds-6.3.3 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ RDEPEND=|| ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/oxygen-sounds:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/oxygen-sounds-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/oxygen-sounds-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=aacf20d5481812458f22125182a98beb diff --git a/metadata/md5-cache/kde-plasma/plasma-activities-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-activities-6.3.3 index 5838e9e31331..e451d0ee90b1 100644 --- a/metadata/md5-cache/kde-plasma/plasma-activities-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-activities-6.3.3 @@ -11,6 +11,6 @@ LICENSE=|| ( LGPL-2.1 LGPL-3 ) RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-activities-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-activities-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=b8fa380603e3f5e771404ea0197f5302 diff --git a/metadata/md5-cache/kde-plasma/plasma-activities-stats-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-activities-stats-6.3.3 index cfeaf86cfd8e..1fb8aabc37ae 100644 --- a/metadata/md5-cache/kde-plasma/plasma-activities-stats-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-activities-stats-6.3.3 @@ -11,6 +11,6 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,sql] >=kde-frameworks/kconfig-6.10.0:6 kde-plasma/plasma-activities:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-activities-stats-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-activities-stats-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=fd94dc91f107375996d2fcb67b5ce624 diff --git a/metadata/md5-cache/kde-plasma/plasma-browser-integration-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-browser-integration-6.3.3 index 47f1faa91b2a..349f0e9ecfab 100644 --- a/metadata/md5-cache/kde-plasma/plasma-browser-integration-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-browser-integration-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kfilemetadata-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/purpose-6.10.0:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 >=kde-frameworks/krunner-6.10.0:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kfilemetadata-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/purpose-6.10.0:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 >=kde-frameworks/krunner-6.10.0:6 dev-qt/qtbase:6 DESCRIPTION=Integrate Chrome/Firefox better into Plasma through browser extensions EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop https://community.kde.org/Plasma/Browser_Integration @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-3+ -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kfilemetadata-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/purpose-6.10.0:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-browser-integration:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kfilemetadata-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/purpose-6.10.0:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-browser-integration:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-browser-integration-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-browser-integration-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8c2b015723376f93de5072f69bf3297f diff --git a/metadata/md5-cache/kde-plasma/plasma-desktop-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-desktop-6.3.3 index eb2e227b6803..5f7f1d7c55c6 100644 --- a/metadata/md5-cache/kde-plasma/plasma-desktop-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-desktop-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=dev-util/intltool >=kde-frameworks/kcmutils-6.10.0:6 virtual/pkgconfig input_devices_wacom? ( dev-util/wayland-scanner ) app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/icu:= >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[concurrent,dbus,gui,network,sql,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/attica-6.10.0:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/kwin-6.3.2:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-activities-stats-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6[screencast?] >=kde-plasma/plasma5support-6.3.2:6 media-libs/libcanberra x11-libs/libX11 x11-libs/libxcb x11-libs/libXcursor x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile ibus? ( app-i18n/ibus dev-libs/glib:2 x11-libs/xcb-util-keysyms ) input_devices_wacom? ( dev-libs/wayland dev-libs/libwacom:= >=dev-qt/qtwayland-6.8.1:6 ) scim? ( app-i18n/scim ) sdl? ( media-libs/libsdl2[joystick] ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) webengine? ( kde-apps/kaccounts-integration:6 >=net-libs/accounts-qt-1.17[qt6(+)] ) dev-libs/boost x11-base/xorg-proto input_devices_wacom? ( >=dev-libs/wayland-protocols-1.25 ) test? ( >=kde-frameworks/qqc2-desktop-style-6.10.0:6 >=kde-plasma/kactivitymanagerd-6.3.2:6 ) dev-qt/qtbase:6 +DEPEND=dev-libs/icu:= >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[concurrent,dbus,gui,network,sql,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/attica-6.10.0:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/kwin-6.3.3:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-activities-stats-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6[screencast?] >=kde-plasma/plasma5support-6.3.3:6 media-libs/libcanberra x11-libs/libX11 x11-libs/libxcb x11-libs/libXcursor x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile ibus? ( app-i18n/ibus dev-libs/glib:2 x11-libs/xcb-util-keysyms ) input_devices_wacom? ( dev-libs/wayland dev-libs/libwacom:= >=dev-qt/qtwayland-6.8.1:6 ) scim? ( app-i18n/scim ) sdl? ( media-libs/libsdl2[joystick] ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) webengine? ( kde-apps/kaccounts-integration:6 >=net-libs/accounts-qt-1.17[qt6(+)] ) dev-libs/boost x11-base/xorg-proto input_devices_wacom? ( >=dev-libs/wayland-protocols-1.25 ) test? ( >=kde-frameworks/qqc2-desktop-style-6.10.0:6 >=kde-plasma/kactivitymanagerd-6.3.3:6 ) dev-qt/qtbase:6 DESCRIPTION=KDE Plasma desktop EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org optfeature xdg IUSE=ibus input_devices_wacom scim screencast sdl +semantic-desktop webengine debug +handbook test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/icu:= >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[concurrent,dbus,gui,network,sql,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/attica-6.10.0:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/kwin-6.3.2:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-activities-stats-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6[screencast?] >=kde-plasma/plasma5support-6.3.2:6 media-libs/libcanberra x11-libs/libX11 x11-libs/libxcb x11-libs/libXcursor x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile ibus? ( app-i18n/ibus dev-libs/glib:2 x11-libs/xcb-util-keysyms ) input_devices_wacom? ( dev-libs/wayland dev-libs/libwacom:= >=dev-qt/qtwayland-6.8.1:6 ) scim? ( app-i18n/scim ) sdl? ( media-libs/libsdl2[joystick] ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) webengine? ( kde-apps/kaccounts-integration:6 >=net-libs/accounts-qt-1.17[qt6(+)] ) !<kde-plasma/kdeplasma-addons-5.25.50 !<kde-plasma/plasma-workspace-6.0.80 dev-libs/kirigami-addons:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/qqc2-desktop-style-6.10.0:6 >=kde-plasma/oxygen-6.3.2:6 >=kde-plasma/plasma-mimeapps-list-3 media-fonts/noto-emoji sys-apps/util-linux x11-apps/setxkbmap x11-misc/xdg-user-dirs screencast? ( >=kde-plasma/kpipewire-6.3.2:6 ) webengine? ( >=net-libs/signon-oauth2-0.25_p20210102[qt6(+)] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-desktop:5 +RDEPEND=dev-libs/icu:= >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[concurrent,dbus,gui,network,sql,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/attica-6.10.0:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-frameworks/sonnet-6.10.0:6 >=kde-plasma/kwin-6.3.3:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-activities-stats-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6[screencast?] >=kde-plasma/plasma5support-6.3.3:6 media-libs/libcanberra x11-libs/libX11 x11-libs/libxcb x11-libs/libXcursor x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile ibus? ( app-i18n/ibus dev-libs/glib:2 x11-libs/xcb-util-keysyms ) input_devices_wacom? ( dev-libs/wayland dev-libs/libwacom:= >=dev-qt/qtwayland-6.8.1:6 ) scim? ( app-i18n/scim ) sdl? ( media-libs/libsdl2[joystick] ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) webengine? ( kde-apps/kaccounts-integration:6 >=net-libs/accounts-qt-1.17[qt6(+)] ) !<kde-plasma/plasma-workspace-6.0.80 dev-libs/kirigami-addons:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/qqc2-desktop-style-6.10.0:6 >=kde-plasma/oxygen-6.3.3:6 >=kde-plasma/plasma-mimeapps-list-3 media-fonts/noto-emoji sys-apps/util-linux x11-apps/setxkbmap x11-misc/xdg-user-dirs screencast? ( >=kde-plasma/kpipewire-6.3.3:6 ) webengine? ( >=net-libs/signon-oauth2-0.25_p20210102[qt6(+)] ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-desktop:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-desktop-6.3.2.tar.xz https://dev.gentoo.org/~asturm/distfiles/plasma-desktop-override-include-dirs-4.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-desktop-6.3.3.tar.xz https://dev.gentoo.org/~asturm/distfiles/plasma-desktop-override-include-dirs-4.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 538bce96e5589935b57e178e8635f301 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=b468519bff4182a5f7e5005b2208d939 +_md5_=d5f647487563c7bd10fc67d3cdd724e1 diff --git a/metadata/md5-cache/kde-plasma/plasma-disks-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-disks-6.3.3 index 8a4357557bf7..6057dd88a344 100644 --- a/metadata/md5-cache/kde-plasma/plasma-disks-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-disks-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=|| ( GPL-3 GPL-2 ) RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 sys-apps/smartmontools kde-plasma/kinfocenter:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-disks:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-disks-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-disks-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0c91fe0e705c0b039269574eea43cc37 diff --git a/metadata/md5-cache/kde-plasma/plasma-firewall-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-firewall-6.3.3 index 4a753702c631..a14ccb43b5d9 100644 --- a/metadata/md5-cache/kde-plasma/plasma-firewall-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-firewall-6.3.3 @@ -13,6 +13,6 @@ RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,network,xml] >=dev-qt/qtdeclarative-6.8 REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 ) || ( firewalld ufw ) RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-firewall-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-firewall-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4ecdc1ae71f3cb26157cd0b0b7a5c904 diff --git a/metadata/md5-cache/kde-plasma/plasma-integration-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-integration-6.3.3 index dd3e7ab224e7..44334ef76263 100644 --- a/metadata/md5-cache/kde-plasma/plasma-integration-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-integration-6.3.3 @@ -9,10 +9,10 @@ INHERIT=ecm plasma.kde.org xdg IUSE=qt5 debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2+ -PDEPEND=>=kde-plasma/xdg-desktop-portal-kde-6.3.2:6 +PDEPEND=>=kde-plasma/xdg-desktop-portal-kde-6.3.3:6 RDEPEND=dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 x11-libs/libXcursor x11-libs/libxcb qt5? ( >=dev-qt/qtdbus-5.15.12:5 >=dev-qt/qtgui-5.15.12:5=[dbus] >=dev-qt/qtquickcontrols2-5.15.12:5 >=dev-qt/qtwayland-5.15.12:5 >=dev-qt/qtwidgets-5.15.12:5 >=dev-qt/qtx11extras-5.15.12:5 >=kde-frameworks/kcompletion-5.115.0:5 >=kde-frameworks/kconfig-5.115.0:5 >=kde-frameworks/kconfigwidgets-5.115.0:5 >=kde-frameworks/kcoreaddons-5.115.0:5 >=kde-frameworks/kguiaddons-5.115.0:5 >=kde-frameworks/ki18n-5.115.0:5 >=kde-frameworks/kiconthemes-5.115.0:5 >=kde-frameworks/kio-5.115.0:5 >=kde-frameworks/kjobwidgets-5.115.0:5 >=kde-frameworks/knotifications-5.115.0:5 >=kde-frameworks/kwindowsystem-5.115.0:5 >=kde-frameworks/kxmlgui-5.115.0:5 >=kde-plasma/kwayland-5.115.0:5 ) media-fonts/hack media-fonts/noto media-fonts/noto-emoji || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-integration:5 RESTRICT=test SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-integration-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-integration-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=9c1072d96b013821d21d091b91cf89eb diff --git a/metadata/md5-cache/kde-plasma/plasma-login-sessions-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-login-sessions-6.3.3 index 06dcf5fd7482..3d729e6f20e5 100644 --- a/metadata/md5-cache/kde-plasma/plasma-login-sessions-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-login-sessions-6.3.3 @@ -10,6 +10,6 @@ LICENSE=GPL-2 RDEPEND=!<kde-plasma/plasma-workspace-6.2.1 !kde-plasma/plasma-login-sessions:5 REQUIRED_USE=|| ( wayland X ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-workspace-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-workspace-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm-common 2409ff2ed4921be52f7f7cdd30078e2d flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=cbc2deff03ce76b76beedecd20eaed9e diff --git a/metadata/md5-cache/kde-plasma/plasma-meta-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-meta-6.3.2 deleted file mode 100644 index 7982d312af90..000000000000 --- a/metadata/md5-cache/kde-plasma/plasma-meta-6.3.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=postinst -DESCRIPTION=Merge this to pull in all Plasma 6 packages -EAPI=8 -HOMEPAGE=https://kde.org/plasma-desktop/ -INHERIT=toolchain-funcs -IUSE=accessibility bluetooth +browser-integration colord +crash-handler crypt cups discover +display-manager +elogind +firewall flatpak grub gtk +kwallet +networkmanager oxygen-theme plymouth pulseaudio qt5 rdp +sddm sdk +smart systemd thunderbolt unsupported wacom +wallpapers webengine -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 -LICENSE=metapackage -RDEPEND=!kde-plasma/plasma-meta:5 !kde-plasma/khotkeys:5 >=kde-plasma/breeze-6.3.2:6[qt5?] >=kde-plasma/kactivitymanagerd-6.3.2:6 >=kde-plasma/kde-cli-tools-6.3.2:6 >=kde-plasma/kde-cli-tools-common-6.3.2 >=kde-plasma/kdecoration-6.3.2:6 >=kde-plasma/kdeplasma-addons-6.3.2:6 >=kde-plasma/kdesu-gui-6.3.2 >=kde-plasma/keditfiletype-6.3.2 >=kde-plasma/kgamma-6.3.2:6 >=kde-plasma/kglobalacceld-6.3.2:6 >=kde-plasma/kinfocenter-6.3.2:6 >=kde-plasma/kmenuedit-6.3.2:6 >=kde-plasma/kpipewire-6.3.2:6 >=kde-plasma/kscreen-6.3.2:6 >=kde-plasma/kscreenlocker-6.3.2:6 >=kde-plasma/ksshaskpass-6.3.2:6 >=kde-plasma/ksystemstats-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/kwin-6.3.2:6[lock] >=kde-plasma/kwrited-6.3.2:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/milou-6.3.2:6 >=kde-plasma/ocean-sound-theme-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-activities-stats-6.3.2:6 >=kde-plasma/plasma-desktop-6.3.2:6 >=kde-plasma/plasma-integration-6.3.2:6[qt5?] >=kde-plasma/plasma-login-sessions-6.3.2:6 >=kde-plasma/plasma-systemmonitor-6.3.2:6 >=kde-plasma/plasma-welcome-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 >=kde-plasma/polkit-kde-agent-6.3.2:* >=kde-plasma/powerdevil-6.3.2:6 >=kde-plasma/qqc2-breeze-style-6.3.2:6 >=kde-plasma/systemsettings-6.3.2:6 >=kde-plasma/xdg-desktop-portal-kde-6.3.2:6 sys-apps/dbus[elogind?,systemd?] sys-auth/polkit[systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-6.3.2:6 ) browser-integration? ( >=kde-plasma/plasma-browser-integration-6.3.2:6 ) colord? ( x11-misc/colord ) crash-handler? ( >=kde-plasma/drkonqi-6.3.2:6 ) crypt? ( >=kde-plasma/plasma-vault-6.3.2:6 ) cups? ( >=kde-plasma/print-manager-6.3.2:6 net-print/cups-meta ) discover? ( >=kde-plasma/discover-6.3.2:6 ) display-manager? ( sddm? ( >=kde-plasma/sddm-kcm-6.3.2:6 >=x11-misc/sddm-0.21.0_p20240302[elogind?,systemd?] ) !sddm? ( x11-misc/lightdm ) ) elogind? ( sys-auth/elogind[pam] ) flatpak? ( >=kde-plasma/flatpak-kcm-6.3.2:6 ) grub? ( >=kde-plasma/breeze-grub-6.3.2:6 ) gtk? ( >=kde-plasma/breeze-gtk-6.3.2:6 >=kde-plasma/kde-gtk-config-6.3.2:6 sys-apps/xdg-desktop-portal-gtk x11-misc/appmenu-gtk-module ) kwallet? ( >=kde-plasma/kwallet-pam-6.3.2:6 ) networkmanager? ( >=kde-plasma/plasma-nm-6.3.2:6 net-misc/networkmanager[elogind?,systemd?] ) oxygen-theme? ( >=kde-frameworks/oxygen-icons-6.0.0:* >=kde-plasma/oxygen-6.3.2:6[qt5?] >=kde-plasma/oxygen-sounds-6.3.2:6 ) plymouth? ( >=kde-plasma/breeze-plymouth-6.3.2:6 >=kde-plasma/plymouth-kcm-6.3.2:6 ) pulseaudio? ( >=kde-plasma/plasma-pa-6.3.2:6 ) qt5? ( >=kde-plasma/kwayland-integration-6.3.2:5 ) rdp? ( >=kde-plasma/krdp-6.3.2:6 ) sdk? ( >=kde-plasma/plasma-sdk-6.3.2:6 ) smart? ( >=kde-plasma/plasma-disks-6.3.2:6 ) systemd? ( sys-apps/systemd[pam] firewall? ( >=kde-plasma/plasma-firewall-6.3.2:6 ) ) thunderbolt? ( >=kde-plasma/plasma-thunderbolt-6.3.2:6 ) !unsupported? ( !gui-apps/qt6ct ) wacom? ( >=kde-plasma/wacomtablet-6.3.2:6 ) wallpapers? ( >=kde-plasma/plasma-workspace-wallpapers-6.3.2:6 ) webengine? ( kde-apps/khelpcenter:6 ) accessibility? ( app-accessibility/orca ) -REQUIRED_USE=^^ ( elogind systemd ) -SLOT=6 -_eclasses_=multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=84e16b590f817bf212e0e8539f53745e diff --git a/metadata/md5-cache/kde-plasma/plasma-meta-6.3.3 b/metadata/md5-cache/kde-plasma/plasma-meta-6.3.3 new file mode 100644 index 000000000000..6392b8ba2129 --- /dev/null +++ b/metadata/md5-cache/kde-plasma/plasma-meta-6.3.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=postinst +DESCRIPTION=Merge this to pull in all Plasma 6 packages +EAPI=8 +HOMEPAGE=https://kde.org/plasma-desktop/ +INHERIT=toolchain-funcs +IUSE=accessibility bluetooth +browser-integration colord +crash-handler crypt cups discover +display-manager +elogind +firewall flatpak grub gtk +kwallet +networkmanager oxygen-theme plymouth pulseaudio qt5 rdp +sddm sdk +smart systemd thunderbolt unsupported wacom +wallpapers webengine +KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=metapackage +RDEPEND=!kde-plasma/plasma-meta:5 !kde-plasma/khotkeys:5 >=kde-plasma/aurorae-6.3.3:6 >=kde-plasma/breeze-6.3.3:6[qt5?] >=kde-plasma/kactivitymanagerd-6.3.3:6 >=kde-plasma/kde-cli-tools-6.3.3:6 >=kde-plasma/kde-cli-tools-common-6.3.3 >=kde-plasma/kdecoration-6.3.3:6 >=kde-plasma/kdeplasma-addons-6.3.3:6 >=kde-plasma/kdesu-gui-6.3.3 >=kde-plasma/keditfiletype-6.3.3 >=kde-plasma/kgamma-6.3.3:6 >=kde-plasma/kglobalacceld-6.3.3:6 >=kde-plasma/kinfocenter-6.3.3:6 >=kde-plasma/kmenuedit-6.3.3:6 >=kde-plasma/kpipewire-6.3.3:6 >=kde-plasma/kscreen-6.3.3:6 >=kde-plasma/kscreenlocker-6.3.3:6 >=kde-plasma/ksshaskpass-6.3.3:6 >=kde-plasma/ksystemstats-6.3.3:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/kwin-6.3.3:6[lock] >=kde-plasma/kwrited-6.3.3:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/milou-6.3.3:6 >=kde-plasma/ocean-sound-theme-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-activities-stats-6.3.3:6 >=kde-plasma/plasma-desktop-6.3.3:6 >=kde-plasma/plasma-integration-6.3.3:6[qt5?] >=kde-plasma/plasma-login-sessions-6.3.3:6 >=kde-plasma/plasma-systemmonitor-6.3.3:6 >=kde-plasma/plasma-welcome-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 >=kde-plasma/polkit-kde-agent-6.3.3:* >=kde-plasma/powerdevil-6.3.3:6 >=kde-plasma/qqc2-breeze-style-6.3.3:6 >=kde-apps/spectacle-6.3.3:6 >=kde-plasma/systemsettings-6.3.3:6 >=kde-plasma/xdg-desktop-portal-kde-6.3.3:6 sys-apps/dbus[elogind?,systemd?] sys-auth/polkit[systemd?] sys-fs/udisks:2[elogind?,systemd?] bluetooth? ( >=kde-plasma/bluedevil-6.3.3:6 ) browser-integration? ( >=kde-plasma/plasma-browser-integration-6.3.3:6 ) colord? ( x11-misc/colord ) crash-handler? ( >=kde-plasma/drkonqi-6.3.3:6 ) crypt? ( >=kde-plasma/plasma-vault-6.3.3:6 ) cups? ( >=kde-plasma/print-manager-6.3.3:6 net-print/cups-meta ) discover? ( >=kde-plasma/discover-6.3.3:6 ) display-manager? ( sddm? ( >=kde-plasma/sddm-kcm-6.3.3:6 >=x11-misc/sddm-0.21.0_p20240302[elogind?,systemd?] ) !sddm? ( x11-misc/lightdm ) ) elogind? ( sys-auth/elogind[pam] ) flatpak? ( >=kde-plasma/flatpak-kcm-6.3.3:6 ) grub? ( >=kde-plasma/breeze-grub-6.3.3:6 ) gtk? ( >=kde-plasma/breeze-gtk-6.3.3:6 >=kde-plasma/kde-gtk-config-6.3.3:6 sys-apps/xdg-desktop-portal-gtk x11-misc/appmenu-gtk-module ) kwallet? ( >=kde-plasma/kwallet-pam-6.3.3:6 ) networkmanager? ( >=kde-plasma/plasma-nm-6.3.3:6 net-misc/networkmanager[elogind?,systemd?] ) oxygen-theme? ( >=kde-frameworks/oxygen-icons-6.0.0:* >=kde-plasma/oxygen-6.3.3:6[qt5?] >=kde-plasma/oxygen-sounds-6.3.3:6 ) plymouth? ( >=kde-plasma/breeze-plymouth-6.3.3:6 >=kde-plasma/plymouth-kcm-6.3.3:6 ) pulseaudio? ( >=kde-plasma/plasma-pa-6.3.3:6 ) qt5? ( >=kde-plasma/kwayland-integration-6.3.3:5 ) rdp? ( >=kde-plasma/krdp-6.3.3:6 ) sdk? ( >=kde-plasma/plasma-sdk-6.3.3:6 ) smart? ( >=kde-plasma/plasma-disks-6.3.3:6 ) systemd? ( sys-apps/systemd[pam] firewall? ( >=kde-plasma/plasma-firewall-6.3.3:6 ) ) thunderbolt? ( >=kde-plasma/plasma-thunderbolt-6.3.3:6 ) !unsupported? ( !gui-apps/qt6ct ) wacom? ( >=kde-plasma/wacomtablet-6.3.3:6 ) wallpapers? ( >=kde-plasma/plasma-workspace-wallpapers-6.3.3:6 ) webengine? ( kde-apps/khelpcenter:6 ) accessibility? ( app-accessibility/orca ) +REQUIRED_USE=^^ ( elogind systemd ) +SLOT=6 +_eclasses_=multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_md5_=3dd32c9f3282655ef8802f8f38025287 diff --git a/metadata/md5-cache/kde-plasma/plasma-nm-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-nm-6.3.3 index 21e669105cae..fbabcb7df05b 100644 --- a/metadata/md5-cache/kde-plasma/plasma-nm-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-nm-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=app-crypt/qca-2.3.7:2[qt6(+)] dev-libs/qcoro[dbus] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/modemmanager-qt-6.10.0:6 >=kde-frameworks/networkmanager-qt-6.10.0:6[teamd=] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 net-misc/mobile-broadband-provider-info net-misc/networkmanager[teamd=] openconnect? ( >=dev-qt/qtwebengine-6.8.1:6 net-vpn/networkmanager-openconnect net-vpn/openconnect:= ) dev-qt/qtbase:6 +DEPEND=>=app-crypt/qca-2.3.7:2[qt6(+)] dev-libs/qcoro[dbus] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/modemmanager-qt-6.10.0:6 >=kde-frameworks/networkmanager-qt-6.10.0:6[teamd=] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 net-misc/mobile-broadband-provider-info net-misc/networkmanager[teamd=] openconnect? ( >=dev-qt/qtwebengine-6.8.1:6 net-vpn/networkmanager-openconnect net-vpn/openconnect:= ) dev-qt/qtbase:6 DESCRIPTION=KDE Plasma applet for NetworkManager EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=openconnect teamd debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=app-crypt/qca-2.3.7:2[qt6(+)] dev-libs/qcoro[dbus] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/modemmanager-qt-6.10.0:6 >=kde-frameworks/networkmanager-qt-6.10.0:6[teamd=] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 net-misc/mobile-broadband-provider-info net-misc/networkmanager[teamd=] openconnect? ( >=dev-qt/qtwebengine-6.8.1:6 net-vpn/networkmanager-openconnect net-vpn/openconnect:= ) >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kquickcharts-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-nm:5 +RDEPEND=>=app-crypt/qca-2.3.7:2[qt6(+)] dev-libs/qcoro[dbus] >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/modemmanager-qt-6.10.0:6 >=kde-frameworks/networkmanager-qt-6.10.0:6[teamd=] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 net-misc/mobile-broadband-provider-info net-misc/networkmanager[teamd=] openconnect? ( >=dev-qt/qtwebengine-6.8.1:6 net-vpn/networkmanager-openconnect net-vpn/openconnect:= ) >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kquickcharts-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-nm:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-nm-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-nm-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=15fcbef1eb68702925b93423141c536e diff --git a/metadata/md5-cache/kde-plasma/plasma-pa-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-pa-6.3.3 index 9b96b9d20a9d..7ba320afec41 100644 --- a/metadata/md5-cache/kde-plasma/plasma-pa-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-pa-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 media-libs/libcanberra media-libs/libpulse >=media-libs/pulseaudio-qt-1.6.0:= dev-qt/qtbase:6 +DEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 media-libs/libcanberra media-libs/libpulse >=media-libs/pulseaudio-qt-1.6.0:= dev-qt/qtbase:6 DESCRIPTION=Plasma applet for audio volume management using PulseAudio EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug +handbook test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 media-libs/libcanberra media-libs/libpulse >=media-libs/pulseaudio-qt-1.6.0:= dev-libs/kirigami-addons:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 x11-themes/sound-theme-freedesktop || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-pa:5 +RDEPEND=dev-libs/glib:2 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 media-libs/libcanberra media-libs/libpulse >=media-libs/pulseaudio-qt-1.6.0:= dev-libs/kirigami-addons:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 x11-themes/sound-theme-freedesktop || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-pa:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-pa-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-pa-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=377a9933a19888755c4416055cfa6356 diff --git a/metadata/md5-cache/kde-plasma/plasma-sdk-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-sdk-6.3.3 index 840e27ea1a6e..6488c607e2ab 100644 --- a/metadata/md5-cache/kde-plasma/plasma-sdk-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-sdk-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Useful applications for Plasma development EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug +handbook test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 >=dev-qt/qt5compat-6.8.1:6[qml] >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-sdk:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 >=dev-qt/qt5compat-6.8.1:6[qml] >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-sdk:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-sdk-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-sdk-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=a50a7a72460de21518bc0a961d4e29ec diff --git a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-6.3.3 index 27862893f1e3..414ff7262a86 100644 --- a/metadata/md5-cache/kde-plasma/plasma-systemmonitor-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-systemmonitor-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/kirigami-addons-1.1.0:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-libs/kirigami-addons-1.1.0:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Monitor system sensors, process information and other system resources EAPI=8 HOMEPAGE=https://apps.kde.org/plasma-systemmonitor/ @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=|| ( GPL-3 GPL-2 ) -RDEPEND=>=dev-libs/kirigami-addons-1.1.0:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kquickcharts-6.10.0:6 >=kde-plasma/ksystemstats-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-systemmonitor:5 +RDEPEND=>=dev-libs/kirigami-addons-1.1.0:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kquickcharts-6.10.0:6 >=kde-plasma/ksystemstats-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-systemmonitor:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-systemmonitor-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-systemmonitor-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=4aaaec4cefa7d7d60d2722bfe6dfdf0d diff --git a/metadata/md5-cache/kde-plasma/plasma-thunderbolt-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-thunderbolt-6.3.3 index 6d5dfe00f9a0..5d923e20acde 100644 --- a/metadata/md5-cache/kde-plasma/plasma-thunderbolt-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-thunderbolt-6.3.3 @@ -12,6 +12,6 @@ LICENSE=|| ( GPL-2 GPL-3+ ) RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 sys-apps/bolt || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-thunderbolt:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-thunderbolt-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-thunderbolt-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=0fe80c41100cd4588f47f1955df66d7c diff --git a/metadata/md5-cache/kde-plasma/plasma-vault-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-vault-6.3.3 index 8939efe16906..3bf5aa243d36 100644 --- a/metadata/md5-cache/kde-plasma/plasma-vault-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-vault-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) dev-qt/qtbase:6 DESCRIPTION=Plasma applet and services for creating encrypted vaults EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop https://cukic.co/2017/02/03/vaults-encryption-in-plasma/ @@ -9,8 +9,8 @@ INHERIT=ecm flag-o-matic plasma.kde.org xdg IUSE=networkmanager debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-3 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) || ( >=sys-fs/cryfs-0.9.9 >=sys-fs/encfs-1.9.2 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-vault:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcodecs-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) || ( >=sys-fs/cryfs-0.9.9 >=sys-fs/encfs-1.9.2 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-vault:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-vault-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-vault-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=dd39020219fd0ca20b28add9ffdae486 diff --git a/metadata/md5-cache/kde-plasma/plasma-welcome-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-welcome-6.3.3 index d1e0d25290ad..33adc314ab41 100644 --- a/metadata/md5-cache/kde-plasma/plasma-welcome-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-welcome-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/kirigami-addons-1.2.0 >=dev-qt/qtbase-6.8.1:6[gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-libs/kirigami-addons-1.2.0 >=dev-qt/qtbase-6.8.1:6[gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Friendly onboarding wizard for Plasma EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ -RDEPEND=>=dev-libs/kirigami-addons-1.2.0 >=dev-qt/qtbase-6.8.1:6[gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-welcome:5 +RDEPEND=>=dev-libs/kirigami-addons-1.2.0 >=dev-qt/qtbase-6.8.1:6[gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtsvg-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-welcome:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-welcome-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-welcome-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=8211e566dd4efd7549d3ab20074f4f9a diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-workspace-6.3.3 index 95fa0aaa9020..bd2216fc3c5b 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=dev-qt/qtwayland-6.8.1:6 >=dev-util/wayland-scanner-1.19.0 >=kde-frameworks/kcmutils-6.10.0:6 virtual/pkgconfig test? ( >=dev-qt/qtwayland-6.8.1:6[compositor] ) app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/icu:= >=dev-libs/wayland-1.15 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[dbus,gui,libinput,network,opengl,sql,sqlite,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtpositioning-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/ktextwidgets-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/prison-6.10.0:6[qml] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kscreenlocker-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/kwin-6.3.2:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-activities-stats-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 media-libs/libcanberra >=media-libs/phonon-4.12.0[qt6(+)] sci-libs/libqalculate:= sys-apps/dbus sys-libs/zlib virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXrender x11-libs/libXtst x11-libs/xcb-util appstream? ( >=dev-libs/appstream-1[qt6] ) calendar? ( >=kde-frameworks/kholidays-6.10.0:6 ) fontconfig? ( media-libs/fontconfig x11-libs/libXft x11-libs/xcb-util-image ) policykit? ( virtual/libcrypt:= ) networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) systemd? ( sys-apps/systemd:= ) telemetry? ( >=kde-frameworks/kuserfeedback-6.10.0:6 ) wallpaper-metadata? ( kde-apps/libkexiv2:6 ) >=dev-libs/plasma-wayland-protocols-1.16.0 dev-libs/qcoro >=dev-qt/qtbase-6.8.1:6[concurrent] x11-base/xorg-proto fontconfig? ( x11-libs/libXrender ) test? ( screencast? ( >=media-video/pipewire-0.3:* ) ) dev-qt/qtbase:6 +DEPEND=dev-libs/icu:= >=dev-libs/wayland-1.15 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[dbus,gui,libinput,network,opengl,sql,sqlite,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtpositioning-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/ktextwidgets-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/prison-6.10.0:6[qml] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/breeze-6.3.3:6 >=kde-plasma/kscreenlocker-6.3.3:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/kwin-6.3.3:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-activities-stats-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 media-libs/libcanberra >=media-libs/phonon-4.12.0[qt6(+)] sci-libs/libqalculate:= sys-apps/dbus sys-libs/zlib virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXrender x11-libs/libXtst x11-libs/xcb-util appstream? ( >=dev-libs/appstream-1[qt6] ) calendar? ( >=kde-frameworks/kholidays-6.10.0:6 ) fontconfig? ( media-libs/fontconfig x11-libs/libXft x11-libs/xcb-util-image ) policykit? ( virtual/libcrypt:= ) networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) systemd? ( sys-apps/systemd:= ) telemetry? ( >=kde-frameworks/kuserfeedback-6.10.0:6 ) wallpaper-metadata? ( kde-apps/libkexiv2:6 ) >=dev-libs/plasma-wayland-protocols-1.16.0 dev-libs/qcoro >=dev-qt/qtbase-6.8.1:6[concurrent] x11-base/xorg-proto fontconfig? ( x11-libs/libXrender ) test? ( screencast? ( >=media-video/pipewire-0.3:* ) ) dev-qt/qtbase:6 DESCRIPTION=KDE Plasma workspace EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=appstream +calendar +fontconfig networkmanager +policykit screencast +semantic-desktop systemd telemetry +wallpaper-metadata debug +handbook test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/icu:= >=dev-libs/wayland-1.15 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[dbus,gui,libinput,network,opengl,sql,sqlite,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtpositioning-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/ktextwidgets-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/prison-6.10.0:6[qml] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/breeze-6.3.2:6 >=kde-plasma/kscreenlocker-6.3.2:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/kwin-6.3.2:6 >=kde-plasma/layer-shell-qt-6.3.2:6 >=kde-plasma/libkscreen-6.3.2:6 >=kde-plasma/libksysguard-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-activities-stats-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 media-libs/libcanberra >=media-libs/phonon-4.12.0[qt6(+)] sci-libs/libqalculate:= sys-apps/dbus sys-libs/zlib virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXrender x11-libs/libXtst x11-libs/xcb-util appstream? ( >=dev-libs/appstream-1[qt6] ) calendar? ( >=kde-frameworks/kholidays-6.10.0:6 ) fontconfig? ( media-libs/fontconfig x11-libs/libXft x11-libs/xcb-util-image ) policykit? ( virtual/libcrypt:= ) networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) systemd? ( sys-apps/systemd:= ) telemetry? ( >=kde-frameworks/kuserfeedback-6.10.0:6 ) wallpaper-metadata? ( kde-apps/libkexiv2:6 ) !kde-plasma/libkworkspace:5 !<kde-plasma/plasma-desktop-5.27.0:5 !<kde-plasma/xdg-desktop-portal-kde-6.1.90 !kde-plasma/xembed-sni-proxy:* app-text/iso-codes dev-libs/kirigami-addons:6 >=dev-qt/qttools-6.8.1:*[qdbus] kde-apps/kio-extras:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kquickcharts-6.10.0:6 >=kde-plasma/kactivitymanagerd-6.3.2:6 >=kde-plasma/kdesu-gui-6.3.2:* >=kde-plasma/milou-6.3.2:6 >=kde-plasma/plasma-integration-6.3.2:6 >=kde-plasma/plasma-login-sessions-6.3.2:6 sys-apps/dbus x11-apps/xmessage x11-apps/xprop x11-apps/xrdb policykit? ( sys-apps/accountsservice ) screencast? ( >=media-video/pipewire-0.3:* ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-workspace:5 +RDEPEND=dev-libs/icu:= >=dev-libs/wayland-1.15 >=dev-qt/qt5compat-6.8.1:6[qml] >=dev-qt/qtbase-6.8.1:6=[dbus,gui,libinput,network,opengl,sql,sqlite,widgets,xml] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=dev-qt/qtpositioning-6.8.1:6 >=dev-qt/qtshadertools-6.8.1:6 >=dev-qt/qtsvg-6.8.1:6 >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kbookmarks-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcolorscheme-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kdeclarative-6.10.0:6 >=kde-frameworks/kded-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/kjobwidgets-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/knotifyconfig-6.10.0:6 >=kde-frameworks/kpackage-6.10.0:6 >=kde-frameworks/kparts-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/ksvg-6.10.0:6 >=kde-frameworks/ktexteditor-6.10.0:6 >=kde-frameworks/ktextwidgets-6.10.0:6 >=kde-frameworks/kunitconversion-6.10.0:6 >=kde-frameworks/kwallet-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/prison-6.10.0:6[qml] >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/breeze-6.3.3:6 >=kde-plasma/kscreenlocker-6.3.3:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/kwin-6.3.3:6 >=kde-plasma/layer-shell-qt-6.3.3:6 >=kde-plasma/libkscreen-6.3.3:6 >=kde-plasma/libksysguard-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-activities-stats-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 media-libs/libcanberra >=media-libs/phonon-4.12.0[qt6(+)] sci-libs/libqalculate:= sys-apps/dbus sys-libs/zlib virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXrender x11-libs/libXtst x11-libs/xcb-util appstream? ( >=dev-libs/appstream-1[qt6] ) calendar? ( >=kde-frameworks/kholidays-6.10.0:6 ) fontconfig? ( media-libs/fontconfig x11-libs/libXft x11-libs/xcb-util-image ) policykit? ( virtual/libcrypt:= ) networkmanager? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) semantic-desktop? ( >=kde-frameworks/baloo-6.10.0:6 ) systemd? ( sys-apps/systemd:= ) telemetry? ( >=kde-frameworks/kuserfeedback-6.10.0:6 ) wallpaper-metadata? ( kde-apps/libkexiv2:6 ) !kde-plasma/libkworkspace:5 !<kde-plasma/plasma-desktop-5.27.0:5 !<kde-plasma/xdg-desktop-portal-kde-6.1.90 !kde-plasma/xembed-sni-proxy:* app-text/iso-codes dev-libs/kirigami-addons:6 >=dev-qt/qttools-6.8.1:*[qdbus] kde-apps/kio-extras:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kquickcharts-6.10.0:6 >=kde-plasma/kactivitymanagerd-6.3.3:6 >=kde-plasma/kdesu-gui-6.3.3:* >=kde-plasma/milou-6.3.3:6 >=kde-plasma/plasma-integration-6.3.3:6 >=kde-plasma/plasma-login-sessions-6.3.3:6 sys-apps/dbus x11-apps/xmessage x11-apps/xprop x11-apps/xrdb policykit? ( sys-apps/accountsservice ) screencast? ( >=media-video/pipewire-0.3:* ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plasma-workspace:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-workspace-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-workspace-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=091e9759155e28fd3609e59a2a489d55 diff --git a/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-6.3.2 b/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-6.3.3 index b05c39504a5d..e58ebdaf7206 100644 --- a/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma-workspace-wallpapers-6.3.3 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 RDEPEND=!kde-plasma/plasma-workspace-wallpapers:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma-workspace-wallpapers-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma-workspace-wallpapers-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=054161fad243be5fd2047bf326ac32fb diff --git a/metadata/md5-cache/kde-plasma/plasma5support-6.3.2 b/metadata/md5-cache/kde-plasma/plasma5support-6.3.3 index 6f49a6e9b961..186f3579357d 100644 --- a/metadata/md5-cache/kde-plasma/plasma5support-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plasma5support-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 doc? ( >=app-text/doxygen-1.8.13-r1 ) dev-qt/qttools:6[assistant] dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 activities? ( >=kde-plasma/plasma-activities-6.3.2:6 ) geolocation? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) X? ( x11-libs/libX11 ) doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 activities? ( >=kde-plasma/plasma-activities-6.3.3:6 ) geolocation? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) X? ( x11-libs/libX11 ) doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 DESCRIPTION=Support components for porting from KF5/Qt5 to KF6/Qt6 EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -8,9 +8,9 @@ INHERIT=ecm plasma.kde.org IUSE=activities geolocation X debug doc test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ LGPL-2+ -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.2:6 activities? ( >=kde-plasma/plasma-activities-6.3.2:6 ) geolocation? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) X? ( x11-libs/libX11 ) !kde-plasma/plasma-workspace:5 !<kde-plasma/plasma-workspace-6.2.90:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libksysguard-6.3.3:6 activities? ( >=kde-plasma/plasma-activities-6.3.3:6 ) geolocation? ( >=kde-frameworks/networkmanager-qt-6.10.0:6 ) X? ( x11-libs/libX11 ) !kde-plasma/plasma-workspace:5 !<kde-plasma/plasma-workspace-6.2.90:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 doc? ( dev-qt/qt-docs:6 ) dev-qt/qtbase:6 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plasma5support-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plasma5support-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=bfa5e67e15624e4f3b994bef2520b7a1 diff --git a/metadata/md5-cache/kde-plasma/plymouth-kcm-6.3.2 b/metadata/md5-cache/kde-plasma/plymouth-kcm-6.3.3 index 7a3fe4fb2dc1..bccf8d22c2dd 100644 --- a/metadata/md5-cache/kde-plasma/plymouth-kcm-6.3.2 +++ b/metadata/md5-cache/kde-plasma/plymouth-kcm-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtbase-6.8.1:6[gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 sys-boot/plymouth >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/plymouth-kcm:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/plymouth-kcm-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/plymouth-kcm-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=edfe62c914f822aff5189fd4afc3fc0d diff --git a/metadata/md5-cache/kde-plasma/polkit-kde-agent-6.3.2 b/metadata/md5-cache/kde-plasma/polkit-kde-agent-6.3.3 index 956c6d3cadf5..471ae106e6ea 100644 --- a/metadata/md5-cache/kde-plasma/polkit-kde-agent-6.3.2 +++ b/metadata/md5-cache/kde-plasma/polkit-kde-agent-6.3.3 @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=sys-auth/polkit-qt-0.175[qt6(+)] >=dev-qt/qt5compat-6.8.1:6[qml] >=kde-frameworks/kirigami-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/polkit-kde-agent:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=sys-auth/polkit-qt-0.175[qt6(+)] >=dev-qt/qt5compat-6.8.1:6[qml] >=kde-frameworks/kirigami-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/polkit-kde-agent:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/polkit-kde-agent-1-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/polkit-kde-agent-1-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=f2c75f1cbd1827023b59073464336c96 diff --git a/metadata/md5-cache/kde-plasma/powerdevil-6.3.2 b/metadata/md5-cache/kde-plasma/powerdevil-6.3.3 index a71f0090f840..cc1fd5c4afe5 100644 --- a/metadata/md5-cache/kde-plasma/powerdevil-6.3.2 +++ b/metadata/md5-cache/kde-plasma/powerdevil-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/qcoro[dbus] dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/kauth-6.10.0:6[policykit] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libkscreen-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 virtual/libudev:= x11-libs/libxcb brightness-control? ( app-misc/ddcutil:= ) >=dev-libs/plasma-wayland-protocols-1.16.0 dev-qt/qtbase:6 +DEPEND=dev-libs/qcoro[dbus] dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/kauth-6.10.0:6[policykit] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libkscreen-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 virtual/libudev:= x11-libs/libxcb brightness-control? ( app-misc/ddcutil:= ) >=dev-libs/plasma-wayland-protocols-1.16.0 dev-qt/qtbase:6 DESCRIPTION=Power management for KDE Plasma Shell EAPI=8 HOMEPAGE=https://invent.kde.org/plasma/powerdevil @@ -9,9 +9,9 @@ INHERIT=ecm fcaps plasma.kde.org xdg IUSE=brightness-control debug +handbook test +filecaps KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/qcoro[dbus] dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/kauth-6.10.0:6[policykit] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libkscreen-6.3.2:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma-activities-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 virtual/libudev:= x11-libs/libxcb brightness-control? ( app-misc/ddcutil:= ) !<kde-plasma/plasma-workspace-6.1.90:* >=dev-qt/qtdeclarative-6.8.1:6 || ( sys-power/power-profiles-daemon sys-power/tlp ) >=sys-power/upower-0.9.23 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/powerdevil:5 +RDEPEND=dev-libs/qcoro[dbus] dev-libs/wayland >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtwayland-6.8.1:6= >=kde-frameworks/kauth-6.10.0:6[policykit] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kidletime-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6[X] >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-frameworks/solid-6.10.0:6 >=kde-plasma/libkscreen-6.3.3:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma-activities-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 virtual/libudev:= x11-libs/libxcb brightness-control? ( app-misc/ddcutil:= ) !<kde-plasma/plasma-workspace-6.1.90:* >=dev-qt/qtdeclarative-6.8.1:6 || ( sys-power/power-profiles-daemon sys-power/tlp ) >=sys-power/upower-0.9.23 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/powerdevil:5 RESTRICT=test !test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/powerdevil-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/powerdevil-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 fcaps 27152c9e4da035accb14a2d7879744ef flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=d42af9b2217edcff71799472171e93df diff --git a/metadata/md5-cache/kde-plasma/print-manager-6.3.2 b/metadata/md5-cache/kde-plasma/print-manager-6.3.3 index c6366c5b760f..43b13b2d9406 100644 --- a/metadata/md5-cache/kde-plasma/print-manager-6.3.2 +++ b/metadata/md5-cache/kde-plasma/print-manager-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=kde-frameworks/kcmutils-6.10.0:6 app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=net-print/cups-2.4 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=net-print/cups-2.4 dev-qt/qtbase:6 DESCRIPTION=Manage CUPS print jobs and printers in Plasma EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=+gtk debug KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=net-print/cups-2.4 !<kde-plasma/print-manager-23.08.5-r100:5 >=kde-frameworks/kdeclarative-6.10.0:6 gtk? ( app-admin/system-config-printer ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 +RDEPEND=>=dev-qt/qt5compat-6.8.1:6 >=dev-qt/qtbase-6.8.1:6[dbus,gui,network,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=net-print/cups-2.4 !<kde-plasma/print-manager-23.08.5-r100:5 >=kde-frameworks/kdeclarative-6.10.0:6 gtk? ( app-admin/system-config-printer ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/print-manager-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/print-manager-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=e228710e07cfd193ff153eb3650bdbf6 diff --git a/metadata/md5-cache/kde-plasma/qqc2-breeze-style-6.3.2 b/metadata/md5-cache/kde-plasma/qqc2-breeze-style-6.3.3 index b116c8d07a57..009b1391ed4e 100644 --- a/metadata/md5-cache/kde-plasma/qqc2-breeze-style-6.3.2 +++ b/metadata/md5-cache/kde-plasma/qqc2-breeze-style-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=|| ( GPL-2+ LGPL-3+ ) CC0-1.0 RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcolorscheme-6.5.0:6 >=kde-frameworks/kconfig-6.5.0:6 >=kde-frameworks/kcoreaddons-6.5.0:6 >=kde-frameworks/kguiaddons-6.5.0:6 >=kde-frameworks/kiconthemes-6.5.0:6 >=kde-frameworks/kirigami-6.5.0:6 >=kde-frameworks/kquickcharts-6.5.0:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/qqc2-breeze-style:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/qqc2-breeze-style-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/qqc2-breeze-style-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=6e308d07d2b712d5e558ff3f5c95026f diff --git a/metadata/md5-cache/kde-plasma/sddm-kcm-6.3.2 b/metadata/md5-cache/kde-plasma/sddm-kcm-6.3.3 index 909cc707cc46..4d9e1c2340ff 100644 --- a/metadata/md5-cache/kde-plasma/sddm-kcm-6.3.2 +++ b/metadata/md5-cache/kde-plasma/sddm-kcm-6.3.3 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/karchive-6.10.0:6 >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knewstuff-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 x11-misc/sddm || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/sddm-kcm:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/sddm-kcm-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/sddm-kcm-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=9f901f535fdb9271354df3a7f575f3b2 diff --git a/metadata/md5-cache/kde-plasma/systemsettings-6.3.2 b/metadata/md5-cache/kde-plasma/systemsettings-6.3.3 index c9e595c8fb7e..399a933c7e92 100644 --- a/metadata/md5-cache/kde-plasma/systemsettings-6.3.2 +++ b/metadata/md5-cache/kde-plasma/systemsettings-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/plasma-activities-6.3.2:6 dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/plasma-activities-6.3.3:6 dev-qt/qtbase:6 DESCRIPTION=Control Center to configure KDE Plasma desktop EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org optfeature xdg IUSE=debug +handbook KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/plasma-activities-6.3.2:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/systemsettings:5 +RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6[widgets] >=kde-frameworks/kauth-6.10.0:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kcompletion-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/kitemmodels-6.10.0:6 >=kde-frameworks/kitemviews-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/krunner-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/plasma-activities-6.3.3:6 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/systemsettings:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/systemsettings-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/systemsettings-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 538bce96e5589935b57e178e8635f301 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=36dc0f667aeb304cb3c50d6806b20ee2 diff --git a/metadata/md5-cache/kde-plasma/wacomtablet-6.3.2 b/metadata/md5-cache/kde-plasma/wacomtablet-6.3.3 index 36d321f1776d..83a8a645c24e 100644 --- a/metadata/md5-cache/kde-plasma/wacomtablet-6.3.2 +++ b/metadata/md5-cache/kde-plasma/wacomtablet-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/gettext app-alternatives/ninja >=dev-build/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-6.10.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/libwacom-0.30:= >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 >=x11-drivers/xf86-input-wacom-0.20.0 x11-libs/libXi x11-libs/libxcb x11-base/xorg-proto x11-libs/libX11 dev-qt/qtbase:6 +DEPEND=>=dev-libs/libwacom-0.30:= >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 >=x11-drivers/xf86-input-wacom-0.20.0 x11-libs/libXi x11-libs/libxcb x11-base/xorg-proto x11-libs/libX11 dev-qt/qtbase:6 DESCRIPTION=Wacom system settings module that supports different button/pen layout profiles EAPI=8 HOMEPAGE=https://userbase.kde.org/Wacomtablet @@ -9,8 +9,8 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug +handbook KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-libs/libwacom-0.30:= >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/libplasma-6.3.2:6 >=kde-plasma/plasma5support-6.3.2:6 >=x11-drivers/xf86-input-wacom-0.20.0 x11-libs/libXi x11-libs/libxcb || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/wacomtablet:5 +RDEPEND=>=dev-libs/libwacom-0.30:= >=dev-qt/qtbase-6.8.1:6=[dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 >=kde-frameworks/kcmutils-6.10.0:6 >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kconfigwidgets-6.10.0:6 >=kde-frameworks/kcoreaddons-6.10.0:6 >=kde-frameworks/kdbusaddons-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-frameworks/kxmlgui-6.10.0:6 >=kde-plasma/libplasma-6.3.3:6 >=kde-plasma/plasma5support-6.3.3:6 >=x11-drivers/xf86-input-wacom-0.20.0 x11-libs/libXi x11-libs/libxcb || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/wacomtablet:5 SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/wacomtablet-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/wacomtablet-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=64007f50a8e6eebbe8196189d3a1f93d diff --git a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-6.3.2 b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-6.3.3 index 60ad88493c65..8d3b7e4df1a3 100644 --- a/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-6.3.2 +++ b/metadata/md5-cache/kde-plasma/xdg-desktop-portal-kde-6.3.3 @@ -1,6 +1,6 @@ BDEPEND=>=dev-qt/qtwayland-6.8.1:6 virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.10.0:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtbase-6.8.1:6=[cups,dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 || ( >=dev-qt/qtbase-6.8.1:6[libinput] >=dev-qt/qtbase-6.8.1:6[X] ) >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6[dbus] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 x11-libs/libxkbcommon >=dev-libs/plasma-wayland-protocols-1.16.0 >=dev-libs/wayland-protocols-1.25 >=dev-qt/qtbase-6.8.1:6[concurrent] dev-qt/qtbase:6 +DEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtbase-6.8.1:6=[cups,dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 || ( >=dev-qt/qtbase-6.8.1:6[libinput] >=dev-qt/qtbase-6.8.1:6[X] ) >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6[dbus] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 x11-libs/libxkbcommon >=dev-libs/plasma-wayland-protocols-1.16.0 >=dev-libs/wayland-protocols-1.25 >=dev-qt/qtbase-6.8.1:6[concurrent] dev-qt/qtbase:6 DESCRIPTION=Backend implementation for xdg-desktop-portal that is using Qt/KDE Frameworks EAPI=8 HOMEPAGE=https://kde.org/plasma-desktop @@ -9,9 +9,9 @@ INHERIT=ecm plasma.kde.org xdg IUSE=debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2+ -RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtbase-6.8.1:6=[cups,dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 || ( >=dev-qt/qtbase-6.8.1:6[libinput] >=dev-qt/qtbase-6.8.1:6[X] ) >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6[dbus] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kwayland-6.3.2:6 >=kde-plasma/plasma-workspace-6.3.2:6 x11-libs/libxkbcommon kde-misc/kio-fuse:6 sys-apps/xdg-desktop-portal || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/xdg-desktop-portal-kde:5 +RDEPEND=>=dev-libs/wayland-1.15 >=dev-qt/qtbase-6.8.1:6=[cups,dbus,gui,widgets] >=dev-qt/qtdeclarative-6.8.1:6 || ( >=dev-qt/qtbase-6.8.1:6[libinput] >=dev-qt/qtbase-6.8.1:6[X] ) >=dev-qt/qtwayland-6.8.1:6 >=kde-frameworks/kcoreaddons-6.10.0:6[dbus] >=kde-frameworks/kconfig-6.10.0:6 >=kde-frameworks/kcrash-6.10.0:6 >=kde-frameworks/kglobalaccel-6.10.0:6 >=kde-frameworks/kguiaddons-6.10.0:6 >=kde-frameworks/ki18n-6.10.0:6 >=kde-frameworks/kiconthemes-6.10.0:6 >=kde-frameworks/kio-6.10.0:6 >=kde-frameworks/kirigami-6.10.0:6 >=kde-frameworks/knotifications-6.10.0:6 >=kde-frameworks/kservice-6.10.0:6 >=kde-frameworks/kstatusnotifieritem-6.10.0:6 >=kde-frameworks/kwidgetsaddons-6.10.0:6 >=kde-frameworks/kwindowsystem-6.10.0:6 >=kde-plasma/kwayland-6.3.3:6 >=kde-plasma/plasma-workspace-6.3.3:6 x11-libs/libxkbcommon kde-misc/kio-fuse:6 sys-apps/xdg-desktop-portal || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 !kde-plasma/xdg-desktop-portal-kde:5 RESTRICT=!test? ( test ) SLOT=6 -SRC_URI=mirror://kde/stable/plasma/6.3.2/xdg-desktop-portal-kde-6.3.2.tar.xz +SRC_URI=mirror://kde/stable/plasma/6.3.3/xdg-desktop-portal-kde-6.3.3.tar.xz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 ecm 8e875f5f12d01e5057997e9fc4d05f45 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 kde.org 2eea56ed41440913be4caa3d255d2db3 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 plasma.kde.org 7dce7e123b845b50045d250ddb278647 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=9edcde7a61d73b127d90c8d93cb03ffb diff --git a/metadata/md5-cache/media-gfx/prusaslicer-2.9.1 b/metadata/md5-cache/media-gfx/prusaslicer-2.9.1 new file mode 100644 index 000000000000..33136abd3acf --- /dev/null +++ b/metadata/md5-cache/media-gfx/prusaslicer-2.9.1 @@ -0,0 +1,17 @@ +BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-cpp/eigen:3 dev-cpp/tbb:= dev-libs/boost:=[nls] dev-libs/cereal dev-libs/expat dev-libs/glib:2 dev-libs/gmp:= dev-libs/mpfr:= media-gfx/openvdb:= media-gfx/libbgcode net-misc/curl[adns] media-libs/glew:0= media-libs/libjpeg-turbo:= media-libs/libpng:0= media-libs/qhull:= net-libs/webkit-gtk:4.1 sci-libs/libigl sci-libs/nlopt sci-libs/opencascade:= sci-mathematics/cgal:= sci-mathematics/z3:= sys-apps/dbus sys-libs/zlib:= virtual/opengl x11-libs/gtk+:3 >=x11-libs/wxGTK-3.2.2.1-r3:3.2-gtk3[X,opengl,webkit] media-libs/nanosvg:= media-libs/qhull[static-libs] test? ( =dev-cpp/catch-2* ) +DESCRIPTION=A mesh slicer to generate G-code for fused-filament-fabrication (3D printers) +EAPI=8 +HOMEPAGE=https://www.prusa3d.com/prusaslicer/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake wxwidgets xdg +IUSE=test +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT +RDEPEND=dev-cpp/eigen:3 dev-cpp/tbb:= dev-libs/boost:=[nls] dev-libs/cereal dev-libs/expat dev-libs/glib:2 dev-libs/gmp:= dev-libs/mpfr:= media-gfx/openvdb:= media-gfx/libbgcode net-misc/curl[adns] media-libs/glew:0= media-libs/libjpeg-turbo:= media-libs/libpng:0= media-libs/qhull:= net-libs/webkit-gtk:4.1 sci-libs/libigl sci-libs/nlopt sci-libs/opencascade:= sci-mathematics/cgal:= sci-mathematics/z3:= sys-apps/dbus sys-libs/zlib:= virtual/opengl x11-libs/gtk+:3 >=x11-libs/wxGTK-3.2.2.1-r3:3.2-gtk3[X,opengl,webkit] media-libs/nanosvg:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/prusa3d/PrusaSlicer/archive/refs/tags/version_2.9.1.tar.gz -> prusaslicer-2.9.1.tar.gz +_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=85ff984140c3af126cf2bc0bbde83fea diff --git a/metadata/md5-cache/media-libs/libplacebo-7.349.0 b/metadata/md5-cache/media-libs/libplacebo-7.349.0 index 34cab05365d0..d876145b402b 100644 --- a/metadata/md5-cache/media-libs/libplacebo-7.349.0 +++ b/metadata/md5-cache/media-libs/libplacebo-7.349.0 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/349 SRC_URI=https://code.videolan.org/videolan/libplacebo/-/archive/v7.349.0/libplacebo-v7.349.0.tar.bz2 https://github.com/fastfloat/fast_float/archive/refs/tags/v5.2.0.tar.gz -> fast_float-5.2.0.tar.gz opengl? ( https://github.com/Dav1dde/glad/archive/refs/tags/v2.0.4.tar.gz -> libplacebo-glad-2.0.4.tar.gz ) _eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 meson 99466844dd8d4fcfb07578a76f5a9922 meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=aafa06e33ff756408244b1e4d89d6df8 +_md5_=283807d156672021460479bebee1f627 diff --git a/metadata/md5-cache/media-libs/libplacebo-9999 b/metadata/md5-cache/media-libs/libplacebo-9999 index 72e7e05b21d6..49cc360db618 100644 --- a/metadata/md5-cache/media-libs/libplacebo-9999 +++ b/metadata/md5-cache/media-libs/libplacebo-9999 @@ -13,4 +13,4 @@ REQUIRED_USE=vulkan? ( shaderc ) RESTRICT=!test? ( test ) SLOT=0/9999 _eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 meson 99466844dd8d4fcfb07578a76f5a9922 meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=d308f2c7eebeeffd9abd8ef473a39539 +_md5_=a175d5842349cecae7b732426a3e583d diff --git a/metadata/md5-cache/media-sound/ardour-8.11 b/metadata/md5-cache/media-sound/ardour-8.11 index 33ee0d51e896..179e928bc24b 100644 --- a/metadata/md5-cache/media-sound/ardour-8.11 +++ b/metadata/md5-cache/media-sound/ardour-8.11 @@ -7,10 +7,10 @@ HOMEPAGE=https://ardour.org/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=toolchain-funcs flag-o-matic plocale python-any-r1 waf-utils desktop xdg IUSE=doc jack nls phonehome pulseaudio cpu_flags_ppc_altivec cpu_flags_x86_sse cpu_flags_x86_mmx cpu_flags_x86_3dnow -KEYWORDS=~amd64 ~loong ~x86 +KEYWORDS=amd64 ~loong ~x86 LICENSE=GPL-2 RDEPEND=dev-cpp/cairomm:0 dev-cpp/glibmm:2 dev-cpp/pangomm:1.4 dev-libs/boost:= dev-libs/glib:2 dev-libs/libsigc++:2 dev-libs/libxml2:2 media-libs/alsa-lib media-libs/aubio media-libs/flac:= media-libs/freetype:2 media-libs/liblo media-libs/liblrdf media-libs/libsamplerate media-libs/libsndfile media-libs/libsoundtouch media-libs/raptor:2 media-libs/rubberband media-libs/taglib:= media-libs/vamp-plugin-sdk net-libs/libwebsockets net-misc/curl sys-libs/readline:0= sci-libs/fftw:3.0[threads] virtual/libusb:1 x11-libs/cairo x11-libs/pango jack? ( virtual/jack ) pulseaudio? ( media-libs/libpulse ) media-libs/lilv media-libs/sratom dev-libs/sord media-libs/lv2 SLOT=8 SRC_URI=https://dev.gentoo.org/~fordfrog/distfiles/Ardour-8.11.0.tar.bz2 _eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f plocale 950fbaec7deeba41b5bcc0572cca99b9 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 waf-utils 1d6e4c1706086040b1ebd9e6aa170341 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=4b21562a086379e158fce97cc37ea367 +_md5_=5766e1d5b5f83425ffeceac96ec8a4cb diff --git a/metadata/md5-cache/media-sound/audacity-3.7.2 b/metadata/md5-cache/media-sound/audacity-3.7.2 new file mode 100644 index 000000000000..f45978b882fa --- /dev/null +++ b/metadata/md5-cache/media-sound/audacity-3.7.2 @@ -0,0 +1,18 @@ +BDEPEND=|| ( dev-lang/nasm dev-lang/yasm ) sys-devel/gettext virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-db/sqlite:3 dev-libs/expat dev-libs/glib:2 media-libs/libjpeg-turbo:= media-libs/libpng:= media-libs/libsndfile media-libs/libsoundtouch:= media-libs/portaudio[alsa?] media-libs/portmidi media-libs/portsmf:= media-libs/soxr media-sound/lame sys-apps/util-linux sys-libs/zlib:= x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/wxGTK:3.2-gtk3[X] alsa? ( media-libs/alsa-lib ) audiocom? ( net-misc/curl ) ffmpeg? ( media-video/ffmpeg ) flac? ( media-libs/flac:=[cxx] ) id3tag? ( media-libs/libid3tag:= ) lv2? ( dev-libs/serd dev-libs/sord media-libs/lilv media-libs/lv2 media-libs/sratom media-libs/suil ) mpg123? ( media-sound/mpg123-base ) ogg? ( media-libs/libogg ) opus? ( media-libs/opus media-libs/opusfile ) sbsms? ( media-libs/libsbsms ) twolame? ( media-sound/twolame ) vamp? ( media-libs/vamp-plugin-sdk ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) dev-libs/rapidjson x11-base/xorg-proto test? ( <dev-cpp/catch-3:0 ) +DESCRIPTION=Free crossplatform audio editor +EAPI=8 +HOMEPAGE=https://www.audacityteam.org/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake flag-o-matic wxwidgets xdg virtualx +IUSE=alsa audiocom ffmpeg +flac id3tag +ladspa +lv2 mpg123 +ogg opus +portmixer sbsms test twolame vamp +vorbis wavpack test +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=GPL-2+ GPL-3 audiocom? ( ZLIB ) +RDEPEND=dev-db/sqlite:3 dev-libs/expat dev-libs/glib:2 media-libs/libjpeg-turbo:= media-libs/libpng:= media-libs/libsndfile media-libs/libsoundtouch:= media-libs/portaudio[alsa?] media-libs/portmidi media-libs/portsmf:= media-libs/soxr media-sound/lame sys-apps/util-linux sys-libs/zlib:= x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/wxGTK:3.2-gtk3[X] alsa? ( media-libs/alsa-lib ) audiocom? ( net-misc/curl ) ffmpeg? ( media-video/ffmpeg ) flac? ( media-libs/flac:=[cxx] ) id3tag? ( media-libs/libid3tag:= ) lv2? ( dev-libs/serd dev-libs/sord media-libs/lilv media-libs/lv2 media-libs/sratom media-libs/suil ) mpg123? ( media-sound/mpg123-base ) ogg? ( media-libs/libogg ) opus? ( media-libs/opus media-libs/opusfile ) sbsms? ( media-libs/libsbsms ) twolame? ( media-sound/twolame ) vamp? ( media-libs/vamp-plugin-sdk ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) +REQUIRED_USE=audiocom? ( wavpack ) opus? ( ogg ) test? ( mpg123 ) vorbis? ( ogg ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/audacity/audacity/releases/download/Audacity-3.7.2/audacity-sources-3.7.2.tar.gz audiocom? ( https://raw.githubusercontent.com/progschj/ThreadPool/9a42ec1329f259a5f4881a291db1dcb8f2ad9040/ThreadPool.h -> progschj-ThreadPool-20140926.h ) +_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 virtualx 9741d451eb64ea8bb9faee90d68a9b68 wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=4dd373aa20b9e7d4eaf869b31d9bafbc diff --git a/metadata/md5-cache/media-video/ffmpeg-7.1.1 b/metadata/md5-cache/media-video/ffmpeg-7.1.1 index 1be8b356722a..ebdd7cf0185d 100644 --- a/metadata/md5-cache/media-video/ffmpeg-7.1.1 +++ b/metadata/md5-cache/media-video/ffmpeg-7.1.1 @@ -1,17 +1,17 @@ -BDEPEND=app-alternatives/awk dev-lang/perl virtual/pkgconfig amd64? ( || ( dev-lang/nasm dev-lang/yasm ) ) cuda? ( llvm-core/clang:*[llvm_targets_NVPTX] ) doc? ( sys-apps/texinfo ) verify-sig? ( sec-keys/openpgp-keys-ffmpeg ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) +BDEPEND=app-alternatives/awk dev-lang/perl virtual/pkgconfig amd64? ( || ( dev-lang/nasm dev-lang/yasm ) ) cuda? ( llvm-core/clang:*[llvm_targets_NVPTX] ) doc? ( sys-apps/texinfo ) verify-sig? ( sec-keys/openpgp-keys-ffmpeg soc? ( >=sec-keys/openpgp-keys-gentoo-developers-20240708 ) ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( media-libs/opencore-amr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( media-libs/vo-amrwbenc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( media-libs/libbluray:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( media-libs/libbs2b[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( dev-libs/libcdio-paranoia:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( media-libs/chromaprint:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) codec2? ( media-libs/codec2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( media-libs/dav1d:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dvd? ( media-libs/libdvdnav[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libdvdread:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) drm? ( x11-libs/libdrm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fdk? ( media-libs/fdk-aac:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( app-accessibility/flite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fribidi? ( dev-libs/fribidi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( media-libs/game-music-emu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( !openssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gsm? ( media-sound/gsm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( media-libs/libiec61883[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libavc1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( media-libs/openjpeg:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpegxl? ( media-libs/libjxl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lame? ( media-sound/lame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaom? ( media-libs/libaom:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaribb24? ( media-libs/aribb24[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( media-libs/libass:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( media-libs/libcaca[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( media-libs/libilbc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) liblc3? ( >=media-sound/liblc3-1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libplacebo? ( media-libs/libplacebo:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( media-video/rtmpdump[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( media-libs/soxr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libtesseract? ( app-text/tesseract:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lv2? ( media-libs/lilv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/lv2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( app-arch/xz-utils[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( media-libs/libmodplug[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) npp? ( dev-util/nvidia-cuda-toolkit:= ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openh264? ( media-libs/openh264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmpt? ( media-libs/libopenmpt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( media-libs/opus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qsv? ( media-libs/libvpl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quirc? ( media-libs/quirc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rabbitmq? ( net-libs/rabbitmq-c:= ) rav1e? ( >=media-video/rav1e-0.5:=[capi] ) rubberband? ( media-libs/rubberband:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( net-fs/samba:=[client,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound(+),video(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( app-arch/snappy:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndio? ( media-sound/sndio:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( media-libs/speex[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) srt? ( net-libs/srt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( net-libs/libssh:=[sftp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svg? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=gnome-base/librsvg-2.52:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svt-av1? ( >=media-libs/svt-av1-0.9:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( media-libs/libtheora[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( media-sound/twolame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( media-libs/libva:=[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libvdpau[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vidstab? ( media-libs/vidstab[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vmaf? ( media-libs/libvmaf:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( media-libs/libvorbis[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( media-libs/libvpx:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( media-libs/x264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( media-libs/x265:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( dev-libs/libxml2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( media-libs/xvid[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeromq? ( net-libs/zeromq:= ) zimg? ( media-libs/zimg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( media-libs/zvbi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( x11-base/xorg-proto ) amf? ( media-libs/amf-headers ) kernel_linux? ( >=sys-kernel/linux-headers-6 ) ladspa? ( media-libs/ladspa-sdk ) nvenc? ( >=media-libs/nv-codec-headers-12.1.14.0 ) opencl? ( dev-util/opencl-headers ) vulkan? ( dev-util/vulkan-headers ) +DEPEND=virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( media-libs/opencore-amr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( media-libs/vo-amrwbenc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( media-libs/libbluray:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( media-libs/libbs2b[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( dev-libs/libcdio-paranoia:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( media-libs/chromaprint:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) codec2? ( media-libs/codec2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( media-libs/dav1d:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dvd? ( media-libs/libdvdnav[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libdvdread:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) drm? ( x11-libs/libdrm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fdk? ( media-libs/fdk-aac:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( app-accessibility/flite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fribidi? ( dev-libs/fribidi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( media-libs/game-music-emu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( !openssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gsm? ( media-sound/gsm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( media-libs/libiec61883[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libavc1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( media-libs/openjpeg:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpegxl? ( media-libs/libjxl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lame? ( media-sound/lame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaom? ( media-libs/libaom:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaribb24? ( media-libs/aribb24[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( media-libs/libass:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( media-libs/libcaca[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( media-libs/libilbc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) liblc3? ( >=media-sound/liblc3-1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libplacebo? ( media-libs/libplacebo:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( media-video/rtmpdump[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( media-libs/soxr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libtesseract? ( app-text/tesseract:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lv2? ( media-libs/lilv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/lv2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( app-arch/xz-utils[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( media-libs/libmodplug[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) npp? ( dev-util/nvidia-cuda-toolkit:= ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openh264? ( media-libs/openh264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmpt? ( media-libs/libopenmpt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( media-libs/opus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qsv? ( media-libs/libvpl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quirc? ( media-libs/quirc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rabbitmq? ( net-libs/rabbitmq-c:= ) rav1e? ( >=media-video/rav1e-0.5:=[capi] ) rubberband? ( media-libs/rubberband:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( net-fs/samba:=[client,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound(+),video(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( app-arch/snappy:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndio? ( media-sound/sndio:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( media-libs/speex[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) srt? ( net-libs/srt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( net-libs/libssh:=[sftp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svg? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=gnome-base/librsvg-2.52:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svt-av1? ( >=media-libs/svt-av1-0.9:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( media-libs/libtheora[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( media-sound/twolame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( media-libs/libva:=[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libvdpau[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vidstab? ( media-libs/vidstab[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vmaf? ( media-libs/libvmaf:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( media-libs/libvorbis[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( media-libs/libvpx:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( media-libs/x264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( media-libs/x265:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( dev-libs/libxml2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( media-libs/xvid[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeromq? ( net-libs/zeromq:= ) zimg? ( media-libs/zimg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( media-libs/zvbi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) soc? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( x11-base/xorg-proto ) amf? ( media-libs/amf-headers ) kernel_linux? ( >=sys-kernel/linux-headers-6 ) ladspa? ( media-libs/ladspa-sdk ) nvenc? ( >=media-libs/nv-codec-headers-12.1.14.0 ) opencl? ( dev-util/opencl-headers ) vulkan? ( dev-util/vulkan-headers ) DESCRIPTION=Complete solution to record/convert/stream audio and video EAPI=8 HOMEPAGE=https://ffmpeg.org/ INHERIT=flag-o-matic multilib-minimal toolchain-funcs verify-sig -IUSE=X alsa amf amrenc amr appkit bluray bs2b bzip2 cdio chromaprint codec2 cuda +dav1d doc +drm dvd fdk flite +fontconfig frei0r fribidi gcrypt gme gmp +gnutls +gpl gsm iec61883 ieee1394 jack jpeg2k jpegxl kvazaar ladspa lame lcms libaom libaribb24 +libass libcaca libilbc liblc3 libplacebo librtmp libsoxr libtesseract lv2 lzma modplug npp nvenc openal opencl opengl openh264 openmpt openssl opus +postproc pulseaudio qrcode qsv quirc rabbitmq rav1e rubberband samba sdl shaderc snappy sndio speex srt ssh svg svt-av1 theora +truetype twolame v4l vaapi vdpau vidstab vmaf vorbis vpx vulkan webp x264 x265 +xml xvid zeromq zimg +zlib zvbi chromium abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig +IUSE=X alsa amf amrenc amr appkit bluray bs2b bzip2 cdio chromaprint codec2 cuda +dav1d doc +drm dvd fdk flite +fontconfig frei0r fribidi gcrypt gme gmp +gnutls +gpl gsm iec61883 ieee1394 jack jpeg2k jpegxl kvazaar ladspa lame lcms libaom libaribb24 +libass libcaca libilbc liblc3 libplacebo librtmp libsoxr libtesseract lv2 lzma modplug npp nvenc openal opencl opengl openh264 openmpt openssl opus +postproc pulseaudio qrcode qsv quirc rabbitmq rav1e rubberband samba sdl shaderc snappy sndio speex srt ssh svg svt-av1 theora +truetype twolame v4l vaapi vdpau vidstab vmaf vorbis vpx vulkan webp x264 x265 +xml xvid zeromq zimg +zlib zvbi chromium soc abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos LICENSE=gpl? ( GPL-2+ amr? ( GPL-3+ ) amrenc? ( GPL-3+ ) libaribb24? ( GPL-3+ ) gmp? ( GPL-3+ ) openssl? ( GPL-3+ ) fdk? ( all-rights-reserved ) npp? ( all-rights-reserved ) ) !gpl? ( LGPL-2.1+ amr? ( LGPL-3+ ) amrenc? ( LGPL-3+ ) libaribb24? ( LGPL-3+ ) gmp? ( LGPL-3+ ) ) samba? ( GPL-3+ ) -RDEPEND=virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( media-libs/opencore-amr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( media-libs/vo-amrwbenc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( media-libs/libbluray:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( media-libs/libbs2b[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( dev-libs/libcdio-paranoia:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( media-libs/chromaprint:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) codec2? ( media-libs/codec2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( media-libs/dav1d:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dvd? ( media-libs/libdvdnav[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libdvdread:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) drm? ( x11-libs/libdrm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fdk? ( media-libs/fdk-aac:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( app-accessibility/flite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fribidi? ( dev-libs/fribidi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( media-libs/game-music-emu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( !openssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gsm? ( media-sound/gsm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( media-libs/libiec61883[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libavc1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( media-libs/openjpeg:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpegxl? ( media-libs/libjxl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lame? ( media-sound/lame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaom? ( media-libs/libaom:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaribb24? ( media-libs/aribb24[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( media-libs/libass:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( media-libs/libcaca[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( media-libs/libilbc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) liblc3? ( >=media-sound/liblc3-1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libplacebo? ( media-libs/libplacebo:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( media-video/rtmpdump[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( media-libs/soxr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libtesseract? ( app-text/tesseract:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lv2? ( media-libs/lilv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/lv2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( app-arch/xz-utils[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( media-libs/libmodplug[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) npp? ( dev-util/nvidia-cuda-toolkit:= ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openh264? ( media-libs/openh264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmpt? ( media-libs/libopenmpt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( media-libs/opus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qsv? ( media-libs/libvpl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quirc? ( media-libs/quirc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rabbitmq? ( net-libs/rabbitmq-c:= ) rav1e? ( >=media-video/rav1e-0.5:=[capi] ) rubberband? ( media-libs/rubberband:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( net-fs/samba:=[client,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound(+),video(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( app-arch/snappy:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndio? ( media-sound/sndio:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( media-libs/speex[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) srt? ( net-libs/srt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( net-libs/libssh:=[sftp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svg? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=gnome-base/librsvg-2.52:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svt-av1? ( >=media-libs/svt-av1-0.9:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( media-libs/libtheora[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( media-sound/twolame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( media-libs/libva:=[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libvdpau[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vidstab? ( media-libs/vidstab[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vmaf? ( media-libs/libvmaf:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( media-libs/libvorbis[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( media-libs/libvpx:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( media-libs/x264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( media-libs/x265:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( dev-libs/libxml2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( media-libs/xvid[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeromq? ( net-libs/zeromq:= ) zimg? ( media-libs/zimg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( media-libs/zvbi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amf? ( media-video/amdgpu-pro-amf ) -REQUIRED_USE=cuda? ( nvenc ) fribidi? ( truetype ) gmp? ( !librtmp ) libplacebo? ( || ( sdl vulkan ) ) npp? ( nvenc ) shaderc? ( vulkan ) libaribb24? ( gpl ) cdio? ( gpl ) dvd? ( gpl ) frei0r? ( gpl ) postproc? ( gpl ) rubberband? ( gpl ) samba? ( gpl ) vidstab? ( gpl ) x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) chromium? ( opus ) +RDEPEND=virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( media-libs/opencore-amr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( media-libs/vo-amrwbenc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( media-libs/libbluray:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( media-libs/libbs2b[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( dev-libs/libcdio-paranoia:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( media-libs/chromaprint:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) codec2? ( media-libs/codec2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dav1d? ( media-libs/dav1d:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dvd? ( media-libs/libdvdnav[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libdvdread:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) drm? ( x11-libs/libdrm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fdk? ( media-libs/fdk-aac:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( app-accessibility/flite[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fribidi? ( dev-libs/fribidi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( media-libs/game-music-emu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( !openssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gsm? ( media-sound/gsm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( media-libs/libiec61883[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libavc1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( media-libs/libdc1394:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libraw1394[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( media-libs/openjpeg:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpegxl? ( media-libs/libjxl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lame? ( media-sound/lame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaom? ( media-libs/libaom:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libaribb24? ( media-libs/aribb24[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( media-libs/libass:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( media-libs/libcaca[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( media-libs/libilbc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) liblc3? ( >=media-sound/liblc3-1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libplacebo? ( media-libs/libplacebo:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( media-video/rtmpdump[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( media-libs/soxr[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libtesseract? ( app-text/tesseract:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lv2? ( media-libs/lilv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/lv2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( app-arch/xz-utils[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( media-libs/libmodplug[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) npp? ( dev-util/nvidia-cuda-toolkit:= ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openh264? ( media-libs/openh264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openmpt? ( media-libs/libopenmpt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( media-libs/opus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qsv? ( media-libs/libvpl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quirc? ( media-libs/quirc:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rabbitmq? ( net-libs/rabbitmq-c:= ) rav1e? ( >=media-video/rav1e-0.5:=[capi] ) rubberband? ( media-libs/rubberband:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( net-fs/samba:=[client,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound(+),video(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( app-arch/snappy:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndio? ( media-sound/sndio:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( media-libs/speex[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) srt? ( net-libs/srt:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( net-libs/libssh:=[sftp,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svg? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=gnome-base/librsvg-2.52:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svt-av1? ( >=media-libs/svt-av1-0.9:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( media-libs/libtheora[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( media-libs/freetype:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/harfbuzz:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( media-sound/twolame[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( media-libs/libva:=[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libvdpau[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vidstab? ( media-libs/vidstab[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vmaf? ( media-libs/libvmaf:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( media-libs/libvorbis[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( media-libs/libvpx:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( media-libs/x264:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( media-libs/x265:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( dev-libs/libxml2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( media-libs/xvid[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeromq? ( net-libs/zeromq:= ) zimg? ( media-libs/zimg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( media-libs/zvbi[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) soc? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amf? ( media-video/amdgpu-pro-amf ) +REQUIRED_USE=cuda? ( nvenc ) fribidi? ( truetype ) gmp? ( !librtmp ) libplacebo? ( || ( sdl vulkan ) ) npp? ( nvenc ) shaderc? ( vulkan ) libaribb24? ( gpl ) cdio? ( gpl ) dvd? ( gpl ) frei0r? ( gpl ) postproc? ( gpl ) rubberband? ( gpl ) samba? ( gpl ) vidstab? ( gpl ) x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) chromium? ( opus ) soc? ( drm ) RESTRICT=gpl? ( fdk? ( bindist ) npp? ( bindist ) ) SLOT=0/59.61.61 -SRC_URI=https://ffmpeg.org/releases/ffmpeg-7.1.1.tar.xz verify-sig? ( https://ffmpeg.org/releases/ffmpeg-7.1.1.tar.xz.asc ) +SRC_URI=https://ffmpeg.org/releases/ffmpeg-7.1.1.tar.xz verify-sig? ( https://ffmpeg.org/releases/ffmpeg-7.1.1.tar.xz.asc ) soc? ( https://dev.gentoo.org/~chewi/distfiles/ffmpeg-rpi-7.1.1.patch verify-sig? ( https://dev.gentoo.org/~chewi/distfiles/ffmpeg-rpi-7.1.1.patch.asc ) ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 verify-sig 7433426b6b28bf2737ba4b82c8aa8c53 -_md5_=618d2beeb7b40a8faf6da1388fc6f9e1 +_md5_=ecb7b7d9ee56b5edca561e18006daec7 diff --git a/metadata/md5-cache/net-analyzer/zabbix-5.0.45 b/metadata/md5-cache/net-analyzer/zabbix-5.0.45 deleted file mode 100644 index 08265a7ecf1e..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-5.0.45 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig agent2? ( >=dev-lang/go-1.12 app-arch/unzip ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup -DEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) static? ( curl? ( net-misc/curl[static-libs] ) ldap? ( =dev-libs/cyrus-sasl-2*[static-libs] net-libs/gnutls[static-libs] net-nds/openldap[static-libs] ) libxml2? ( dev-libs/libxml2[static-libs] ) mysql? ( dev-db/mysql-connector-c[static-libs] ) odbc? ( dev-db/unixODBC[static-libs] ) postgres? ( dev-db/postgresql:*[static-libs] ) sqlite? ( dev-db/sqlite[static-libs] ) ssh? ( net-libs/libssh2 ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers -EAPI=8 -HOMEPAGE=https://www.zabbix.com/ -INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info -IUSE=+agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles -REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) -RESTRICT=test strip -SLOT=0/5.0 -SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/5.0/zabbix-5.0.45.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-5.0.45-go-deps.tar.xz ) -_eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=f46a0e1dc5859c9218ddd2fc7c31a16b diff --git a/metadata/md5-cache/net-analyzer/zabbix-5.0.46 b/metadata/md5-cache/net-analyzer/zabbix-5.0.46 index 43d12060d5c1..5e46be0f53c8 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-5.0.46 +++ b/metadata/md5-cache/net-analyzer/zabbix-5.0.46 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.zabbix.com/ INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info IUSE=+agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) @@ -14,4 +14,4 @@ RESTRICT=test strip SLOT=0/5.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/5.0/zabbix-5.0.46.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-5.0.46-go-deps.tar.xz ) _eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=d835b5abdf8c3d8a308cde53c6fd2251 +_md5_=9eda307571ffec1992d7c0b54e2216bd diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.0.37 b/metadata/md5-cache/net-analyzer/zabbix-6.0.37 deleted file mode 100644 index 12dd8f10e5ed..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-6.0.37 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig agent2? ( >=dev-lang/go-1.12 app-arch/unzip ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup -DEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) static? ( curl? ( net-misc/curl[static-libs] ) ldap? ( =dev-libs/cyrus-sasl-2*[static-libs] net-libs/gnutls[static-libs] net-nds/openldap[static-libs] ) libxml2? ( dev-libs/libxml2[static-libs] ) mysql? ( dev-db/mysql-connector-c[static-libs] ) odbc? ( dev-db/unixODBC[static-libs] ) postgres? ( dev-db/postgresql:*[static-libs] ) sqlite? ( dev-db/sqlite[static-libs] ) ssh? ( net-libs/libssh2 ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers -EAPI=8 -HOMEPAGE=https://www.zabbix.com/ -INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info -IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles -REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) -RESTRICT=test strip -SLOT=0/6.0 -SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.0/zabbix-6.0.37.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.0.37-go-deps.tar.xz ) -_eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=ee9c7ffe34c919eb00827a3c78fd326a diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.0.38 b/metadata/md5-cache/net-analyzer/zabbix-6.0.38 index 0226de2a49f6..9b0e4281c3f9 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.0.38 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.0.38 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.zabbix.com/ INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) @@ -14,4 +14,4 @@ RESTRICT=test strip SLOT=0/6.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.0/zabbix-6.0.38.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.0.38-go-deps.tar.xz ) _eclasses_=flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=160798ad42255db9f220ae82231c36aa +_md5_=6d979e1f83a816dc5d84b0a9d9e3b87f diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.4.20 b/metadata/md5-cache/net-analyzer/zabbix-6.4.20 deleted file mode 100644 index 45396ced9b34..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-6.4.20 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig agent2? ( >=dev-lang/go-1.12 app-arch/unzip ) 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 virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup -DEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) static? ( curl? ( net-misc/curl[static-libs] ) ldap? ( =dev-libs/cyrus-sasl-2*[static-libs] net-libs/gnutls[static-libs] net-nds/openldap[static-libs] ) libxml2? ( dev-libs/libxml2[static-libs] ) mysql? ( dev-db/mysql-connector-c[static-libs] ) odbc? ( dev-db/unixODBC[static-libs] ) postgres? ( dev-db/postgresql:*[static-libs] ) sqlite? ( dev-db/sqlite[static-libs] ) ssh? ( net-libs/libssh2 ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers -EAPI=8 -HOMEPAGE=https://www.zabbix.com/ -INHERIT=autotools webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info -IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles -REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) -RESTRICT=test strip -SLOT=0/6.4 -SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.4/zabbix-6.4.20.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.4.20-go-deps.tar.xz ) -_eclasses_=autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=0c13874ca1ba6dca973baca04a9b2c9a diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.4.21 b/metadata/md5-cache/net-analyzer/zabbix-6.4.21 index 5419d796734a..d9f8e317c608 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.4.21 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.4.21 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.zabbix.com/ INHERIT=autotools webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) @@ -14,4 +14,4 @@ RESTRICT=test strip SLOT=0/6.4 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.4/zabbix-6.4.21.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.4.21-go-deps.tar.xz ) _eclasses_=autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=2906cdd4784e0f6ff8b2988b96b1db8e +_md5_=27b9d6655ff0edb1720b9e56f13a8133 diff --git a/metadata/md5-cache/net-analyzer/zabbix-7.0.9 b/metadata/md5-cache/net-analyzer/zabbix-7.0.9 index 275f26b9be15..94b3b3e86cd3 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-7.0.9 +++ b/metadata/md5-cache/net-analyzer/zabbix-7.0.9 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.zabbix.com/ INHERIT=autotools webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 arm64 ~x86 LICENSE=AGPL-3 RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql postgres sqlite ) ) server? ( ^^ ( mysql postgres ) !sqlite ) static? ( !snmp ) @@ -14,4 +14,4 @@ RESTRICT=test strip SLOT=0/7.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/7.0/zabbix-7.0.9.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-7.0.9-go-deps.tar.xz ) _eclasses_=autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=b701e08b02d98bc6604b2370cb1f0849 +_md5_=3cd9327deaee60d76e3cb35b6e915ef3 diff --git a/metadata/md5-cache/net-analyzer/zabbix-7.2.3 b/metadata/md5-cache/net-analyzer/zabbix-7.2.3 index 45c1ef50b16f..ed6bb51c92a4 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-7.2.3 +++ b/metadata/md5-cache/net-analyzer/zabbix-7.2.3 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.zabbix.com/ INHERIT=autotools webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl +postgres proxy selinux server snmp sqlite ssh static java -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 arm64 ~x86 LICENSE=AGPL-3 RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) selinux? ( sec-policy/selinux-zabbix ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) agent2? ( !gnutls ) proxy? ( ^^ ( mysql postgres sqlite ) ) server? ( ^^ ( mysql postgres ) !sqlite ) static? ( !snmp ) @@ -14,4 +14,4 @@ RESTRICT=test strip SLOT=0/7.2 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/7.2/zabbix-7.2.3.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-7.2.3-go-deps.tar.xz ) _eclasses_=autotools f20ecf7ab0a7c34e83238b3ed4aaf6d6 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467 java-pkg-opt-2 28044ae40e7846886b6f5eca24661629 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd 54bd206bb5c4efac6ae28b6b006713b0 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 user-info 9951b1a0e4f026d16c33a001fd2d5cdf webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=b701e08b02d98bc6604b2370cb1f0849 +_md5_=3cd9327deaee60d76e3cb35b6e915ef3 diff --git a/metadata/md5-cache/net-im/synapse-1.126.0 b/metadata/md5-cache/net-im/synapse-1.126.0 new file mode 100644 index 000000000000..f50f9f552ed4 --- /dev/null +++ b/metadata/md5-cache/net-im/synapse-1.126.0 @@ -0,0 +1,17 @@ +BDEPEND=acct-user/synapse acct-group/synapse dev-python/setuptools-rust[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] test? ( acct-user/synapse acct-group/synapse dev-python/attrs[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/bcrypt[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/bleach[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/canonicaljson-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/cryptography[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/ijson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/immutabledict[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/jinja2-3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/jsonschema[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/matrix-common-1.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/msgpack[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/netaddr[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/packaging[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/phonenumbers[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pillow-10.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,webp] dev-python/prometheus-client[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyasn1-modules[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyasn1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pydantic[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pymacaroons[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyopenssl[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/python-multipart-0.0.12-r100[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyyaml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/service-identity[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/signedjson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/sortedcontainers[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/treq[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/twisted[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/typing-extensions[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/unpaddedbase64[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] postgres? ( dev-python/psycopg:2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) systemd? ( dev-python/python-systemd[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) dev-python/hiredis[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/idna[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/parameterized[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyicu[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/txredisapi[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] postgres? ( dev-db/postgresql[server] ) ) || ( dev-lang/rust-bin:9999 dev-lang/rust:9999 dev-lang/rust-bin:1.86.0 dev-lang/rust:1.86.0 dev-lang/rust-bin:1.85.0 dev-lang/rust:1.85.0 dev-lang/rust-bin:1.84.1 dev-lang/rust:1.84.1 dev-lang/rust-bin:1.84.0 dev-lang/rust:1.84.0 dev-lang/rust-bin:1.83.0 dev-lang/rust:1.83.0 dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.78.0 dev-lang/rust:1.78.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.76.0 dev-lang/rust:1.76.0 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/poetry-core-1.9.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test unpack +DEPEND=python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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 ) +DESCRIPTION=Reference implementation of Matrix homeserver +EAPI=8 +HOMEPAGE=https://matrix.org/ https://github.com/element-hq/synapse +INHERIT=cargo distutils-r1 multiprocessing optfeature systemd +IUSE=postgres systemd test debug python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 debug +KEYWORDS=~amd64 ~arm64 ~ppc64 +LICENSE=AGPL-3+ Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 || ( Apache-2.0 Boost-1.0 ) +RDEPEND=acct-user/synapse acct-group/synapse dev-python/attrs[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/bcrypt[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/bleach[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/canonicaljson-2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/cryptography[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/ijson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/immutabledict[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/jinja2-3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/jsonschema[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/matrix-common-1.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/msgpack[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/netaddr[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/packaging[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/phonenumbers[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/pillow-10.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,webp] dev-python/prometheus-client[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyasn1-modules[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyasn1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pydantic[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pymacaroons[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyopenssl[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/python-multipart-0.0.12-r100[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pyyaml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/service-identity[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/signedjson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/sortedcontainers[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/treq[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/twisted[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/typing-extensions[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/unpaddedbase64[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] postgres? ( dev-python/psycopg:2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) systemd? ( dev-python/python-systemd[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) 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_9 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/element-hq/synapse/archive/v1.126.0.tar.gz -> synapse-1.126.0.gh.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/anyhow/1.0.96/download -> anyhow-1.0.96.crate https://crates.io/api/v1/crates/arc-swap/1.7.1/download -> arc-swap-1.7.1.crate https://crates.io/api/v1/crates/autocfg/1.3.0/download -> autocfg-1.3.0.crate https://crates.io/api/v1/crates/base64/0.21.7/download -> base64-0.21.7.crate https://crates.io/api/v1/crates/bitflags/2.8.0/download -> bitflags-2.8.0.crate https://crates.io/api/v1/crates/blake2/0.10.6/download -> blake2-0.10.6.crate https://crates.io/api/v1/crates/block-buffer/0.10.4/download -> block-buffer-0.10.4.crate https://crates.io/api/v1/crates/bumpalo/3.16.0/download -> bumpalo-3.16.0.crate https://crates.io/api/v1/crates/bytes/1.10.0/download -> bytes-1.10.0.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/cpufeatures/0.2.12/download -> cpufeatures-0.2.12.crate https://crates.io/api/v1/crates/crypto-common/0.1.6/download -> crypto-common-0.1.6.crate https://crates.io/api/v1/crates/digest/0.10.7/download -> digest-0.10.7.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.crate https://crates.io/api/v1/crates/generic-array/0.14.7/download -> generic-array-0.14.7.crate https://crates.io/api/v1/crates/getrandom/0.3.1/download -> getrandom-0.3.1.crate https://crates.io/api/v1/crates/headers-core/0.3.0/download -> headers-core-0.3.0.crate https://crates.io/api/v1/crates/headers/0.4.0/download -> headers-0.4.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/http/1.2.0/download -> http-1.2.0.crate https://crates.io/api/v1/crates/httpdate/1.0.3/download -> httpdate-1.0.3.crate https://crates.io/api/v1/crates/indoc/2.0.5/download -> indoc-2.0.5.crate https://crates.io/api/v1/crates/itoa/1.0.11/download -> itoa-1.0.11.crate https://crates.io/api/v1/crates/js-sys/0.3.69/download -> js-sys-0.3.69.crate https://crates.io/api/v1/crates/lazy_static/1.5.0/download -> lazy_static-1.5.0.crate https://crates.io/api/v1/crates/libc/0.2.154/download -> libc-0.2.154.crate https://crates.io/api/v1/crates/log/0.4.26/download -> log-0.4.26.crate https://crates.io/api/v1/crates/memchr/2.7.2/download -> memchr-2.7.2.crate https://crates.io/api/v1/crates/memoffset/0.9.1/download -> memoffset-0.9.1.crate https://crates.io/api/v1/crates/mime/0.3.17/download -> mime-0.3.17.crate https://crates.io/api/v1/crates/once_cell/1.19.0/download -> once_cell-1.19.0.crate https://crates.io/api/v1/crates/portable-atomic/1.6.0/download -> portable-atomic-1.6.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download -> ppv-lite86-0.2.17.crate https://crates.io/api/v1/crates/proc-macro2/1.0.89/download -> proc-macro2-1.0.89.crate https://crates.io/api/v1/crates/pyo3-build-config/0.23.5/download -> pyo3-build-config-0.23.5.crate https://crates.io/api/v1/crates/pyo3-ffi/0.23.5/download -> pyo3-ffi-0.23.5.crate https://crates.io/api/v1/crates/pyo3-log/0.12.1/download -> pyo3-log-0.12.1.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.23.5/download -> pyo3-macros-backend-0.23.5.crate https://crates.io/api/v1/crates/pyo3-macros/0.23.5/download -> pyo3-macros-0.23.5.crate https://crates.io/api/v1/crates/pyo3/0.23.5/download -> pyo3-0.23.5.crate https://crates.io/api/v1/crates/pythonize/0.23.0/download -> pythonize-0.23.0.crate https://crates.io/api/v1/crates/quote/1.0.36/download -> quote-1.0.36.crate https://crates.io/api/v1/crates/rand/0.9.0/download -> rand-0.9.0.crate https://crates.io/api/v1/crates/rand_chacha/0.9.0/download -> rand_chacha-0.9.0.crate https://crates.io/api/v1/crates/rand_core/0.9.0/download -> rand_core-0.9.0.crate https://crates.io/api/v1/crates/regex-automata/0.4.8/download -> regex-automata-0.4.8.crate https://crates.io/api/v1/crates/regex-syntax/0.8.5/download -> regex-syntax-0.8.5.crate https://crates.io/api/v1/crates/regex/1.11.1/download -> regex-1.11.1.crate https://crates.io/api/v1/crates/ryu/1.0.18/download -> ryu-1.0.18.crate https://crates.io/api/v1/crates/serde/1.0.218/download -> serde-1.0.218.crate https://crates.io/api/v1/crates/serde_derive/1.0.218/download -> serde_derive-1.0.218.crate https://crates.io/api/v1/crates/serde_json/1.0.139/download -> serde_json-1.0.139.crate https://crates.io/api/v1/crates/sha1/0.10.6/download -> sha1-0.10.6.crate https://crates.io/api/v1/crates/sha2/0.10.8/download -> sha2-0.10.8.crate https://crates.io/api/v1/crates/subtle/2.5.0/download -> subtle-2.5.0.crate https://crates.io/api/v1/crates/syn/2.0.85/download -> syn-2.0.85.crate https://crates.io/api/v1/crates/target-lexicon/0.12.14/download -> target-lexicon-0.12.14.crate https://crates.io/api/v1/crates/typenum/1.17.0/download -> typenum-1.17.0.crate https://crates.io/api/v1/crates/ulid/1.2.0/download -> ulid-1.2.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.12/download -> unicode-ident-1.0.12.crate https://crates.io/api/v1/crates/unindent/0.2.3/download -> unindent-0.2.3.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/wasi/0.13.3+wasi-0.2.2/download -> wasi-0.13.3+wasi-0.2.2.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.92/download -> wasm-bindgen-backend-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.92/download -> wasm-bindgen-macro-support-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.92/download -> wasm-bindgen-macro-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.92/download -> wasm-bindgen-shared-0.2.92.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.92/download -> wasm-bindgen-0.2.92.crate https://crates.io/api/v1/crates/web-time/1.1.0/download -> web-time-1.1.0.crate https://crates.io/api/v1/crates/windows-targets/0.52.6/download -> windows-targets-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download -> windows_aarch64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download -> windows_aarch64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download -> windows_i686_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download -> windows_i686_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download -> windows_i686_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download -> windows_x86_64_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download -> windows_x86_64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download -> windows_x86_64_msvc-0.52.6.crate https://crates.io/api/v1/crates/wit-bindgen-rt/0.33.0/download -> wit-bindgen-rt-0.33.0.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.17/download -> zerocopy-derive-0.8.17.crate https://crates.io/api/v1/crates/zerocopy/0.8.17/download -> zerocopy-0.8.17.crate +_eclasses_=cargo eb4315c13bbb1d5195ce27f8934644f9 distutils-r1 85ccd3b54a6533fb120ee52b7c76a3df flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multibuild 4650a65187015567b4e041bb9bfdb364 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 fa2daad0051275fa416115c76e53b1de python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd 54bd206bb5c4efac6ae28b6b006713b0 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_md5_=defb30d3c8317db172b35c0292a7f25c diff --git a/metadata/md5-cache/net-p2p/retroshare-0.6.7-r4 b/metadata/md5-cache/net-p2p/retroshare-0.6.7-r4 index 2a76ce7cdc63..adfd29140519 100644 --- a/metadata/md5-cache/net-p2p/retroshare-0.6.7-r4 +++ b/metadata/md5-cache/net-p2p/retroshare-0.6.7-r4 @@ -1,6 +1,6 @@ BDEPEND=dev-build/cmake dev-qt/qtcore:5 virtual/pkgconfig gui? ( x11-base/xorg-proto ) jsonapi? ( app-text/doxygen ) DEFINED_PHASES=configure install postinst postrm preinst -DEPEND=app-arch/bzip2 dev-libs/openssl:0= sys-libs/zlib gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 x11-libs/libX11 x11-libs/libXScrnSaver ) keyring? ( app-crypt/libsecret ) libupnp? ( net-libs/libupnp:= ) miniupnp? ( net-libs/miniupnpc:= ) plugins? ( media-libs/speex media-libs/speexdsp media-video/ffmpeg-compat:4 ) sqlcipher? ( dev-db/sqlcipher ) !sqlcipher? ( dev-db/sqlite:3 ) gui? ( dev-qt/designer:5 ) jsonapi? ( >=dev-libs/rapidjson-1.1.0 ) +DEPEND=app-arch/bzip2 dev-libs/openssl:0= sys-libs/zlib gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 x11-libs/libX11 x11-libs/libXScrnSaver ) keyring? ( app-crypt/libsecret ) libupnp? ( net-libs/libupnp:= ) miniupnp? ( net-libs/miniupnpc:= ) plugins? ( media-libs/speex media-libs/speexdsp media-video/ffmpeg-compat:4= ) sqlcipher? ( dev-db/sqlcipher ) !sqlcipher? ( dev-db/sqlite:3 ) gui? ( dev-qt/designer:5 ) jsonapi? ( >=dev-libs/rapidjson-1.1.0 ) DESCRIPTION=Friend to Friend secure communication and sharing application EAPI=8 HOMEPAGE=https://retroshare.cc @@ -9,9 +9,9 @@ INHERIT=desktop ffmpeg-compat flag-o-matic qmake-utils xdg IUSE=cli +gui +jsonapi keyring libupnp +miniupnp plugins +service +sqlcipher KEYWORDS=~amd64 ~x86 LICENSE=AGPL-3 Apache-2.0 CC-BY-SA-4.0 GPL-2 GPL-3 LGPL-3 -RDEPEND=app-arch/bzip2 dev-libs/openssl:0= sys-libs/zlib gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 x11-libs/libX11 x11-libs/libXScrnSaver ) keyring? ( app-crypt/libsecret ) libupnp? ( net-libs/libupnp:= ) miniupnp? ( net-libs/miniupnpc:= ) plugins? ( media-libs/speex media-libs/speexdsp media-video/ffmpeg-compat:4 ) sqlcipher? ( dev-db/sqlcipher ) !sqlcipher? ( dev-db/sqlite:3 ) +RDEPEND=app-arch/bzip2 dev-libs/openssl:0= sys-libs/zlib gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 x11-libs/libX11 x11-libs/libXScrnSaver ) keyring? ( app-crypt/libsecret ) libupnp? ( net-libs/libupnp:= ) miniupnp? ( net-libs/miniupnpc:= ) plugins? ( media-libs/speex media-libs/speexdsp media-video/ffmpeg-compat:4= ) sqlcipher? ( dev-db/sqlcipher ) !sqlcipher? ( dev-db/sqlite:3 ) REQUIRED_USE=|| ( gui service ) ?? ( libupnp miniupnp ) plugins? ( gui ) service? ( || ( cli jsonapi ) ) SLOT=0 SRC_URI=https://download.opensuse.org/repositories/network:/retroshare/Debian_Testing/retroshare-common_0.6.7.orig.tar.gz -> retroshare-0.6.7.tar.gz _eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed ffmpeg-compat 6f0791a48e82dd7c3d472980e3e92eb5 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 qmake-utils a8dd17b1d94586164f5e3fc12b1c6b81 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=e6117c27918eed21f7e3eec655147085 +_md5_=8801e1f2f014b1de7f258cfd10f00e08 diff --git a/metadata/md5-cache/net-print/epson-inkjet-printer-escpr-1.2.15-r1 b/metadata/md5-cache/net-print/epson-inkjet-printer-escpr-1.2.15-r1 new file mode 100644 index 000000000000..35db72bff9cd --- /dev/null +++ b/metadata/md5-cache/net-print/epson-inkjet-printer-escpr-1.2.15-r1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=configure install +DEPEND=net-print/cups +DESCRIPTION=Epson Inkjet Printer Driver 2 (ESC/P-R) for Linux +EAPI=8 +HOMEPAGE=https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX +KEYWORDS=~amd64 +LICENSE=EPSON LGPL-2.1+ +RDEPEND=net-print/cups +SLOT=2 +SRC_URI=https://download3.ebz.epson.net/dsc/f/03/00/16/06/85/fddc1d5996d0cab4dceea35852a2e430fb124993/epson-inkjet-printer-escpr2-1.2.15-1.tar.gz +_md5_=4924c989355bd1de6f180df2897ec724 diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-2.0.1 b/metadata/md5-cache/net-wireless/rtl-sdr-2.0.1-r1 index 204d05940e91..42120793c7cd 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-2.0.1 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-2.0.1-r1 @@ -8,8 +8,8 @@ INHERIT=cmake IUSE=+zerocopy KEYWORDS=amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2+ -RDEPEND=virtual/libusb:1 +RDEPEND=virtual/libusb:1 !net-wireless/rtl-sdr-blog SLOT=0 SRC_URI=https://github.com/osmocom/rtl-sdr/archive/refs/tags/v2.0.1.tar.gz -> rtl-sdr-2.0.1.gh.tar.gz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=ff9fc7693fbc1853ed909b113820cbb5 +_md5_=7c6907d10df36c5920b14f69392483ed diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2 b/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2-r1 index 2b95db852626..dbc6bebcb624 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-2.0.2-r1 @@ -8,8 +8,8 @@ INHERIT=cmake udev IUSE=+zerocopy KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2+ GPL-3+ -RDEPEND=virtual/libusb:1 +RDEPEND=virtual/libusb:1 !net-wireless/rtl-sdr-blog SLOT=0 SRC_URI=https://github.com/osmocom/rtl-sdr/archive/refs/tags/v2.0.2.tar.gz -> rtl-sdr-2.0.2.gh.tar.gz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 udev f3d9a4376ebd22131726a68e1a0a058f xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=897fd6c010d7d000e7ba3f359890d4f2 +_md5_=6b696112e02115e1f17c2fe2cd9605ee diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-9999 b/metadata/md5-cache/net-wireless/rtl-sdr-9999 index 33d62947b1a7..431732dd7089 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-9999 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-9999 @@ -8,7 +8,7 @@ INHERIT=cmake udev git-r3 IUSE=+zerocopy LICENSE=GPL-2+ GPL-3+ PROPERTIES=live -RDEPEND=virtual/libusb:1 +RDEPEND=virtual/libusb:1 !net-wireless/rtl-sdr-blog SLOT=0 _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 udev f3d9a4376ebd22131726a68e1a0a058f xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=897fd6c010d7d000e7ba3f359890d4f2 +_md5_=6b696112e02115e1f17c2fe2cd9605ee diff --git a/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6 b/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6-r1 index f6c0b0d2b731..fb6898921eb1 100644 --- a/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6 +++ b/metadata/md5-cache/net-wireless/rtl-sdr-blog-1.3.6-r1 @@ -8,8 +8,8 @@ INHERIT=cmake udev IUSE=+zerocopy KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2+ GPL-3+ -RDEPEND=virtual/libusb:1 +RDEPEND=virtual/libusb:1 !net-wireless/rtl-sdr SLOT=0 SRC_URI=https://github.com/rtlsdrblog/rtl-sdr-blog/archive/refs/tags/v1.3.6.tar.gz -> rtl-sdr-blog-1.3.6.gh.tar.gz _eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 udev f3d9a4376ebd22131726a68e1a0a058f xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=203abd3de6e3da830f5f648d085e213e +_md5_=cc2a51dabf6438178ed69405e32f56cf diff --git a/metadata/md5-cache/sci-mathematics/coq-8.17.1 b/metadata/md5-cache/sci-mathematics/coq-8.17.1-r1 index 06ed41558e7e..1374a09a9c34 100644 --- a/metadata/md5-cache/sci-mathematics/coq-8.17.1 +++ b/metadata/md5-cache/sci-mathematics/coq-8.17.1-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) dev-lang/ocaml dev-ml/dune +BDEPEND=dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) <dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install prepare pretend setup test DEPEND=dev-ml/num:= dev-ml/zarith:= gui? ( >=dev-ml/lablgtk-3.1.2:3=[sourceview,ocamlopt?] >=dev-ml/lablgtk-sourceview-3.1.2:3=[ocamlopt?] ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Proof assistant written in O'Caml @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/8.17.1 SRC_URI=https://github.com/coq/coq/archive/V8.17.1.tar.gz -> coq-8.17.1.tar.gz _eclasses_=check-reqs 2a9731073c152554078a9a8df8fc0f1b desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=5ad173cd15ac61b2b8b828f4472d383e +_md5_=49cefab8b61108902a129e9da63757f3 diff --git a/metadata/md5-cache/sci-mathematics/coq-8.19.2 b/metadata/md5-cache/sci-mathematics/coq-8.19.2-r1 index f80f10269270..78cca1205b62 100644 --- a/metadata/md5-cache/sci-mathematics/coq-8.19.2 +++ b/metadata/md5-cache/sci-mathematics/coq-8.19.2-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) dev-lang/ocaml dev-ml/dune +BDEPEND=dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) <dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install prepare pretend setup test DEPEND=dev-ml/num:= dev-ml/zarith:= gui? ( >=dev-ml/lablgtk-3.1.2:3=[sourceview,ocamlopt?] >=dev-ml/lablgtk-sourceview-3.1.2:3=[ocamlopt?] ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Proof assistant written in O'Caml @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/8.19.2 SRC_URI=https://github.com/coq/coq/archive/V8.19.2.tar.gz -> coq-8.19.2.tar.gz _eclasses_=check-reqs 2a9731073c152554078a9a8df8fc0f1b desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=2c60d8892df3a66baa66291f0280c6e5 +_md5_=299cb8c473c023e0329e628ae19d4f5b diff --git a/metadata/md5-cache/sci-mathematics/coq-8.20.0 b/metadata/md5-cache/sci-mathematics/coq-8.20.0-r1 index e9f0a9e223bc..07749bc1f513 100644 --- a/metadata/md5-cache/sci-mathematics/coq-8.20.0 +++ b/metadata/md5-cache/sci-mathematics/coq-8.20.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) dev-lang/ocaml dev-ml/dune +BDEPEND=dev-ml/findlib doc? ( >=dev-java/antlr-4.7:4 dev-python/antlr4-python3-runtime dev-python/beautifulsoup4 dev-python/pexpect dev-python/sphinx-rtd-theme dev-python/sphinxcontrib-bibtex dev-tex/latexmk dev-texlive/texlive-fontsextra dev-texlive/texlive-latexextra dev-texlive/texlive-xetex media-fonts/freefont ) test? ( dev-ml/ounit2 ) <dev-lang/ocaml-5 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install prepare pretend setup test DEPEND=dev-ml/num:= dev-ml/zarith:= gui? ( >=dev-ml/lablgtk-3.1.2:3=[sourceview,ocamlopt?] >=dev-ml/lablgtk-sourceview-3.1.2:3=[ocamlopt?] ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Proof assistant written in O'Caml @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/8.20.0 SRC_URI=https://github.com/coq/coq/archive/V8.20.0.tar.gz -> coq-8.20.0.tar.gz _eclasses_=check-reqs 2a9731073c152554078a9a8df8fc0f1b desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed dune 21c2970666b517829dc7b963ca1f4a4a edo 367e103a74bf77e6a8da7894d999fa3c multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=1fc81e45be310bbf86168c098bb93222 +_md5_=007c6551a3be761e82674b96599e8e71 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-10.1.34 b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-10.1.34 deleted file mode 100644 index cbe6c101472a..000000000000 --- a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-10.1.34 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=OpenPGP keys used by tomcat.apache.org -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/download-10.cgi -KEYWORDS=amd64 arm64 -LICENSE=public-domain -SLOT=10.1.34 -SRC_URI=https://downloads.apache.org/tomcat/tomcat-10/v10.1.34/KEYS -> openpgp-keys-apache-tomcat-10.1.34-KEYS.asc -_md5_=0c86d72975806d2753b77fb2b5754856 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-10.1.39 b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-10.1.39 new file mode 100644 index 000000000000..67f4eae23224 --- /dev/null +++ b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-10.1.39 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=OpenPGP keys used by tomcat.apache.org +EAPI=8 +HOMEPAGE=https://tomcat.apache.org/download-10.cgi +KEYWORDS=amd64 ~arm64 +LICENSE=public-domain +SLOT=10.1.39 +SRC_URI=https://downloads.apache.org/tomcat/tomcat-10/v10.1.39/KEYS -> openpgp-keys-apache-tomcat-10.1.39-KEYS.asc +_md5_=366754776f96e8ae449312d3439fb661 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-11.0.2 b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-11.0.2 deleted file mode 100644 index 301745c328a0..000000000000 --- a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-11.0.2 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=OpenPGP keys used by tomcat.apache.org -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/download-11.cgi -KEYWORDS=amd64 arm64 -LICENSE=public-domain -SLOT=11.0.2 -SRC_URI=https://downloads.apache.org/tomcat/tomcat-11/v11.0.2/KEYS -> openpgp-keys-apache-tomcat-11.0.2-KEYS.asc -_md5_=aacb191bc818948e2cb0fe4beec6c0fe diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-11.0.5 b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-11.0.5 new file mode 100644 index 000000000000..5d6af500817c --- /dev/null +++ b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-11.0.5 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=OpenPGP keys used by tomcat.apache.org +EAPI=8 +HOMEPAGE=https://tomcat.apache.org/download-11.cgi +KEYWORDS=amd64 ~arm64 +LICENSE=public-domain +SLOT=11.0.5 +SRC_URI=https://downloads.apache.org/tomcat/tomcat-11/v11.0.5/KEYS -> openpgp-keys-apache-tomcat-11.0.5-KEYS.asc +_md5_=69d0d167f9cba967a25047c5d6497fa8 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-9.0.102 b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-9.0.102 new file mode 100644 index 000000000000..3d6ab0dd8e69 --- /dev/null +++ b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-9.0.102 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=OpenPGP keys used by tomcat.apache.org +EAPI=8 +HOMEPAGE=https://tomcat.apache.org/download-90.cgi +KEYWORDS=amd64 ~arm64 +LICENSE=public-domain +SLOT=9.0.102 +SRC_URI=https://downloads.apache.org/tomcat/tomcat-9/v9.0.102/KEYS -> openpgp-keys-apache-tomcat-9.0.102-KEYS.asc +_md5_=e01e37aec9e607d967ad2706a1a9ed88 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-9.0.98 b/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-9.0.98 deleted file mode 100644 index 3f7e0b86b8c1..000000000000 --- a/metadata/md5-cache/sec-keys/openpgp-keys-apache-tomcat-9.0.98 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=OpenPGP keys used by tomcat.apache.org -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/download-90.cgi -KEYWORDS=amd64 arm64 -LICENSE=public-domain -SLOT=9.0.98 -SRC_URI=https://downloads.apache.org/tomcat/tomcat-9/v9.0.98/KEYS -> openpgp-keys-apache-tomcat-9.0.98-KEYS.asc -_md5_=941e81afba300c39a784174145eed8c5 diff --git a/metadata/md5-cache/sys-apps/hexyl-0.16.0 b/metadata/md5-cache/sys-apps/hexyl-0.16.0 index a963e257a1d4..91f36a5b8068 100644 --- a/metadata/md5-cache/sys-apps/hexyl-0.16.0 +++ b/metadata/md5-cache/sys-apps/hexyl-0.16.0 @@ -1,13 +1,13 @@ -BDEPEND=|| ( dev-lang/rust-bin:9999 dev-lang/rust:9999 dev-lang/rust-bin:1.86.0 dev-lang/rust:1.86.0 dev-lang/rust-bin:1.85.0 dev-lang/rust:1.85.0 dev-lang/rust-bin:1.84.1 dev-lang/rust:1.84.1 dev-lang/rust-bin:1.84.0 dev-lang/rust:1.84.0 dev-lang/rust-bin:1.83.0 dev-lang/rust:1.83.0 dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.78.0 dev-lang/rust:1.78.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.76.0 dev-lang/rust:1.76.0 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) +BDEPEND=man? ( virtual/pandoc ) || ( dev-lang/rust-bin:9999 dev-lang/rust:9999 dev-lang/rust-bin:1.86.0 dev-lang/rust:1.86.0 dev-lang/rust-bin:1.85.0 dev-lang/rust:1.85.0 dev-lang/rust-bin:1.84.1 dev-lang/rust:1.84.1 dev-lang/rust-bin:1.84.0 dev-lang/rust:1.84.0 dev-lang/rust-bin:1.83.0 dev-lang/rust:1.83.0 dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.78.0 dev-lang/rust:1.78.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.76.0 dev-lang/rust:1.76.0 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) DEFINED_PHASES=compile configure install setup test unpack DESCRIPTION=A command-line hex viewer EAPI=8 HOMEPAGE=https://github.com/sharkdp/hexyl INHERIT=cargo -IUSE=debug +IUSE=man debug KEYWORDS=~amd64 LICENSE=|| ( Apache-2.0 MIT ) Apache-2.0 ISC MIT Unicode-DFS-2016 ZLIB SLOT=0 -SRC_URI=https://github.com/sharkdp/hexyl/archive/v0.16.0.tar.gz -> hexyl-0.16.0.tar.gz https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/anstream/0.6.17/download -> anstream-0.6.17.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.6/download -> anstyle-parse-0.2.6.crate https://crates.io/api/v1/crates/anstyle-query/1.1.2/download -> anstyle-query-1.1.2.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.6/download -> anstyle-wincon-3.0.6.crate https://crates.io/api/v1/crates/anstyle/1.0.9/download -> anstyle-1.0.9.crate https://crates.io/api/v1/crates/anyhow/1.0.91/download -> anyhow-1.0.91.crate https://crates.io/api/v1/crates/assert_cmd/2.0.16/download -> assert_cmd-2.0.16.crate https://crates.io/api/v1/crates/autocfg/1.4.0/download -> autocfg-1.4.0.crate https://crates.io/api/v1/crates/bitflags/2.6.0/download -> bitflags-2.6.0.crate https://crates.io/api/v1/crates/bstr/1.10.0/download -> bstr-1.10.0.crate https://crates.io/api/v1/crates/clap/4.5.20/download -> clap-4.5.20.crate https://crates.io/api/v1/crates/clap_builder/4.5.20/download -> clap_builder-4.5.20.crate https://crates.io/api/v1/crates/clap_derive/4.5.18/download -> clap_derive-4.5.18.crate https://crates.io/api/v1/crates/clap_lex/0.7.2/download -> clap_lex-0.7.2.crate https://crates.io/api/v1/crates/colorchoice/1.0.3/download -> colorchoice-1.0.3.crate https://crates.io/api/v1/crates/const_format/0.2.33/download -> const_format-0.2.33.crate https://crates.io/api/v1/crates/const_format_proc_macros/0.2.33/download -> const_format_proc_macros-0.2.33.crate https://crates.io/api/v1/crates/diff/0.1.13/download -> diff-0.1.13.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/doc-comment/0.3.3/download -> doc-comment-0.3.3.crate https://crates.io/api/v1/crates/errno/0.3.9/download -> errno-0.3.9.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/is_ci/1.2.0/download -> is_ci-1.2.0.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.1/download -> is_terminal_polyfill-1.70.1.crate https://crates.io/api/v1/crates/libc/0.2.161/download -> libc-0.2.161.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.14/download -> linux-raw-sys-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download -> normalize-line-endings-0.3.0.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/owo-colors/4.1.0/download -> owo-colors-4.1.0.crate https://crates.io/api/v1/crates/predicates-core/1.0.8/download -> predicates-core-1.0.8.crate https://crates.io/api/v1/crates/predicates-tree/1.0.11/download -> predicates-tree-1.0.11.crate https://crates.io/api/v1/crates/predicates/3.1.2/download -> predicates-3.1.2.crate https://crates.io/api/v1/crates/pretty_assertions/1.4.1/download -> pretty_assertions-1.4.1.crate https://crates.io/api/v1/crates/proc-macro2/1.0.89/download -> proc-macro2-1.0.89.crate https://crates.io/api/v1/crates/quote/1.0.37/download -> quote-1.0.37.crate https://crates.io/api/v1/crates/regex-automata/0.4.8/download -> regex-automata-0.4.8.crate https://crates.io/api/v1/crates/regex-syntax/0.8.5/download -> regex-syntax-0.8.5.crate https://crates.io/api/v1/crates/regex/1.11.1/download -> regex-1.11.1.crate https://crates.io/api/v1/crates/rustix/0.38.38/download -> rustix-0.38.38.crate https://crates.io/api/v1/crates/serde/1.0.214/download -> serde-1.0.214.crate https://crates.io/api/v1/crates/serde_derive/1.0.214/download -> serde_derive-1.0.214.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/supports-color/3.0.1/download -> supports-color-3.0.1.crate https://crates.io/api/v1/crates/syn/2.0.85/download -> syn-2.0.85.crate https://crates.io/api/v1/crates/terminal_size/0.4.0/download -> terminal_size-0.4.0.crate https://crates.io/api/v1/crates/termtree/0.4.1/download -> termtree-0.4.1.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.65/download -> thiserror-impl-1.0.65.crate https://crates.io/api/v1/crates/thiserror/1.0.65/download -> thiserror-1.0.65.crate https://crates.io/api/v1/crates/unicode-ident/1.0.13/download -> unicode-ident-1.0.13.crate https://crates.io/api/v1/crates/unicode-xid/0.2.6/download -> unicode-xid-0.2.6.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/wait-timeout/0.2.0/download -> wait-timeout-0.2.0.crate https://crates.io/api/v1/crates/windows-sys/0.52.0/download -> windows-sys-0.52.0.crate https://crates.io/api/v1/crates/windows-sys/0.59.0/download -> windows-sys-0.59.0.crate https://crates.io/api/v1/crates/windows-targets/0.52.6/download -> windows-targets-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download -> windows_aarch64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download -> windows_aarch64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download -> windows_i686_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download -> windows_i686_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download -> windows_i686_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download -> windows_x86_64_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download -> windows_x86_64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download -> windows_x86_64_msvc-0.52.6.crate https://crates.io/api/v1/crates/yansi/1.0.1/download -> yansi-1.0.1.crate +SRC_URI=https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/anstream/0.6.17/download -> anstream-0.6.17.crate https://crates.io/api/v1/crates/anstyle/1.0.9/download -> anstyle-1.0.9.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.6/download -> anstyle-parse-0.2.6.crate https://crates.io/api/v1/crates/anstyle-query/1.1.2/download -> anstyle-query-1.1.2.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.6/download -> anstyle-wincon-3.0.6.crate https://crates.io/api/v1/crates/anyhow/1.0.91/download -> anyhow-1.0.91.crate https://crates.io/api/v1/crates/assert_cmd/2.0.16/download -> assert_cmd-2.0.16.crate https://crates.io/api/v1/crates/autocfg/1.4.0/download -> autocfg-1.4.0.crate https://crates.io/api/v1/crates/bitflags/2.6.0/download -> bitflags-2.6.0.crate https://crates.io/api/v1/crates/bstr/1.10.0/download -> bstr-1.10.0.crate https://crates.io/api/v1/crates/clap/4.5.20/download -> clap-4.5.20.crate https://crates.io/api/v1/crates/clap_builder/4.5.20/download -> clap_builder-4.5.20.crate https://crates.io/api/v1/crates/clap_derive/4.5.18/download -> clap_derive-4.5.18.crate https://crates.io/api/v1/crates/clap_lex/0.7.2/download -> clap_lex-0.7.2.crate https://crates.io/api/v1/crates/colorchoice/1.0.3/download -> colorchoice-1.0.3.crate https://crates.io/api/v1/crates/const_format/0.2.33/download -> const_format-0.2.33.crate https://crates.io/api/v1/crates/const_format_proc_macros/0.2.33/download -> const_format_proc_macros-0.2.33.crate https://crates.io/api/v1/crates/diff/0.1.13/download -> diff-0.1.13.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/doc-comment/0.3.3/download -> doc-comment-0.3.3.crate https://crates.io/api/v1/crates/errno/0.3.9/download -> errno-0.3.9.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/is_ci/1.2.0/download -> is_ci-1.2.0.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.1/download -> is_terminal_polyfill-1.70.1.crate https://crates.io/api/v1/crates/libc/0.2.161/download -> libc-0.2.161.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.14/download -> linux-raw-sys-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download -> normalize-line-endings-0.3.0.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/owo-colors/4.1.0/download -> owo-colors-4.1.0.crate https://crates.io/api/v1/crates/predicates/3.1.2/download -> predicates-3.1.2.crate https://crates.io/api/v1/crates/predicates-core/1.0.8/download -> predicates-core-1.0.8.crate https://crates.io/api/v1/crates/predicates-tree/1.0.11/download -> predicates-tree-1.0.11.crate https://crates.io/api/v1/crates/pretty_assertions/1.4.1/download -> pretty_assertions-1.4.1.crate https://crates.io/api/v1/crates/proc-macro2/1.0.89/download -> proc-macro2-1.0.89.crate https://crates.io/api/v1/crates/quote/1.0.37/download -> quote-1.0.37.crate https://crates.io/api/v1/crates/regex/1.11.1/download -> regex-1.11.1.crate https://crates.io/api/v1/crates/regex-automata/0.4.8/download -> regex-automata-0.4.8.crate https://crates.io/api/v1/crates/regex-syntax/0.8.5/download -> regex-syntax-0.8.5.crate https://crates.io/api/v1/crates/rustix/0.38.38/download -> rustix-0.38.38.crate https://crates.io/api/v1/crates/serde/1.0.214/download -> serde-1.0.214.crate https://crates.io/api/v1/crates/serde_derive/1.0.214/download -> serde_derive-1.0.214.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/supports-color/3.0.1/download -> supports-color-3.0.1.crate https://crates.io/api/v1/crates/syn/2.0.85/download -> syn-2.0.85.crate https://crates.io/api/v1/crates/terminal_size/0.4.0/download -> terminal_size-0.4.0.crate https://crates.io/api/v1/crates/termtree/0.4.1/download -> termtree-0.4.1.crate https://crates.io/api/v1/crates/thiserror/1.0.65/download -> thiserror-1.0.65.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.65/download -> thiserror-impl-1.0.65.crate https://crates.io/api/v1/crates/unicode-ident/1.0.13/download -> unicode-ident-1.0.13.crate https://crates.io/api/v1/crates/unicode-xid/0.2.6/download -> unicode-xid-0.2.6.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/wait-timeout/0.2.0/download -> wait-timeout-0.2.0.crate https://crates.io/api/v1/crates/windows-sys/0.52.0/download -> windows-sys-0.52.0.crate https://crates.io/api/v1/crates/windows-sys/0.59.0/download -> windows-sys-0.59.0.crate https://crates.io/api/v1/crates/windows-targets/0.52.6/download -> windows-targets-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download -> windows_aarch64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download -> windows_aarch64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download -> windows_i686_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download -> windows_i686_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download -> windows_i686_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download -> windows_x86_64_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download -> windows_x86_64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download -> windows_x86_64_msvc-0.52.6.crate https://crates.io/api/v1/crates/yansi/1.0.1/download -> yansi-1.0.1.crate https://crates.io/api/v1/crates/hexyl/0.16.0/download -> hexyl-0.16.0.crate _eclasses_=cargo eb4315c13bbb1d5195ce27f8934644f9 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 969e004a4a07d654b01c6b15e2c66080 rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=e44f50fa0862e8c742ca357417c3769c +_md5_=58278680ce866e8745b16155ecb09e63 diff --git a/metadata/md5-cache/sys-devel/gcc-10.5.0 b/metadata/md5-cache/sys-devel/gcc-10.5.0 index b7b00519a6dc..4b7cee136487 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-10.5.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gcc/releases/gcc-10.5.0/gcc-10.5.0.tar.xz mirror://gnu/gcc/gcc-10.5.0/gcc-10.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-6.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=3303191be26d903c47da5d265189297e diff --git a/metadata/md5-cache/sys-devel/gcc-11.5.0 b/metadata/md5-cache/sys-devel/gcc-11.5.0 index 1cc8cc453688..ea48233b008e 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-11.5.0 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/releases/gcc-11.5.0/gcc-11.5.0.tar.xz mirror://gnu/gcc/gcc-11.5.0/gcc-11.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.5.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=c59dd7fd651626df0551d39cf0342c2b diff --git a/metadata/md5-cache/sys-devel/gcc-12.4.0 b/metadata/md5-cache/sys-devel/gcc-12.4.0 index 1161b63a27d7..caed693430d4 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.4.0 +++ b/metadata/md5-cache/sys-devel/gcc-12.4.0 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/releases/gcc-12.4.0/gcc-12.4.0.tar.xz mirror://gnu/gcc/gcc-12.4.0/gcc-12.4.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=f811ff98ddae1f28bb07f89db0f7aa56 diff --git a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20241219 b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20241219 index 3588096e11e2..5f9da326bec7 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20241219 +++ b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20241219 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20241219/gcc-12-20241219.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=82081cd2a5e17417cfdcbb532f943a06 diff --git a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250220 b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250220 index 022a698125c0..b4a7e5947f4e 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250220 +++ b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250220 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20250220/gcc-12-20250220.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=39bca2ac21051b0a7ffcdf58d1bc9643 diff --git a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250227 b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250227 index 0a5127cb86b1..7e88ca2331cd 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250227 +++ b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250227 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20250227/gcc-12-20250227.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=896137c3f1d94ab409537056e0b0745a diff --git a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250306 b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250306 index fe2ff200f70e..5f29e31370b3 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250306 +++ b/metadata/md5-cache/sys-devel/gcc-12.4.1_p20250306 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20250306/gcc-12-20250306.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=39bca2ac21051b0a7ffcdf58d1bc9643 diff --git a/metadata/md5-cache/sys-devel/gcc-12.5.9999 b/metadata/md5-cache/sys-devel/gcc-12.5.9999 index 6c09a99d48b6..3256c6e5a7b5 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.5.9999 +++ b/metadata/md5-cache/sys-devel/gcc-12.5.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=0de67cb896f1fa143f11a652bce4ee89 diff --git a/metadata/md5-cache/sys-devel/gcc-13.2.0 b/metadata/md5-cache/sys-devel/gcc-13.2.0 index d12ca7466b51..e08db805e353 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.2.0 +++ b/metadata/md5-cache/sys-devel/gcc-13.2.0 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/releases/gcc-13.2.0/gcc-13.2.0.tar.xz mirror://gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=ab8dcc6d9bdbfa11fa492a56bf01a6e3 diff --git a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20241220 b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20241220 index 43874bffa82c..1b4f037afb2c 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20241220 +++ b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20241220 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20241220/gcc-13-20241220.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=dd6658b575bda464e0cd5d411a765ffb diff --git a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250221 b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250221 index 5ee23c5d8266..5ed9a31fdce2 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250221 +++ b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250221 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20250221/gcc-13-20250221.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=02477651a589d6e3a5e91f25331563e4 diff --git a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250301 b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250301 index c141a7816183..d749ab6967c9 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250301 +++ b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250301 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20250301/gcc-13-20250301.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=3347f92276b1c49c1f8ca9cb5f1b9534 diff --git a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250307 b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250307 index 6635c179e3cf..d4b3abec6f61 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250307 +++ b/metadata/md5-cache/sys-devel/gcc-13.3.1_p20250307 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20250307/gcc-13-20250307.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=02477651a589d6e3a5e91f25331563e4 diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.9999 b/metadata/md5-cache/sys-devel/gcc-13.4.9999 index f10f82cf4b0f..fb24ac5a1044 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.9999 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=7eea806ebc35e125325bd62c0eea211b diff --git a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20241221 b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20241221 index d5b26b415840..93fb3ae4f228 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20241221 +++ b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20241221 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20241221/gcc-14-20241221.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-7.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=b4117fc070d73997cc9e900417b8f7b0 diff --git a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250222 b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250222 index 4d6f935a760f..2454422ecbb0 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250222 +++ b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250222 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20250222/gcc-14-20250222.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=1fa0eefaadb546c8299d853b9881554e diff --git a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250301 b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250301 index 0aa8d49afa32..a5231810b7a2 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250301 +++ b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250301 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20250301/gcc-14-20250301.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=d1de9f9c9e559aaa2b84375ba78178a5 diff --git a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250308 b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250308 index 26c634ead066..6d9ade03d56a 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250308 +++ b/metadata/md5-cache/sys-devel/gcc-14.2.1_p20250308 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20250308/gcc-14-20250308.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=1fa0eefaadb546c8299d853b9881554e diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.9999 b/metadata/md5-cache/sys-devel/gcc-14.3.9999 index 2cc3d48c2181..201157f93258 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.9999 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=692ccd3e2951c8582dda043258f28fe5 diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250216 b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250216 index 28270cc4bfe9..c24015419334 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250216 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250216 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20250216/gcc-15-20250216.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-patches-46.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=0af10e2ecf0cfa988196f7770bd40e2e diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223 b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223 index 7888fcb563c3..a225c089e06c 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20250223/gcc-15-20250223.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-patches-46.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=0af10e2ecf0cfa988196f7770bd40e2e diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223-r1 b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223-r1 index 67d633dbe57f..49e782eae0e3 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223-r1 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250223-r1 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20250223/gcc-15-20250223.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-patches-46.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=8ee0a1b48859950bd9eb9f99533dd7d7 diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302 b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302 index 7484c08affc5..5f59edfbffe9 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20250302/gcc-15-20250302.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-patches-46.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=76c49251deee558253d471de7d072616 diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302-r1 b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302-r1 index 922418f9bc84..02719ef5cb07 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302-r1 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250302-r1 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20250302/gcc-15-20250302.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-patches-46.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=e6654862f22196361e9efbc734856b08 diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250309 b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250309 index 976f76e5cf05..27731701d6b6 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250309 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.1_pre20250309 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20250309/gcc-15-20250309.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-patches-46.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.0.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=76c49251deee558253d471de7d072616 diff --git a/metadata/md5-cache/sys-devel/gcc-15.0.9999 b/metadata/md5-cache/sys-devel/gcc-15.0.9999 index 3ac58b77bc60..d94f8c59dca1 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.0.9999 +++ b/metadata/md5-cache/sys-devel/gcc-15.0.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=ae8057a418788750b206bd8462815c52 diff --git a/metadata/md5-cache/sys-devel/gcc-9.5.0 b/metadata/md5-cache/sys-devel/gcc-9.5.0 index 275ab580847d..34c6f4f43b74 100644 --- a/metadata/md5-cache/sys-devel/gcc-9.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-9.5.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=9.5.0 SRC_URI=mirror://gcc/releases/gcc-9.5.0/gcc-9.5.0.tar.xz mirror://gnu/gcc/gcc-9.5.0/gcc-9.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.5.0-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=319bfe4bb91a869d759df87db80bbab6 diff --git a/metadata/md5-cache/sys-devel/kgcc64-10.5.0 b/metadata/md5-cache/sys-devel/kgcc64-10.5.0 index 957182cac0e1..630c9d98f828 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-10.5.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-10.5.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=10 SRC_URI=mirror://gcc/releases/gcc-10.5.0/gcc-10.5.0.tar.xz mirror://gnu/gcc/gcc-10.5.0/gcc-10.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-6.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=bf021c721ef7be115a5bbe2994da13c2 diff --git a/metadata/md5-cache/sys-devel/kgcc64-11.5.0 b/metadata/md5-cache/sys-devel/kgcc64-11.5.0 index 7d7fe643b9b3..9d4249146057 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-11.5.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-11.5.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=11 SRC_URI=mirror://gcc/releases/gcc-11.5.0/gcc-11.5.0.tar.xz mirror://gnu/gcc/gcc-11.5.0/gcc-11.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-12.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=37abb2ddad3beee4d26ff67ab78c834b diff --git a/metadata/md5-cache/sys-devel/kgcc64-12.4.0 b/metadata/md5-cache/sys-devel/kgcc64-12.4.0 index 98637e79c2e0..4be2d7e9587c 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-12.4.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-12.4.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=12 SRC_URI=mirror://gcc/releases/gcc-12.4.0/gcc-12.4.0.tar.xz mirror://gnu/gcc/gcc-12.4.0/gcc-12.4.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.3.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.3.0-musl-patches-1.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=ce9d8b436c8d5732aff4430017a061c1 diff --git a/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241031 b/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241031 index 253519e64e4e..a853cb7bb91f 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241031 +++ b/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241031 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20241031/gcc-12-20241031.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=b50a4f96cf5ad34fcc212d6aae4a9d80 diff --git a/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241114 b/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241114 index 82736b69d4d4..f46dc5dc5505 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241114 +++ b/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241114 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20241114/gcc-12-20241114.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=b50a4f96cf5ad34fcc212d6aae4a9d80 diff --git a/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241219 b/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241219 index d290fe3d3d80..aa8063dec173 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241219 +++ b/metadata/md5-cache/sys-devel/kgcc64-12.4.1_p20241219 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20241219/gcc-12-20241219.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-1.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=8c62f224cbfa05d62e7fc6075b2baeaa diff --git a/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241025 b/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241025 index 111fd3bb6046..289a86446050 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241025 +++ b/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241025 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20241025/gcc-13-20241025.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=22525023b761c4f918d77aedb6ca6e24 diff --git a/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241115 b/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241115 index 1629b568f4d2..12b94c5c86ee 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241115 +++ b/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241115 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20241115/gcc-13-20241115.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=22525023b761c4f918d77aedb6ca6e24 diff --git a/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241220 b/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241220 index 60b8d8a95d75..582feed142ee 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241220 +++ b/metadata/md5-cache/sys-devel/kgcc64-13.3.1_p20241220 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20241220/gcc-13-20241220.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=501df60e684d8fb3a78db726325637dd diff --git a/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241116 b/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241116 index c9249dde3bd0..9c8966c68516 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241116 +++ b/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241116 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20241116/gcc-14-20241116.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=fad451848ddc513f3cf9f48ed31e81a5 diff --git a/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241221 b/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241221 index 37f727f41d9f..014718f7fcb6 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241221 +++ b/metadata/md5-cache/sys-devel/kgcc64-14.2.1_p20241221 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) test SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20241221/gcc-14-20241221.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-7.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz -_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain ca91ba5ea862c8ec5c6e2836880a3b7d toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_eclasses_=edo 367e103a74bf77e6a8da7894d999fa3c flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib b2a329026f2e404e9e371097dda47f96 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust 969e004a4a07d654b01c6b15e2c66080 toolchain 15b3e576a5aa1d0cd34d8370caf5553e toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 _md5_=a7bf0e1c26b5b7d308d5c8cd7cc7973e diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.128 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.128 deleted file mode 100644 index 469aaeb54214..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.1.128 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DESCRIPTION=Full sources including the Gentoo patchset for the 6.1 kernel tree -EAPI=8 -HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches -INHERIT=kernel-2 -IUSE=experimental symlink build -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=6.1.128 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.1-138.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.1-138.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.1-138.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.1-138.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.1-138.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.1-138.experimental.tar.xz ) -_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=1942335ba7f3d3efbf73442bd088ffe3 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.80 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.80 deleted file mode 100644 index 3929755f09e2..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.80 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DESCRIPTION=Full sources including the Gentoo patchset for the 6.6 kernel tree -EAPI=8 -HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches -INHERIT=kernel-2 -IUSE=experimental symlink build -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=6.6.80 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-89.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-89.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-89.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-89.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-89.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-89.experimental.tar.xz ) -_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 -_md5_=7c08139da78407082bc24e5077df815f diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20250311 b/metadata/md5-cache/sys-kernel/linux-firmware-20250311 new file mode 100644 index 000000000000..f84630504d38 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/linux-firmware-20250311 @@ -0,0 +1,17 @@ +BDEPEND=initramfs? ( app-alternatives/cpio ) compress-xz? ( app-arch/xz-utils ) compress-zstd? ( app-arch/zstd ) deduplicate? ( app-misc/rdfind ) || ( dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 dev-lang/python:3.9 ) +DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend setup unpack +DESCRIPTION=Linux firmware files +EAPI=8 +HOMEPAGE=https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git +IDEPEND=dist-kernel? ( initramfs? ( sys-kernel/installkernel ) ) +INHERIT=dist-kernel-utils eapi9-ver linux-info mount-boot python-any-r1 savedconfig +IUSE=bindist compress-xz compress-zstd deduplicate dist-kernel +initramfs +redistributable unknown-license savedconfig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) redistributable? ( linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT ) unknown-license? ( all-rights-reserved ) +RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_cards_ca0132] !sys-block/qla-fc-firmware !sys-firmware/raspberrypi-wifi-ucode ) unknown-license? ( !sys-firmware/alsa-firmware[alsa_cards_korg1212] !sys-firmware/alsa-firmware[alsa_cards_maestro3] !sys-firmware/alsa-firmware[alsa_cards_sb16] !sys-firmware/alsa-firmware[alsa_cards_ymfpci] ) ) dist-kernel? ( virtual/dist-kernel initramfs? ( app-alternatives/cpio ) ) +REQUIRED_USE=initramfs? ( redistributable ) ?? ( compress-xz compress-zstd ) savedconfig? ( !deduplicate ) +RESTRICT=binchecks strip test !bindist? ( bindist ) unknown-license? ( bindist ) +SLOT=0 +SRC_URI=https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/linux-firmware-20250311.tar.xz +_eclasses_=dist-kernel-utils 8fd483ccdf8e7fc0919507c0c7c273e4 eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 linux-info ea4122ba1d8791a12b78e53f9510a2e3 mount-boot d3a79a84edde3dbc4373d490d09be9b6 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 ece603c43ae206e3cb06f1878908793e savedconfig b9131abe556ad2ea96c01b06d658d363 toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 +_md5_=e453938ef975a7a5c1ca59de588efb17 diff --git a/metadata/md5-cache/www-apps/mediawiki-1.42.5 b/metadata/md5-cache/www-apps/mediawiki-1.42.5 index 12e9bfaa8e79..f02e9f959bee 100644 --- a/metadata/md5-cache/www-apps/mediawiki-1.42.5 +++ b/metadata/md5-cache/www-apps/mediawiki-1.42.5 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://www.mediawiki.org INHERIT=webapp IUSE=imagemagick mysql postgres +sqlite vhosts -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ppc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ppc x86 LICENSE=GPL-2 RDEPEND=dev-lang/php[calendar,ctype,fileinfo,iconv,intl,json(+),postgres?,session,ssl,unicode,xml,xmlreader] imagemagick? ( virtual/imagemagick-tools ) !imagemagick? ( dev-lang/php[gd] ) mysql? ( dev-lang/php[mysql,mysqli] ) sqlite? ( dev-db/sqlite[fts3(+)] dev-lang/php[pdo,sqlite] ) virtual/httpd-php app-admin/webapp-config REQUIRED_USE=|| ( mysql postgres sqlite ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=1.42.5 SRC_URI=https://releases.wikimedia.org/mediawiki/1.42/mediawiki-1.42.5.tar.gz _eclasses_=webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=712aa76c92e1dbedf0ff838f4deb68dc +_md5_=55326215b17a9b00005545f517348051 diff --git a/metadata/md5-cache/www-servers/tomcat-10.1.34 b/metadata/md5-cache/www-servers/tomcat-10.1.39 index 6add75fbd3c2..fb93fef8a83c 100644 --- a/metadata/md5-cache/www-servers/tomcat-10.1.34 +++ b/metadata/md5-cache/www-servers/tomcat-10.1.39 @@ -1,4 +1,4 @@ -BDEPEND=verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-10.1.34:10.1.34 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) +BDEPEND=verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-10.1.39:10.1.39 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) DEFINED_PHASES=compile install postinst preinst prepare setup test unpack DEPEND=dev-java/bnd-annotation:0 dev-java/eclipse-ecj:4.26 dev-java/jax-rpc-api:0 >=dev-java/jakartaee-migration-1.0.7-r2:0 dev-java/wsdl4j:0 app-admin/pwgen >=dev-java/ant-1.10.14-r3:0 dev-java/bnd:0 dev-java/bnd-ant:0 dev-java/bnd-util:0 dev-java/bndlib:0 dev-java/libg:0 dev-java/osgi-cmpn:8 dev-java/osgi-core:0 dev-java/slf4j-api:0 >=virtual/jdk-17:* test? ( >=dev-java/ant-1.10.14-r3:0[junit] dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) DESCRIPTION=Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://tomcat.apache.org/ INHERIT=java-pkg-2 prefix verify-sig IUSE=extra-webapps doc source test verify-sig -KEYWORDS=amd64 ~arm64 ~amd64-linux +KEYWORDS=~amd64 ~arm64 ~amd64-linux LICENSE=Apache-2.0 RDEPEND=dev-java/bnd-annotation:0 dev-java/eclipse-ecj:4.26 dev-java/jax-rpc-api:0 >=dev-java/jakartaee-migration-1.0.7-r2:0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat >=virtual/jre-11:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=test !test? ( test ) SLOT=10.1 -SRC_URI=mirror://apache/tomcat/tomcat-10/v10.1.34/src/apache-tomcat-10.1.34-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-10/v10.1.34/src/apache-tomcat-10.1.34-src.tar.gz.asc ) +SRC_URI=mirror://apache/tomcat/tomcat-10/v10.1.39/src/apache-tomcat-10.1.39-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-10/v10.1.39/src/apache-tomcat-10.1.39-src.tar.gz.asc ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd java-pkg-2 38fd81c7880666a00a638ca8deb64d72 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 prefix c3c4c93ebda319c0fa7ed6f942ba1010 verify-sig 7433426b6b28bf2737ba4b82c8aa8c53 -_md5_=b66104e4c63409265d65431d497273a1 +_md5_=54ae0c486d6d0508138d7193a7d14959 diff --git a/metadata/md5-cache/www-servers/tomcat-11.0.2 b/metadata/md5-cache/www-servers/tomcat-11.0.5 index dbb7559d5361..a8a1b1a11b75 100644 --- a/metadata/md5-cache/www-servers/tomcat-11.0.2 +++ b/metadata/md5-cache/www-servers/tomcat-11.0.5 @@ -1,4 +1,4 @@ -BDEPEND=verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-11.0.2:11.0.2 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) +BDEPEND=verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-11.0.5:11.0.5 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) DEFINED_PHASES=compile install postinst preinst prepare setup test unpack DEPEND=dev-java/bnd-annotation:0 dev-java/eclipse-ecj:4.33 dev-java/jax-rpc-api:0 >=dev-java/jakartaee-migration-1.0.7-r2:0 dev-java/wsdl4j:0 app-admin/pwgen >=dev-java/ant-1.10.14-r3:0 dev-java/bnd:0 dev-java/bnd-ant:0 dev-java/bnd-util:0 dev-java/bndlib:0 dev-java/libg:0 dev-java/osgi-cmpn:8 dev-java/osgi-core:0 dev-java/slf4j-api:0 >=virtual/jdk-17:* test? ( >=dev-java/ant-1.10.14-r3:0[junit] dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) DESCRIPTION=Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://tomcat.apache.org/ INHERIT=java-pkg-2 prefix verify-sig IUSE=extra-webapps doc source test verify-sig -KEYWORDS=amd64 ~arm64 ~amd64-linux +KEYWORDS=~amd64 ~arm64 ~amd64-linux LICENSE=Apache-2.0 RDEPEND=dev-java/bnd-annotation:0 dev-java/eclipse-ecj:4.33 dev-java/jax-rpc-api:0 >=dev-java/jakartaee-migration-1.0.7-r2:0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat >=virtual/jre-17:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=test !test? ( test ) SLOT=11 -SRC_URI=mirror://apache/tomcat/tomcat-11/v11.0.2/src/apache-tomcat-11.0.2-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-11/v11.0.2/src/apache-tomcat-11.0.2-src.tar.gz.asc ) +SRC_URI=mirror://apache/tomcat/tomcat-11/v11.0.5/src/apache-tomcat-11.0.5-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-11/v11.0.5/src/apache-tomcat-11.0.5-src.tar.gz.asc ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd java-pkg-2 38fd81c7880666a00a638ca8deb64d72 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 prefix c3c4c93ebda319c0fa7ed6f942ba1010 verify-sig 7433426b6b28bf2737ba4b82c8aa8c53 -_md5_=014b90bd190b104aa67414c639b93995 +_md5_=6bcc146259db4338f20f6066d5656dc6 diff --git a/metadata/md5-cache/www-servers/tomcat-9.0.98 b/metadata/md5-cache/www-servers/tomcat-9.0.102 index bc41db09c028..6a18c0b80125 100644 --- a/metadata/md5-cache/www-servers/tomcat-9.0.98 +++ b/metadata/md5-cache/www-servers/tomcat-9.0.102 @@ -1,4 +1,4 @@ -BDEPEND=verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-9.0.98:9.0.98 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) +BDEPEND=verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-9.0.102:9.0.102 ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 ) DEFINED_PHASES=compile install postinst preinst prepare setup test unpack DEPEND=dev-java/bnd-annotation:0 dev-java/eclipse-ecj:4.20 dev-java/jax-rpc-api:0 dev-java/wsdl4j:0 app-admin/pwgen >=dev-java/ant-1.10.14-r3:0 dev-java/bnd:0 dev-java/bnd-ant:0 dev-java/bnd-util:0 dev-java/bndlib:0 dev-java/libg:0 dev-java/osgi-cmpn:8 dev-java/osgi-core:0 dev-java/slf4j-api:0 >=virtual/jdk-17:* test? ( >=dev-java/ant-1.10.14-r3:0[junit] dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) DESCRIPTION=Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://tomcat.apache.org/ INHERIT=java-pkg-2 prefix verify-sig IUSE=extra-webapps doc source test verify-sig -KEYWORDS=amd64 ~arm64 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm64 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=dev-java/bnd-annotation:0 dev-java/eclipse-ecj:4.20 dev-java/jax-rpc-api:0 dev-java/wsdl4j:0 acct-group/tomcat acct-user/tomcat >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=test !test? ( test ) SLOT=9 -SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.98/src/apache-tomcat-9.0.98-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-9/v9.0.98/src/apache-tomcat-9.0.98-src.tar.gz.asc ) +SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.102/src/apache-tomcat-9.0.102-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-9/v9.0.102/src/apache-tomcat-9.0.102-src.tar.gz.asc ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd java-pkg-2 38fd81c7880666a00a638ca8deb64d72 java-utils-2 c610b1541a10e37cb26ab5b707a744f1 prefix c3c4c93ebda319c0fa7ed6f942ba1010 verify-sig 7433426b6b28bf2737ba4b82c8aa8c53 -_md5_=12236e31eba4fc2e2355b4ba480e51cc +_md5_=deb8c998d1957c7cd5cb8e28a9aa836c diff --git a/net-analyzer/zabbix/Manifest b/net-analyzer/zabbix/Manifest index 05bad590d2cd..6cac0ce35541 100644 --- a/net-analyzer/zabbix/Manifest +++ b/net-analyzer/zabbix/Manifest @@ -1,15 +1,9 @@ -DIST zabbix-5.0.45-go-deps.tar.xz 27797872 BLAKE2B f56bf82ebd1e66e2d0a9867f85b1fe21e4726cd6cf64976a14997b8ddd7abdec6414035819c94d906620a3d02841b27675c9880d69fcebc71bcf80a8b5fbc41a SHA512 baa2167aa33e9e1b7156b8cf1393a3bf51d19410066dee4805a2a37576c95ad62cb5176cc49168641b8d0feafc3c1154abfbf8319081f2bee6f9216c1beccc25 -DIST zabbix-5.0.45.tar.gz 21885357 BLAKE2B 892050f2d4ef9c1972afadb856ca2e37c9a9e35820f39aab4efb0fa0dc3a62a2e1dcb63f12f779764f5990f8bc17d25e463e85234d6e59947742ceb0544c7e6f SHA512 3a181b63aed307d2ac6133dbac90c593d7f98648c545490a717501ab11da018f4cfc2abb35a573102a7fcf700423045fcd469a8d5f8e5b1d7c047e4f302af756 DIST zabbix-5.0.46-go-deps.tar.xz 27929764 BLAKE2B a957898e48dcd8826fef81077ae85ed4613b291062b63965746e0c2461c96cc199847794b471c6c231fe49c24fd9f7e40cc12a802b1f6a0fb0ee2c11eca39ab8 SHA512 e4d54d7d0d9c900460b5fd3149f9ee392f66befc49cd301f0864c7df618e8408df80692ddc03e522f9f1a47939943fa1d0d49b59887a042e83d9f3933f9dc676 DIST zabbix-5.0.46.tar.gz 22125542 BLAKE2B fe9597767660b1dadd739375e2399f3c228f7a839b9e1eaed518cec4381e075268fe985cfee9d9bbbbe1356e0fc92a2bc3f961ec03be4e713fc3744661ebb502 SHA512 19c155cc959839b036a93edd59aa6c0e277fa0247774a479e5d4c31a5a005fe1ba036177f026d3a5f6733c063edd9ecb46ec73736c8f3047b205d18d363a002e -DIST zabbix-6.0.37-go-deps.tar.xz 31334504 BLAKE2B 3060bba678bcf2cc926ecc992b89cad4acc4ec496d0c7c8b9464d082fcd0288bfbf4310d9b02475357f4b2b209ae4cc3ca10bf37d357f3c340f2d2a7573c3fd9 SHA512 bf6a88384ca4fc2e7fa335fbdb920e9e39f7b06fd05be474a1f359e0a32ca0a278c8259890e4ee0dd6b0628539e6ad93a1a8fb726599a0e40c2463d0cc40acce -DIST zabbix-6.0.37.tar.gz 40479472 BLAKE2B 6bf65efe59963294699d8fc6b6456167ae035c075f057c6ca85c612cc41f3f812b14189ed7e03ab2446e751720f8908f8e098fc0fd7335f95251b221b66b674a SHA512 c7f638bc391cc4afa70d3322da6f0889ac846911559b544d18d61b2c1a5277a7c8cf4e86e5a63a8b6f5d94ac69a0cf11739cc2a22e251ed8ba76ee0edd8b151d DIST zabbix-6.0.38-go-deps.tar.xz 31357300 BLAKE2B e80dcfebb684ad36b1867e19f9bd228e3362a3236a32627503898b5d2238afc851dc41c0074559dec4d101e237e9b6aa3bd59d03149760d2f7273b6cf70e6196 SHA512 7d290b173e679390b1f239eb5688686be5d347fbb9cc4aefecc13d2f15ba4a02d629b3d20dc00026ec2a91be610eb503b3e53deffd7fcfe7adab4bc238316c3f DIST zabbix-6.0.38.tar.gz 40754933 BLAKE2B 071f2c355d6c9703260592c1dd9cfc125edbb01dfb2e3a39e512d579ec217877f682c460791dfd3957b9fa9e212e24b91330722b0afcd5c540cb6bfdf9b12c6b SHA512 c013c6cf7e10259b9ea500495546522cee7aeb8df63f40efa6cf2bbce3fa4bf3594a8cf83852f04dbf0a53d573a990fc2df87a0010d4c63f7054616e5158d5f4 DIST zabbix-6.0.39-go-deps.tar.xz 31696792 BLAKE2B c8aa135f04bed5a4167dd07e06a6b458eca66839d4fcfab024811c1312b583509f7259612c03b1745eefb65cd7ee7e9405af510056c1ca96efbef98548ea623d SHA512 39fb3fed09138deb84d25cf17eecf5b0826526ef4080350060388e67b0aed7401d4a72dad020af4117d4bfa5e28f91549701b74d5a0cd94c7659a81f4d5d7167 DIST zabbix-6.0.39.tar.gz 41030406 BLAKE2B 375313d121e1c00c04d42a04693d39c900fd005caa67d3e41dc8b93486d8f6d271473c7d340444dba9b0a80c94b9f45f94e5506fe8d0af2f1ac8956f1f750a5b SHA512 046494cd24880d83c7a174482f1c1a29b5bf0cd6b39d1a0909ca628faf9d2a134a7fed728c8776dce877d4dcaf474ff20683ce95e8884b830d99b32e2962b7c1 -DIST zabbix-6.4.20-go-deps.tar.xz 34456784 BLAKE2B d703a985d578580af16810dd7c030976e15fb7695311581069a6b6f5050d30848bb0abdae987ca73e9d283d56b8fe7265e418ff973072eaa7f9297f576122939 SHA512 710d7ddc479f9b1c59af6c9345d0ca0d6dc1d81c3ae7c872c81d09a37cf394abd67e9c48650d913d661497728ad405f7c415667f34185c0f1bd1115e0779b2f2 -DIST zabbix-6.4.20.tar.gz 47050234 BLAKE2B 06e523d51e49625285bd6cfbed4ba790218f69eeddbb57e6b635ff7ed6f710dce5b3c9fd5b9333bfb1e582187b5a6c3b3400763eb129fe6c03f52b55c4521499 SHA512 cde89b8bf4b5e6c39a8a7e661e7c229da9f189bf6ffd9960505daf3d63627d7bc12d420a9262244d789b30ceda34b7668e49ec9d52b8eea7144b9897871d1ae0 DIST zabbix-6.4.21-go-deps.tar.xz 34149168 BLAKE2B 4951c347027f1b251befa0f5119547192c769cee56194789732cdaf30de8ec6325d4f1e5ad914008b14b461e2fce585925fcf8c217ac2f23c4233de472e19de0 SHA512 cf7aab100c64a954dbbd4b733abdbe52051e75546867a5d5f5d623b1f34d39c87477f703622a849f85e113dd9c87ecb794cddfb23772ef3d7c3d7b223f7386e1 DIST zabbix-6.4.21.tar.gz 47299504 BLAKE2B 8aeb319c2603740f5f73c799fae1a88d2fed31733d1be3155de39130e18f42767885cc0f6a67c1432694abb92eb7940801f4e4475dcab04630cd471a60a56b3b SHA512 2be0cc96faeb50fd357ed4a9d0474d9ff60fe9804087215640addd3cd4ddb1d39c1320801b3c624388bd7ecc5b260e5b78f15d75d5b083c648d6dce95df1545e DIST zabbix-7.0.10-go-deps.tar.xz 34217436 BLAKE2B 53cbaba055ad691e1fc3611e07be00a4399585bacefcc3cc98abd5091137df8419b3dd7b1f59523eba7fcbe00ed3df8fd59b5ddd37a4ed8df574e122b496c25b SHA512 663d7d81587dd6a5a1ad0ebeb571c96416fe443e3d54ca645f8708d09b9cbba0dc82580065db6a3a98e2530b04494c3a175949f43af8fd0ec39bf63b538be4b9 diff --git a/net-analyzer/zabbix/zabbix-5.0.45.ebuild b/net-analyzer/zabbix/zabbix-5.0.45.ebuild deleted file mode 100644 index 825621954fe2..000000000000 --- a/net-analyzer/zabbix/zabbix-5.0.45.ebuild +++ /dev/null @@ -1,386 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# To create the go modules tarball: -# cd src/go -# GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw -# tar -acf zabbix-${PV}-go-deps.tar.xz go-mod - -EAPI=8 - -GO_OPTIONAL="yes" -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers" -HOMEPAGE="https://www.zabbix.com/" -MY_P=${P/_/} -MY_PV=${PV/_/} -SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz - agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz ) -" - -S=${WORKDIR}/${MY_P} - -LICENSE="GPL-2" -SLOT="0/$(ver_cut 1-2)" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="amd64 ~x86" -IUSE="+agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static" -REQUIRED_USE="|| ( agent agent2 frontend proxy server ) - ?? ( gnutls openssl ) - agent2? ( !gnutls ) - proxy? ( ^^ ( mysql oracle postgres sqlite ) ) - server? ( ^^ ( mysql oracle postgres ) !sqlite ) - static? ( !oracle !snmp )" - -COMMON_DEPEND=" - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls:0= ) - java? ( >=virtual/jdk-1.8:* ) - ldap? ( - =dev-libs/cyrus-sasl-2* - net-libs/gnutls:= - net-nds/openldap:= - ) - libxml2? ( dev-libs/libxml2 ) - mysql? ( dev-db/mysql-connector-c:= ) - odbc? ( dev-db/unixODBC ) - openipmi? ( sys-libs/openipmi ) - openssl? ( dev-libs/openssl:=[-bindist(-)] ) - oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) - postgres? ( dev-db/postgresql:* ) - proxy? ( - dev-libs/libevent:= - sys-libs/zlib - ) - server? ( - dev-libs/libevent:= - sys-libs/zlib - ) - snmp? ( net-analyzer/net-snmp:= ) - sqlite? ( dev-db/sqlite ) - ssh? ( net-libs/libssh2 ) -" - -RDEPEND="${COMMON_DEPEND} - acct-group/zabbix - acct-user/zabbix - java? ( >=virtual/jre-1.8:* ) - mysql? ( virtual/mysql ) - proxy? ( - dev-libs/libpcre - net-analyzer/fping[suid] - ) - selinux? ( sec-policy/selinux-zabbix ) - server? ( - app-admin/webapp-config - dev-libs/libpcre - net-analyzer/fping[suid] - ) - frontend? ( - app-admin/webapp-config - dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] - media-libs/gd[png] - virtual/httpd-php:* - mysql? ( dev-lang/php[mysqli] ) - odbc? ( dev-lang/php[odbc] ) - postgres? ( dev-lang/php[postgres] ) - sqlite? ( dev-lang/php[sqlite] ) - ) -" -DEPEND="${COMMON_DEPEND} - static? ( - curl? ( net-misc/curl[static-libs] ) - ldap? ( - =dev-libs/cyrus-sasl-2*[static-libs] - net-libs/gnutls[static-libs] - net-nds/openldap[static-libs] - ) - libxml2? ( dev-libs/libxml2[static-libs] ) - mysql? ( dev-db/mysql-connector-c[static-libs] ) - odbc? ( dev-db/unixODBC[static-libs] ) - postgres? ( dev-db/postgresql:*[static-libs] ) - sqlite? ( dev-db/sqlite[static-libs] ) - ssh? ( net-libs/libssh2 ) - ) -" -BDEPEND=" - virtual/pkgconfig - agent2? ( - >=dev-lang/go-1.12 - app-arch/unzip - ) -" - -# upstream tests fail for agent2 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-4.0.18-modulepathfix.patch" - "${FILESDIR}/${PN}-3.0.30-security-disable-PidFile.patch" - "${FILESDIR}/${PN}-5.0.22-system.sw.packages.patch" -) - -ZABBIXJAVA_BASE="opt/zabbix_java" - -pkg_setup() { - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - default -} - -src_configure() { - econf \ - $(use_enable agent) \ - $(use_enable agent2) \ - $(use_enable ipv6) \ - $(use_enable java) \ - $(use_enable proxy) \ - $(use_enable server) \ - $(use_enable static) \ - $(use_with curl libcurl) \ - $(use_with gnutls) \ - $(use_with ldap) \ - $(use_with libxml2) \ - $(use_with mysql) \ - $(use_with odbc unixodbc) \ - $(use_with openipmi openipmi) \ - $(use_with openssl) \ - $(use_with oracle) \ - $(use_with postgres postgresql) \ - $(use_with snmp net-snmp) \ - $(use_with sqlite sqlite3) \ - $(use_with ssh ssh2) -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" - fi -} - -src_install() { - local dirs=( - /etc/zabbix - /var/lib/zabbix - /var/lib/zabbix/home - /var/lib/zabbix/scripts - /var/lib/zabbix/alertscripts - /var/lib/zabbix/externalscripts - /var/log/zabbix - ) - - for dir in "${dirs[@]}"; do - dodir "${dir}" - keepdir "${dir}" - done - - if use server; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_server.conf - fperms 0640 /etc/zabbix/zabbix_server.conf - fowners root:zabbix /etc/zabbix/zabbix_server.conf - - newinitd "${FILESDIR}"/zabbix-server-r1.init zabbix-server - - dosbin src/zabbix_server/zabbix_server - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-server.service - newtmpfiles "${FILESDIR}"/zabbix-server.tmpfiles zabbix-server.conf - fi - - if use proxy; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_proxy.conf - fperms 0640 /etc/zabbix/zabbix_proxy.conf - fowners root:zabbix /etc/zabbix/zabbix_proxy.conf - - newinitd "${FILESDIR}"/zabbix-proxy.init zabbix-proxy - - dosbin src/zabbix_proxy/zabbix_proxy - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-proxy.service - newtmpfiles "${FILESDIR}"/zabbix-proxy.tmpfiles zabbix-proxy.conf - fi - - if use oracle; then - ewarn - ewarn "Support for Oracle database has been dropped from PHP" - ewarn "so to make the web frontend work, you need to install" - ewarn "PECL extension for Oracle database." - ewarn "For details see https://bugs.gentoo.org/928386" - fi - - if use agent; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_agentd.conf - fperms 0640 /etc/zabbix/zabbix_agentd.conf - fowners root:zabbix /etc/zabbix/zabbix_agentd.conf - - newinitd "${FILESDIR}"/zabbix-agentd.init zabbix-agentd - - dosbin src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - - systemd_dounit "${FILESDIR}"/zabbix-agentd.service - newtmpfiles "${FILESDIR}"/zabbix-agentd.tmpfiles zabbix-agentd.conf - fi - - if use agent2; then - insinto /etc/zabbix - doins "${S}"/src/go/conf/zabbix_agent2.conf - fperms 0640 /etc/zabbix/zabbix_agent2.conf - fowners root:zabbix /etc/zabbix/zabbix_agent2.conf - - newinitd "${FILESDIR}"/zabbix-agent2.init zabbix-agent2 - - dosbin src/go/bin/zabbix_agent2 - - systemd_dounit "${FILESDIR}"/zabbix-agent2.service - newtmpfiles "${FILESDIR}"/zabbix-agent2.tmpfiles zabbix-agent2.conf - fi - - fowners root:zabbix /etc/zabbix - fowners zabbix:zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R ui/* "${D}/${MY_HTDOCSDIR}" - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-${MY_PV}.jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-1.2.9.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-1.2.9.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/android-json-4.3_r3.1.jar \ - src/zabbix_java/lib/slf4j-api-1.7.32.jar - newinitd "${FILESDIR}"/zabbix-jmx-proxy.init zabbix-jmx-proxy - newconfd "${FILESDIR}"/zabbix-jmx-proxy.conf zabbix-jmx-proxy - fi -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix" - elog "if you have not already done so." - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - tmpfiles_process zabbix-server.conf - - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n <nodeid>" - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - if use proxy; then - tmpfiles_process zabbix-proxy.conf - fi - - if use agent; then - tmpfiles_process zabbix-agentd.conf - fi - - if use agent2; then - tmpfiles_process zabbix-agent2.conf - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog -} - -pkg_prerm() { - (use frontend || use server) && webapp_pkg_prerm -} diff --git a/net-analyzer/zabbix/zabbix-5.0.46.ebuild b/net-analyzer/zabbix/zabbix-5.0.46.ebuild index eb1548bde7d3..4943b5164afb 100644 --- a/net-analyzer/zabbix/zabbix-5.0.46.ebuild +++ b/net-analyzer/zabbix/zabbix-5.0.46.ebuild @@ -26,7 +26,7 @@ S=${WORKDIR}/${MY_P} LICENSE="GPL-2" SLOT="0/$(ver_cut 1-2)" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="+agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static" REQUIRED_USE="|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) diff --git a/net-analyzer/zabbix/zabbix-6.0.37.ebuild b/net-analyzer/zabbix/zabbix-6.0.37.ebuild deleted file mode 100644 index d9fd70808b8f..000000000000 --- a/net-analyzer/zabbix/zabbix-6.0.37.ebuild +++ /dev/null @@ -1,389 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# To create the go modules tarball: -# cd src/go -# GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw -# tar -acf $(pwd | grep -Eo 'zabbix-[0-9.]+')-go-deps.tar.xz go-mod - -EAPI=8 - -GO_OPTIONAL="yes" -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers" -HOMEPAGE="https://www.zabbix.com/" -MY_P=${P/_/} -MY_PV=${PV/_/} -SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz - agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz ) -" - -S=${WORKDIR}/${MY_P} - -LICENSE="GPL-2" -SLOT="0/$(ver_cut 1-2)" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="amd64 ~x86" -IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static" -REQUIRED_USE="|| ( agent agent2 frontend proxy server ) - ?? ( gnutls openssl ) - agent2? ( !gnutls ) - proxy? ( ^^ ( mysql oracle postgres sqlite ) ) - server? ( ^^ ( mysql oracle postgres ) !sqlite ) - static? ( !oracle !snmp )" - -COMMON_DEPEND=" - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls:0= ) - java? ( >=virtual/jdk-1.8:* ) - ldap? ( - =dev-libs/cyrus-sasl-2* - net-libs/gnutls:= - net-nds/openldap:= - ) - libxml2? ( dev-libs/libxml2 ) - mysql? ( dev-db/mysql-connector-c:= ) - odbc? ( dev-db/unixODBC ) - openipmi? ( sys-libs/openipmi ) - openssl? ( dev-libs/openssl:=[-bindist(-)] ) - oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) - postgres? ( dev-db/postgresql:* ) - proxy? ( - dev-libs/libevent:= - sys-libs/zlib - ) - server? ( - dev-libs/libevent:= - sys-libs/zlib - ) - snmp? ( net-analyzer/net-snmp:= ) - sqlite? ( dev-db/sqlite ) - ssh? ( net-libs/libssh2 ) -" - -RDEPEND="${COMMON_DEPEND} - acct-group/zabbix - acct-user/zabbix - java? ( >=virtual/jre-1.8:* ) - mysql? ( virtual/mysql ) - proxy? ( - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - selinux? ( sec-policy/selinux-zabbix ) - server? ( - app-admin/webapp-config - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - frontend? ( - app-admin/webapp-config - dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] - media-libs/gd[png] - virtual/httpd-php:* - mysql? ( dev-lang/php[mysqli] ) - odbc? ( dev-lang/php[odbc] ) - postgres? ( dev-lang/php[postgres] ) - sqlite? ( dev-lang/php[sqlite] ) - ) -" -DEPEND="${COMMON_DEPEND} - static? ( - curl? ( net-misc/curl[static-libs] ) - ldap? ( - =dev-libs/cyrus-sasl-2*[static-libs] - net-libs/gnutls[static-libs] - net-nds/openldap[static-libs] - ) - libxml2? ( dev-libs/libxml2[static-libs] ) - mysql? ( dev-db/mysql-connector-c[static-libs] ) - odbc? ( dev-db/unixODBC[static-libs] ) - postgres? ( dev-db/postgresql:*[static-libs] ) - sqlite? ( dev-db/sqlite[static-libs] ) - ssh? ( net-libs/libssh2 ) - ) -" -BDEPEND=" - virtual/pkgconfig - agent2? ( - >=dev-lang/go-1.12 - app-arch/unzip - ) -" - -# upstream tests fail for agent2 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-4.0.18-modulepathfix.patch" - "${FILESDIR}/${PN}-3.0.30-security-disable-PidFile.patch" - "${FILESDIR}/${PN}-6.0.3-system.sw.packages.patch" -) - -ZABBIXJAVA_BASE="opt/zabbix_java" - -pkg_setup() { - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - default -} - -src_configure() { - local econf_args=( - --with-libpcre2 - "$(use_enable agent)" - "$(use_enable agent2)" - "$(use_enable ipv6)" - "$(use_enable java)" - "$(use_enable proxy)" - "$(use_enable server)" - "$(use_enable static)" - "$(use_with curl libcurl)" - "$(use_with gnutls)" - "$(use_with ldap)" - "$(use_with libxml2)" - "$(use_with mysql)" - "$(use_with odbc unixodbc)" - "$(use_with openipmi openipmi)" - "$(use_with openssl)" - "$(use_with oracle)" - "$(use_with postgres postgresql)" - "$(use_with snmp net-snmp)" - "$(use_with sqlite sqlite3)" - "$(use_with ssh ssh2)" - ) - - econf ${econf_args[@]} -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" - fi -} - -src_install() { - local dirs=( - /etc/zabbix - /var/lib/zabbix - /var/lib/zabbix/home - /var/lib/zabbix/scripts - /var/lib/zabbix/alertscripts - /var/lib/zabbix/externalscripts - /var/log/zabbix - ) - - for dir in "${dirs[@]}"; do - keepdir "${dir}" - done - - if use server; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_server.conf - fperms 0640 /etc/zabbix/zabbix_server.conf - fowners root:zabbix /etc/zabbix/zabbix_server.conf - - newinitd "${FILESDIR}"/zabbix-server-r1.init zabbix-server - - dosbin src/zabbix_server/zabbix_server - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-server.service - newtmpfiles "${FILESDIR}"/zabbix-server.tmpfiles zabbix-server.conf - fi - - if use proxy; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_proxy.conf - fperms 0640 /etc/zabbix/zabbix_proxy.conf - fowners root:zabbix /etc/zabbix/zabbix_proxy.conf - - newinitd "${FILESDIR}"/zabbix-proxy.init zabbix-proxy - - dosbin src/zabbix_proxy/zabbix_proxy - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-proxy.service - newtmpfiles "${FILESDIR}"/zabbix-proxy.tmpfiles zabbix-proxy.conf - fi - - if use agent; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_agentd.conf - fperms 0640 /etc/zabbix/zabbix_agentd.conf - fowners root:zabbix /etc/zabbix/zabbix_agentd.conf - - newinitd "${FILESDIR}"/zabbix-agentd.init zabbix-agentd - - dosbin src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - - systemd_dounit "${FILESDIR}"/zabbix-agentd.service - newtmpfiles "${FILESDIR}"/zabbix-agentd.tmpfiles zabbix-agentd.conf - fi - if use agent2; then - insinto /etc/zabbix - doins "${S}"/src/go/conf/zabbix_agent2.conf - fperms 0640 /etc/zabbix/zabbix_agent2.conf - fowners root:zabbix /etc/zabbix/zabbix_agent2.conf - keepdir /etc/zabbix/zabbix_agent2.d/plugins.d - - newinitd "${FILESDIR}"/zabbix-agent2.init zabbix-agent2 - - dosbin src/go/bin/zabbix_agent2 - - systemd_dounit "${FILESDIR}"/zabbix-agent2.service - newtmpfiles "${FILESDIR}"/zabbix-agent2.tmpfiles zabbix-agent2.conf - fi - - fowners root:zabbix /etc/zabbix - fowners zabbix:zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R ui/* "${D}/${MY_HTDOCSDIR}" - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-"${MY_PV}".jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-1.2.9.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-1.2.9.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/android-json-4.3_r3.1.jar \ - src/zabbix_java/lib/slf4j-api-1.7.32.jar - newinitd "${FILESDIR}"/zabbix-jmx-proxy.init zabbix-jmx-proxy - newconfd "${FILESDIR}"/zabbix-jmx-proxy.conf zabbix-jmx-proxy - fi -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix" - elog "if you have not already done so." - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - tmpfiles_process zabbix-server.conf - - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n <nodeid>" - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - if use oracle; then - ewarn - ewarn "Support for Oracle database has been dropped from PHP" - ewarn "so to make the web frontend work, you need to install" - ewarn "PECL extension for Oracle database." - ewarn "For details see https://bugs.gentoo.org/928386" - fi - - if use proxy; then - tmpfiles_process zabbix-proxy.conf - fi - - if use agent; then - tmpfiles_process zabbix-agentd.conf - fi - - if use agent2; then - tmpfiles_process zabbix-agent2.conf - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog -} - -pkg_prerm() { - (use frontend || use server) && webapp_pkg_prerm -} diff --git a/net-analyzer/zabbix/zabbix-6.0.38.ebuild b/net-analyzer/zabbix/zabbix-6.0.38.ebuild index cfbde6d11dca..323fc230bc32 100644 --- a/net-analyzer/zabbix/zabbix-6.0.38.ebuild +++ b/net-analyzer/zabbix/zabbix-6.0.38.ebuild @@ -26,7 +26,7 @@ S=${WORKDIR}/${MY_P} LICENSE="GPL-2" SLOT="0/$(ver_cut 1-2)" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static" REQUIRED_USE="|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) diff --git a/net-analyzer/zabbix/zabbix-6.4.20.ebuild b/net-analyzer/zabbix/zabbix-6.4.20.ebuild deleted file mode 100644 index 7f6ead335ecd..000000000000 --- a/net-analyzer/zabbix/zabbix-6.4.20.ebuild +++ /dev/null @@ -1,392 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# To create the go modules tarball: -# cd src/go -# GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw -# tar -acf $(pwd | grep -Eo 'zabbix-[0-9.]+')-go-deps.tar.xz go-mod - -EAPI=8 - -GO_OPTIONAL="yes" -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit autotools webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers" -HOMEPAGE="https://www.zabbix.com/" -MY_P=${P/_/} -MY_PV=${PV/_/} -SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz - agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz ) -" - -S=${WORKDIR}/${MY_P} - -LICENSE="GPL-2" -SLOT="0/$(ver_cut 1-2)" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="amd64 ~x86" -IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static" -REQUIRED_USE="|| ( agent agent2 frontend proxy server ) - ?? ( gnutls openssl ) - agent2? ( !gnutls ) - proxy? ( ^^ ( mysql oracle postgres sqlite ) ) - server? ( ^^ ( mysql oracle postgres ) !sqlite ) - static? ( !oracle !snmp )" - -COMMON_DEPEND=" - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls:0= ) - java? ( >=virtual/jdk-1.8:* ) - ldap? ( - =dev-libs/cyrus-sasl-2* - net-libs/gnutls:= - net-nds/openldap:= - ) - libxml2? ( dev-libs/libxml2 ) - mysql? ( dev-db/mysql-connector-c:= ) - odbc? ( dev-db/unixODBC ) - openipmi? ( sys-libs/openipmi ) - openssl? ( dev-libs/openssl:=[-bindist(-)] ) - oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) - postgres? ( dev-db/postgresql:* ) - proxy? ( - dev-libs/libevent:= - sys-libs/zlib - ) - server? ( - dev-libs/libevent:= - sys-libs/zlib - ) - snmp? ( net-analyzer/net-snmp:= ) - sqlite? ( dev-db/sqlite ) - ssh? ( net-libs/libssh2 ) -" - -RDEPEND="${COMMON_DEPEND} - acct-group/zabbix - acct-user/zabbix - java? ( >=virtual/jre-1.8:* ) - mysql? ( virtual/mysql ) - proxy? ( - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - selinux? ( sec-policy/selinux-zabbix ) - server? ( - app-admin/webapp-config - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - frontend? ( - app-admin/webapp-config - dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] - media-libs/gd[png] - virtual/httpd-php:* - mysql? ( dev-lang/php[mysqli] ) - odbc? ( dev-lang/php[odbc] ) - postgres? ( dev-lang/php[postgres] ) - sqlite? ( dev-lang/php[sqlite] ) - ) -" -DEPEND="${COMMON_DEPEND} - static? ( - curl? ( net-misc/curl[static-libs] ) - ldap? ( - =dev-libs/cyrus-sasl-2*[static-libs] - net-libs/gnutls[static-libs] - net-nds/openldap[static-libs] - ) - libxml2? ( dev-libs/libxml2[static-libs] ) - mysql? ( dev-db/mysql-connector-c[static-libs] ) - odbc? ( dev-db/unixODBC[static-libs] ) - postgres? ( dev-db/postgresql:*[static-libs] ) - sqlite? ( dev-db/sqlite[static-libs] ) - ssh? ( net-libs/libssh2 ) - ) -" -BDEPEND=" - virtual/pkgconfig - agent2? ( - >=dev-lang/go-1.12 - app-arch/unzip - ) -" - -# upstream tests fail for agent2 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-4.0.18-modulepathfix.patch" - "${FILESDIR}/${PN}-3.0.30-security-disable-PidFile.patch" - "${FILESDIR}/${PN}-6.4.0-configure-sscanf.patch" -) - -ZABBIXJAVA_BASE="opt/zabbix_java" - -pkg_setup() { - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - default - - # Since we patch configure.ac with e.g., ${PN}-6.4.0-configure-sscanf.patch". - eautoreconf -} - -src_configure() { - local econf_args=( - --with-libpcre2 - "$(use_enable agent)" - "$(use_enable agent2)" - "$(use_enable ipv6)" - "$(use_enable java)" - "$(use_enable proxy)" - "$(use_enable server)" - "$(use_enable static)" - "$(use_with curl libcurl)" - "$(use_with gnutls)" - "$(use_with ldap)" - "$(use_with libxml2)" - "$(use_with mysql)" - "$(use_with odbc unixodbc)" - "$(use_with openipmi openipmi)" - "$(use_with openssl)" - "$(use_with oracle)" - "$(use_with postgres postgresql)" - "$(use_with snmp net-snmp)" - "$(use_with sqlite sqlite3)" - "$(use_with ssh ssh2)" - ) - - econf ${econf_args[@]} -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" - fi -} - -src_install() { - local dirs=( - /etc/zabbix - /var/lib/zabbix - /var/lib/zabbix/home - /var/lib/zabbix/scripts - /var/lib/zabbix/alertscripts - /var/lib/zabbix/externalscripts - /var/log/zabbix - ) - - for dir in "${dirs[@]}"; do - keepdir "${dir}" - done - - if use server; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_server.conf - fperms 0640 /etc/zabbix/zabbix_server.conf - fowners root:zabbix /etc/zabbix/zabbix_server.conf - - newinitd "${FILESDIR}"/zabbix-server-r1.init zabbix-server - - dosbin src/zabbix_server/zabbix_server - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-server.service - newtmpfiles "${FILESDIR}"/zabbix-server.tmpfiles zabbix-server.conf - fi - - if use proxy; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_proxy.conf - fperms 0640 /etc/zabbix/zabbix_proxy.conf - fowners root:zabbix /etc/zabbix/zabbix_proxy.conf - - newinitd "${FILESDIR}"/zabbix-proxy.init zabbix-proxy - - dosbin src/zabbix_proxy/zabbix_proxy - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-proxy.service - newtmpfiles "${FILESDIR}"/zabbix-proxy.tmpfiles zabbix-proxy.conf - fi - - if use agent; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_agentd.conf - fperms 0640 /etc/zabbix/zabbix_agentd.conf - fowners root:zabbix /etc/zabbix/zabbix_agentd.conf - - newinitd "${FILESDIR}"/zabbix-agentd.init zabbix-agentd - - dosbin src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - - systemd_dounit "${FILESDIR}"/zabbix-agentd.service - newtmpfiles "${FILESDIR}"/zabbix-agentd.tmpfiles zabbix-agentd.conf - fi - if use agent2; then - insinto /etc/zabbix - doins "${S}"/src/go/conf/zabbix_agent2.conf - fperms 0640 /etc/zabbix/zabbix_agent2.conf - fowners root:zabbix /etc/zabbix/zabbix_agent2.conf - keepdir /etc/zabbix/zabbix_agent2.d/plugins.d - - newinitd "${FILESDIR}"/zabbix-agent2.init zabbix-agent2 - - dosbin src/go/bin/zabbix_agent2 - - systemd_dounit "${FILESDIR}"/zabbix-agent2.service - newtmpfiles "${FILESDIR}"/zabbix-agent2.tmpfiles zabbix-agent2.conf - fi - - fowners root:zabbix /etc/zabbix - fowners zabbix:zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R ui/* "${D}/${MY_HTDOCSDIR}" - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-"${MY_PV}".jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-1.2.9.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-1.2.9.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/android-json-4.3_r3.1.jar \ - src/zabbix_java/lib/slf4j-api-1.7.32.jar - newinitd "${FILESDIR}"/zabbix-jmx-proxy.init zabbix-jmx-proxy - newconfd "${FILESDIR}"/zabbix-jmx-proxy.conf zabbix-jmx-proxy - fi -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix" - elog "if you have not already done so." - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - tmpfiles_process zabbix-server.conf - - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n <nodeid>" - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - if use oracle; then - ewarn - ewarn "Support for Oracle database has been dropped from PHP" - ewarn "so to make the web frontend work, you need to install" - ewarn "PECL extension for Oracle database." - ewarn "For details see https://bugs.gentoo.org/928386" - fi - - if use proxy; then - tmpfiles_process zabbix-proxy.conf - fi - - if use agent; then - tmpfiles_process zabbix-agentd.conf - fi - - if use agent2; then - tmpfiles_process zabbix-agent2.conf - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog -} - -pkg_prerm() { - (use frontend || use server) && webapp_pkg_prerm -} diff --git a/net-analyzer/zabbix/zabbix-6.4.21.ebuild b/net-analyzer/zabbix/zabbix-6.4.21.ebuild index 8b7730edcfc1..ef5c54b142ae 100644 --- a/net-analyzer/zabbix/zabbix-6.4.21.ebuild +++ b/net-analyzer/zabbix/zabbix-6.4.21.ebuild @@ -26,7 +26,7 @@ S=${WORKDIR}/${MY_P} LICENSE="GPL-2" SLOT="0/$(ver_cut 1-2)" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy selinux server snmp sqlite ssh static" REQUIRED_USE="|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) diff --git a/net-analyzer/zabbix/zabbix-7.0.9.ebuild b/net-analyzer/zabbix/zabbix-7.0.9.ebuild index 8124788a5c25..1ed888fcd1a1 100644 --- a/net-analyzer/zabbix/zabbix-7.0.9.ebuild +++ b/net-analyzer/zabbix/zabbix-7.0.9.ebuild @@ -26,7 +26,7 @@ S=${WORKDIR}/${MY_P} LICENSE="AGPL-3" SLOT="0/$(ver_cut 1-2)" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 arm64 ~x86" IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl +postgres proxy selinux server snmp sqlite ssh static" REQUIRED_USE="|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) diff --git a/net-analyzer/zabbix/zabbix-7.2.3.ebuild b/net-analyzer/zabbix/zabbix-7.2.3.ebuild index 8124788a5c25..1ed888fcd1a1 100644 --- a/net-analyzer/zabbix/zabbix-7.2.3.ebuild +++ b/net-analyzer/zabbix/zabbix-7.2.3.ebuild @@ -26,7 +26,7 @@ S=${WORKDIR}/${MY_P} LICENSE="AGPL-3" SLOT="0/$(ver_cut 1-2)" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 arm64 ~x86" IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl +postgres proxy selinux server snmp sqlite ssh static" REQUIRED_USE="|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) diff --git a/net-im/synapse/Manifest b/net-im/synapse/Manifest index d7a3b20d008f..7ef6464b7534 100644 --- a/net-im/synapse/Manifest +++ b/net-im/synapse/Manifest @@ -1,5 +1,6 @@ DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 DIST anyhow-1.0.95.crate 52155 BLAKE2B fc9cebdfae0afed86f2dfb7faf62f5a108000895317dd0cab9c83d6e48c891558fc3a1d8b9940b623b4c6fd861631a0f0344a9915517a9bc39dbfbe48ec6b45b SHA512 8c5c176381c3e861c3c4451f7cd3d9e2447c0a55735ececfd3199288d65d36dc5fdc4a19a0798f62a0b9d6ca2c155a616c7eab8bcd53e6ece743aed57ec3d0fa +DIST anyhow-1.0.96.crate 52168 BLAKE2B 86796b29b2d2003a614d8e3de91246e1220414dad89012188645a2df1757b18a7f9a49358b6c7db2622871fefd17b94dcfd76b0e24956a6ab8a2bfdc27f3d09d SHA512 673b083ba8ca51865d0b1c41e2ebd410039109db71d251a5048f24bfe009a4ca59f80f72b1b05c35155e523c74e326e349fb9c6f2654b5893eb8b3d50460fc8e DIST arc-swap-1.7.1.crate 68512 BLAKE2B 5ddeffd2ae8af4125a5b43d4a0a1afc7948533bf037d8cd3e47603c13b57b156618280d99b840bf318b25b6eb29400ad68499695e182acdc05bc5f621c42ee16 SHA512 070fa8dd17b380b6d7d72f6f45c84e591de9a9770b9662351e7a41af03798bf5e34d185a5fcb948f4d8ac5e210a33acd465c39eff6097662c2442b34ee3dbdff DIST autocfg-1.3.0.crate 16524 BLAKE2B 7d5a03853d6b4f0da08d8e139fb200da21e47fa7e50d1956270d0ff0cc496f660f8f800122c95eee9ba98d9210ab200c3010b782097483d12d6be4ac0df0e7c9 SHA512 a5570b955d57a7183ba148b335837dc5af24b202e80681027536d33fe2822509ba644fc70c29f018c893285ced2bf6774f44ca6c59f7c7e2226d5349cf7c3635 DIST base64-0.21.7.crate 82576 BLAKE2B 25cc8761c14220981ff4ed332058f6179948080cbfa2b225ec1d1602e4af14cd470c969e8b7049117e6fc51a5a24e06b1d27bab844486ecb76409d12e0581d5d SHA512 c6986d88dd9aa081d914f35b4174be4ba874848657ac4b5e63b9b45af765d973289c548ccb5a01584edfc0d8d79ff5be25b51365295d6e7a311bd7f0ae3c0cb9 @@ -30,6 +31,7 @@ DIST lazy_static-1.5.0.crate 14025 BLAKE2B df29e0e3d1c061815bdd608b41074436024dc DIST libc-0.2.154.crate 743304 BLAKE2B 25ff132ec29b78dec455f0a1fc9fbfc744ee0d6eb410aba05ec6b1b08af9d83ec61e56f840f86cb833f590e8cdec7f67ce6e7b630ee227a36581650c81298b84 SHA512 891a36cf153a9f4d58793412c104504c57280994e428ce8ba208673a924b2de38cc21eece09b91696eaea3b2359606dbe9f1509f9bf364bdabdb366ef2dd0f61 DIST log-0.4.22.crate 44027 BLAKE2B 831dc5092db05123bf2e909eafa708339983edece9bc8cb802f0ab418d47ddc5045a72c1b58bc7c46ffa68080eebd0fd55d6e4f5b3d5ad3b0bc6b2ea0dcaace1 SHA512 bd7baa9c8a5523fd0864a53bcde955d484cacd782412b5b02c890b89dbf62137624da3a27337a310dd8f62bcc6606925a42bbd4ca161a3b7936ea4ff96bc0d71 DIST log-0.4.25.crate 44876 BLAKE2B ab9433934d16edca42b38f559c3c87f949c4540fc422e6d65c75aedd5055c7a4935ac0f735e7ef5c901a7443e70d60be77079a104dc61a3955b0c900162b3967 SHA512 b420404c82aeb04219e9f63505d60b8853cad44d1de0bec0750715baae21afae806bd4f741bb8964dd39bb5d1e0f5be41bc38d76773bdfd5e920d30533146231 +DIST log-0.4.26.crate 47022 BLAKE2B 529ce84cc92d1258327e148e1fff16cf4cba1d53f311353a15814856ad12d48f654aac5d4c6356a45439858a2f1938bdb7df582a1d62bf75b9380f2cf784caf0 SHA512 d85f3cb8bf90893d59b3174785295616d719c8d2078c04fa3e131c3f3cf84b73c75b932348df70b7eab2aedf261b27e6544f051696eb5c287fb461d1ee699ec1 DIST memchr-2.7.2.crate 96220 BLAKE2B 2399064b6db21838d4aa0b25ed0bf04940ee3820741658cc6bf62e5ade08f41320df743ff13f99b2781da7b844e18deb1cfe25fe570f0e93f98ff03ca5d442e3 SHA512 cadcb4239c7f3aaab042592c5186770a225621e32f8583052fd3dbebb4a6d9b99be28f589b39b5ca36cb2d56fb3709e7d4ba91838ebb882e28e51280c02bbc40 DIST memoffset-0.9.1.crate 9032 BLAKE2B 0aab55fe084134bb599c52d77c96400db40949b1013e7037747ada4fcec8dc4a124b6f3755f04b36e057eb2fb4a6bd6f07d6eebcf166f8a71405ef434d802fbf SHA512 3a236c0f481e36973b9f805e454c2efe4dd375e6b4ee406b57145136c70d5fbf4e1183d563ebf3b5fbde7363bbf5f08f0d88e507aae5bda4cc75664ecd0e33aa DIST mime-0.3.17.crate 15712 BLAKE2B abb892b75b40657d356b6b53b9a45b2c822a05873453e919f2bbfeed9e5c06104f24db9cef2716f302198020870eaf96b2c62aff55cc11d8ca4f4f614d7c8e17 SHA512 e6d2ca92bb58fc747c1bb65a7f9023e5dbf4b94966003a72e4913bcaaeccdd6752725cdbd5081e0fd69d9e8f364d79664fcbe70061737d5c39e5b3e3a154a0d1 @@ -39,15 +41,21 @@ DIST ppv-lite86-0.2.17.crate 22242 BLAKE2B 48c4a31a3b555fa37072c4de083580bb76974 DIST proc-macro2-1.0.89.crate 49446 BLAKE2B 844c021394e7a2551bc179592a6769d672360150abf92debcb9ac60a94a2e426c48c408f06aeb2128686f5f04d66dc12973714670c21a5063ee6b9f3bae4e671 SHA512 488ab38a04df1d0330309382a7e4f667238cbc9b4d513da6a8f5718f8a762f76cc122af67fefe8f4b021a286b3d23e3ec83d781fe6ac823042a6daf14d147e2f DIST pyo3-0.23.3.crate 1073838 BLAKE2B 5e1ce6a5c5232ebf0399b1b969e737cca12f978f445efec9408ea80b8bc6ac1047125dbefa36149c8a904882d6a64dd24a9bd50f1e8de7afe3a3271e1a0f2d6f SHA512 c80377e8673de8b8e51e2423d102dbcc46605a783c13127215916d69fc600efd67ba5f9cca420cb6859124165ec97fde40eb0a0566d8b4b60708e20b8e6e9b6d DIST pyo3-0.23.4.crate 1087676 BLAKE2B 2c7d3530460ff687e8f60dcff0fb01465b2a4642043ebdfc927fc3824b9fbce9c4b304250808a85405d21df12d17a1d1ada7bdf8f3563710692f22223e2732f1 SHA512 0015aa75163ad0ec026d185e15c26f59aaad0eb3cc3044b146e5d703bb375fcd838df2044febbd52e6e129dfba81c8249329fc3e4805695274dac7a69eee0651 +DIST pyo3-0.23.5.crate 1088533 BLAKE2B 2efae0a42c1d33e25c5871e3f61a3cea9890d278a20e2777307752b544ab3a634059bba896a1df0df4eadd0ae3c2e63b6d637aecd6699b31fac4107e3a43a387 SHA512 efd3a86dd70c199304463c0ae18dbdf4d9176d1af13b664bdd05a1e218cffda3f29f06d868d0d852d51c3e85b7e07c39617206b3feddc913b3b622f3fcf59d5f DIST pyo3-build-config-0.23.3.crate 32509 BLAKE2B 9e77701712589dec4ad74b3d0e66ae82c7a01b6f29ed36231d999aaf909f80def59d17916e1900bfff10b1d36a0a48ed4bf9757c817eb6c6269549f3d04bd6d4 SHA512 db8b0aa86e96eeb30a8ab36a8a1ba917b7b9e6918c2193d7466841ef38e689908f7719a5390d35fb9a156aa6bd84348fa99ea8d5a784faf5c5cc4635d9a3fac9 DIST pyo3-build-config-0.23.4.crate 33885 BLAKE2B 7f95a8a9e08d413899ff1fa64af5a52783bad4a7b4db92835464f12bd8565f152497aaeb45d25cc91eed73950abeea30ca4c7495e3b15423ae588b97038beb18 SHA512 b11442609f43d9baab79daf083caf0366987f6ae182239814ad6df6fe4ad31b95132d74f1162fa9428d229bd8c18ef9b696a4c3329b3960fd705d1705fc5e973 +DIST pyo3-build-config-0.23.5.crate 33885 BLAKE2B 14e3897186abb772bcde147a9ebf2a70f5cbd634cb0240e1dbba71079acd2f9cd61fd263a5d32bc583e188ec84b6db8b93f018ab954ac9da66f423183ad5c176 SHA512 72aac032e3026554761eb81dc9c57591abc4d0c329c46918da13a8cc93c0532eba2fe3d971699a50890c66d8853b93a67840b0e8f1c15747d184b873dec2894a DIST pyo3-ffi-0.23.3.crate 74064 BLAKE2B ec3cc59e047f780041a05e2bf9fac9d65a6f8ccfb5a3e1c35d7c7918da6ded7e65676888a743d3b4d0fe7b0996e441b722c159eed67360c1e3c5b598160a46cc SHA512 fe4678d4cfe81f065554f0d454345f5f8fde927af1afec9212bb49a67be5080dcc9be84e088612208b7732d2283c2c9168a31b0b6fbd32496520d500e372e161 DIST pyo3-ffi-0.23.4.crate 74806 BLAKE2B 650784d46347c00f09c010c39e9762f778efc510ad0b99b5ddf30cab18edaba552207339ad44ed4ae6d87ddfcc56fa540a17e3a4cb331905a0988d5ba2dc682a SHA512 c12097292b4620f4fd98d61fde4a0f0c7d423a94d518fa5b1cf759089b066fede6d83e20171acc2aa7bf268de5700c9b59da32131216734626b0fa5cd5651801 +DIST pyo3-ffi-0.23.5.crate 74867 BLAKE2B 5c80f7ac77ee516a891c1cb367e27fa396e55a7504dc8f92312219a90860baba3861ca2e83a1410839b99b6b3beb4c068703b841e18ea1854f70d04fef7404bd SHA512 37c25b21acc3718eab842c04489b0c16c04d33a30fe7f3f58cd80943048203375d8788ce84153ba3720df695fc95bf9f7bccacfa02b0e669a5ddbfc44d65f86c DIST pyo3-log-0.12.0.crate 14630 BLAKE2B 0c22aff53a88b99bc3dca14c20ed7ee8f90bb0f955ff70e2c709dbd5947160a364a8c6f1e6cdd417f81cf58f8285b85d632c5b07c9497388f41f372f356ca934 SHA512 12a39a0ea2f85b5d8db8d325f913428364ec6e2a02cae83aaacbe013d3a70cac137ab8e916e1892badb7784c72b5d0aaa2634c7c8ac6f34f5fe778cd2e169c45 +DIST pyo3-log-0.12.1.crate 14908 BLAKE2B a6d5086df0b1b510b09c4a3e6f07f950509ef8a6bd42cae63c0c576add156a7288cfca9133cdea6e2179d77a91d2557e75177e5ffe0c19364070ddbdce698347 SHA512 34d0a00708384fcae5bdbed4a8831c3f2ff61b4e62c221e866e91bea15a82e66bc175b70600ff12ef3cf0f4896c0f3dac9c76b36a2c0faa624215e5acd3cf1c8 DIST pyo3-macros-0.23.3.crate 8085 BLAKE2B bf9ea45a8afe7c663da4f3f5c09c23039bbcf9a9ae350eac2b6581a227864d259b1e5c5ea36f9d6f302c26cd957bb4564562b98785eac49233515d7d54453fdf SHA512 23bfcff285db1276f2dcca9895f7672ec6e5aec118039e2cef3cabca0a85eb97f138391cea4da26eb887dff09c65947b165ca83392edcc8640cb283df2929901 DIST pyo3-macros-0.23.4.crate 8852 BLAKE2B ba5722fd52e47aa4dc2e89bacd69326bd98943a1670ebeab08a2e9e8070a0975ebbe928a0bce8b53a700b65294fee2b00d2a1e6623a0c48ac15902cdbfcb7a97 SHA512 c36c9005db5a4b48b5fda881130f4e7da8eef46e2c363c395ccca3fe476e0204d98c2a832cd03c787fb37a2664fadd42bf8f47de71eb44d055754ab5766af934 +DIST pyo3-macros-0.23.5.crate 8856 BLAKE2B 56e7dea9cc630e21f9e8aa43319db27f3d287baad4035bf8d921b2c8e737142e5a89decf6a04bcc095f97e035cfe4a5edd7091bba79dd68bc110b7420c29477b SHA512 bf9c12b02597cf6f119e92fe827016f393d13cfa21376811ab9bf8f49cbfd6447afe9dcbef564ad2b5b72db5338520c37c77429db8ee1ccb74de3944fc9fce7f DIST pyo3-macros-backend-0.23.3.crate 70098 BLAKE2B f8ee9c39f743960fc8093bfd53c043fca03b973192e1ab24b48066634e57ea7e74b3ba825ae72380e10569855eec9cb4f0d54f5f8c88dc60e67793257bef8d43 SHA512 9b22e975480f9afc2037587ba85889868a1b543069c2280c65f4cf98e5537708d098bb4885e881c1c9427740c8259988d82176b974900551a4e51097cefb8708 DIST pyo3-macros-backend-0.23.4.crate 70912 BLAKE2B a428c732f0b17d9a8f620d0e8d58469f2cba339c8a8307393ce252a7860808e5d50e6bbf711cafd0635c844f4b1d48e57db4dd99ef7b5e3d97d6f760164278e9 SHA512 2fe670fbf35724f489cc82f38d3f7c1e6aa15b087a2674b7a68b562572f9bb00cbb7746cccfcb62d0861a18f6d24c5739273c8302d1662a161142f4a6b532b6f +DIST pyo3-macros-backend-0.23.5.crate 70938 BLAKE2B 20d5b00edf806ff19de3e3a03d10a23a29b16d544faf2bb5781032e51c3e07cd7f1a979e00b9f1abca36bc7cf1546b702ee83f85d021d74ac819b8b13bf8d140 SHA512 5e9a971d98a7b70424bf93b1f7fb326564010562dd376789be2fa6b13b89c3d34f760eb61ed49f0b013bbdfff2658d874d24a8a0b65d8f82d10d8f34b8ef5b53 DIST pythonize-0.23.0.crate 16177 BLAKE2B 96c27ee7819b5aa27a493c11fbfde4174baf8c081634543f211a1270874a239973bf16788641837efafe0b09f85df6edf82da36818bfb37005fdbac5fbb1edc8 SHA512 25d395bbbfaad4c2d57599144e92c289eb96cd1e2c5306b8ec17048a406df3147b93b56785a03bec6aba6ea31789a21ec0cc519ed40177fb263a98757349fa63 DIST quote-1.0.36.crate 28507 BLAKE2B b93495163ed205e33543ed45f084870240d479071d643704b6e348fb9ada6e1d8401893c13348b9964f4b6b17ddb96cb5458eec540f0d761655fcb96a4cd9129 SHA512 f1f002a912692f7ffd4912ca980ec57ff4aca3a7d9e2e42e9e3409e2105c9f59d86c05719f6af309bccaef2f8843b0848a6e3afda3356e045d8e7cc5956ae685 DIST rand-0.8.5.crate 87113 BLAKE2B 516f26bb2a969d0d79e957818133f35d2c0b4d9f1b401098ea23c5b80d27599e842b9298c0c5e46e2a6cb6953857bf8a9fb71ec9366c5ce6708cf17df14f179c SHA512 8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2 @@ -61,11 +69,14 @@ DIST regex-automata-0.4.8.crate 617784 BLAKE2B 7535c79f6ddf1b1225e21171921594dcf DIST regex-syntax-0.8.5.crate 357541 BLAKE2B fc6d125f7a8574c37d81c75cbfd447cbcff736f2d9991b19814ffc1a414ebc5b76e84fb8fd36c983b38e8e391d165cdd9047832b0d9100f0e1ba7085484b7db5 SHA512 549d8d130fea9ec0d5806126f57f31d433f50e9328c5532ad417c44bb5488ec0d20acb0983dbe54dabaa0b453cbea4533cf7baac7144df119e8f78dfe55c5ab8 DIST ryu-1.0.18.crate 47713 BLAKE2B 409cdf4b4e77685394018371e91ad6fdb175ac57e1df9f902871f13208515e5a2ab1daa226fc1e7291278e64448332845be4cc9409bce3b2f3daed409259e104 SHA512 a9b2beac778ec47e6be303148d7512ee681bd2361f6e4ac6db32c8b4baf86a8c5eb5b0d02eacd6131ae88c7b5105c57018c3050676e0b3dd1ed9c4d2fd650e84 DIST serde-1.0.217.crate 79019 BLAKE2B a0aacff795d34583365ddd469fa14c58a6cccf8afbb248210aaff3134c7ce6e34b3d03f437326d7c01b3e78f82a5d19c37ed9fa4372970d8b2793f2889288e1c SHA512 f97b3b54b9e99c9a027390405cc054c3072f49c92803a4ed5f5f69e76a179deda9d77993b645b3581437085912d881da88d0451b9e0da423c64033a23fdd8054 +DIST serde-1.0.218.crate 78968 BLAKE2B af7f366a1aaaeb9b5f6f22e7398a30ea486aa3391ccab9a11435d45f7eba10796ce671556b771dbfd8b914563949c54b4a4f14fe447a549e879636339fa8f128 SHA512 35ffd8556287fa270beb90539c1641912d8fb233c53c4017f1f65a483b2dc340385458b9a869b7142b4d514bcc87c25e69c9370b3867e463be887bdebd19ead8 DIST serde_derive-1.0.217.crate 57749 BLAKE2B 63b4930122d80d64492ba2718630513012202e42bbaa74510729ee66a0e72b8a1ad123784b479697ba562db43868f4bddfdf5e94bb3d744cd68a547471ba40aa SHA512 31020f4533d04b31ae125580a3c5093fad36438d324e2d9b063923aa8c125c654102ae7fbc3b3df892bb41db6b321962a23e0a37950e080055d715d15b18af76 +DIST serde_derive-1.0.218.crate 57782 BLAKE2B b2244847b41f1aa396352bcea886d6a28d13ede23ae6ceb813143849cc107b3fe0cf054687d9f35bbb9db4e95c619422d9710532fcfffff291280cbe3649a433 SHA512 e89c076b0aa22ad74010f5b6a60397b9b78b59ca50a9660b29ceb1fd608cab820c47e787e450da306062c0cea1ade7142a7d4626a77aa0ae486096c130442cde DIST serde_json-1.0.134.crate 154351 BLAKE2B 546f8ffe9373444e8c9e81910476da281dcef10498dceabc8bec9f9063c55f4a9033b83586a09b0f410369515882c37712a2bd75ff1fff05815d904f37386124 SHA512 ab6323799bf19da8ec6e6c428370d37cd230192b45ef54d2c65c7d83907b2dde71d51650e44f1fcca1084e75e0e195e97b28437f53a331bf48effed3d59b58a5 DIST serde_json-1.0.135.crate 154499 BLAKE2B deeb22932145715d6a443b36b9b984b6ace1e254199db9586c48dcfdd270a3208ef127584431e19a826947df705de78f07e58d9126ee1c5ccd2bc73d1e779bd8 SHA512 e19c583aa4a55f1c3b9a4e49b8b5c6b66e91c893db06e52f33e87608be1ff0aa27996065157f45dd4d2c59b752259ae747b2d353fe7cd1d466f56cd8a97fe71d DIST serde_json-1.0.137.crate 154512 BLAKE2B 0f8f745b788e6aed3caa9be6bff3c191dff6a260ccd978627bd9266a3e66eabc145ddef0f4583dac5dace06fd052949980614b3a44a25c4e326c4460e9b29284 SHA512 25f2c1c31cf01212472f651625d9e4a1ea6bb31c79a74d85ab96dfb3ef4c052d3012a8ab8b6a261826afe90d891d35a2803b8459741d1e20ce8427807caec2a1 DIST serde_json-1.0.138.crate 154769 BLAKE2B 42f146a688dda70f3afad1a6ff989823f2e2cf4037c2a4d019b87155c7e37d86f649f2a54b373b787ac9021e42ac3be5fc27ea975b62e08865802afb993196bc SHA512 31678f1289301d65a088b305726c4fa6b5cd17b01527abc8dd7fc09720c98b2e86bebd5b20d7e9e7b7e41c42829db3a7e705172eca20d0c333e6c09131e1fe09 +DIST serde_json-1.0.139.crate 154839 BLAKE2B 5e04fb3ba8da9407e92ec450392cac99ad80a001e66bfee6eaf007d87465b07d0f9abc441968c13ec53f57ed8a687c32f8623a3aefdb433a418b1835ba14dabd SHA512 d90f4a02894b9c0f1d8d210af7639b0d6cb1929a159d1557ec220ce74d327c5d25fbdda6c5dfc2c00763ab3510a8ad11ce949b9cafac5b6d2203721aeaf3b5a0 DIST sha1-0.10.6.crate 13517 BLAKE2B 85ad8dcd237125945f6f9c2d7a48bc9802dfe8398a2bac86ddb96763486092fa18e80a2e69f89cfd6e95599d34d60ced33b26a68cbbe39bf158238a79433584b SHA512 fd37be7e3f1d4b6addd313a36b55215fb70abd21be7831b71de28bd3eb03b7352817d8a7b1a166df002c3a23eadc8224e49edd4a37556c0e5357565305d4128f DIST sha2-0.10.8.crate 26357 BLAKE2B 1d01b381223a931dc631ad3a1191f5378b1d2f3f9f20474c5f020e366624c73b08330ce8dc4bdd3e63b15f647276f533de655b545b77f70fbedc1a1846f44f0a SHA512 3be73133a6b7690e14acaead47914dc92395dca4191fb657a2ea186fefd0ccd94d12a1121d63a26027d9a9c62b775c53202473edc461587b9dcd75472af77785 DIST subtle-2.5.0.crate 13909 BLAKE2B 660c3a472ca54c9843ce3feea74b802e27fd7f62dd37a30e2a4ba82e4b3a71df63562e8865d5fc675d31d0900998a8730503f91a61450884446a3bdd6af0041b SHA512 f150b1e2037554f8cd3213a54ddbc258f8f670cc4f39e7084cdea4b47538dbc58b834bc93b443d58a4b9087224efc003234042aaf366687dbd32b1e7174082a0 @@ -74,6 +85,7 @@ DIST synapse-1.122.0.gh.tar.gz 8838124 BLAKE2B f954472c45efb6649318378b39779e491 DIST synapse-1.123.0.gh.tar.gz 8846158 BLAKE2B e7bfefe98f615617eba7a04f66555ed496368f2a4b9d28ce50b5a5f2ab13e8c08f16a0d3a025d9c29e075995fac7734ebb74d398f86f1db55bf0d3ca354c7558 SHA512 c22e3ddc4fc3157b0c9fb8d510523a9195907a8def4f69e7825f83eb6c809eb9402ae736a2785fe34d34160ac27bf1972f823ce3c8162f80c036133fc2886d43 DIST synapse-1.124.0.gh.tar.gz 8866869 BLAKE2B 441e371638673569073b019a30f421441f226e6564f8b893628b0a7428089b124b05c33bbeb71b70980480f1aae5085dca1836f6dbf174d4422293d8de0373c2 SHA512 3a26433032f63f8a3de3b669fa9439ea9983906bddc1c7c435523ceee3fc207c993c81b6b37c74c8fe1b5514ddd39b856750a65ba323b4b279f883c0c141f9a7 DIST synapse-1.125.0.gh.tar.gz 8871511 BLAKE2B ac11524fedb4664b0f873721115da1ebb9c8f08c48102c881c6315bee69bf573e60bc3dd74d0669eecc2db7a5da27a894bd6e4b1ab2b2ebcfdf81caa04e0255c SHA512 0a35e4a425b0a1ce2a33fab4aef49e551cd5163ce34d83125f84b059000eb3d185a43de3c689649c77ed2060e791e7a3961b68fd85b8f1ec9dd38245a1adb8c3 +DIST synapse-1.126.0.gh.tar.gz 8882168 BLAKE2B baf563c551720556eec25c70eecce2db77ddeaa925c7f36700e6045e871c8604f85846a7c8eaaeb26e40b2cbb40439d838bf751b8c9008971b25062c65cb8cd8 SHA512 c97d9110b800995413c97884002f70f08c095d063adbd6baf1b13065ed9c0768a8573105031104937fadb7c710eca58a81058a315785c2d787c75da66f3183a9 DIST target-lexicon-0.12.14.crate 25508 BLAKE2B 5ebb6b49e5c3b0057959557651287d4bf5ffe5b499340019ff64d5fc3b64e780e344982e358c94b1b25a20bf0f526a584aeecc704695b50a55cc268dd65edb97 SHA512 3410ecc0faf854f49c41c99f83972960e67065b1e0e78557a7c4996d996109bfd167d2121a019f5256f996c896cd45af032038ab7918fdcc6ee6311693ce951a DIST typenum-1.17.0.crate 42849 BLAKE2B a6d1162050679e2c4ab2467f3a77d301f6861882eb7c9749f31d047f383dd5bd2ed5846ad63eed99ccc04d6ac36cc697a305861e1d65880b4d2ef04ee0a79b94 SHA512 99773d5d9f850c0602db4bb67dd062b0ade6f086e155216f1bb2fb6569461ba7e1b7c2f2af81ea8833bc3bfcf3fe5033edecb7c438adae63f59d3e30cf63a508 DIST ulid-1.1.3.crate 11596 BLAKE2B a079fc34f5af9de89469d1edd5a53c1bc1a0f9bff8ce731c185345fe4067432a121efc6a04ac6cf377fd03c89558067e7d5d52c4b9dfd23e7055ce5af89e84b3 SHA512 a8f6ab3601417e7a46a763bb28722c3770fb0c2dea340c02a8e96d2e3597a304589745c65278c90bbc64f5153501a2a85321386669fda71ad7252ec67dd749df diff --git a/net-im/synapse/synapse-1.126.0.ebuild b/net-im/synapse/synapse-1.126.0.ebuild new file mode 100644 index 000000000000..429036ef2017 --- /dev/null +++ b/net-im/synapse/synapse-1.126.0.ebuild @@ -0,0 +1,242 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{9,10,11,12,13} ) + +CRATES=" + aho-corasick@1.1.3 + anyhow@1.0.96 + arc-swap@1.7.1 + autocfg@1.3.0 + base64@0.21.7 + bitflags@2.8.0 + blake2@0.10.6 + block-buffer@0.10.4 + bumpalo@3.16.0 + bytes@1.10.0 + cfg-if@1.0.0 + cpufeatures@0.2.12 + crypto-common@0.1.6 + digest@0.10.7 + fnv@1.0.7 + generic-array@0.14.7 + getrandom@0.3.1 + headers-core@0.3.0 + headers@0.4.0 + heck@0.5.0 + hex@0.4.3 + http@1.2.0 + httpdate@1.0.3 + indoc@2.0.5 + itoa@1.0.11 + js-sys@0.3.69 + lazy_static@1.5.0 + libc@0.2.154 + log@0.4.26 + memchr@2.7.2 + memoffset@0.9.1 + mime@0.3.17 + once_cell@1.19.0 + portable-atomic@1.6.0 + ppv-lite86@0.2.17 + proc-macro2@1.0.89 + pyo3-build-config@0.23.5 + pyo3-ffi@0.23.5 + pyo3-log@0.12.1 + pyo3-macros-backend@0.23.5 + pyo3-macros@0.23.5 + pyo3@0.23.5 + pythonize@0.23.0 + quote@1.0.36 + rand@0.9.0 + rand_chacha@0.9.0 + rand_core@0.9.0 + regex-automata@0.4.8 + regex-syntax@0.8.5 + regex@1.11.1 + ryu@1.0.18 + serde@1.0.218 + serde_derive@1.0.218 + serde_json@1.0.139 + sha1@0.10.6 + sha2@0.10.8 + subtle@2.5.0 + syn@2.0.85 + target-lexicon@0.12.14 + typenum@1.17.0 + ulid@1.2.0 + unicode-ident@1.0.12 + unindent@0.2.3 + version_check@0.9.4 + wasi@0.13.3+wasi-0.2.2 + wasm-bindgen-backend@0.2.92 + wasm-bindgen-macro-support@0.2.92 + wasm-bindgen-macro@0.2.92 + wasm-bindgen-shared@0.2.92 + wasm-bindgen@0.2.92 + web-time@1.1.0 + windows-targets@0.52.6 + windows_aarch64_gnullvm@0.52.6 + windows_aarch64_msvc@0.52.6 + windows_i686_gnu@0.52.6 + windows_i686_gnullvm@0.52.6 + windows_i686_msvc@0.52.6 + windows_x86_64_gnu@0.52.6 + windows_x86_64_gnullvm@0.52.6 + windows_x86_64_msvc@0.52.6 + wit-bindgen-rt@0.33.0 + zerocopy-derive@0.8.17 + zerocopy@0.8.17 +" + +inherit cargo distutils-r1 multiprocessing optfeature systemd + +DESCRIPTION="Reference implementation of Matrix homeserver" +HOMEPAGE=" + https://matrix.org/ + https://github.com/element-hq/synapse +" +SRC_URI=" + https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz + ${CARGO_CRATE_URIS} +" + +LICENSE="AGPL-3+" +# Dependent crate licenses +LICENSE+=" + Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 + || ( Apache-2.0 Boost-1.0 ) +" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64" +IUSE="postgres systemd test" +RESTRICT="!test? ( test )" + +RDEPEND=" + acct-user/synapse + acct-group/synapse + dev-python/attrs[${PYTHON_USEDEP}] + dev-python/bcrypt[${PYTHON_USEDEP}] + dev-python/bleach[${PYTHON_USEDEP}] + >=dev-python/canonicaljson-2[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/ijson[${PYTHON_USEDEP}] + dev-python/immutabledict[${PYTHON_USEDEP}] + >=dev-python/jinja2-3.0[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + >=dev-python/matrix-common-1.3.0[${PYTHON_USEDEP}] + dev-python/msgpack[${PYTHON_USEDEP}] + dev-python/netaddr[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/phonenumbers[${PYTHON_USEDEP}] + >=dev-python/pillow-10.0.1[${PYTHON_USEDEP},webp] + dev-python/prometheus-client[${PYTHON_USEDEP}] + dev-python/pyasn1-modules[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}] + dev-python/pydantic[${PYTHON_USEDEP}] + dev-python/pymacaroons[${PYTHON_USEDEP}] + dev-python/pyopenssl[${PYTHON_USEDEP}] + >=dev-python/python-multipart-0.0.12-r100[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/service-identity[${PYTHON_USEDEP}] + dev-python/signedjson[${PYTHON_USEDEP}] + dev-python/sortedcontainers[${PYTHON_USEDEP}] + dev-python/treq[${PYTHON_USEDEP}] + dev-python/twisted[${PYTHON_USEDEP}] + dev-python/typing-extensions[${PYTHON_USEDEP}] + dev-python/unpaddedbase64[${PYTHON_USEDEP}] + postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) + systemd? ( dev-python/python-systemd[${PYTHON_USEDEP}] ) +" +BDEPEND=" + acct-user/synapse + acct-group/synapse + dev-python/setuptools-rust[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/hiredis[${PYTHON_USEDEP}] + dev-python/idna[${PYTHON_USEDEP}] + dev-python/parameterized[${PYTHON_USEDEP}] + dev-python/pyicu[${PYTHON_USEDEP}] + dev-python/txredisapi[${PYTHON_USEDEP}] + postgres? ( dev-db/postgresql[server] ) + ) +" + +# Rust extension +QA_FLAGS_IGNORED="usr/lib/python3.*/site-packages/synapse/synapse_rust.abi3.so" + +PATCHES=( + "${FILESDIR}/${PN}-1.123.0-skip-recovery-test.patch" +) + +src_test() { + if use postgres; then + einfo "Preparing postgres test instance" + initdb --pgdata="${T}/pgsql" || die + pg_ctl --wait --pgdata="${T}/pgsql" start \ + --options="-h '' -k '${T}'" || die + createdb --host="${T}" synapse_test || die + + # See https://matrix-org.github.io/synapse/latest/development/contributing_guide.html#running-tests-under-postgresql + local -x SYNAPSE_POSTGRES=1 + local -x SYNAPSE_POSTGRES_HOST="${T}" + fi + + # This remove is necessary otherwise python is not able to locate + # synapse_rust.abi3.so. + rm -rf synapse || die + + nonfatal distutils-r1_src_test + local ret=${?} + + if use postgres; then + einfo "Stopping postgres test instance" + pg_ctl --wait --pgdata="${T}/pgsql" stop || die + fi + + [[ ${ret} -ne 0 ]] && die +} + +python_test() { + "${EPYTHON}" -m twisted.trial -j "$(makeopts_jobs)" tests +} + +src_install() { + distutils-r1_src_install + keepdir /var/{lib,log}/synapse /etc/synapse + fowners synapse:synapse /var/{lib,log}/synapse /etc/synapse + fperms 0750 /var/{lib,log}/synapse /etc/synapse + newinitd "${FILESDIR}/${PN}.initd-r1" "${PN}" + systemd_dounit "${FILESDIR}/synapse.service" +} + +pkg_postinst() { + optfeature "Improve user search for international display names" dev-python/pyicu + optfeature "Redis support" dev-python/txredisapi + optfeature "VoIP relaying on your homeserver with turn" net-im/coturn + + if [[ -z "${REPLACING_VERSIONS}" ]]; then + einfo + elog "In order to generate initial configuration run:" + elog "sudo -u synapse synapse_homeserver \\" + elog " --server-name matrix.domain.tld \\" + elog " --config-path /etc/synapse/homeserver.yaml \\" + elog " --generate-config \\" + elog " --data-directory /var/lib/synapse \\" + elog " --report-stats=no" + einfo + else + einfo + elog "Please refer to upgrade notes if any special steps are required" + elog "to upgrade from the version you currently have installed:" + elog + elog " https://github.com/element-hq/synapse/blob/develop/docs/upgrade.md" + einfo + fi +} diff --git a/net-p2p/retroshare/retroshare-0.6.7-r4.ebuild b/net-p2p/retroshare/retroshare-0.6.7-r4.ebuild index 25290d31d7e6..ac275bd8be30 100644 --- a/net-p2p/retroshare/retroshare-0.6.7-r4.ebuild +++ b/net-p2p/retroshare/retroshare-0.6.7-r4.ebuild @@ -45,7 +45,7 @@ RDEPEND=" plugins? ( media-libs/speex media-libs/speexdsp - media-video/ffmpeg-compat:4 + media-video/ffmpeg-compat:4= ) sqlcipher? ( dev-db/sqlcipher ) !sqlcipher? ( dev-db/sqlite:3 ) @@ -72,7 +72,7 @@ src_configure() { if use plugins; then ffmpeg_compat_setup 4 # hack: passes -L/usr/lib64 which messes with finding ffmpeg-compat - append-ldflags "-L$(ffmpeg_compat_get_prefix 4)/$(get_libdir)" + append-ldflags "-L${SYSROOT}$(ffmpeg_compat_get_prefix 4)/$(get_libdir)" fi local qconfigs=( diff --git a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.15-r1.ebuild b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.15-r1.ebuild new file mode 100644 index 000000000000..24d820039d6a --- /dev/null +++ b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.15-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="${PN}2-${PV}" + +DESCRIPTION="Epson Inkjet Printer Driver 2 (ESC/P-R) for Linux" +HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX" +SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/16/06/85/fddc1d5996d0cab4dceea35852a2e430fb124993/${MY_P}-1.tar.gz" +S="${WORKDIR}/${MY_P}" +LICENSE="EPSON LGPL-2.1+" +SLOT="2" +KEYWORDS="~amd64" + +QA_FLAGS_IGNORED="/usr/lib64/libescpr2.so.1.0.0" + +DEPEND="net-print/cups" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/gcc-no-implicit-function-declaration-$(ver_cut 1-2 ${PV}).patch" + "${FILESDIR}/${PN}-$(ver_cut 1-2 ${PV})-gcc15.patch" + "${FILESDIR}/${PN}-$(ver_cut 1-2 ${PV})-filter-func.patch" +) + +src_configure() { + econf \ + --with-cupsfilterdir="${EPREFIX}/usr/libexec/cups/filter"\ + --with-cupsppddir="${EPREFIX}/usr/share/ppd" +} + +src_install() { + default + + find "${ED}/usr/lib64" -name "*.la" -delete \ + || die "Removal of libtool files (.la) has failed." +} diff --git a/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.2-filter-func.patch b/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.2-filter-func.patch new file mode 100644 index 000000000000..b800f74531c0 --- /dev/null +++ b/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.2-filter-func.patch @@ -0,0 +1,11 @@ +--- a/src/filter.c 2025-03-11 13:42:50.136160524 -0400 ++++ b/src/filter.c 2025-03-11 13:43:06.210514768 -0400 +@@ -450,7 +450,7 @@ main (int argc, char *argv[]) + + debug_msg("call SendStartJob function\n"); + +- err = SendStartJob(FALSE); ++ err = SendStartJob(); + + if (err){ + debug_msg("Error occurred in \"SendStartJob\": %d\n", err); diff --git a/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.2-gcc15.patch b/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.2-gcc15.patch new file mode 100644 index 000000000000..076d444234a7 --- /dev/null +++ b/net-print/epson-inkjet-printer-escpr/files/epson-inkjet-printer-escpr-1.2-gcc15.patch @@ -0,0 +1,23 @@ +--- a/src/Makefile.in 2025-03-11 13:27:10.299747040 -0400 ++++ b/src/Makefile.in 2025-03-11 13:34:22.746707500 -0400 +@@ -319,7 +319,9 @@ AM_LDFLAGS = -lpthread -lm + cupsfilterdir = $(CUPS_FILTER_DIR) + ESCPR_LIB_DIR = ../escprlib + epson_escpr_wrapper2_CFLAGS = \ +- -Wall\ ++ -Wno-pointer-sign\ ++ -Wno-unused-result\ ++ -Wno-deprecated-declarations\ + -DCUPS_FILTER_NAME=\"epson-escpr2\" \ + -DCUPS_FILTER_PATH=\"$(CUPS_FILTER_DIR)\" \ + -DGCOMSW_PRIVATE +@@ -332,7 +334,8 @@ epson_escpr_wrapper2_SOURCES = \ + epson_escpr2_CFLAGS = \ + -I$(top_srcdir)/escprlib/include \ + -DGCOMSW_PRIVATE \ +- -DEPS_FILTER ++ -DEPS_FILTER\ ++ -Wno-unused-result + + epson_escpr2_SOURCES = \ + filter.c \ diff --git a/net-wireless/rtl-sdr-blog/rtl-sdr-blog-1.3.6.ebuild b/net-wireless/rtl-sdr-blog/rtl-sdr-blog-1.3.6-r1.ebuild index 35b727fd2a29..14938fcf684e 100644 --- a/net-wireless/rtl-sdr-blog/rtl-sdr-blog-1.3.6.ebuild +++ b/net-wireless/rtl-sdr-blog/rtl-sdr-blog-1.3.6-r1.ebuild @@ -14,8 +14,11 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="+zerocopy" -RDEPEND="virtual/libusb:1" -DEPEND="${RDEPEND}" +DEPEND="virtual/libusb:1" +RDEPEND=" + ${DEPEND} + !net-wireless/rtl-sdr +" PATCHES=( "${FILESDIR}/${PN}-1.3.6-disable-static.patch" diff --git a/net-wireless/rtl-sdr/rtl-sdr-2.0.1.ebuild b/net-wireless/rtl-sdr/rtl-sdr-2.0.1-r1.ebuild index be4305a53b0c..9dc6d39365a4 100644 --- a/net-wireless/rtl-sdr/rtl-sdr-2.0.1.ebuild +++ b/net-wireless/rtl-sdr/rtl-sdr-2.0.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,9 +12,9 @@ if [[ ${PV} == 9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://git.osmocom.org/${PN}" else - #COMMIT="142325a93c6ad70f851f43434acfdf75e12dfe03" - #SRC_URI="https://github.com/osmocom/rtl-sdr/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - #S="${WORKDIR}/${PN}-${COMMIT}" + # COMMIT="142325a93c6ad70f851f43434acfdf75e12dfe03" + # SRC_URI="https://github.com/osmocom/rtl-sdr/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + # S="${WORKDIR}/${PN}-${COMMIT}" SRC_URI="https://github.com/osmocom/rtl-sdr/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86" fi @@ -24,7 +24,10 @@ SLOT="0" IUSE="+zerocopy" DEPEND="virtual/libusb:1" -RDEPEND="${DEPEND}" +RDEPEND=" + ${DEPEND} + !net-wireless/rtl-sdr-blog +" PATCHES=( "${FILESDIR}"/rtl-sdl-0.6.0_p2020802-fix-pkgconfig-libdir.patch diff --git a/net-wireless/rtl-sdr/rtl-sdr-2.0.2.ebuild b/net-wireless/rtl-sdr/rtl-sdr-2.0.2-r1.ebuild index 846819c0a2da..521b9853c53c 100644 --- a/net-wireless/rtl-sdr/rtl-sdr-2.0.2.ebuild +++ b/net-wireless/rtl-sdr/rtl-sdr-2.0.2-r1.ebuild @@ -20,8 +20,11 @@ LICENSE="GPL-2+ GPL-3+" SLOT="0" IUSE="+zerocopy" -RDEPEND="virtual/libusb:1" -DEPEND="${RDEPEND}" +DEPEND="virtual/libusb:1" +RDEPEND=" + ${DEPEND} + !net-wireless/rtl-sdr-blog +" PATCHES=( "${FILESDIR}/${PN}-2.0.2-disable-static.patch" diff --git a/net-wireless/rtl-sdr/rtl-sdr-9999.ebuild b/net-wireless/rtl-sdr/rtl-sdr-9999.ebuild index 846819c0a2da..521b9853c53c 100644 --- a/net-wireless/rtl-sdr/rtl-sdr-9999.ebuild +++ b/net-wireless/rtl-sdr/rtl-sdr-9999.ebuild @@ -20,8 +20,11 @@ LICENSE="GPL-2+ GPL-3+" SLOT="0" IUSE="+zerocopy" -RDEPEND="virtual/libusb:1" -DEPEND="${RDEPEND}" +DEPEND="virtual/libusb:1" +RDEPEND=" + ${DEPEND} + !net-wireless/rtl-sdr-blog +" PATCHES=( "${FILESDIR}/${PN}-2.0.2-disable-static.patch" diff --git a/profiles/package.mask/00-gentoo b/profiles/package.mask/00-gentoo index b4309f537250..3f052bfe86dd 100644 --- a/profiles/package.mask/00-gentoo +++ b/profiles/package.mask/00-gentoo @@ -463,7 +463,6 @@ app-emulation/virtualbox-kvm # Alfredo Tupone <tupone@gentoo.org> (2024-06-09) # Not ready for testing ->=dev-lang/ocaml-5 dev-ml/sexplib0:0/0.17 dev-ml/ocaml_intrinsics:0/0.17 dev-ml/ocaml_intrinsics_kernel:0/0.17 diff --git a/sci-mathematics/coq/coq-8.17.1.ebuild b/sci-mathematics/coq/coq-8.17.1-r1.ebuild index f9f1b9c3cb76..0376c24fc404 100644 --- a/sci-mathematics/coq/coq-8.17.1.ebuild +++ b/sci-mathematics/coq/coq-8.17.1-r1.ebuild @@ -53,6 +53,7 @@ BDEPEND=" test? ( dev-ml/ounit2 ) + <dev-lang/ocaml-5 " CHECKREQS_DISK_BUILD="2G" diff --git a/sci-mathematics/coq/coq-8.19.2.ebuild b/sci-mathematics/coq/coq-8.19.2-r1.ebuild index b18c93f1bb56..9613fc3a4f84 100644 --- a/sci-mathematics/coq/coq-8.19.2.ebuild +++ b/sci-mathematics/coq/coq-8.19.2-r1.ebuild @@ -53,6 +53,7 @@ BDEPEND=" test? ( dev-ml/ounit2 ) + <dev-lang/ocaml-5 " CHECKREQS_DISK_BUILD="2G" diff --git a/sci-mathematics/coq/coq-8.20.0.ebuild b/sci-mathematics/coq/coq-8.20.0-r1.ebuild index 67166c74be15..1c69a8de9461 100644 --- a/sci-mathematics/coq/coq-8.20.0.ebuild +++ b/sci-mathematics/coq/coq-8.20.0-r1.ebuild @@ -57,6 +57,7 @@ BDEPEND=" test? ( dev-ml/ounit2 ) + <dev-lang/ocaml-5 " CHECKREQS_DISK_BUILD="2G" diff --git a/sec-keys/openpgp-keys-apache-tomcat/Manifest b/sec-keys/openpgp-keys-apache-tomcat/Manifest index dfb9efc7763b..9222161ffcf3 100644 --- a/sec-keys/openpgp-keys-apache-tomcat/Manifest +++ b/sec-keys/openpgp-keys-apache-tomcat/Manifest @@ -1,9 +1,9 @@ -DIST openpgp-keys-apache-tomcat-10.1.34-KEYS.asc 35385 BLAKE2B 1c2bba42759f901fef1cda1871c706cd5f960de4120de62361853b7e6cade3c205852215e8562e066ca675506bf1a8d424fb588dfd856cdc99bca5bcc575be06 SHA512 43d3c06e6eb776b939864a092161f70759e6f095b9b2bb7f00172cb6dca890fb88dff6f646863b882226ac490ad8082c03a84f93dfe917e7b9aab378f54612ce DIST openpgp-keys-apache-tomcat-10.1.35-KEYS.asc 35385 BLAKE2B 1c2bba42759f901fef1cda1871c706cd5f960de4120de62361853b7e6cade3c205852215e8562e066ca675506bf1a8d424fb588dfd856cdc99bca5bcc575be06 SHA512 43d3c06e6eb776b939864a092161f70759e6f095b9b2bb7f00172cb6dca890fb88dff6f646863b882226ac490ad8082c03a84f93dfe917e7b9aab378f54612ce DIST openpgp-keys-apache-tomcat-10.1.36-KEYS.asc 35385 BLAKE2B 1c2bba42759f901fef1cda1871c706cd5f960de4120de62361853b7e6cade3c205852215e8562e066ca675506bf1a8d424fb588dfd856cdc99bca5bcc575be06 SHA512 43d3c06e6eb776b939864a092161f70759e6f095b9b2bb7f00172cb6dca890fb88dff6f646863b882226ac490ad8082c03a84f93dfe917e7b9aab378f54612ce -DIST openpgp-keys-apache-tomcat-11.0.2-KEYS.asc 36169 BLAKE2B 6e29022080dc7cc4e3c9af841ab9274ba8cc983f5cd663699d1c7b29c0d12b6c8e778bac6aa59a1ba9b90d9ff00781e3f715741e27f5b37b1b1e9c87fe4c20fb SHA512 f953bea7820e203608dbe2483d3cee0c082352c7ef86627acc37db3bbef3699b72c5709ce5cbe4ec24379fc7a9b648aa3f31bb7c98847105acb56a283b331239 +DIST openpgp-keys-apache-tomcat-10.1.39-KEYS.asc 35385 BLAKE2B 1c2bba42759f901fef1cda1871c706cd5f960de4120de62361853b7e6cade3c205852215e8562e066ca675506bf1a8d424fb588dfd856cdc99bca5bcc575be06 SHA512 43d3c06e6eb776b939864a092161f70759e6f095b9b2bb7f00172cb6dca890fb88dff6f646863b882226ac490ad8082c03a84f93dfe917e7b9aab378f54612ce DIST openpgp-keys-apache-tomcat-11.0.3-KEYS.asc 36169 BLAKE2B 6e29022080dc7cc4e3c9af841ab9274ba8cc983f5cd663699d1c7b29c0d12b6c8e778bac6aa59a1ba9b90d9ff00781e3f715741e27f5b37b1b1e9c87fe4c20fb SHA512 f953bea7820e203608dbe2483d3cee0c082352c7ef86627acc37db3bbef3699b72c5709ce5cbe4ec24379fc7a9b648aa3f31bb7c98847105acb56a283b331239 DIST openpgp-keys-apache-tomcat-11.0.4-KEYS.asc 36169 BLAKE2B 6e29022080dc7cc4e3c9af841ab9274ba8cc983f5cd663699d1c7b29c0d12b6c8e778bac6aa59a1ba9b90d9ff00781e3f715741e27f5b37b1b1e9c87fe4c20fb SHA512 f953bea7820e203608dbe2483d3cee0c082352c7ef86627acc37db3bbef3699b72c5709ce5cbe4ec24379fc7a9b648aa3f31bb7c98847105acb56a283b331239 +DIST openpgp-keys-apache-tomcat-11.0.5-KEYS.asc 36169 BLAKE2B 6e29022080dc7cc4e3c9af841ab9274ba8cc983f5cd663699d1c7b29c0d12b6c8e778bac6aa59a1ba9b90d9ff00781e3f715741e27f5b37b1b1e9c87fe4c20fb SHA512 f953bea7820e203608dbe2483d3cee0c082352c7ef86627acc37db3bbef3699b72c5709ce5cbe4ec24379fc7a9b648aa3f31bb7c98847105acb56a283b331239 DIST openpgp-keys-apache-tomcat-9.0.100-KEYS.asc 14008 BLAKE2B 62f0f6bf0d89a3930df668c039c69c4b2648128079a4d420f4f0c8a1b4c228ca5c631f3d2f66745a7c4d8c85e98609dc4119bc224306d972f65ab432385a1231 SHA512 51ad85d42824d22ace66ce2eeee62df598d55efe11caad7f6e5c9d09377a80431013711a0243fb0dc1f7a4bf3aa24ed77024a311aa77277743b784e3ef6a946e -DIST openpgp-keys-apache-tomcat-9.0.98-KEYS.asc 14008 BLAKE2B 62f0f6bf0d89a3930df668c039c69c4b2648128079a4d420f4f0c8a1b4c228ca5c631f3d2f66745a7c4d8c85e98609dc4119bc224306d972f65ab432385a1231 SHA512 51ad85d42824d22ace66ce2eeee62df598d55efe11caad7f6e5c9d09377a80431013711a0243fb0dc1f7a4bf3aa24ed77024a311aa77277743b784e3ef6a946e +DIST openpgp-keys-apache-tomcat-9.0.102-KEYS.asc 14008 BLAKE2B 62f0f6bf0d89a3930df668c039c69c4b2648128079a4d420f4f0c8a1b4c228ca5c631f3d2f66745a7c4d8c85e98609dc4119bc224306d972f65ab432385a1231 SHA512 51ad85d42824d22ace66ce2eeee62df598d55efe11caad7f6e5c9d09377a80431013711a0243fb0dc1f7a4bf3aa24ed77024a311aa77277743b784e3ef6a946e DIST openpgp-keys-apache-tomcat-9.0.99-KEYS.asc 14008 BLAKE2B 62f0f6bf0d89a3930df668c039c69c4b2648128079a4d420f4f0c8a1b4c228ca5c631f3d2f66745a7c4d8c85e98609dc4119bc224306d972f65ab432385a1231 SHA512 51ad85d42824d22ace66ce2eeee62df598d55efe11caad7f6e5c9d09377a80431013711a0243fb0dc1f7a4bf3aa24ed77024a311aa77277743b784e3ef6a946e diff --git a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-10.1.34.ebuild b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-10.1.39.ebuild index 80f6919d4e75..cd18411af866 100644 --- a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-10.1.34.ebuild +++ b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-10.1.39.ebuild @@ -10,7 +10,7 @@ S="${WORKDIR}" LICENSE="public-domain" SLOT="${PV}" -KEYWORDS="amd64 arm64" +KEYWORDS="amd64 ~arm64" src_install() { local files=( ${A} ) diff --git a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-11.0.2.ebuild b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-11.0.5.ebuild index 8817ad6e1ff2..f713a31845c4 100644 --- a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-11.0.2.ebuild +++ b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-11.0.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -10,7 +10,7 @@ S="${WORKDIR}" LICENSE="public-domain" SLOT="${PV}" -KEYWORDS="amd64 arm64" +KEYWORDS="amd64 ~arm64" src_install() { local files=( ${A} ) diff --git a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-9.0.98.ebuild b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-9.0.102.ebuild index 886ffa16d842..02ec7f5e907d 100644 --- a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-9.0.98.ebuild +++ b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-9.0.102.ebuild @@ -10,7 +10,7 @@ S="${WORKDIR}" LICENSE="public-domain" SLOT="${PV}" -KEYWORDS="amd64 arm64" +KEYWORDS="amd64 ~arm64" src_install() { local files=( ${A} ) diff --git a/sys-apps/hexyl/Manifest b/sys-apps/hexyl/Manifest index efc784cd46fc..bdb5f41b3b71 100644 --- a/sys-apps/hexyl/Manifest +++ b/sys-apps/hexyl/Manifest @@ -22,7 +22,7 @@ DIST doc-comment-0.3.3.crate 4123 BLAKE2B a82d1c1a7a90af6e111b5e684a1298d7eac5fd DIST errno-0.3.9.crate 10690 BLAKE2B 8deb19cf0c830ff2adebb733ab961558cb4463f256604f9c76d5c5952f34a79b70dce47e28f68f459977ef34d4821ab5d0f7e79a7a110693700f80b49ba56651 SHA512 777fbac5730d420d58275ef63b7579997d8e6c72106d483ee1e3b1f1ce3977f1f66c56870a05acaa4cfacacb820eaf963e9c763748759cff3668fa2e6f89f04a DIST float-cmp-0.9.0.crate 10102 BLAKE2B 46bce5f7e838a947bbbdd22b085435e795b67fd23479780f65bf1586a70e7a35f04f9af086be98bff24e2583eeac7c9688727a2ddbd1ce978526dc01abf67dfd SHA512 f8dad12ecf8a278769054fd78794999dae8dedbcfde5e77bdf6cea12fdeaadeeb2f1f3ca62df9aadc1bc3f61457236c4854d6d6923ad6d03ae7f23af600572e8 DIST heck-0.5.0.crate 11517 BLAKE2B 5365ec43b2239a76b33a174f1a4292ece4147f9d382a68c6c60db78fdc8bad0afb1d51a65bcb25e96675372faa4ea37c318265030b0546ba51942f7c929e1835 SHA512 f044fc9c3d22466629fd8f772ec0555350fd611c0cfadca51d99a3d2f10e155f77c1091916c8a95a6b9b499f366c2e99a5fbf45b010f988bfb9b2501bf9f6a76 -DIST hexyl-0.16.0.tar.gz 42826 BLAKE2B e98a7a53c7d8c0a4f9164047de6168ab6d77ca33ecd3f93f0dc14ce1e5b2430cbf5ca713ca44ede39bbcd2c7b3b53b090d40e1f7efc56d9a1c1f4013a1cb05a7 SHA512 2b345a5cf3414bae90e9d6a0daa6e0516f4e8cd61dc3c18042ba110b470335a6847e9943fd7402ab46a3d75d5adb407767a66d9bc7203dc10b80f8e0834cbfa1 +DIST hexyl-0.16.0.crate 42892 BLAKE2B a86a4d324e7bfdc1abc84596b6078ce6d0460399c6d625b8b20b35ef5101d8ae1845951b98d026ea786c5789a8efb1988f884d4a9862c0ef2873f7f917901433 SHA512 7b1b237474cf925bbacd3b0a362f9aa7e325c0d9dc91df888aafe812039b404822d83463789c3ca4d011dd2a17357974a032f680d938fa1874b00a975d939c4a DIST is_ci-1.2.0.crate 4521 BLAKE2B 59591545c2da2052629c97e345b1ed1f0f621d5a3a158e0456b0a8711011160f01b01f4ca91e12f807d2e74dc127dd2a9be7ba9b1c9ee458ceea590cf8feec2e SHA512 0479117be842723810ae7f641e5e4b5daaa5543655de50c8e465ee600803be78901f0c0893a4953b5ff0b438216aecb479b9e40aa2c78da0655249f127edf2eb DIST is_terminal_polyfill-1.70.1.crate 7492 BLAKE2B fa663f858ab8e5fd56202d731b572bfdd4ab0e8262100424e27360a9ffd2820182bc57d6718a305ef82d04c3798111841c0d9f9dcfe219765c0f63edb560dc1e SHA512 4730fa09401cb4e69c92b38b2b43afd74699c61f5bd7b37605efbc0c08ca7a1318d43e4a844e46e0f84f83f42432f01e33771be2b18eb5977702ab9f894837e1 DIST libc-0.2.161.crate 765389 BLAKE2B 4880efbc347e0b92faa893993f37c486a69afd1a3c741cfb9d3a2d3c87fd56e49788f8aeac17baca217f4ceee9180097386ef481f4e142942802f27983f8e6fa SHA512 264d7a872c10484b9cb19ee858c2ac44bf165297653fbc6220672bd2e0ba10913408130f21d370d2861eef529f9ecafece66515b47b4461d56e6b02f55ea2be8 diff --git a/sys-apps/hexyl/hexyl-0.16.0.ebuild b/sys-apps/hexyl/hexyl-0.16.0.ebuild index 47f8d7978917..8a91888541c9 100644 --- a/sys-apps/hexyl/hexyl-0.16.0.ebuild +++ b/sys-apps/hexyl/hexyl-0.16.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2025 Gentoo Authors +# Copyright 2017-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,10 +6,10 @@ EAPI=8 CRATES=" aho-corasick@1.1.3 anstream@0.6.17 + anstyle@1.0.9 anstyle-parse@0.2.6 anstyle-query@1.1.2 anstyle-wincon@3.0.6 - anstyle@1.0.9 anyhow@1.0.91 assert_cmd@2.0.16 autocfg@1.4.0 @@ -36,15 +36,15 @@ CRATES=" normalize-line-endings@0.3.0 num-traits@0.2.19 owo-colors@4.1.0 + predicates@3.1.2 predicates-core@1.0.8 predicates-tree@1.0.11 - predicates@3.1.2 pretty_assertions@1.4.1 proc-macro2@1.0.89 quote@1.0.37 + regex@1.11.1 regex-automata@0.4.8 regex-syntax@0.8.5 - regex@1.11.1 rustix@0.38.38 serde@1.0.214 serde_derive@1.0.214 @@ -53,8 +53,8 @@ CRATES=" syn@2.0.85 terminal_size@0.4.0 termtree@0.4.1 - thiserror-impl@1.0.65 thiserror@1.0.65 + thiserror-impl@1.0.65 unicode-ident@1.0.13 unicode-xid@0.2.6 utf8parse@0.2.2 @@ -71,26 +71,35 @@ CRATES=" windows_x86_64_gnullvm@0.52.6 windows_x86_64_msvc@0.52.6 yansi@1.0.1 + ${PN}@${PV} " inherit cargo DESCRIPTION="A command-line hex viewer" HOMEPAGE="https://github.com/sharkdp/hexyl" -SRC_URI=" - https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz - ${CARGO_CRATE_URIS} -" +SRC_URI="${CARGO_CRATE_URIS}" LICENSE="|| ( Apache-2.0 MIT )" # Dependent crate licenses LICENSE+=" Apache-2.0 ISC MIT Unicode-DFS-2016 ZLIB" SLOT="0" KEYWORDS="~amd64" +IUSE="man" + +BDEPEND=" + man? ( virtual/pandoc ) +" -DOCS=( README.md CHANGELOG.md ) +src_compile() { + cargo_src_compile + + use man && pandoc -s -f markdown -t man -o "doc/${PN}.1" "doc/${PN}.1.md" +} src_install() { cargo_src_install + einstalldocs + use man && doman doc/${PN}.1 } diff --git a/sys-apps/hexyl/metadata.xml b/sys-apps/hexyl/metadata.xml index 24ccbb8a7ce2..1bd26735cdca 100644 --- a/sys-apps/hexyl/metadata.xml +++ b/sys-apps/hexyl/metadata.xml @@ -2,9 +2,9 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>thomas@binaryden.de</email> - <name>Thomas Kemmer</name> + <email>Wuzy01@qq.com</email> + <name>Wu, Zhenyu</name> </maintainer> - <origin>binaryden-overlay</origin> + <origin>gentoo-guru-overlay</origin> </pkgmetadata>
\ No newline at end of file diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index a5c6bfae84fd..ef15d048ca8b 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -11,9 +11,6 @@ DIST genpatches-5.15-188.extras.tar.xz 4056 BLAKE2B c24f9df1b68911333ba3fe7d63e6 DIST genpatches-6.1-128.base.tar.xz 6459108 BLAKE2B f27a537be69a26717ac1e251d7530b97f5f4498a088d80cfccc343b4d50bc7404e59ae9285bc06e4991e166121d52b8a84054ef8b8f707f242626a49ac202a5b SHA512 53277c695af046fd4f8c6362141317270022a4c18764b3563b47375f08f775644dec0929086108c5ddb1f8de8bdf8bdc244084fe0ea4a93fad1677013ea1c42c DIST genpatches-6.1-128.experimental.tar.xz 17452 BLAKE2B 80db4f58546c2f93c834711bcce23e91151160f106dbee42136b071093296a2f4f62d7bbc724d29148a68802fb63276d53359da05b6e646ce7ed3ff8977b15ed SHA512 71f2e7e67fe389a47af07884fce18443321a3282412a0d09b2deb42838f03108c2147a1dd4592e3062ddd202df3a9ae632e52cebc15ede012a67625a81272059 DIST genpatches-6.1-128.extras.tar.xz 4060 BLAKE2B a4f0e9f0b87dfaad00ff0b702b85c6e78c9543bd45887d6f8c550e487f60c744b2912374e972f1bdcff8de6a434d09dd0550579171764afd9a5c741a4468d743 SHA512 b20dfc8580a640d0c9ea07b7b21b38e9632df4705b3a5ae9cfd7d7cad0554b3159ca6cea91280e2a6232d2a2e26bc485bc23616c23e24bb87c5dcd60f8325558 -DIST genpatches-6.1-138.base.tar.xz 6804336 BLAKE2B 31d8912c815d4560b35bdaa4fc46597d641c63b693123ee34678c6f9e89a808e3d0ff90c762d601d2caaebd6194083cbf55ea34bf8df68157fb51cf9d603b766 SHA512 f72c533a8afdd81a17fdc27d3b5d7323447c81d70a1295ca1aa949cb1c5a469a1dd84fdf97f81cb2ab762fe6ae09716f3430da13378e4dc08d4511c6dfa81116 -DIST genpatches-6.1-138.experimental.tar.xz 17716 BLAKE2B 6e21c8426f96a4fe78e6a3538ea7f0060fa6b1bebbd905f3770422938717ff94ccd7c3650633c5e7bcacc6e8b12c7afd1e3cc908e6ff0e1185bc4ce18b0de418 SHA512 4c7dcc774d4f05c7d6687eb6b34cc1377fca96f38ea5962a07e41f8cdd1ea2140c8ac94f182f0004cf7aa094b0f2c64ab2f0332ea49469369609319f26d47a41 -DIST genpatches-6.1-138.extras.tar.xz 4056 BLAKE2B a9205e4748d7892920c7428cd80bc8b4e8a8b86467dc8771b427b941c882af4de55b2d3c6450410a26ddbc0dd2e4df9a912025389379b0f02a20e7b0f2c99020 SHA512 50c042432612985dbdd7802004471f58bb7a5308b362df0ef903262214c116342817abdba2cef6b1f4f3ed281c62b50c19d4d0c0b43eae148a0ae870ff812460 DIST genpatches-6.1-139.base.tar.xz 6935336 BLAKE2B 30d7dd358ce4588cb948cff480a33fde127c0fd234da3cdae2a34640f33aa4275e53cbebf10f5b80d69e59965245a77919dcbbbe61d541b37da5699e3adb700e SHA512 0693dfbd329dcc525a7565cf238b8f93bcd61c0242e7c05f6870f782f9efff2b0c79da4cf1514058fd76e7dffb6640b04506aa5753f1539cd62e7aaeaabf7304 DIST genpatches-6.1-139.experimental.tar.xz 17724 BLAKE2B 235bc1b59f92ba935be1dcc582ff5819e93cd690b31baff80f7f853e5d790592d3bff271ba12501d83417fca557af7ff8a73641e715b0bb37e4938a116d68c28 SHA512 f6e7d55e1e204d0788dd34fcfd3697a9669657b4e61575e50f1a53fc7818665a1105433cf2a3f85c576fd069addfe4b37242286feeb6f3f0fb7728e2250939c2 DIST genpatches-6.1-139.extras.tar.xz 4056 BLAKE2B aa22b3363e11a53ee35d0d4ec3e95b3bac0326a6931bf0a260219da44b50f7ea8da69c4525d0c96e24fed013a8fb9f8fbf0471ef446afb55ffff13b4c7f7cb26 SHA512 473d93d7065dfe9223493df37a04b1d1a6be9707e05501868341e6058604b96fa697198978214ce8e8f70e5ad4f54dda4e9241639c48001540901120ffb3d7ac @@ -44,9 +41,6 @@ DIST genpatches-6.6-70.extras.tar.xz 4060 BLAKE2B 65cc5e2a27894992dd78d6cbfe5601 DIST genpatches-6.6-88.base.tar.xz 4497952 BLAKE2B 65f393c767bd4edda1954fc15c90e07f5d5a67a445fe24063a94f7eeea23196bc0da417514a4048bd91b5cd330a309e69df4653846be0e0207abc649efa7f072 SHA512 16e5cc40edfe8edd95dad7e28f89b9593ee24fd380444ff67376bc95f71c71cb13b9a0ace7562ae7275c2acd405419534b8ffd66ee78a81897970b4c43f203ee DIST genpatches-6.6-88.experimental.tar.xz 6048 BLAKE2B 96b5565ca479bd73fa7c04d5f916cb2c5b2d10dbd5c33a6984822a6eafe149d43127bcf0f8c26435178c927c80eabf38e54e6b87c809cc37342c9e1f398f80c2 SHA512 51c63e1b48262aad4f3e676ce3988bf01eb4581a6bdbfce90fc6634f8546a56ddf79b58209906769dd04feb6df65a5e86034d806b0dc0bfdf2c02480db2df762 DIST genpatches-6.6-88.extras.tar.xz 4056 BLAKE2B 9dce8d9362ca0e3548e31392659afb0b475eb0ee03bb71c51cac40411f35ba8ffe519c3e8438a05dfd140a8032321b8936df4f48cc8eb87f8fd6ce0635249da6 SHA512 02e4cd170b09901dc9bf2655065a8eb44e2330375fbbb2c3aa81d3f8c2bf6854403b4d7b412fa3d6bb377ec3e39f5091355a0b649f6a69282123e3d710464845 -DIST genpatches-6.6-89.base.tar.xz 4537568 BLAKE2B 9778c7c5767689142745d1d3d18dba49cbbdee9ed4baf64553c76acc962c8edd2a5b1e23c39c39c5e6b3988dd410b480359f7630aadc2983c9128fd28960d419 SHA512 c33a6996dd54955bbe3a63fa1bf8536dfc8e96a8ef0c00a4bb12feb3d2d0a251744ce15efcbf7c756af564528c66406df02e30008259398bdea959d06e79c9fd -DIST genpatches-6.6-89.experimental.tar.xz 6052 BLAKE2B 1439cbb9038a80eb18d911329a0bf24847a666e63e1f5726b4b4ded3de931d399319b315440261e43ed60f8fdf6e1d64324da45646b4bd515a2b14024fb08177 SHA512 a6584118f27a73e158a639a8965de66912dfc42d3ce0fa2004fed57642c7895c95f857b2e3d614d2d563118ca37b133ed354b7d56ee92a4c95eda3aa26bd710d -DIST genpatches-6.6-89.extras.tar.xz 4056 BLAKE2B 4b99db4ff4597f9e5298dd9399d266284d685b09c6ca40461f547781f2e90c339332ce681b10827dc06eb7eb437ee929782f8894ba5148c8bbd1cc1bd59e86ac SHA512 261266e9f0287a0e92b047a6f829cde05d7226c1e4b4a1952bf46c565385f34879ded18d43bdd83a4233d08bcfabd9f8c9fdb86b4dd8c43e2de88719bb1734fb DIST genpatches-6.6-90.base.tar.xz 4599636 BLAKE2B b2edd0cbe2165fd57f89e2677cd705a89223a5a2960a2963d3e5023dd244f6e3c5fc57eabf22310ea8b7bcc19f8a18d4264c464b3b3309a921903b7ed0743a3b SHA512 3e857ef3240e19263609603b145f7407777a75c4e747556c1756076cf4c88a07b83531679de65e783f35bd7dbf883b3a284092a7e12c983bb3a5cecadf43f7be DIST genpatches-6.6-90.experimental.tar.xz 6048 BLAKE2B 33186cd58a987774bb3b7b3e3f89c4436bfac6aacb939ceaaab5274f76bf68bd37d891bb6ed87a0553106ba40bb94a06cdbc15aafc2689512f8da66fc1f94c06 SHA512 196d2aeebc99bed2a7f7f6711b3abfb009ff80307c34a183e9b115c5d375bc098f71a9cfb291961b1c0b9664c44d21a06069c6db6692b96b8ad25c43a305d2c2 DIST genpatches-6.6-90.extras.tar.xz 4056 BLAKE2B 7340bb8da2740eb61379ef3e4b41833222bf03cf77b43af7783165c4bb1cd62933f7a79d8f206192498c16a5b44152c59f6301a9db3b211d1e8d40747ccfd5f1 SHA512 a96b38962664b6c21afb64e764d17720d52b04ad4e17c1d9862ed136ce93c272e593dad46a30c532784a2eabfc90519614ccf1cf27bf6480a70b2443668a8d05 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.1.128.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.1.128.ebuild deleted file mode 100644 index d556921fa55f..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.1.128.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="138" - -inherit kernel-2 -detect_version -detect_arch - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="experimental" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.6.80.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.6.80.ebuild deleted file mode 100644 index 362aad7bda3a..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-6.6.80.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="89" - -inherit kernel-2 -detect_version -detect_arch - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="experimental" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/linux-firmware/Manifest b/sys-kernel/linux-firmware/Manifest index bba88c3bf82a..661c4a7fb1b9 100644 --- a/sys-kernel/linux-firmware/Manifest +++ b/sys-kernel/linux-firmware/Manifest @@ -1,3 +1,4 @@ DIST linux-firmware-20241210.tar.xz 411440732 BLAKE2B 64e02e1c61bddb154f1434c4ee52de3f990730ad7125620f042b9706d1a721feb950b66a0f8d71606d5cba3c0e665c43b8c29e05e84227b7fdaba62b405ec59c SHA512 852e63a936fb324033d819ff14084787a1ac9af8682487cddea889e85e69b3297e262ebc9a1fe029c2ece4e010bfc067b3c8f7f87cd440b6334975f0d81d1226 DIST linux-firmware-20250109.tar.xz 411464912 BLAKE2B c23ed6d5e0b8ff80666e2c7f3727b991a51dae251778e9ee6e2ab23f45996fbc75d724fbe148d39a180d50384034a01f538daa2abb4f4f5939a7e9773a684240 SHA512 d7bc9d19e1c03ec75d62903f3c6e79947a10aea61aec8958dfea44cfbeb6fec73f2db41e750cf007a7e937380c5956ed919ae24b8a0a92df87b1d4c57464809d DIST linux-firmware-20250211.tar.xz 431514160 BLAKE2B 65531857e4225dca6f8acbc84f539b2f44c8aac3f0949ee1c6b54596c1232738ee0a98ca5025e0b6fe60862fe2d7d20b708854f917d2da9b708a7a5d6f41ab6b SHA512 84c49837ef50d3b43fa0b5c9835c115dfa17dca62706d0e81bf17d640a26a42abfa2e5575683191474042be22d7613fb3f7f1710e72bea340a49d6cc2fc4892a +DIST linux-firmware-20250311.tar.xz 434375512 BLAKE2B a12d42dcea9ec2b7e220ab4da6592cabf77095b41f2b0138626e71c62fa7e311da6efca24e3616a811b3489c23e21fe13684a2b93c0ff746f67e50b097f3f42e SHA512 4686c398a712e4f3fb61e07791fafc9950ed0da71f1db78ebe8ac2dc0b031d19ad64a7e98b8b643c20ef99f195db5a3ca337b762b43c631b99b599fb90892a48 diff --git a/sys-kernel/linux-firmware/linux-firmware-20250311.ebuild b/sys-kernel/linux-firmware/linux-firmware-20250311.ebuild new file mode 100644 index 000000000000..652c093dd8c7 --- /dev/null +++ b/sys-kernel/linux-firmware/linux-firmware-20250311.ebuild @@ -0,0 +1,402 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9,10,11,12,13} ) +inherit dist-kernel-utils eapi9-ver linux-info mount-boot python-any-r1 savedconfig + +# In case this is a real snapshot, fill in commit below. +# For normal, tagged releases, leave blank +MY_COMMIT="" + +if [[ ${PV} == 99999999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" +else + if [[ -n "${MY_COMMIT}" ]]; then + SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${MY_COMMIT}" + else + SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz" + fi + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +DESCRIPTION="Linux firmware files" +HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git" + +LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) + redistributable? ( linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT ) + unknown-license? ( all-rights-reserved )" +SLOT="0" +IUSE="bindist compress-xz compress-zstd deduplicate dist-kernel +initramfs +redistributable unknown-license" +REQUIRED_USE="initramfs? ( redistributable ) + ?? ( compress-xz compress-zstd ) + savedconfig? ( !deduplicate )" + +RESTRICT="binchecks strip test + !bindist? ( bindist ) + unknown-license? ( bindist )" + +BDEPEND="initramfs? ( app-alternatives/cpio ) + compress-xz? ( app-arch/xz-utils ) + compress-zstd? ( app-arch/zstd ) + deduplicate? ( app-misc/rdfind ) + ${PYTHON_DEPS}" + +#add anything else that collides to this +RDEPEND="!savedconfig? ( + redistributable? ( + !sys-firmware/alsa-firmware[alsa_cards_ca0132] + !sys-block/qla-fc-firmware + !sys-firmware/raspberrypi-wifi-ucode + ) + unknown-license? ( + !sys-firmware/alsa-firmware[alsa_cards_korg1212] + !sys-firmware/alsa-firmware[alsa_cards_maestro3] + !sys-firmware/alsa-firmware[alsa_cards_sb16] + !sys-firmware/alsa-firmware[alsa_cards_ymfpci] + ) + ) + dist-kernel? ( + virtual/dist-kernel + initramfs? ( + app-alternatives/cpio + ) + ) +" +IDEPEND=" + dist-kernel? ( + initramfs? ( sys-kernel/installkernel ) + ) +" + +QA_PREBUILT="*" +PATCHES=( + "${FILESDIR}"/${PN}-copy-firmware-r8.patch +) + +pkg_pretend() { + if use initramfs; then + if use dist-kernel; then + # Check, but don't die because we can fix the problem and then + # emerge --config ... to re-run installation. + nonfatal mount-boot_check_status + else + mount-boot_pkg_pretend + fi + fi +} + +pkg_setup() { + if use compress-xz || use compress-zstd ; then + local CONFIG_CHECK + + if kernel_is -ge 5 19; then + use compress-xz && CONFIG_CHECK="~FW_LOADER_COMPRESS_XZ" + use compress-zstd && CONFIG_CHECK="~FW_LOADER_COMPRESS_ZSTD" + else + use compress-xz && CONFIG_CHECK="~FW_LOADER_COMPRESS" + if use compress-zstd; then + eerror "Kernels <5.19 do not support ZSTD-compressed firmware files" + fi + fi + fi + linux-info_pkg_setup +} + +src_unpack() { + if [[ ${PV} == 99999999* ]]; then + git-r3_src_unpack + else + default + # rename directory from git snapshot tarball + if [[ ${#GIT_COMMIT} -gt 8 ]]; then + mv ${PN}-*/ ${P} || die + fi + fi +} + +src_prepare() { + default + + cp "${FILESDIR}/${PN}-make-amd-ucode-img.bash" "${T}/make-amd-ucode-img" || die + chmod +x "${T}/make-amd-ucode-img" || die + + if use initramfs && ! use dist-kernel; then + if [[ -d "${S}/amd-ucode" ]]; then + "${T}/make-amd-ucode-img" "${S}" "${S}/amd-ucode" || die + else + # If this will ever happen something has changed which + # must be reviewed + die "'${S}/amd-ucode' not found!" + fi + fi + + # whitelist of misc files + local misc_files=( + build_packages.py + carl9170fw/autogen.sh + carl9170fw/genapi.sh + contrib/process_linux_firmware.py + copy-firmware.sh + check_whence.py + dedup-firmware.sh + LICEN[CS]E.* + README.md + WHENCE + ) + + # whitelist of images with a free software license + local free_software=( + # keyspan_pda (GPL-2+) + keyspan_pda/keyspan_pda.fw + keyspan_pda/xircom_pgs.fw + # dsp56k (GPL-2+) + dsp56k/bootstrap.bin + # ath9k_htc (BSD GPL-2+ MIT) + ath9k_htc/htc_7010-1.4.0.fw + ath9k_htc/htc_9271-1.4.0.fw + # pcnet_cs, 3c589_cs, 3c574_cs, serial_cs (dual GPL-2/MPL-1.1) + cis/LA-PCM.cis + cis/PCMLM28.cis + cis/DP83903.cis + cis/NE2K.cis + cis/tamarack.cis + cis/PE-200.cis + cis/PE520.cis + cis/3CXEM556.cis + cis/3CCFEM556.cis + cis/MT5634ZLX.cis + cis/RS-COM-2P.cis + cis/COMpad2.cis + cis/COMpad4.cis + # serial_cs (GPL-3) + cis/SW_555_SER.cis + cis/SW_7xx_SER.cis + cis/SW_8xx_SER.cis + # dvb-ttpci (GPL-2+) + av7110/bootcode.bin + # usbdux, usbduxfast, usbduxsigma (GPL-2+) + usbdux_firmware.bin + usbduxfast_firmware.bin + usbduxsigma_firmware.bin + # brcmfmac (GPL-2+) + brcm/brcmfmac4330-sdio.Prowise-PT301.txt + brcm/brcmfmac43340-sdio.meegopad-t08.txt + brcm/brcmfmac43362-sdio.cubietech,cubietruck.txt + brcm/brcmfmac43362-sdio.lemaker,bananapro.txt + brcm/brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt + "brcm/brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt" + brcm/brcmfmac43430-sdio.AP6212.txt + brcm/brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt + brcm/brcmfmac43430-sdio.MUR1DX.txt + brcm/brcmfmac43430-sdio.raspberrypi,3-model-b.txt + brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt + brcm/brcmfmac4356-pcie.gpd-win-pocket.txt + # isci (GPL-2) + isci/isci_firmware.bin + # carl9170 (GPL-2+) + carl9170-1.fw + # atusb (GPL-2+) + atusb/atusb-0.2.dfu + atusb/atusb-0.3.dfu + atusb/rzusb-0.3.bin + # mlxsw_spectrum (dual BSD/GPL-2) + mellanox/mlxsw_spectrum-13.1420.122.mfa2 + mellanox/mlxsw_spectrum-13.1530.152.mfa2 + mellanox/mlxsw_spectrum-13.1620.192.mfa2 + mellanox/mlxsw_spectrum-13.1702.6.mfa2 + mellanox/mlxsw_spectrum-13.1703.4.mfa2 + mellanox/mlxsw_spectrum-13.1910.622.mfa2 + mellanox/mlxsw_spectrum-13.2000.1122.mfa2 + ) + + # blacklist of images with unknown license + local unknown_license=( + korg/k1212.dsp + ess/maestro3_assp_kernel.fw + ess/maestro3_assp_minisrc.fw + yamaha/ds1_ctrl.fw + yamaha/ds1_dsp.fw + yamaha/ds1e_ctrl.fw + ttusb-budget/dspbootcode.bin + emi62/bitstream.fw + emi62/loader.fw + emi62/midi.fw + emi62/spdif.fw + ti_3410.fw + ti_5052.fw + mts_mt9234mu.fw + mts_mt9234zba.fw + whiteheat.fw + whiteheat_loader.fw + cpia2/stv0672_vp4.bin + vicam/firmware.fw + edgeport/boot.fw + edgeport/boot2.fw + edgeport/down.fw + edgeport/down2.fw + edgeport/down3.bin + sb16/mulaw_main.csp + sb16/alaw_main.csp + sb16/ima_adpcm_init.csp + sb16/ima_adpcm_playback.csp + sb16/ima_adpcm_capture.csp + sun/cassini.bin + acenic/tg1.bin + acenic/tg2.bin + adaptec/starfire_rx.bin + adaptec/starfire_tx.bin + yam/1200.bin + yam/9600.bin + ositech/Xilinx7OD.bin + qlogic/isp1000.bin + myricom/lanai.bin + yamaha/yss225_registers.bin + lgs8g75.fw + ) + + if use !unknown-license; then + einfo "Removing files with unknown license ..." + rm -v "${unknown_license[@]}" || die + fi + + if use !redistributable; then + # remove files _not_ in the free_software or unknown_license lists + # everything else is confirmed (or assumed) to be redistributable + # based on upstream acceptance policy + einfo "Removing non-redistributable files ..." + local OLDIFS="${IFS}" + local IFS=$'\n' + set -o pipefail + find ! -type d -printf "%P\n" \ + | grep -Fvx -e "${misc_files[*]}" -e "${free_software[*]}" -e "${unknown_license[*]}" \ + | xargs -d '\n' --no-run-if-empty rm -v + + [[ ${?} -ne 0 ]] && die "Failed to remove non-redistributable files" + + IFS="${OLDIFS}" + fi + + restore_config ${PN}.conf +} + +src_install() { + + local FW_OPTIONS=( "-v" "-j1" ) + local files_to_keep= + + if use savedconfig; then + if [[ -s "${S}/${PN}.conf" ]]; then + files_to_keep="${T}/files_to_keep.lst" + grep -v '^#' "${S}/${PN}.conf" 2>/dev/null > "${files_to_keep}" || die + [[ -s "${files_to_keep}" ]] || die "grep failed, empty config file?" + FW_OPTIONS+=( "--firmware-list" "${files_to_keep}" ) + fi + fi + + if use compress-xz; then + FW_OPTIONS+=( "--xz" ) + elif use compress-zstd; then + FW_OPTIONS+=( "--zstd" ) + fi + FW_OPTIONS+=( "${ED}/lib/firmware" ) + ./copy-firmware.sh "${FW_OPTIONS[@]}" || die + use deduplicate && { ./dedup-firmware.sh "${ED}/lib/firmware" || die; } + + pushd "${ED}/lib/firmware" &>/dev/null || die + + # especially use !redistributable will cause some broken symlinks + einfo "Removing broken symlinks ..." + find * -xtype l -print -delete || die + + # remove empty directories, bug #396073 + find -type d -empty -delete || die + + # sanity check + if ! ( shopt -s failglob; : * ) 2>/dev/null; then + eerror "No files to install. Check your USE flag settings" + eerror "and the list of files in your saved configuration." + die "Refusing to install an empty package" + fi + + # create config file + echo "# Remove files that shall not be installed from this list." > "${S}"/${PN}.conf || die + find * ! -type d >> "${S}"/${PN}.conf || die + save_config "${S}"/${PN}.conf + + popd &>/dev/null || die + + # Instruct Dracut on whether or not we want the microcode in initramfs + ( + insinto /usr/lib/dracut/dracut.conf.d + newins - 10-${PN}.conf <<<"early_microcode=$(usex initramfs)" + ) + if use initramfs; then + # Install installkernel/kernel-install hooks for non-dracut initramfs + # generators that don't bundled the microcode + dobin "${T}/make-amd-ucode-img" + ( + exeinto /usr/lib/kernel/preinst.d + doexe "${FILESDIR}/35-amd-microcode.install" + exeinto /usr/lib/kernel/install.d + doexe "${FILESDIR}/35-amd-microcode-systemd.install" + ) + fi + + if use initramfs && ! use dist-kernel; then + insinto /boot + doins "${S}"/amd-uc.img + fi + + dodoc README.md + # some licenses require copyright and permission notice to be included + use bindist && dodoc WHENCE LICEN[CS]E.* +} + +pkg_preinst() { + if use savedconfig; then + ewarn "USE=savedconfig is active. You must handle file collisions manually." + fi + + # Fix 'symlink is blocked by a directory' Bug #871315 + if has_version "<${CATEGORY}/${PN}-20220913-r2" ; then + rm -rf "${EROOT}"/lib/firmware/qcom/LENOVO/21BX + fi + + # Make sure /boot is available if needed. + use initramfs && ! use dist-kernel && mount-boot_pkg_preinst +} + +pkg_postinst() { + elog "If you are only interested in particular firmware files, edit the saved" + elog "configfile and remove those that you do not want." + + if ver_replacing -lt 20190514; then + elog + elog 'Starting with version 20190514, installation of many firmware' + elog 'files is controlled by USE flags. Please review your USE flag' + elog 'and package.license settings if you are missing some files.' + fi + + if use initramfs; then + if use dist-kernel; then + dist-kernel_reinstall_initramfs "${KV_DIR}" "${KV_FULL}" --all + else + # Don't forget to umount /boot if it was previously mounted by us. + mount-boot_pkg_postinst + fi + fi +} + +pkg_prerm() { + # Make sure /boot is mounted so that we can remove /boot/amd-uc.img! + use initramfs && ! use dist-kernel && mount-boot_pkg_prerm +} + +pkg_postrm() { + # Don't forget to umount /boot if it was previously mounted by us. + use initramfs && ! use dist-kernel && mount-boot_pkg_postrm +} diff --git a/www-apps/mediawiki/mediawiki-1.42.5.ebuild b/www-apps/mediawiki/mediawiki-1.42.5.ebuild index 067c416a5759..ba9043cc6988 100644 --- a/www-apps/mediawiki/mediawiki-1.42.5.ebuild +++ b/www-apps/mediawiki/mediawiki-1.42.5.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://www.mediawiki.org" SRC_URI="https://releases.wikimedia.org/${PN}/${MY_BRANCH}/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ppc x86" IUSE="imagemagick mysql postgres +sqlite" REQUIRED_USE="|| ( mysql postgres sqlite )" diff --git a/www-servers/tomcat/Manifest b/www-servers/tomcat/Manifest index 665c50c6890f..5a764ff732e4 100644 --- a/www-servers/tomcat/Manifest +++ b/www-servers/tomcat/Manifest @@ -1,18 +1,18 @@ -DIST apache-tomcat-10.1.34-src.tar.gz 6946871 BLAKE2B 9e25c8fd0ca4a8d19e2d4f912bb904d691b98b1597fbdd823a3381bdf99073a00cc8655924ef733c13214afb2a9ef92f75708eb4454e266245ad8861f90f64cb SHA512 0124d92eb1d184bdce1a50d5934958a0c796460a7157a8622aeee2b21060f5377198939a0260285bcdaa25cea42b880cb97575469a63f7b33ec22d532927e6ca -DIST apache-tomcat-10.1.34-src.tar.gz.asc 833 BLAKE2B 564c266e4967967450c10944a388c3df051971d00a632d8ecfe68f0a8741f89b270d965f8f62ff8cdc1f097f184f34025ec18b0e4ecfef26bed3a8db9ff8e028 SHA512 2c96d2f89f2bfc449516cdc06682a5404168cdd9e473211444a141aafe3fabe743d68d4e7e32c8a2bc2bb23d875e09c28781ca4cb33e9e13288086c97c20e891 DIST apache-tomcat-10.1.35-src.tar.gz 6979367 BLAKE2B c216bdbccdbcdefab75339cae3983c989fc392512c02c02a9fd3954b3be80d1d7dd320dbc22b68457c8771a4f8aea28f637a95d9188d38ccd4e8bee2f389db1d SHA512 08d6c80c16bb5b82c9bf2d11750c2ac9b7336cae73b3ee9e0c7316a56a68f297c75f61d780ae42f9b97eb65213ad01c36b4bcfe33885d091cae3d5414e5cb64e DIST apache-tomcat-10.1.35-src.tar.gz.asc 833 BLAKE2B e23ae9b0766bb870abf93800a2ba9b4d62ad8d5cd4836d48a8a1893861841050d7a034017076bd92279b94b0b808e634949b355845d75a584c14fe7716393790 SHA512 cbc3b325da80fe2fa574a3eadec703d4717f0acf7f76064b1790ada0bc87ab01c32fda90da8d4f2e9e6bcb2d622ccf25b622ad0440c41acd65b05e02525c4de9 DIST apache-tomcat-10.1.36-src.tar.gz 6981087 BLAKE2B 95c5fca22c65d85284fe91b384ae9a879a0b215b40610dd6ac27ffb371b64fc92bb69edb9f90a60f2d709268fd8210867bc8a73f74e8703876ceb64f780d5b6f SHA512 18123ea1639733f14cf0b1ca0df8255b8d69abc7dd19cad10ad51f4f1f1c16f8f08fba668101169df68d23400f75f3aacab9040edba9330b78939b7c6399ae10 DIST apache-tomcat-10.1.36-src.tar.gz.asc 833 BLAKE2B 560d59d5668b0c06b44dcbd4be871beed5d2b10ad54799e7792f01c8a80156565565111a5a28141494bbfe95a561df5fc5db79dcb56bbd3fb2a11bab1bbd6265 SHA512 22153e1d7797cfb519f7df0968a60f2b1a39de156cd53011fba32c4e51a61e7f8fe4a4b75b673bd5611485f4ef1ca50e43f08d7d09925731253dc114ba0221e1 -DIST apache-tomcat-11.0.2-src.tar.gz 6877090 BLAKE2B 3ed1b184ecf43d12678d3682830065562ce4442aab571ee926b91f509195e314aeceeb10ff2ad935332b38607fd09237eeca274d526df9b7daad17fe6f144508 SHA512 38c5b9c75edb7e620a89376deab0c2e2af08e5853021e207ba26f8b4a2fa1dae2aecffb79bc9c443eb989c96317268a947a42b6869ca2cd827d2bda3be426433 -DIST apache-tomcat-11.0.2-src.tar.gz.asc 849 BLAKE2B 0e670e67396068747d5371da13135696be8b4555892e1cd8338413f7540ded08203c986074cfe42bd077e475a30a05299fd35def29e8a089e570e68be473366c SHA512 ae10b95f4a5a9e922721d190ff9abfeeb62d5814277b076e1d12a5dec64491de8c382273a1b4ccc3f3d193ce561ba34214334048a9e28dcb22a50458d9103016 +DIST apache-tomcat-10.1.39-src.tar.gz 6988808 BLAKE2B a0b5c962660ce32d19d1c3470c978b6c40aec3c50f741f96ece6bad4f63805c531a9ad2255a111348e11c9f05829ac68f45a43a75e422aa5e01b6ab5285fb798 SHA512 ff36f5ba20b5305f207b80a8f2f781b8075d334de327b36f70846a009d0441e993315ca1568bc67cbbdc09520cfbbb768437c4122699507bfc9b8b5e971a9151 +DIST apache-tomcat-10.1.39-src.tar.gz.asc 833 BLAKE2B 6979ce15e50cbbe5ff610d32dfe32b42ff50f53fc3de6bca127e229551882dd1f5d59907166a35d7a5e036365cb2c7ec14d1170f0f8da399290b53e0e3883eb1 SHA512 e99937734460d80ca431610b8496a56871f9536cd93eb21ad7c07176855dcc5157043ac77423a7cfd9c5ca527bef7c53d178ab6fc9f7cfdaed663b2cda727664 DIST apache-tomcat-11.0.3-src.tar.gz 6914800 BLAKE2B 1051d30e3837478b75fc0b22932d8bd313a449a02ecbc7b3dd899259d980c8d37acd29a01496105feeaf07b39a2ddd7806d7c04868a898a956a7ce4ef502e5dd SHA512 c4c49ece1ffeeed8949fafa5ecc24ee8e92455f7a22eb18e88fc454f6bf511d45dd240e6ebc178d421e8a3e178249b7bb4f8b17b9fc3a599a6626928c209c3c7 DIST apache-tomcat-11.0.3-src.tar.gz.asc 849 BLAKE2B e42d128645f754f4a88ad3ed27ba5ba8ba438fdae0f84f2a797c7d5ec9ceab7eb270cd2231382b93111fed56d36fd2d7540dc8a5dd36a0403f8f85d3fa592563 SHA512 42f487c65d48bd4a2ffc7f2d1b7900c6a744c55970ceda11965bc6163986444d200716758e40fd1efc5325b89d903c20d5b25cde0c3acceb2f3b221e50d243ef DIST apache-tomcat-11.0.4-src.tar.gz 6916906 BLAKE2B d0259932fa5568cf921ec6f4ad1d5c221564fe1887fcfa1a8456d0389315fc5bebbf6edab241cddaf2396765093c10ae5708ebaa4a8e79fab60d3700245f7be7 SHA512 9996df1b38abd72710ef741a8858cb714a974819f033d5091d3ccd167bdaa6268c95f0501c54b35385c1164d67b2ef9e54588e92b9d59ec112bf5c74263c6131 DIST apache-tomcat-11.0.4-src.tar.gz.asc 849 BLAKE2B 98565cc37686c15fb52fb502ad7cb4cc99c2ed1d1320e204fe8ec08742866ed3d5e04fb9e23fb3c6ebc0ea217b2e297641a70149a49b2bfdc8899840ffa1056c SHA512 b0a6bed243c28d82144c27fcb29eb85a8d3bb394ae52845691c4dc70c448c7e6563813e21259e2640ab62ba405b86888347c91096c061248d831a6a0a2854768 +DIST apache-tomcat-11.0.5-src.tar.gz 6918820 BLAKE2B 90789cf6cd68cbf813ce47a7860bec03f22f00fabf90df7742e9e37a8dea458445f54e9dea4ac26d9b5b2143c337973a89c71af16fe3d0d500115b7fb158c5e4 SHA512 58d864c0a560c840b303d20b34b1aeb9c03a534bb58badcf407144d1797d355f8f83e91963b8a8f656cae6abd6f9228206eeec3c5ff61a6318f5a9393ee2f91a +DIST apache-tomcat-11.0.5-src.tar.gz.asc 849 BLAKE2B 2ebf1daddf32988d7e708eacf2d6d606d671f55fee6061d4d3381f029eb616a3e367ad982816ea63eefa8fd75b4b1f6360409ca3f9883519b72c1a7896270eb9 SHA512 c1f7d37e5e81a94fb5e5522831e772d29035b2e9684a90471ae45680d18ab536fd8acf72b06f648635df9e0cc32a69bdaab38442598684d388eb4acf9015cecb DIST apache-tomcat-9.0.100-src.tar.gz 7126491 BLAKE2B 4cc63bb9d350eb2df55b9241bf25b88a0a88b8b7a73aa76af16e05cc77a63d4cfa668f1042a0c3d1c63ce4a8f42be384b5ec314cf4aeab17df1579abe16155ff SHA512 0fb016596d1c71da54c7bae8b2b1d5976247127b120234292e96d72d7d244abd9eb0d8f44a1c93eaff853ecf091be34087c113058ae12e9d4dbadc77673b1522 DIST apache-tomcat-9.0.100-src.tar.gz.asc 833 BLAKE2B 5a9e763c63e32e7cf6845d5891d3a99524056372dd796507fdb61209c9d3ccf83c663ec557557f683593f36f713065fac6cb40ab783a9dc65258835e7da2f92e SHA512 53fac33978b490dbc61c0464ce6a13fa23f0ea6bebcd4cf832429b58ce2bd8079ca840c0fcef8fc786841d6b42cdd26f3e26f391effba1eb2a5264c094c9ec0c -DIST apache-tomcat-9.0.98-src.tar.gz 7091158 BLAKE2B 040f6a1a02140b85e324f1a17485c3866d9d336f8c032e7de4b8e3880d405339d43e853cf0999ff3e5e4e12c0551d64a39a3bb218dd0cad4cc5124ce2915a3cd SHA512 eb380dae515a259d23d5311d0b96b8ef5068c0d8d72da215410e5475582d2ff82182b7331e0d197eb993d8014a99ea40290154a343e961a07ed02be6894759cc -DIST apache-tomcat-9.0.98-src.tar.gz.asc 833 BLAKE2B 2f232eeb4af506cf81a32ae6f2bca8c2e7b7c3bc8cc8fade48685fd888e7bd7ea4da1967eb815ae2321d2a02ffbc5598f1ecc8a52695d41e3b2830447331b1ac SHA512 fb6f36bb4a19cc52c3bc1f7d6ccd922db7b61e0274a0aa93e5d79bf2ca0938446509b1e3f966963a583ca9a513fafc9d5c9039bac9d7a03dae1cdd94a722ef3b +DIST apache-tomcat-9.0.102-src.tar.gz 7133459 BLAKE2B 211ce90f9b3ea4fb4ec213ed4523c5934fd105afa6e6b9664297d26e3fa21cc2c61f8f5f9c88bcc9af3a2a2c27c13417053db30dc3d24572f61c54607aea1153 SHA512 2f06b1432a217470097704040cd7aed70e169981140f78c6fd6d46d55b2fd36fa174d85f34f288138f9373469d8c98cddeb3cd030c76dc69c724ab3e3b978095 +DIST apache-tomcat-9.0.102-src.tar.gz.asc 833 BLAKE2B 79fd45f7d94b66c0140c20dbf2711005e512e2709dc105d78e774145a07ad681c2264bef56099329db5d371252dcad4d6b7fa2762534db691ff383ff5c7b84ca SHA512 deb59a0dd77dcac3ce9996360883341d9450f00a6fcaedffb1d162e37344cb28cb816d5342b3d5c401edbfa76aae8b474c5228210f1a414d5ac1a2c71a5d9020 DIST apache-tomcat-9.0.99-src.tar.gz 7124431 BLAKE2B ed4d9c07a55823f6945bd7b14c17d3970236041c07578f68f23826195a708706e7241fcf8e3e7786c4ad67299bd8cd361f322bf39ea8843da06856ec2d485d11 SHA512 87431afb3f7d4eaf2ede17a945f49e44f27d55af508fea901a5415f1b50e40254d344d848b34574a63ccd4dd927aa79e20dea60ab3a01f09a3a43b7d852faaf2 DIST apache-tomcat-9.0.99-src.tar.gz.asc 833 BLAKE2B de6f0834b2bdfc8240d9098bd3f992a37e65ddf1c8091245fbfd9fc49f9cf4510d70a5abeb575d780360c65a99c270d7c2beeeaa2d1b9e42936a0a42e53bd457 SHA512 0fc436938e8547096827e3a5ec833573e3b495f183014b4f8957ffbcc944a7af8832132251c2aa3e1ad234059131d836f66b8105919801b2d14aa58628cb32b5 diff --git a/www-servers/tomcat/tomcat-10.1.34.ebuild b/www-servers/tomcat/tomcat-10.1.39.ebuild index 4b4c261716e6..0431b446752a 100644 --- a/www-servers/tomcat/tomcat-10.1.34.ebuild +++ b/www-servers/tomcat/tomcat-10.1.39.ebuild @@ -17,7 +17,7 @@ S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="10.1" -KEYWORDS="amd64 ~arm64 ~amd64-linux" +KEYWORDS="~amd64 ~arm64 ~amd64-linux" IUSE="extra-webapps" RESTRICT="test" # can we run them on a production system? diff --git a/www-servers/tomcat/tomcat-11.0.2.ebuild b/www-servers/tomcat/tomcat-11.0.5.ebuild index b370601d77b4..db48095019e5 100644 --- a/www-servers/tomcat/tomcat-11.0.2.ebuild +++ b/www-servers/tomcat/tomcat-11.0.5.ebuild @@ -17,7 +17,7 @@ S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="11" -KEYWORDS="amd64 ~arm64 ~amd64-linux" +KEYWORDS="~amd64 ~arm64 ~amd64-linux" IUSE="extra-webapps" RESTRICT="test" # can we run them on a production system? diff --git a/www-servers/tomcat/tomcat-9.0.98.ebuild b/www-servers/tomcat/tomcat-9.0.102.ebuild index eeca0d02b4c7..4b6049e0edfa 100644 --- a/www-servers/tomcat/tomcat-9.0.98.ebuild +++ b/www-servers/tomcat/tomcat-9.0.102.ebuild @@ -17,7 +17,7 @@ S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="9" -KEYWORDS="amd64 ~arm64 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm64 ~amd64-linux ~x86-linux" IUSE="extra-webapps" RESTRICT="test" # can we run them on a production system? |
