[gentoo-dev] Last-rites: media-sound/clementine

2025-08-04 Thread Andreas Sturmlechner
# Alexey Sokolov (2025-08-03) # Inactive upstream, stuck on Qt5. Suggested alternatives: # media-sound/strawberry, media-sound/amarok. # Removal on 2025-09-03. Bug #960012. media-sound/clementine signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: kde-apps/ffmpegthumbs-common

2025-07-31 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-07-31) # KF5 -> KF6 transitional package with no more revdeps since 25.04. # Removal on 2025-08-15. kde-apps/ffmpegthumbs-common signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-chemistry/molequeue

2025-07-30 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-07-30) # Current package is 7 years old and upstream repository only gets the # occasional commit. Package is stuck with EAPI-7, Qt5, no Python 3.13 # support. Bug #952654. Removal on 2025-08-29. sci-chemistry/molequeue signature.asc Description: This is a digitally

[gentoo-dev] Last-rites: media-sound/qtgain

2025-07-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-07-28) # Dead for many years, Qt5-based, EAPI-7. Anyone interested in its features # should look into qmp3gain instead (bug #949077) but it also needs porting # to Qt6. Removal on 2025-08-27. media-sound/qtgain signature.asc Description: This is a digitally signed

[gentoo-dev] Last-rites: media-video/baka-mplayer

2025-07-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-07-28) # Last release in 2015, last commit more than 2 years ago, still Qt5-based, # EAPI-7, no signs of work towards Qt6 upstream. Bug #960817 # Removal on 2025-08-27. media-video/baka-mplayer signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-office/texmacs

2025-07-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-07-28) # Current package is 4 years old and outdated compared to upstream. # Still Qt5-based with unclear upstream status. Needs real care. # Many bugs: #953380, #701988, #683464, #590002, #565034, #579396 # Removal on 2025-08-27. app-office/texmacs signature.asc

[gentoo-dev] Last-rites: dev-debug/edb-debugger

2025-07-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-07-28) # Current package is 4 years old and outdated compared to upstream, needs # a real maintainer: still EAPI-7, Qt5-based with unclear upstream status. # Many bugs: #955642, #957424, #957402, #903803, #841740 # Removal on 2025-08-27. dev-debug/edb-debugger

[gentoo-dev] Last-rites: kde-apps/cervisia

2025-06-29 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-06-29) # KF5-based package, unmaintained upstream, see also: # https://mail.kde.org/pipermail/release-team/2025-June/013683.html # Removal on 2025-07-29. kde-apps/cervisia signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-libs/libdbusmenu-qt

2025-06-24 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-06-24) # Qt5 package without any revdeps. Removal on 2025-07-24. Bug #938823 dev-libs/libdbusmenu-qt signature.asc Description: This is a digitally signed message part.

[gentoo-dev] [PATCH] cmake.eclass: Avoid false positives by ensuring we find a function call

2025-06-22 Thread Andreas Sturmlechner
Otherwise the regex might pick up a query of the resulting version var, e.g.: > if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12) Bug: https://bugs.gentoo.org/958923 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) d

[gentoo-dev] [PATCH 5/5] cmake.eclass: Add src_install() check for CMake-4-incompatible modules

2025-06-15 Thread Andreas Sturmlechner
See examples: https://bugs.gentoo.org/953075 https://bugs.gentoo.org/957670 https://bugs.gentoo.org/957671 https://bugs.gentoo.org/957803 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 19 +++ 1 file changed, 19 insertions(+) diff --git a/eclass/cmake.eclass b

[gentoo-dev] [PATCH 4/5] cmake.eclass: Avoid none-detection by ensuring match starts w/ digit

2025-06-15 Thread Andreas Sturmlechner
Thanks-to: Ionen Wolkens Closes: https://bugs.gentoo.org/957990 Bug: https://bugs.gentoo.org/958051 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index ffd11bc0c863

[gentoo-dev] [PATCH 3/5] cmake.eclass: mv _CMAKE_MINREQVER_UNSUPPORTED detection to src_prepare

