summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-python/resolvelib: Keyword 1.0.1 alpha, #934778Matoro Mahri2024-07-061-1/+1
| | | | | Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* dev-python/commentjson: Keyword 0.9.0-r2 alpha, #934778Matoro Mahri2024-07-061-1/+1
| | | | | Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* dev-python/scipy: Stabilize 1.13.1 x86, #933789Matoro Mahri2024-07-061-1/+1
| | | | | Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* virtual/httpd-php: Stabilize 8.2 ALLARCHES, #935572Matoro Mahri2024-07-061-1/+1
| | | | | Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* dev-python/scipy: Stabilize 1.13.1 arm, #933789Matoro Mahri2024-07-061-1/+1
| | | | | Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* sys-apps/coreutils: Stabilize 9.5 hppa, #933045Matoro Mahri2024-07-061-1/+1
| | | | | Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* media-video/ffmpeg: fix media-sound/liblc3 category in metadata.xmlSam James2024-07-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* profiles/arch: mask ffmpeg[quirc,liblc3] where unavailableLeonardo Hernández Hernández2024-07-073-0/+12
| | | | | | Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me> Closes: https://github.com/gentoo/gentoo/pull/37168 Signed-off-by: Sam James <sam@gentoo.org>
* profiles: mask >=ffmpeg-7.0Leonardo Hernández Hernández2024-07-071-0/+4
| | | | | | Bug: https://bugs.gentoo.org/928905 Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me> Signed-off-by: Sam James <sam@gentoo.org>
* media-video/ffmpeg: sync liveLeonardo Hernández Hernández2024-07-072-2/+4
| | | | | Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me> Signed-off-by: Sam James <sam@gentoo.org>
* media-video/ffmpeg: add 7.0.1Leonardo Hernández Hernández2024-07-074-2/+639
| | | | | | Closes: https://bugs.gentoo.org/926628 Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me> Signed-off-by: Sam James <sam@gentoo.org>
* media-video/ffmpeg: fix VariableOrderWrongLeonardo Hernández Hernández2024-07-071-3/+2
| | | | | Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me> Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/quirc: Keyword 1.2-r2 ppc, #935683Sam James2024-07-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/quirc: Keyword 1.2-r2 ppc64, #935683Sam James2024-07-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/quirc: Keyword 1.2-r2 sparc, #935683Sam James2024-07-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/quirc: Keyword 1.2-r2 arm64, #935683Sam James2024-07-071-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-cpp/abseil-cpp: fix build without testsSam James2024-07-074-2/+30
| | | | | | Closes: https://bugs.gentoo.org/935417 Thanks-to: Paul Zander <negril.nx+gentoo@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* app-shells/bash: add 5.2_p26-r8 with non-preliminary XTWINOPS supportKerin Millar2024-07-072-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 5.2_p26-r7 revision contained (harmless) changes that were not yet intended to be applied to the gentoo repo, owing to a miscommunication between Sam and I. This commit applies the changes as were eventually intended and, for this reason, the remainder of this commit message shall be written accordingly. That is, as if no preceding commit had been involved to get to this point. ... Xterm is able to push and pop window titles to a stack and there are several other terminal emulators that can do so, such as alacritty, foot and tmux. Take advantage of this feature so as to reinstate automatic window title setting in the case that the PTY is owned by sshd(8). Unfortunately, there are a lot of terminal emulators that falsely advertise themselves as being xterm-compatible, making it impossible to reliably identify xterm itself. However, we can reliably identify alacritty, foot and tmux so let's support those three to begin with. The benefits conferred upon tmux are of a distinct nature, since it was already the case that it was being whitelisted for title support. Specifcally, the benefits are as follows: - title restoration is supported even where tmux(1) is launched prior to ssh(1) - title restoration is supported for nested instances of tmux It should be noted that tmux does not forward titles to the outer terminal emulator by default. Such can be arranged for with the following configuration. set -g set-titles on set -g set-titles-string "#T" Don't enable title setting for GNU screen in the case that the PTY is owned by sshd(8) and screen(1) was launched prior to connecting with ssh(1). This is a distinction that can be made by checking whether the WINDOW variable is set in the environment. Have the genfun_set_win_title function export a variable named SHELL_SETS_TITLE upon the first occasion that it is called. Presently, nothing responds to this variable but the intention is to eventually have portage respond to it. Portage implements heuristics and behaviours that are horrifyingly broken. For instance, it considers the mere presence of PROMPT_COMMAND as somehow proving that the interactive shell uses it for nothing other than to set the title, despite the fact that: - the contents of PROMPT_COMMAND may be arbitrarily defined by the user - the purpose of PROMPT_COMMAND is whatever the user may wish it to be - nobody in their right mind would export PROMPT_COMMAND - PROMPT_COMMAND can be an array since 5.1 (making it unexportable) Worse still, in the event that portage is somehow able to ascertain the value of PROMPT_COMMAND, it takes its first element and proceeds to inject its value into an invocation of either sh, $SHELL or bash -c, irrespective of the consequences. No, I'm not making this up. As such, the purpose of the SHELL_SETS_TITLE variable is to act as a straightforward indicator that an interactive shell exists as an ancestor process and that it will take it upon itself to set a fresh window title upon its primary prompt being displayed. Signed-off-by: Kerin Millar <kfm@plushkava.net> Signed-off-by: Sam James <sam@gentoo.org>
* app-text/nuspell: 5.1.6Sebastian Pipping2024-07-072-0/+52
| | | | Signed-off-by: Sebastian Pipping <sping@gentoo.org>
* net-misc/openssh: sshd.service: set Type=notify-reloadMike Gilbert2024-07-062-1/+16
| | | | Signed-off-by: Mike Gilbert <floppym@gentoo.org>
* dev-libs/icinga-php-library: add 0.13.2Louis Sautier2024-07-072-0/+23
| | | | Signed-off-by: Louis Sautier <sbraz@gentoo.org>
* dev-libs/icinga-php-thirdparty: add 0.12.1Louis Sautier2024-07-072-0/+22
| | | | Signed-off-by: Louis Sautier <sbraz@gentoo.org>
* sys-devel/gcc: add 14.1.1_p20240706Sam James2024-07-062-0/+56
| | | | | Bug: https://bugs.gentoo.org/935027 Signed-off-by: Sam James <sam@gentoo.org>
* app-shells/bash: propagate changes to latest alpha snapshot & liveSam James2024-07-062-22/+22
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* app-shells/bash: add 5.2_p26-r7 with XTWINOPS supportKerin Millar2024-07-062-0/+476
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Xterm is able to push and pop window titles to a stack and there are a few other terminal emulators that can do so (alacritty and foot being the only ones that I am aware of at the present time). Take advantage of this feature so as to reinstate automatic window title setting in the case that the PTY is owned by sshd(8). Unfortunately, there are a lot of terminal emulators that falsely advertise themselves as being xterm-compatible, making it impossible to reliably identify xterm itself. However, we can reliably identify alacritty and foot so let's support those two to begin with. Have the genfun_set_win_title function export a variable named SHELL_SETS_TITLE upon the first occasion that it is called. Presently, nothing responds to this variable but the intention is to eventually have portage respond to it. Portage implements heuristics and behaviours that are horrifyingly broken. For instance, it considers the mere presence of PROMPT_COMMAND as somehow proving that the interactive shell uses it for nothing other than to set the title, despite the fact that: - the contents of PROMPT_COMMAND may be arbitrarily defined by the user - the purpose of PROMPT_COMMAND is whatever the user may wish it to be - nobody in their right mind would export PROMPT_COMMAND - PROMPT_COMMAND can be an array since 5.1 (making it unexportable) Worse still, in the event that portage is somehow able to ascertain the value of PROMPT_COMMAND, it takes its first element and proceeds to inject its value into an invocation of either sh, $SHELL or bash -c, irrespective of the consequences. No, I'm not making this up. As such, the purpose of the SHELL_SETS_TITLE variable is to act as a straightforward indicator that an interactive shell exists as an ancestor process and that it will take it upon itself to set a fresh window title upon its primary prompt being displayed. Signed-off-by: Kerin Millar <kfm@plushkava.net> Signed-off-by: Sam James <sam@gentoo.org>
* kde-apps/analitza: Add missing dependencyAndreas Sturmlechner2024-07-071-1/+1
| | | | | | | Upstream commit 23560f8a73b9ed2ef3bddad3afdb86c10eaa8f1e Closes: https://bugs.gentoo.org/935661 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* kde-apps/kolourpaint: Fix cmake arg for IUSE scannerAndreas Sturmlechner2024-07-071-1/+1
| | | | | | | Upstream commit 3de3c17f0fafdccfc43dea7d2a0b520ed3f3390e Closes: https://bugs.gentoo.org/935674 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* net-misc/icingadb: keyword 1.1.1 for ~arm64Louis Sautier2024-07-061-2/+2
| | | | Signed-off-by: Louis Sautier <sbraz@gentoo.org>
* media-video/mplayer: fixed incompatible pointersMiroslav Šulc2024-07-062-0/+291
| | | | | Closes: https://bugs.gentoo.org/922624 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-python/google-pasta: enable py3.13Arthur Zamarin2024-07-061-2/+2
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-python/geographiclib: enable py3.13Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-python/dkimpy: enable py3.13Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* app-admin/awscli: Enable py3.13Michał Górny2024-07-061-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/aws-sam-translator: Enable py3.13Michał Górny2024-07-061-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/dns-lexicon: Enable py3.13Michał Górny2024-07-061-2/+2
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/hishel: Remove oldMichał Górny2024-07-062-75/+0
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/httpretty: Enable py3.13Michał Górny2024-07-061-7/+10
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/boto3: Enable py3.13Michał Górny2024-07-061-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/aws-xray-sdk: Enable py3.13Michał Górny2024-07-061-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/s3transfer: Enable py3.13Michał Górny2024-07-061-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/botocore: Enable py3.13Michał Górny2024-07-061-1/+11
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/bashate: enable py3.13Arthur Zamarin2024-07-061-2/+2
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* app-admin/cdist: PEP517, enable py3.13, fix missing doc depArthur Zamarin2024-07-061-4/+5
| | | | | | | Closes: https://bugs.gentoo.org/928845 Closes: https://bugs.gentoo.org/922107 Closes: https://bugs.gentoo.org/909859 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-python/pytest-sugar: enable py3.13Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-python/pymountboot: enable py3.13Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-python/peewee: add 3.17.6Arthur Zamarin2024-07-062-0/+80
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* net-misc/memcached: drop 1.6.26Matthew Thode2024-07-062-105/+0
| | | | Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
* x11-libs/libdrm: Stabilize 2.4.121 ppc, #935673Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* x11-libs/libdrm: Stabilize 2.4.121 ppc64, #935673Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-libs/libevdev: Stabilize 1.13.2 ppc, #935671Arthur Zamarin2024-07-061-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>