Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Portage & Programming
  • Search

Could not find ECMDeprecationSettings cmake error emerging

Problems with emerge or ebuilds? Have a basic programming question about C, PHP, Perl, BASH or something else?
Post Reply
Advanced search
15 posts • Page 1 of 1
Author
Message
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

Could not find ECMDeprecationSettings cmake error emerging

  • Quote

Post by picolo » Wed Jan 04, 2023 3:20 pm

Hello, I have been trying to update my system and i am getting this error

Code: Select all

CMake Error at CMakeLists.txt:34 (include):
  include could not find requested file:

    ECMDeprecationSettings
kdeplasma-addons and kate-lib shows this error

Here's the build log
https://dpaste.com/62R3ZP3A3

And here's the emerge --info
https://dpaste.com/2HKVJ4FDN

Any help would be greately appreciated, have a nice day!
Top
asturm
Developer
Developer
Posts: 9496
Joined: Thu Apr 05, 2007 4:07 pm

  • Quote

Post by asturm » Wed Jan 04, 2023 3:32 pm

File belongs to:

Code: Select all

$ equery b ECMDeprecationSettings.cmake
 * Searching for ECMDeprecationSettings.cmake ... 
kde-frameworks/extra-cmake-modules-5.101.0 (/usr/share/ECM/modules/ECMDeprecationSettings.cmake)
Basically all KDE software depends on this package. Your installation of it might be broken:

Code: Select all

$ equery k extra-cmake-modules
* Checking kde-frameworks/extra-cmake-modules-5.101.0 ...
   135 out of 135 files passed
Can you trust the integrity of your file system?
Top
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

  • Quote

Post by picolo » Wed Jan 04, 2023 3:39 pm

Thank you for your fast response, astrum.

Yes, I think my filesystem is intact, I am lightly using this setup running on a one year old nvme disk.
Everything seems to be running fine except that.
Top
Hu
Administrator
Administrator
Posts: 24391
Joined: Tue Mar 06, 2007 5:38 am

  • Quote

Post by Hu » Wed Jan 04, 2023 3:48 pm

Please post the output of emerge --pretend --verbose kde-frameworks/extra-cmake-modules ; equery check kde-frameworks/extra-cmake-modules.
Top
asturm
Developer
Developer
Posts: 9496
Joined: Thu Apr 05, 2007 4:07 pm

  • Quote

Post by asturm » Wed Jan 04, 2023 3:50 pm

Obviously, something is wrong on your end. You could have used the commands I've shown to investigate.
Top
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

  • Quote

Post by picolo » Wed Jan 04, 2023 4:21 pm

asturm,

Code: Select all

gensys /var/db/repos/gentoo/profiles # equery b ECMDeprecationSettings.cmake
 * Searching for ECMDeprecationSettings.cmake ... 
kde-frameworks/extra-cmake-modules-5.99.0 (/usr/share/ECM/modules/ECMDeprecationSettings.cmake)

Code: Select all

gensys /var/db/repos/gentoo/profiles # equery k extra-cmake-modules
* Checking kde-frameworks/extra-cmake-modules-5.99.0 ...
   135 out of 135 files passed
Hu,

Code: Select all

gensys /var/db/repos/gentoo/profiles # emerge --pretend --verbose kde-frameworks/extra-cmake-modules 
These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R    ] kde-frameworks/extra-cmake-modules-5.99.0:5/5.99::gentoo  USE="-doc -test" 0 KiB

Total: 1 package (1 reinstall), Size of downloads: 0 KiB
Top
asturm
Developer
Developer
Posts: 9496
Joined: Thu Apr 05, 2007 4:07 pm

  • Quote

Post by asturm » Wed Jan 04, 2023 4:42 pm

Not sure what your problem is but your system is at least in disarray dependency-wise.

Code: Select all