2025-06-15 Thread Andreas Sturmlechner
files - Relegate "CMake 4 detected; ..." to be a non-QA Notice, it is just an addendum Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 70 +++-- 1 file changed, 42 insertions(+), 28 deletions(-) diff --git a/eclass/cmake.eclas

[gentoo-dev] [PATCH 2/5] cmake.eclass: Introduce _CMAKE_MINREQVER_UNSUPPORTED

2025-06-15 Thread Andreas Sturmlechner
Allows to split detection/eqawarn and applying cmakearg over different phases. Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index ea5a769b4cb4..4104882005a3

[gentoo-dev] [PATCH 1/5] cmake.eclass: Improve _cmake_modify-cmakelists(), consolidate the sed

2025-06-15 Thread Andreas Sturmlechner
Entire series in this PR: https://github.com/gentoo/gentoo/pull/42614 --- 50% less find 50% less grep 100% less cut Thanks-to: Michał Górny Thanks-to: Sam James Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 26 +++--- 1 file changed, 15 insertions(+), 11

[gentoo-dev] [PATCH v3 3/3] cmake.eclass: Add CMAKE_QA_COMPAT_SKIP flag to skip compat checks

2025-06-02 Thread Andreas Sturmlechner
Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 26 +- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index b538af80a4b1..f327521e9fc1 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass

[gentoo-dev] [PATCH v3 2/3] cmake.eclass: If CMake 4 is detected, build w/ compat cmake arg

2025-06-02 Thread Andreas Sturmlechner
-DCMAKE_POLICY_VERSION_MINIMUM=3.5 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 4c91afa160d9..b538af80a4b1 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -644,6

[gentoo-dev] [PATCH v3 1/3] cmake.eclass: Add recursive CMakeLists.txt unsupported version detection

2025-06-02 Thread Andreas Sturmlechner
hanks-to: Michał Górny Bug: https://bugs.gentoo.org/951350 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 21 + 1 file changed, 21 insertions(+) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index c97f74e8a2ed..4c91afa160d9 100644 --- a/eclass/cmake.e

[gentoo-dev] Last-rites: Qt5 tools without any revdeps

2025-06-02 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-23) # Qt5 tools without any revdeps. Removal on 2025-06-10. dev-qt/assistant dev-qt/linguist dev-qt/pixeltool dev-qt/qdbus dev-qt/qdbusviewer dev-qt/qdoc dev-qt/qtdiag dev-qt/qtpaths dev-qt/qtplugininfo signature.asc Description: This is a digitally signed message

[gentoo-dev] Last-rites: x11-misc/barrier

2025-06-02 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-06-02) # Gui depends on Qt5 and is unmaintained for a very long time - its main # developers have moved to the InputLeap project (gui-apps/input-leap). # Bugs #942580, #949911, #951987, #953262; removal on 2025-07-02. x11-misc/barrier signature.asc Description: This

[gentoo-dev] Last-rites: sys-boot/vboot-utils

2025-05-31 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-30) # Last updated >5 years ago, stuck on EAPI 7, imposes static-libs pressure # on its dependencies; many bugs. Removal on 2025-06-24. # Bugs #937435, #833111, #721504, #875593, #675726, #625122, #590616 sys-boot/vboot-utils signature.asc Description: This i

[gentoo-dev] Last-rites: x11-misc/qxkb

2025-05-27 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-27) # Dead upstream with no release for over 10 years, Qt5-based even only by # means of a snapshot. Bugs #951875, #953016. Removal on 2025-06-26. x11-misc/qxkb signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: media-gfx/engauge

2025-05-27 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-27) # Upstream repository+author, web pages and documentation gone after long # period of inactivity, based on Qt5. Bugs #949021, #940094 # Removal on 2025-06-26. media-gfx/engauge signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-electronics/gazebo, net-libs/ignition-msgs, net-libs/ignition-transport, sci-libs/ignition-common, sci-libs/ignition-fuel-tools, sci-libs/ignition-math, dev-build/ignition

2025-05-27 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-27) # sci-electronics/gazebo depends on x11-libs/qwt:6[qt5] and Qt5, lots of # open bugs. Most packages perpetually stuck at EAPI-7 and several major # version bumps out of date. Bugs #937608, #947390; removal on 2025-06-26. sci-electronics/gazebo dev-libs/sdformat

[gentoo-dev] Last-rites: games-fps/prboom-plus

2025-05-24 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-24) # Dead upstream, fails to build with GCC-14, depends on media-libs/dumb. # A rescue mission would ideally package dsda-doom. Bugs #939219, #908973 # Removal on 2025-06-23. games-fps/prboom-plus signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: net-firewall/pglinux

2025-05-22 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-22) # Even if Qt5 is optional here, it is dead upstream for close to 10 years # and without Gentoo package maintainer almost as long. Bug #926074. # Removal on 2025-06-21. net-firewall/pglinux signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: Qt5 packages without any revdeps

2025-05-22 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-23) # Qt5 packages without any revdeps. Removal on 2025-06-01. dev-qt/qt3d:5 dev-qt/qtdatavis3d:5 dev-qt/qtgamepad:5 dev-qt/qtlocation:5 dev-qt/qtnetworkauth:5 dev-qt/qtquicktimeline:5 dev-qt/qtsensors:5 dev-qt/qtserialbus:5 dev-qt/qtvirtualkeyboard:5 dev-qt

[gentoo-dev] Last-rites: kodi-addon.eclass

2025-05-21 Thread Andreas Sturmlechner
kodi-addon.eclass: cmake consumer never ported to EAPI-7, now its DEAD All revdeps were ported away to regular cmake.eclass (and thusly EAPI-8). Bug: https://bugs.gentoo.org/939660 signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-libs/aws-c-cal, dev-libs/aws-checksums, dev-libs/aws-c-common, dev-libs/aws-c-event-stream, dev-libs/aws-c-io and dev-libs/s2n

2025-05-20 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-20) # Unaddressed pending version bumps for almost 2 years, stuck on EAPI-7. # Bugs #908094, #908095, #908096, #908097, #908427, #908428 # Removal on 2025-06-19. dev-libs/aws-c-cal dev-libs/aws-checksums dev-libs/aws-c-common dev-libs/aws-c-event-stream dev-libs

Re: [gentoo-dev] [PATCH v2 1/3] cmake.eclass: Add recursive CMakeLists.txt unsupported version detection

2025-05-19 Thread Andreas Sturmlechner
On Montag, 19. Mai 2025 20:51:49 Mitteleuropäische Sommerzeit Michał Górny wrote: > > --- a/eclass/cmake.eclass > > +++ b/eclass/cmake.eclass > > @@ -362,6 +362,18 @@ cmake_src_configure() { > > > > # Fix xdg collision with sandbox > > xdg_environment_reset > > > > + local file re="cma

Re: [gentoo-dev] [PATCH v2 3/3] cmake.eclass: Add CMAKE_QA_COMPAT_SKIP flag to skip compat checks

2025-05-19 Thread Andreas Sturmlechner
--- eclass/cmake.eclass | 25 - 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 8e3454fca5..d9013fbc01 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -117,6 +117,12 @@ fi # for econf and is neede

Re: [gentoo-dev] [PATCH v2 2/3] cmake.eclass: If CMake 4 is detected, build w/ compat cmake arg

2025-05-19 Thread Andreas Sturmlechner
-DCMAKE_POLICY_VERSION_MINIMUM=3.5 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 4 1 file changed, 4 insertions(+) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index ca6c03f335..8e3454fca5 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -560,6

[gentoo-dev] [PATCH v2 1/3] cmake.eclass: Add recursive CMakeLists.txt unsupported version detection

2025-05-19 Thread Andreas Sturmlechner
on tinderbox runs w/ unmasked cmake-4 slowly being able to build everything up to leaf packages, and also helps detect insufficient subproject minimums that could otherwise be masked by USE flag choice. Bug: https://bugs.gentoo.org/951350 Signed-off-by: Andreas Sturmlechner --- eclass

[gentoo-dev] Last-rites: sci-libs/libgeodecomp

2025-05-18 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-19) # Dead upstream (last commit >4 years ago), not ported to Qt6 and broken w/ # CMake 4. Bugs #955134, #955135. Removal on 2025-06-18. sci-libs/libgeodecomp signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] [PATCH] cmake.eclass: Add recursive CMakeLists.txt unsupported version detection

2025-05-17 Thread Andreas Sturmlechner
On Samstag, 17. Mai 2025 22:42:30 Mitteleuropäische Sommerzeit Ionen Wolkens wrote: > Just to note, may be rare so guess not a big deal but, while crawling > all sub-directories, it could pickup some extra CMakeLists.txt that are > entirely unused (by us) and don't need attention downstream. On S

[gentoo-dev] [PATCH] cmake.eclass: Add recursive CMakeLists.txt unsupported version detection

2025-05-17 Thread Andreas Sturmlechner
on tinderbox runs w/ unmasked cmake-4 slowly being able to build everything up to leaf packages, and also helps detect insufficient subproject minimums that could otherwise be masked by USE flag choice. Bug: https://bugs.gentoo.org/951350 Signed-off-by: Andreas Sturmlechner --- eclass

[gentoo-dev] Last-rites: www-misc/htdig

2025-05-15 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-15) # Very dead upstream, very many open bugs for years without anyone fixing. # Bugs #314835, #632432, #827131, #874429, #908830, #925513, #934808. # Removal on 2025-06-14. www-misc/htdig signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] strange problems with some gentoo sites as seen from Russia

2025-05-14 Thread Andreas Sturmlechner
On Mittwoch, 14. Mai 2025 15:48:37 Mitteleuropäische Sommerzeit Andrey Grozin wrote: > Hello *, > > [...] Does that somehow also impair your ability to respond to QA bugs? Regards signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: x11-misc/synergy

2025-05-13 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-13) # Depends on Qt5 and is unmaintained for a very long time - currently # packaged release is from 2021. Alternatives are gui-apps/deskflow or # gui-apps/input-leap - see also bugs #953262, #907118 # Removal on 2025-06-12. x11-misc/synergy signature.asc

[gentoo-dev] Last-rites: dev-games/openscenegraph-qt

2025-05-13 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-13) # No more revdeps, depends on Qt5. Bug #955654; removal on 2025-06-12. dev-games/openscenegraph-qt signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: x11-misc/qtfm

2025-05-13 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-13) # Last release from 2021, last commit >1 year ago and depends on Qt5. # Upstream shows no signs of activity let alone Qt6 porting work. # Unmaintained in Gentoo. Bug #950302; removal on 2025-06-12. x11-misc/qtfm signature.asc Description: This is a digita

[gentoo-dev] Last-rites: kde-frameworks/kinit

2025-05-08 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-08) # No more revdeps. Removal on 2025-05-31. kde-frameworks/kinit signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-misc/flirc

2025-05-04 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-04) # Several open bugs, pending bump since 2020, fails to fetch since 2022. # If anyone is here to fix these things, then please make upstream port # the gui to Qt6 or drop it. Removal on 2025-05-31. # Bugs #715918, #717528, #734242, #854750, #882655 app-misc

[gentoo-dev] Last-rites: media-video/ffdiaporama

2025-05-03 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-03) # Dead upstream since 2014, depends on Qt5. Bug #949079 # Removal on 2025-05-31 media-video/ffdiaporama signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-electronics/osqoop

2025-05-03 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-03) # Dead upstream since 2011, relies on downstream patching even for Qt5. # No one else packages this. Bugs #644482, #953769; removal on 2025-05-31 sci-electronics/osqoop signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: x11-misc/qcomicbook

2025-05-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-01) # Dead upstream for many years, depends on Qt5 and app-text/poppler[qt5]. # Bug #949025; removal on 2025-05-31 x11-misc/qcomicbook signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: x11-apps/radeon-profile and x11-apps/radeon-profile-daemon

2025-05-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-01) # Unmaintained in Gentoo for almost 3 years, no commit upstream in 5 years # and depends on Qt5. Whoever wants to keep this in ::gentoo must sort out # the upstream/new-upstream situation and become a permanent maintainer. # Bugs #951484, #954360, #752198

[gentoo-dev] Last-rites: games-board/pokerth

2025-05-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-01) # Dead upstream for many years, depends on Qt5 and FTB w/ boost-1.87 among # other bugs. Bugs #946991, #949076, #943002; removal on 2025-05-31 games-board/pokerth signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-electronics/fritzing

2025-05-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-05-01) # No maintainer in Gentoo since 2016, current package is still Qt5 based; # upstream does not even bother making tags let alone releases; anyone who # wants to deal with that shall step up as permanent maintainer and cut # some kind of Qt6 based package. # See

[gentoo-dev] Last-rites: dev-db/sqliteman

2025-04-26 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-26) # Dead upstream, stuck on Qt5, blocking x11-libs/qscintilla[qt5] cleanup # Bug #947297; removal on 2025-05-26 dev-db/sqliteman signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-visualization/scidavis and x11-libs/qwtplot3d

2025-04-26 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-26) # Dead upstream, last revdep on x11-libs/qwtplot3d and x11-libs/qwt:5 # Bugs #948047, #942455; removal on 2025-05-26 sci-visualization/scidavis x11-libs/qwtplot3d x11-libs/qwt:5 signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: www-client/otter

2025-04-24 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-24) # Requires Qt5WebEngine; bug #925722 # Removal on 2025-05-24 - with a good chance to be kept if ported by then. www-client/otter signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-python/pyqtwebengine

2025-04-24 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-24) # Requires Qt5WebEngine; no more revdeps. Bug #926684 # Removal on 2025-05-24. dev-python/pyqtwebengine signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-python/python-poppler-qt5

2025-04-24 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-24) # Dead upstream, Qt5 based, no more revdeps. Bug #949019 # Removal on 2025-05-24. dev-python/python-poppler-qt5 signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-visualization/zhu3d

2025-04-22 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-22) # Dead upstream, depends on downstream patching even for Qt5 support. # Almost no one else keeps packaging this. Bug #947622 # Removal on 2025-05-22. sci-visualization/zhu3d signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-text/krop

2025-04-05 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-30) # Depends on dev-python/python-poppler-qt5, stuck on py3.12, painful to # package. Use media-gfx/inkscape or app-text/pdfarranger alternatively. # Removal on 2025-04-29. Bugs #947726, #952250 app-text/krop signature.asc Description: This is a digitally signed

[gentoo-dev] Last-rites: dev-build/qconf

2025-04-05 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-23) # No revdeps after net-im/psi treecleaning. Depends on Qt5. # Removal on 2025-04-22. Bug #951936 dev-build/qconf signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: media-video/jellyfin-media-player

2025-04-04 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-04) # Depends on Qt5WebEngine, and upstream seem to be having a hard time # porting to Qt6 with an unknown ETA likely well beyond the time we want # to keep dev-qt/qtwebengine:5 in ::gentoo. # Removal on 2025-04-31. Bug #92 media-video/jellyfin-media-player

[gentoo-dev] Last-rites: app-text/kchmviewer

2025-04-02 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-04-02) # No release since 2021, no commit in 3 years, depends on Qt5WebEngine. # Use app-text/uchmviewer instead. Bug #823008 app-text/kchmviewer signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: kde-misc/kdirstat

2025-03-19 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-20) # Upstream have made clear that they are not going to port to Qt6 and # recommend sys-apps/qdirstat (from original k4dirstat author) instead. # Alternatively, there is kde-apps/filelight available. # Bug #951138. Removal on 2025-04-19. kde-misc/kdirstat

[gentoo-dev] Last-rites: kde-apps/akonadi-notes

2025-03-09 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-07) # No more revdeps after kde-apps/knotes last-rites and Gear 24.08.3 cleanup. # Removal on 2025-03-31. kde-apps/akonadi-notes signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: kde-apps/kdesdk-thumbnailers-common, media-libs/ksanecore-common, net-misc/kio-zeroconf-common