-- Found KF5Archive: /usr/lib64/cmake/KF5Archive/KF5ArchiveConfig.cmake (found version "5.99.0") 
-- Found KF5Config: /usr/lib64/cmake/KF5Config/KF5ConfigConfig.cmake (found version "5.99.0") 
-- Found KF5CoreAddons: /usr/lib64/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake (found version "5.99.0") 
-- Found KF5Declarative: /usr/lib64/cmake/KF5Declarative/KF5DeclarativeConfig.cmake (found version "5.96.0") 
-- Found KF5Holidays: /usr/lib64/cmake/KF5Holidays/KF5HolidaysConfig.cmake (found version "5.99.0") 
-- Found Gettext: /usr/bin/msgmerge (found version "0.21") 
-- Found KF5I18n: /usr/lib64/cmake/KF5I18n/KF5I18nConfig.cmake (found version "5.99.0") 
-- Found KF5KIO: /usr/lib64/cmake/KF5KIO/KF5KIOConfig.cmake (found version "5.96.0") 
-- Found KF5KCMUtils: /usr/lib64/cmake/KF5KCMUtils/KF5KCMUtilsConfig.cmake (found version "5.96.0") 
-- Found KF5Notifications: /usr/lib64/cmake/KF5Notifications/KF5NotificationsConfig.cmake (found version "5.99.0") 
-- Found KF5Plasma: /usr/lib64/cmake/KF5Plasma/KF5PlasmaConfig.cmake (found version "5.96.0") 
-- Found KF5Runner: /usr/lib64/cmake/KF5Runner/KF5RunnerConfig.cmake (found version "5.96.0") 
-- Found KF5Service: /usr/lib64/cmake/KF5Service/KF5ServiceConfig.cmake (found version "5.99.0") 
-- Found KF5Sonnet: /usr/lib64/cmake/KF5Sonnet/KF5SonnetConfig.cmake (found version "5.99.0") 
-- Found KF5UnitConversion: /usr/lib64/cmake/KF5UnitConversion/KF5UnitConversionConfig.cmake (found version "5.99.0") 
-- Found KF5NewStuff: /usr/lib64/cmake/KF5NewStuff/KF5NewStuffConfig.cmake (found version "5.96.0")
Showing a mix of old 5.96 and up to date 5.99 Frameworks. kde-plasma/kdeplasma-addons-5.25.5 ebuild correctly depends on all of these (e.g. kio, kcmutils and knewstuff) and yet some are still at 5.96.

Have you been working around some upgrade issues or what emerge options exactly do you use to upgrade world?
Top
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

  • Quote

Post by picolo » Wed Jan 04, 2023 5:15 pm

I have been trying to emerge for a month, at first I had to unmask some packages then i got stuck here, honestly I don't even remember everything I tried.
I was emerging about 500 packages, but the first thing i updated was portage and at about 250 packages this came up. Now i tried to emerge it again and i got these slot conflicts

Code: Select all

(app-arch/dpkg-1.20.9:0/0::gentoo, installed): ebuild is masked or unavailable
  (kde-frameworks/kwayland-5.96.0:5/5.96::gentoo, installed): ebuild is masked or unavailable
  (kde-plasma/plasma-workspace-5.25.5-r4:5/5::gentoo, installed): ebuild is masked or unavailable
  (kde-misc/kdeconnect-22.04.3:5/5::gentoo, installed): ebuild is masked or unavailable
  (media-libs/opencv-4.6.0-r2:0/4.6.0::gentoo, installed): ebuild is masked or unavailable
  (kde-frameworks/kxmlgui-5.96.0:5/5.96::gentoo, installed): ebuild is masked or unavailable
This is my emerge command

Code: Select all

emerge --update --deep --with-bdeps=y -q --changed-use @system --verbose-conflicts
Thank you very much for your help
Top
asturm
Developer
Developer
Posts: 9496
Joined: Thu Apr 05, 2007 4:07 pm

  • Quote

Post by asturm » Wed Jan 04, 2023 5:48 pm

Update @world, not @system.
Top
Hu
Administrator
Administrator
Posts: 24391
Joined: Tue Mar 06, 2007 5:38 am

  • Quote

Post by Hu » Wed Jan 04, 2023 6:13 pm

You should not need to unmask packages in order to perform a general system updates. If you encounter that and cannot find a path that does not involve unmasking, then I suggest you pause and ask for help in the forums.
Top
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

  • Quote

Post by picolo » Wed Jan 04, 2023 8:01 pm