2025-03-09 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-07) # Downstream-split fallback package for KF5-based revdeps without any # revdeps left. Removal on 2025-03-31. kde-apps/kdesdk-thumbnailers-common media-libs/ksanecore-common net-misc/kio-zeroconf-common signature.asc Description: This is a digitally signed

[gentoo-dev] Last-rites: app-backup/luckybackup

2025-03-06 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-06) # Last release in 2018 and no upstream activity ever since. # Please migrate to an alternative backup solution. Bug #947894 # Removal on 2025-04-15. app-backup/luckybackup signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: sci-biology/clustalx

2025-03-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-01) # Last release 14 years ago, dead upstream, depends on Qt5 (and even that # only by means of downstream patching). Bug #947634. # Removal on 2025-03-31. sci-biology/clustalx signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: media-sound/qtscrobbler

2025-03-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-01) # Last release 12 years ago, dead upstream, depends on Qt5 (and even that # only by means of downstream patching), likely broken by now if going by # various upstream reports. Bug #947621. Removal on 2025-03-31. media-sound/qtscrobbler signature.asc

[gentoo-dev] Last-rites: app-text/diffpdf

2025-03-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-01) # Currently packaged version released 12 years ago; dead upstream, # possibly GPL violating piece of very expensive software not available # to "new" customers in most countries even for a 5-figure USD sum. # Bug #947239. Removal on 2025-03-31. app-te

[gentoo-dev] Last-rites: media-gfx/qvv

2025-03-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-01) # Last release 10 years ago, dead upstream, does not build with Qt6, # no one else packages this. Removal on 2025-03-31. media-gfx/qvv signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: x11-misc/flow-pomodoro

2025-03-01 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-03-01) # Current version is extremely outdated and only still in ::gentoo by means of # Qt5-porting patch. Removal on 2025-03-31. x11-misc/flow-pomodoro signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: media-sound/jamin

2025-02-26 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-26) # Last release in 2005, last commit in 2013, dead as can be - does not # start, does not build, bugs #914927, #927337, #946657. # Removal on 2025-03-26. media-sound/jamin signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-mobilephone/qtadb

2025-02-26 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-26) # Last release 11 years ago, dead upstream, depends on Qt5 (and even that # only by means of downstream patching, no one else packages this. # Bug #947631. Removal on 2025-03-26. app-mobilephone/qtadb signature.asc Description: This is a digitally signed

[gentoo-dev] Last-rites: sci-electronics/eagle

2025-02-18 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-18) # Depends on deprecated Qt5WebEngine, no response from maintainers. # Download source appears gone; bugs #926675, #880649, #870256. # Removal on 2025-03-18. sci-electronics/eagle signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-office/calligraplan

2025-02-16 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-16) # KF5/Qt5 based and no signs of porting or even life upstream. # Removal on 2025-03-16. app-office/calligraplan signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: media-gfx/okularpart

2025-02-16 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-16) # Downstream-split fallback package for KF5-based revdeps without any # revdeps left. Removal on 2025-02-28. media-gfx/okularpart signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: x11-misc/kaqaz

2025-02-13 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-13) # Last release 10 years ago, dead upstream, depends on Qt5, no one else # packages this. Removal on 2025-03-14. x11-misc/kaqaz signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: net-analyzer/ostinato

2025-02-12 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-12) # Depends on deprecated Qt5Script, gone closed-source upstream, multiple # open bugs #912829, #913106, #922304, #922306, #926039, #935772, #935887, # no response from maintainer. Removal on 2025-03-14. net-analyzer/ostinato signature.asc Description: This is a

[gentoo-dev] Last-rites: net-p2p/eiskaltdcpp

2025-02-12 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-02-12) # Last release from 2021 even if not yet dead upstream; however completely # unmaintained in Gentoo, with the ensuing multiple longstanding bugs # #832614, #866935, #895806, #915790, #944379, #945060; ebuild still based # on EAPI-7, USE=javascript depending on

[gentoo-dev] Last call for Qt5Script revdeps: media-gfx/opentoonz, media-tv/mythtv, net-analyzer/ostinato

2025-02-01 Thread Andreas Sturmlechner
Qt5 removal has several sub-trackers for packages depending on the real crusty stuff. One of them is for Qt5Script, which was only ever provided as a porting aid from Qt4, is deprecated since Qt 5.5, and last commit in upstream dev repo happened in 2021-10-26. [1] These packages will be last-ri

[gentoo-dev] Last-rites: media-libs/taglib-extras

2025-01-29 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-30) # Last release 15 years ago, dead upstream (never imported from kdesvn), # no revdeps probably since amarok last-rites. Removal on 2025-02-27. media-libs/taglib-extras signature.asc Description: This is a digitally signed message part.

Re: Fwd: [gentoo-dev] Please actively drop support for Qt5 wherever possible

2025-01-28 Thread Andreas Sturmlechner
On Mittwoch, 1. Jänner 2025 22:50:14 Mitteleuropäische Normalzeit Andreas Sturmlechner wrote: > Allow me to re-emphasize this topic 4 months later: > [...] One month later and Gentoo ebuild repository is already weighing around 100 Qt5-based ebuilds less than at the beginning of th

[gentoo-dev] Last-rites: net-misc/qtm

2025-01-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-28) # Last release 8 years ago, dead upstream (repository gone as well), # depends on Qt5, no one else packages this. Removal on 2025-02-27. net-misc/qtm signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-misc/qcma

2025-01-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-28) # Last release+commit 7 years ago, dead upstream, unmaintained in Gentoo, # depends on Qt5, broken with >= ffmpeg-5, no one else packages this. # Removal on 2025-02-27. Bug #900947 app-misc/qcma signature.asc Description: This is a digitally signed mess

[gentoo-dev] Last-rites: x11-misc/urxvtconfig

2025-01-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-28) # Last release+commit 8 years ago, dead upstream, unmaintained in Gentoo, # depends on Qt5, no one else packages this. Removal on 2025-02-27. x11-misc/urxvtconfig signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: media-sound/bempc

2025-01-28 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-28) # Last release from 14 years ago, dead upstream (repository gone as well). # Plenty of other options in ::gentoo. Bug #947724, removal on 2025-02-27. media-sound/bempc signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-editors/juffed

2025-01-23 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-23) # Last release from 12 years ago, git master still defaults to Qt4. # Plenty of other options in ::gentoo. Bug #947741, removal on 2025-02-22. app-editors/juffed signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-qt/qtbluetooth:5

2025-01-22 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-23) # CVE-2025-23050, bug #948573; Removal on 2025-02-22. dev-qt/qtbluetooth:5 signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: app-text/bibletime

2025-01-22 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-23) # Unmaintained in Gentoo, last release from 2022 needs Qt5WebEngine. # Bug #926655. Removal on 2025-02-22. app-text/bibletime signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Packages up for grabs: net-misc/seafile-client, net-misc/seafile, net-libs/libsearpc

2025-01-22 Thread Andreas Sturmlechner
On Montag, 4. Dezember 2023 10:29:33 Mitteleuropäische Normalzeit Viorel Munteanu wrote: > Packages up for grabs because the proxied maintainer no longer uses > them. [...] > > net-misc/seafile-client > net-misc/seafile > net-libs/libsearpc This is the last call for anyone interested in these pa

Re: [gentoo-dev] Re: Last-rites: net-im/psi and net-im/psimedia

2025-01-11 Thread Andreas Sturmlechner
On Samstag, 11. Jänner 2025 11:59:08 Mitteleuropäische Normalzeit Alexey Sokolov wrote: > The version in ::rion is maintained and uses qt6. Only though. Thanks, I've amended the package.mask notice accordingly. Regards signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: net-misc/fatrat

2025-01-11 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-11) # Last release from 2012, dead upstream for 7 years, no Gentoo maintainer. # Depends on dev-qt/qtwebengine:5, removed from almost every other distro. # Bugs #741849, #830220, #851507 and #926672. Removal on 2025-02-10. net-misc/fatrat signature.asc Description

[gentoo-dev] Last-rites: net-im/psi and net-im/psimedia

2025-01-11 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-11) # Last release from 2020, effectively unmaintained in Gentoo. # Depends on Qt5, app-crypt/qca[qt5] and dev-qt/qtwebengine:5. # Bugs #755446, #926138, #926670. Removal on 2025-02-10. net-im/psi net-im/psimedia signature.asc Description: This is a digitally

[gentoo-dev] Last-rites: dev-libs/qoauth

2025-01-11 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-11) # Qt5-based library without any revdeps. Depends on app-crypt/qca[qt5]. # Removal on 2025-02-10. dev-libs/qoauth signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: net-im/dianara

2025-01-11 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2025-01-11) # Last release from 2020, dead upstream; Depends on app-crypt/qca[qt5]. # Bug #935556. Removal on 2025-02-10. net-im/dianara signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-db/tora

2025-01-08 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2024-01-08) # Last release from 2017; fails to build w/ GCC-14 and qscintilla-2.14.1. # Depends on Qt5. Removal on 2025-02-08. dev-db/tora signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-libs/kqoauth

2025-01-08 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2024-01-08) # Qt5-based library without any revdeps. Removal on 2025-02-07. dev-libs/kqoauth signature.asc Description: This is a digitally signed message part.

[gentoo-dev] Last-rites: dev-libs/qcoro5

2025-01-08 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2024-01-08) # Qt5-based library without any revdeps. Removal on 2025-02-07. dev-libs/qcoro5 signature.asc Description: This is a digitally signed message part.

Re: Fwd: [gentoo-dev] Please actively drop support for Qt5 wherever possible

2025-01-03 Thread Andreas Sturmlechner
On Freitag, 3. Jänner 2025 03:38:16 Mitteleuropäische Normalzeit Ionen Wolkens wrote: > Qt5 base packages aren't the biggest worry even if we leave them > semi-abandoned (not that qtcore isn't pretty quirky and already with a > lot of small issues that will likely get worse), albeit it'd be nice t

[gentoo-dev] Last-rites: dev-libs/libqt5pas

2025-01-02 Thread Andreas Sturmlechner
# Andreas Sturmlechner (2024-01-02) # No more revdeps, depends on Qt5. Removal on 2025-01-29. dev-libs/libqt5pas signature.asc Description: This is a digitally signed message part.

Re: Fwd: [gentoo-dev] Please actively drop support for Qt5 wherever possible

2025-01-02 Thread Andreas Sturmlechner
On Donnerstag, 2. Januar 2025 20:03:29 Mitteleuropäische Normalzeit Philip Webb wrote: > When I updated to KDE 6 , I reluctantly had to drop Krusader When you updated to *Plasma 6*, nothing forced you to do that at all. signature.asc Description: This is a digitally signed message part.

Re: Fwd: [gentoo-dev] Please actively drop support for Qt5 wherever possible

2025-01-02 Thread Andreas Sturmlechner
On Donnerstag, 2. Jänner 2025 12:37:47 Mitteleuropäische Normalzeit Ulrich Müller wrote: > Can you provide a pointer to a Qt upstream page saying that Qt 5 is > deprecated? Just for the case that the upstreams of my packages need > further convincing. Not sure I can, without accompanying explanat

Re: Fwd: [gentoo-dev] Please actively drop support for Qt5 wherever possible

2025-01-02 Thread Andreas Sturmlechner
On Donnerstag, 2. Jänner 2025 12:29:01 Mitteleuropäische Normalzeit Alexey Sokolov wrote: > 02.01.2025 11:22, James Le Cuirot пишет: > > On Thu, 2025-01-02 at 03:13 -0800, Zoltan Puskas wrote: > > There may be some confusion here. The list includes packages like > > www-client/vivaldi, which alrea

  1   2   3   4   5   6   7   >