I usually use @world, same ouput.
Top
asturm
Developer
Developer
Posts: 9496
Joined: Thu Apr 05, 2007 4:07 pm

  • Quote

Post by asturm » Wed Jan 04, 2023 8:28 pm

Highly unlikely. You might see *similar* output, certainly not the same. Show it to us in full.
Top
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

  • Quote

Post by picolo » Wed Jan 04, 2023 8:46 pm

Code: Select all

The following packages are causing rebuilds:

  (dev-libs/icu-72.1:0/72.1::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (media-libs/harfbuzz-5.3.1-r1:0/4.0.0::gentoo, ebuild scheduled for merge)
    (media-libs/libvisio-0.1.7:0/0::gentoo, ebuild scheduled for merge)
    (app-text/libqxp-0.0.2:0/0::gentoo, ebuild scheduled for merge)
    (dev-libs/re2-0.2022.06.01:0/9::gentoo, ebuild scheduled for merge)
    (media-libs/raptor-2.0.15-r7:2/2::gentoo, ebuild scheduled for merge)
    (media-libs/libcdr-0.1.7:0/0::gentoo, ebuild scheduled for merge)
    (app-text/libmspub-0.1.4:0/0::gentoo, ebuild scheduled for merge)
    (net-libs/nodejs-18.12.1:0/18::gentoo, ebuild scheduled for merge)
    (dev-libs/libical-3.0.14-r1:0/3::gentoo, ebuild scheduled for merge)
    (dev-libs/boost-1.80.0-r1:0/1.80.0::gentoo, ebuild scheduled for merge)
    (media-libs/libzmf-0.0.2-r1:0/0::gentoo, ebuild scheduled for merge)
    (app-text/libebook-0.1.3-r2:0/0::gentoo, ebuild scheduled for merge)
  (dev-cpp/abseil-cpp-20220623.1:0/20220623::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (net-im/telegram-desktop-3.6.1-r1:0/0::gentoo, ebuild scheduled for merge)
    (media-libs/tg_owt-0_pre20220209:0/20220209::gentoo, ebuild scheduled for merge)
  (x11-base/xorg-server-21.1.6:0/21.1.6::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (x11-drivers/xf86-video-ati-19.1.0-r1:0/0::gentoo, ebuild scheduled for merge)
    (x11-drivers/xf86-input-libinput-1.2.1:0/0::gentoo, ebuild scheduled for merge)
    (x11-drivers/xf86-video-amdgpu-22.0.0:0/0::gentoo, ebuild scheduled for merge)
  (dev-libs/boost-1.80.0-r1:0/1.80.0::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (app-office/libreoffice-7.3.7.2:0/0::gentoo, ebuild scheduled for merge)
    (dev-libs/libixion-0.17.0:0/0.17::gentoo, ebuild scheduled for merge)
    (media-gfx/blender-2.93.10-r1:2.93/2.93::gentoo, ebuild scheduled for merge)
    (sys-fs/cryfs-0.10.3-r1:0/0::gentoo, ebuild scheduled for merge)
    (media-libs/osl-1.12.7.0:0/0::gentoo, ebuild scheduled for merge)
    (media-gfx/openvdb-8.2.0-r7:0/8::gentoo, ebuild scheduled for merge)
    (dev-util/mdds-2.0.3:1/2.0::gentoo, ebuild scheduled for merge)
    (dev-cpp/libcmis-0.5.2-r1:0.5/0.5::gentoo, ebuild scheduled for merge)
    (dev-libs/liborcus-0.17.2:0/0.17::gentoo, ebuild scheduled for merge)
    (media-libs/openimageio-2.3.21.0-r1:0/2.3.1::gentoo, ebuild scheduled for merge)
  (dev-qt/qtwayland-5.15.7:5/5.15.7::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (kde-plasma/plasma-workspace-5.25.5-r5:5/5::gentoo, ebuild scheduled for merge)
    (kde-frameworks/kwayland-5.99.0:5/5.99::gentoo, ebuild scheduled for merge)
    (kde-plasma/layer-shell-qt-5.25.5:5/5::gentoo, ebuild scheduled for merge)
    (kde-plasma/kwayland-integration-5.25.5-r1:5/5::gentoo, ebuild scheduled for merge)
  (dev-qt/qtcore-5.15.7:5/5.15.7::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (dev-qt/qtwayland-5.15.7:5/5.15.7::gentoo, ebuild scheduled for merge)
  (dev-qt/qtgui-5.15.7:5/5.15.7::gentoo, ebuild scheduled for merge) causes rebuilds for:
    (kde-plasma/kwin-5.25.5:5/5::gentoo, ebuild scheduled for merge)
    (dev-qt/qtwayland-5.15.7:5/5.15.7::gentoo, ebuild scheduled for merge)
    (kde-plasma/plasma-integration-5.25.5:5/5::gentoo, ebuild scheduled for merge)
>>> Verifying ebuild manifests
>>> Running pre-merge checks for dev-libs/libfilezilla-0.39.1-r1
>>> Running pre-merge checks for net-misc/networkmanager-1.40.6
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     5.10.76-gentoo-r1
 * Checking for SYSFS_DEPRECATED support ...                                                           [ ok ]
>>> Running pre-merge checks for sys-apps/pciutils-3.9.0
>>> Running pre-merge checks for sys-apps/util-linux-2.38.1
>>> Running pre-merge checks for sys-devel/gcc-11.3.1_p20221209
>>> Running pre-merge checks for x11-drivers/xf86-input-libinput-1.2.1
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     5.10.76-gentoo-r1
 * Checking for suitable kernel configuration options ...                                              [ ok ]
>>> Running pre-merge checks for sys-apps/portage-3.0.41-r2
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     5.10.76-gentoo-r1
 * Checking for suitable kernel configuration options ...                                              [ ok ]
>>> Running pre-merge checks for dev-lang/python-3.11.1
>>> Running pre-merge checks for sys-libs/glibc-2.36-r5
 * After upgrading glibc, please restart all running processes.
 * Be sure to include init (telinit u) or systemd (systemctl daemon-reexec).
 * Alternatively, reboot your system.
 * (See bug #660556, bug #741116, bug #823756, etc)
>>> Running pre-merge checks for sys-libs/libxcrypt-4.4.28-r2
>>> Running pre-merge checks for dev-lang/rust-1.65.0
 * Checking for at least 13977 MiB disk space at "/var/tmp/portage/dev-lang/rust-1.65.0/temp" ...      [ ok ]
>>> Running pre-merge checks for net-libs/nodejs-18.12.1
>>> Running pre-merge checks for x11-drivers/xf86-video-ati-19.1.0-r1
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     5.10.76-gentoo-r1
 * Checking for suitable kernel configuration options ...                                              [ ok ]
>>> Running pre-merge checks for dev-util/mdds-2.0.3
>>> Running pre-merge checks for net-libs/libpsl-0.21.1-r1
 * "icu" and "idn" USE flags are enabled. Using "idn".
>>> Running pre-merge checks for dev-qt/qtcore-5.15.7
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux-5.10.76-gentoo-r1
 * Found kernel object directory:
 *     /usr/src/linux-5.10.76-gentoo-r1
 * Found sources for kernel version:
 *     5.10.76-gentoo-r1
>>> Running pre-merge checks for media-libs/opencv-4.6.0-r4
>>> Running pre-merge checks for net-im/telegram-desktop-3.6.1-r1
 * 
 * ccache does not work with telegram-desktop out of the box
 * due to usage of precompiled headers
 * check bug https://bugs.gentoo.org/715114 for more info
 * 
>>> Running pre-merge checks for media-libs/mesa-22.2.5
>>> Running pre-merge checks for dev-qt/qtwebengine-5.15.7_p20221122
 * Checking for at least 6 GiB RAM ...                                                                 [ ok ]
 * Checking for at least 7 GiB disk space at "/var/tmp/portage/dev-qt/qtwebengine-5.15.7_p20221122/tem [ ok ]
 * Checking for at least 150 MiB disk space at "/usr" ...                                              [ ok ]
>>> Running pre-merge checks for app-emulation/wine-vanilla-7.0.1
>>> Running pre-merge checks for net-libs/webkit-gtk-2.38.3
>>> Running pre-merge checks for app-emulation/qemu-7.1.0-r2
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     5.10.76-gentoo-r1
 * Checking for suitable kernel configuration options ...                                              [ ok ]
>>> Running pre-merge checks for app-office/libreoffice-7.3.7.2
 * If you plan to use Base application you must enable USE base.
 * Without USE java, several wizards are not going to be available.
 * Checking for at least 512 MiB RAM ...                                                               [ ok ]
 * Checking for at least 6 GiB disk space at "/var/tmp/portage/app-office/libreoffice-7.3.7.2/temp" .. [ ok ]
>>> Running pre-merge checks for www-client/chromium-108.0.5359.124
 * Checking for at least 4 GiB RAM ...                                                                 [ ok ]
 * Checking for at least 12 GiB disk space at "/var/tmp/portage/www-client/chromium-108.0.5359.124/tem [ ok ]
>>> Running pre-merge checks for net-libs/webkit-gtk-2.38.3-r410
>>> Running pre-merge checks for net-libs/webkit-gtk-2.38.3-r500
>>> Running pre-merge checks for sys-libs/compiler-rt-15.0.6
>>> Running pre-merge checks for sys-libs/compiler-rt-sanitizers-15.0.6
>>> Running pre-merge checks for media-gfx/blender-2.93.10-r1
>>> Running pre-merge checks for media-sound/easyeffects-7.0.0-r1
>>> Running pre-merge checks for www-client/firefox-102.6.0
 * Checking for at least 6600 MiB disk space at "/var/tmp/portage/www-client/firefox-102.6.0/temp" ... [ ok ]
>>> Emerging (1 of 285) kde-apps/kate-lib-22.08.3::gentoo
>>> Failed to emerge kde-apps/kate-lib-22.08.3, Log file:
>>>  '/var/tmp/portage/kde-apps/kate-lib-22.08.3/temp/build.log'
 * Package:    kde-apps/kate-lib-22.08.3:5
 * Repository: gentoo
 * Maintainer: kde@gentoo.org
 * Upstream:   https://bugs.kde.org/
 * USE:        abi_x86_64 activities amd64 elibc_glibc kernel_linux userland_GNU
 * FEATURES:   ccache network-sandbox preserve-libs sandbox userpriv usersandbox
 * Source directory (CMAKE_USE_DIR): "/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3"
 * Build directory  (BUILD_DIR):     "/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build"
 * Source directory (CMAKE_USE_DIR): "/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3"
 * Build directory  (BUILD_DIR):     "/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build"
cmake -C /var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build/gentoo_common_config.cmake -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DKDE_INSTALL_DOCBUNDLEDIR=/usr/share/help -DBUILD_addons=FALSE -DBUILD_kate=FALSE -DBUILD_kwrite=FALSE -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON -DCMAKE_DISABLE_FIND_PACKAGE_KF5Activities=OFF -DCMAKE_DISABLE_FIND_PACKAGE_KUserFeedback=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_TOOLCHAIN_FILE=/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build/gentoo_toolchain.cmake /var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3
loading initial cache file /var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build/gentoo_common_config.cmake
-- The C compiler identification is GNU 11.3.0
-- The CXX compiler identification is GNU 11.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/lib/ccache/bin/x86_64-pc-linux-gnu-gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/lib/ccache/bin/x86_64-pc-linux-gnu-g++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for __GLIBC__
-- Looking for __GLIBC__ - found
-- Performing Test _OFFT_IS_64BIT
-- Performing Test _OFFT_IS_64BIT - Success
-- Performing Test HAVE_DATE_TIME
-- Performing Test HAVE_DATE_TIME - Success
CMake Error at CMakeLists.txt:34 (include):
  include could not find requested file:

    ECMDeprecationSettings


CMake Error at CMakeLists.txt:39 (ecm_set_disabled_deprecation_versions):
  Unknown CMake command "ecm_set_disabled_deprecation_versions".


-- Configuring incomplete, errors occurred!
See also "/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build/CMakeFiles/CMakeOutput.log".
 * ERROR: kde-apps/kate-lib-22.08.3::gentoo failed (configure phase):
 *   cmake failed
 * 
 * Call stack:
 *     ebuild.sh, line  136:  Called src_configure
 *   environment, line 2546:  Called ecm_src_configure
 *   environment, line 1546:  Called cmake_src_configure
 *   environment, line 1195:  Called die
 * The specific snippet of code:
 *       "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed";
 * 
 * If you need support, post the output of `emerge --info '=kde-apps/kate-lib-22.08.3::gentoo'`,
 * the complete build log and the output of `emerge -pqv '=kde-apps/kate-lib-22.08.3::gentoo'`.
 * The complete build log is located at '/var/tmp/portage/kde-apps/kate-lib-22.08.3/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/kde-apps/kate-lib-22.08.3/temp/environment'.
 * Working directory: '/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build'
 * S: '/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3'

 * Messages for package sys-libs/glibc-2.36-r5:

 * After upgrading glibc, please restart all running processes.
 * Be sure to include init (telinit u) or systemd (systemctl daemon-reexec).
 * Alternatively, reboot your system.
 * (See bug #660556, bug #741116, bug #823756, etc)

 * Messages for package net-libs/libpsl-0.21.1-r1:

 * "icu" and "idn" USE flags are enabled. Using "idn".

 * Messages for package net-im/telegram-desktop-3.6.1-r1:

 * 
 * ccache does not work with telegram-desktop out of the box
 * due to usage of precompiled headers
 * check bug https://bugs.gentoo.org/715114 for more info
 * 

 * Messages for package app-office/libreoffice-7.3.7.2:

 * If you plan to use Base application you must enable USE base.
 * Without USE java, several wizards are not going to be available.

 * Messages for package kde-apps/kate-lib-22.08.3:

 * ERROR: kde-apps/kate-lib-22.08.3::gentoo failed (configure phase):
 *   cmake failed
 * 
 * Call stack:
 *     ebuild.sh, line  136:  Called src_configure
 *   environment, line 2546:  Called ecm_src_configure
 *   environment, line 1546:  Called cmake_src_configure
 *   environment, line 1195:  Called die
 * The specific snippet of code:
 *       "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed";
 * 
 * If you need support, post the output of `emerge --info '=kde-apps/kate-lib-22.08.3::gentoo'`,
 * the complete build log and the output of `emerge -pqv '=kde-apps/kate-lib-22.08.3::gentoo'`.
 * The complete build log is located at '/var/tmp/portage/kde-apps/kate-lib-22.08.3/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/kde-apps/kate-lib-22.08.3/temp/environment'.
 * Working directory: '/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3_build'
 * S: '/var/tmp/portage/kde-apps/kate-lib-22.08.3/work/kate-22.08.3'
Top
asturm
Developer
Developer
Posts: 9496
Joined: Thu Apr 05, 2007 4:07 pm

  • Quote

Post by asturm » Wed Jan 04, 2023 8:49 pm

picolo wrote:[...] Now i tried to emerge it again and i got these slot conflicts

Code: Select all

(app-arch/dpkg-1.20.9:0/0::gentoo, installed): ebuild is masked or unavailable
  (kde-frameworks/kwayland-5.96.0:5/5.96::gentoo, installed): ebuild is masked or unavailable
  (kde-plasma/plasma-workspace-5.25.5-r4:5/5::gentoo, installed): ebuild is masked or unavailable
  (kde-misc/kdeconnect-22.04.3:5/5::gentoo, installed): ebuild is masked or unavailable
  (media-libs/opencv-4.6.0-r2:0/4.6.0::gentoo, installed): ebuild is masked or unavailable
  (kde-frameworks/kxmlgui-5.96.0:5/5.96::gentoo, installed): ebuild is masked or unavailable
I thought you were having slot conflicts and now this is nowhere to be seen?

Why does your system not upgrade those Frameworks packages? Did you mask them?
Top
picolo
n00b
n00b
Posts: 7
Joined: Wed Jan 04, 2023 3:07 pm

  • Quote

Post by picolo » Wed Jan 04, 2023 10:30 pm

I don't know, I did not do anything, just emerged world right after.
Top
Post Reply

15 posts • Page 1 of 1

Return to “Portage & Programming”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic