Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Python mask issue
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
2anwct
n00b
n00b


Joined: 06 May 2025
Posts: 12

PostPosted: Fri May 16, 2025 2:44 am    Post subject: Python mask issue Reply with quote

I'm trying to install the plasma which i wonder why when i chose plasma profile during install. I guess it doesn't work out of the box and needs more? Anyway, that's not the main problem. When I try to install plasma I get this mask issue. It prompts to update files, I type Yes and it does nothing and keeps prompting the same, why? what's the point of prompting to update files if it doesn't do anything? How do I get around this? I hate this stuff. When i find help it says to edit package.use but it's a directory and you're supposed to add files, then other help says to add files when something's a file. what a pain. how to deal with this I have little patients for this? there's accept.keyword files package.use, package.mask USE variable what a bunch off confusion. Anyone who posts a link to the masking section in the manual will be ignored. I've looked, don't understand. Directories? files? What's deprecated, what's not?

"IMPORTANT: 22 config files in '/etc/portage' need updating. " what files and what do they need?

Code:

sudo emerge --ask kde-plasma/plasma-meta

The following USE changes are necessary to proceed:
 (see "package.use" in the portage(5) man page for more details)
# required by dev-util/itstool-2.0.7-r2::gentoo[python_single_target_python3_13]
# required by dev-util/gtk-doc-1.33.2-r1::gentoo
# required by net-misc/networkmanager-1.48.10-r1::gentoo[gtk-doc]
# required by kde-frameworks/networkmanager-qt-6.13.0::gentoo
# required by kde-plasma/ksystemstats-6.3.4::gentoo[networkmanager]
# required by kde-plasma/plasma-systemmonitor-6.3.4::gentoo
# required by kde-plasma/plasma-meta-6.3.4::gentoo
# required by kde-plasma/plasma-meta (argument)
>=dev-libs/libxml2-2.13.7 python_targets_python3_13

Would you like to add these changes to your config files? [Yes/No]
Autounmask changes successfully written.

 * IMPORTANT: 22 config files in '/etc/portage' need updating.

!!! The following installed packages are masked:
- dev-lang/python-3.13.3::gentoo (masked by: package.mask)
For more information, see the MASKED PACKAGES section in the emerge
man page or refer to the Gentoo Handbook.

 * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS
 * sections of the emerge man page to learn how to update config files.

Back to top
View user's profile Send private message
Banana
Moderator
Moderator


Joined: 21 May 2004
Posts: 2021
Location: Germany

PostPosted: Fri May 16, 2025 5:40 am    Post subject: Reply with quote

Quote:
"IMPORTANT: 22 config files in '/etc/portage' need updating. " what files and what do they need?


Those are essential information which, when ignored, can produce unwanted behavior. So have a look here.

Quote:
I'm trying to install the plasma which i wonder why when i chose plasma profile during install. I guess it doesn't work out of the box and needs more?

Just have a look at: https://wiki.gentoo.org/wiki/KDE and it should help you.

Code:
sudo emerge --ask kde-plasma/plasma-meta

Please use the root account directly and avoid using sudo in this case. I know it should work, but sometimes there is confusion and produces weird things.

Do you have set any PYTHON_* var in make.conf or anywhere else in /etc/portage/?
_________________
Forum Guidelines

PFL - Portage file list - find which package a file or command belongs to.
My delta-labs.org snippets do expire
Back to top
View user's profile Send private message
pietinger
Moderator
Moderator


Joined: 17 Oct 2006
Posts: 5664
Location: Bavaria

PostPosted: Fri May 16, 2025 6:06 am    Post subject: Re: Python mask issue Reply with quote

2anwct wrote:
I'm trying to install the plasma which i wonder why when i chose plasma profile during install. I guess it doesn't work out of the box and needs more? [...] I've looked, don't understand. Directories? files? What's deprecated, what's not?

Historically, there was initially only the option of using the /etc/portage/package.use file. This was later extended so that it can also be a directory in which individual files are stored. Both options can be used today - but the automatic creation of entries requires a directory.

To install a minimal KDE/Plasma you need these steps:

1. Choosing the correct profile. See more here: https://wiki.gentoo.org/wiki/User:Pietinger/New_at_Gentoo#The_Power_of_Gentoo
2. Setting the correct VIDEO device -> https://wiki.gentoo.org/wiki//etc/portage/make.conf#VIDEO_CARDS
3. Emerge these (instead kdecore-meta you can choose kde-apps-meta for a "full" kde; see more here: https://wiki.gentoo.org/wiki/KDE#Applications )
Code:
# emerge -vD xorg-server plasma-meta kdecore-meta
# nano -w /etc/conf.d/display-manager
! Change => DISPLAYMANAGER="sddm"

4. Add this and a session tracker ( https://wiki.gentoo.org/wiki/KDE#Session_tracker ) to your runlevels; example for an OpenRC system:
Code:
# rc-update add elogind boot
# rc-update add display-manager default

If you use a non US keyboard you must change it for X11 with (example for de):
Code:
# cd /etc/X11
# mkdir xorg.conf.d
# cd xorg.conf.d
# cp /usr/share/X11/xorg.conf.d/40-libinput.conf .
# nano -w 40-libinput.conf
! Add to keyboard section => Option "xkb_layout" "de"

_________________
https://wiki.gentoo.org/wiki/User:Pietinger
Back to top
View user's profile Send private message
sam_
Developer
Developer


Joined: 14 Aug 2020
Posts: 2319

PostPosted: Fri May 16, 2025 7:26 am    Post subject: Reply with quote

In addition to the good advice received above, please clarify what masks you've added, share the output of grep -rsin python /etc/portage, and provide emerge --info. I also suggest in future you not include "... will be ignored" in your posts.
Back to top
View user's profile Send private message
2anwct
n00b
n00b


Joined: 06 May 2025
Posts: 12

PostPosted: Fri May 16, 2025 10:52 am    Post subject: Re: Python mask issue Reply with quote

pietinger wrote:
2anwct wrote:
I'm trying to install the plasma which i wonder why when i chose plasma profile during install. I guess it doesn't work out of the box and needs more? [...] I've looked, don't understand. Directories? files? What's deprecated, what's not?

Historically, there was initially only the option of using the /etc/portage/package.use file. This was later extended so that it can also be a directory in which individual files are stored. Both options can be used today - but the automatic creation of entries requires a directory.

To install a minimal KDE/Plasma you need these steps:

1. Choosing the correct profile. See more here: https://wiki.gentoo.org/wiki/User:Pietinger/New_at_Gentoo#The_Power_of_Gentoo
2. Setting the correct VIDEO device -> https://wiki.gentoo.org/wiki//etc/portage/make.conf#VIDEO_CARDS
3. Emerge these (instead kdecore-meta you can choose kde-apps-meta for a "full" kde; see more here: https://wiki.gentoo.org/wiki/KDE#Applications )
Code:
# emerge -vD xorg-server plasma-meta kdecore-meta
# nano -w /etc/conf.d/display-manager
! Change => DISPLAYMANAGER="sddm"

4. Add this and a session tracker ( https://wiki.gentoo.org/wiki/KDE#Session_tracker ) to your runlevels; example for an OpenRC system:
Code:
# rc-update add elogind boot
# rc-update add display-manager default

If you use a non US keyboard you must change it for X11 with (example for de):
Code:
# cd /etc/X11
# mkdir xorg.conf.d
# cd xorg.conf.d
# cp /usr/share/X11/xorg.conf.d/40-libinput.conf .
# nano -w 40-libinput.conf
! Add to keyboard section => Option "xkb_layout" "de"


I did all that during install. I chose profile 27, plasma openrc. Now I can't install anything or update @world I get this python error. That was the original question. This is a fresh install. I followed the handbook. How is anyone supposed to install this?
Back to top
View user's profile Send private message
2anwct
n00b
n00b


Joined: 06 May 2025
Posts: 12

PostPosted: Fri May 16, 2025 10:56 am    Post subject: Reply with quote

sam_ wrote:
In addition to the good advice received above, please clarify what masks you've added, share the output of grep -rsin python /etc/portage, and provide emerge --info. I also suggest in future you not include "... will be ignored" in your posts.
linking documentation is unhelpful. It's condescending and insulting. You're essentially saying :"It's right here dummy, all you have to do is read it". I can find documentation. The handbook is documentation. I followed it, it didn't work so I come here for help from someone who knows how to get it working not for links to documentation. I can find that on my own.

Last edited by 2anwct on Fri May 16, 2025 11:02 am; edited 1 time in total
Back to top
View user's profile Send private message
sam_
Developer
Developer


Joined: 14 Aug 2020
Posts: 2319

PostPosted: Fri May 16, 2025 11:00 am    Post subject: Reply with quote

2anwct wrote:
sam_ wrote:
In addition to the good advice received above, please clarify what masks you've added, share the output of grep -rsin python /etc/portage, and provide emerge --info. I also suggest in future you not include "... will be ignored" in your posts.
linking documentation is unhelpful. It's condescending and insulting. You're essentially saying :"It's right here dummy, all you have to do is read it".


I've done no such thing. All I've asked is that you not include such a sentence in your opening post. It doesn't set a good tone. It's also not unhelpful if it's a specific document that you couldn't find or is hidden, or one wasn't aware of its relevance to a problem. It's starting proceedings in an unnecessarily hostile manner.

Please answer the bits I asked for.
Back to top
View user's profile Send private message
2anwct
n00b
n00b


Joined: 06 May 2025
Posts: 12

PostPosted: Fri May 16, 2025 11:03 am    Post subject: Reply with quote

sam_ wrote:
2anwct wrote:
sam_ wrote:
In addition to the good advice received above, please clarify what masks you've added, share the output of grep -rsin python /etc/portage, and provide emerge --info. I also suggest in future you not include "... will be ignored" in your posts.
linking documentation is unhelpful. It's condescending and insulting. You're essentially saying :"It's right here dummy, all you have to do is read it".


I've done no such thing. All I've asked is that you not include such a sentence in your opening post. It doesn't set a good tone. It's also not unhelpful if it's a specific document that you couldn't find or is hidden, or one wasn't aware of its relevance to a problem. It's starting proceedings in an unnecessarily hostile manner.

Please answer the bits I asked for.
Gotcha,I'll just silently ignore them.
Back to top
View user's profile Send private message
pietinger
Moderator
Moderator


Joined: 17 Oct 2006
Posts: 5664
Location: Bavaria

PostPosted: Fri May 16, 2025 11:11 am    Post subject: Re: Python mask issue Reply with quote

2anwct wrote:
[[...] This is a fresh install. I followed the handbook. How is anyone supposed to install this?

I strongly suspect that you have done more than just follow the manual ... e.g. adjustments to the use flags ... which probably no longer fit ... in any case, we need the output of all those mentioned here:
https://wiki.gentoo.org/wiki/User:Pietinger/Overview_of_System_Information#All_Settings_for_Portage

On this occasion: In our forum we have the great opportunity to communicate directly with our developers. They are not paid for this (just like we moderators are not paid; neither are the admins; nobody; the only reward we all get is a written “thank you” ... and not always ...). @sam has already requested data (“share the output of grep -rsin python /etc/portage, and provide emerge --info”) ... instead of providing it, you reply in a nasty way ...
_________________
https://wiki.gentoo.org/wiki/User:Pietinger
Back to top
View user's profile Send private message
asturm
Developer
Developer


Joined: 05 Apr 2007
Posts: 9388

PostPosted: Fri May 16, 2025 11:13 am    Post subject: Reply with quote

Gentoo has a steep learning curve. Beginning is hard and at that stage it is easy to bite off more than one can chew. There is no shame in admitting defeat and asking for help, but there is no obligation to provide support either. Giving support is no one-way street; it requires your cooperation. If you come in here with the expectation of not having to learn yourself, but receiving - demanding, even - solutions on a silver platter, then Gentoo isn't the right choice for you at this time.
Back to top
View user's profile Send private message
2anwct
n00b
n00b


Joined: 06 May 2025
Posts: 12

PostPosted: Fri May 16, 2025 11:53 am    Post subject: Reply with quote

sam_ wrote:
In addition to the good advice received above, please clarify what masks you've added, share the output of grep -rsin python /etc/portage, and provide emerge --info. I also suggest in future you not include "... will be ignored" in your posts.


I tried to provide grep -rsin python /etc/portage but it said "Error in post" too big maybe?

Code:

emerge --info.
Portage 3.0.67 (python 3.13.3-final-0, default/linux/amd64/23.0/desktop/plasma, gcc-14, glibc-2.40-r8, 6.12.21-gentoo-gentoo-dist x86_64)
=================================================================
System uname: Linux-6.12.21-gentoo-gentoo-dist-x86_64-AMD_Ryzen_5_5600G_with_Radeon_Graphics-with-glibc2.40
KiB Mem:    32643688 total,  31711128 free
KiB Swap:   16777212 total,  16777212 free
Timestamp of repository gentoo: Thu, 15 May 2025 20:45:00 +0000
Head commit of repository gentoo: a5de38a8fa57e3e90612b36361476270d9b8b0dc
sh bash 5.2_p37
ld GNU ld (Gentoo 2.44 p1) 2.44.0
app-misc/pax-utils:        1.3.8::gentoo
app-shells/bash:           5.2_p37::gentoo
dev-build/autoconf:        2.72-r1::gentoo
dev-build/automake:        1.17-r1::gentoo
dev-build/cmake:           3.31.5::gentoo
dev-build/libtool:         2.5.4::gentoo
dev-build/make:            4.4.1-r100::gentoo
dev-build/meson:           1.7.0::gentoo
dev-lang/perl:             5.40.2::gentoo
dev-lang/python:           3.11.12::gentoo, 3.12.10::gentoo, 3.13.3::gentoo
dev-lang/rust-bin:         1.85.1::gentoo
llvm-core/clang:           19.1.7::gentoo
llvm-core/llvm:            19.1.7::gentoo
sys-apps/baselayout:       2.17::gentoo
sys-apps/openrc:           0.56::gentoo
sys-apps/sandbox:          2.39::gentoo
sys-devel/binutils:        2.44::gentoo
sys-devel/binutils-config: 5.5.2::gentoo
sys-devel/gcc:             14.2.1_p20241221::gentoo
sys-devel/gcc-config:      2.12.1::gentoo
sys-kernel/linux-headers:  6.12::gentoo (virtual/os-headers)
sys-libs/glibc:            2.40-r8::gentoo
Repositories:

gentoo
    location: /var/db/repos/gentoo
    sync-type: rsync
    sync-uri: rsync://rsync.gentoo.org/gentoo-portage
    priority: -1000
    volatile: False
    sync-rsync-verify-metamanifest: yes
    sync-rsync-verify-jobs: 1
    sync-rsync-extra-opts:
    sync-rsync-verify-max-age: 3

Binary Repositories:

gentoobinhost
    priority: 1
    sync-uri: https://distfiles.gentoo.org/releases/amd64/binpackages/23.0/x86-64

ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d"
CXXFLAGS="-O2 -pipe"
DISTDIR="/var/cache/distfiles"
ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GDK_PIXBUF_MODULE_FILE GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR XDG_STATE_HOME"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs binpkg-multi-instance buildpkg-live config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync merge-wait multilib-strict network-sandbox news parallel-fetch pid-sandbox pkgdir-index-trusted preserve-libs protect-owned qa-unresolved-soname-deps sandbox strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="https://mirror.clarkson.edu/gentoo/     http://mirror.clarkson.edu/gentoo/     rsync://mirror.clarkson.edu/gentoo/     http://www.gtlib.gatech.edu/pub/gentoo     rsync://rsync.gtlib.gatech.edu/gentoo     https://mirrors.mit.edu/gentoo-distfiles/     http://mirrors.mit.edu/gentoo-distfiles/     rsync://mirrors.mit.edu/gentoo-distfiles/     https://gentoo.osuosl.org/     http://gentoo.osuosl.org/     https://mirrors.rit.edu/gentoo/     http://mirrors.rit.edu/gentoo/     ftp://mirrors.rit.edu/gentoo/     rsync://mirrors.rit.edu/gentoo/     https://mirror.servaxnet.com/gentoo/     http://mirror.servaxnet.com/gentoo/     http://gentoo-mirror.flux.utah.edu/"
LANG="en_US.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"
LEX="flex"
PKGDIR="/var/cache/binpkgs"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
RUSTFLAGS=" -C target-cpu=x86_64"
SHELL="/usr/bin/zsh"
USE="X a52 aac acl acpi activities alsa amd64 bluetooth branding bzip2 cairo cdda cdr cet crypt cups dbus declarative dri dts dvd dvdr elogind encode exif flac gdbm gif gpm gtk gui iconv icu ipv6 jpeg kde kde6 kwallet lcms libnotify libtirpc mad mng mp3 mp4 mpeg multilib ncurses networkmanager nls nvidia ogg opengl openmp pam pango pcre pdf pipewire plasma plasma6 png policykit ppds pulseaudio qml qt6 readline screencast sdl seccomp semantic-desktop sound spell ssl startup-notification svg test-rust tiff truetype udev udisks unicode upower usb vorbis vulkan wayland widgets wxwidgets x264 xattr xcb xft xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gcc_14" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_anon authn_dbm authn_file authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir env expires ext_filter file_cache filter headers include info log_config logio mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax navcom oceanserver oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 tsip tripmate tnt ublox" GRUB_PLATFORMS="efi-64" GUILE_SINGLE_TARGET="3-0" GUILE_TARGETS="3-0" INPUT_DEVICES="libinput" KERNEL="linux" LCD_DEVICES="bayrad cfontz glk hd44780 lb216 lcdm001 mtxorb text" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php8-2" POSTGRES_TARGETS="postgres17" PYTHON_SINGLE_TARGET="python3_13" PYTHON_TARGETS="python3_8 python3_9 python3_10 pythong3_11 python3_12 python3_13" RUBY_TARGETS="ruby32" VIDEO_CARDS="nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipp2p iface geoip fuzzy condition tarpit sysrq proto logmark ipmark dhcpmac delude chaos account"
Unset:  ADDR2LINE, AR, ARFLAGS, AS, ASFLAGS, CC, CCLD, CONFIG_SHELL, CPP, CPPFLAGS, CTARGET, CXX, CXXFILT, ELFEDIT, EMERGE_DEFAULT_OPTS, EXTRA_ECONF, F77FLAGS, FC, GCOV, GPROF, INSTALL_MASK, LC_ALL, LD, LFLAGS, LIBTOOL, LINGUAS, MAKE, MAKEFLAGS, MAKEOPTS, NM, OBJCOPY, OBJDUMP, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PYTHONPATH, RANLIB, READELF, SIZE, STRINGS, STRIP, YACC, YFLAGS
Back to top
View user's profile Send private message
2anwct
n00b
n00b


Joined: 06 May 2025
Posts: 12

PostPosted: Fri May 16, 2025 12:11 pm    Post subject: Re: Python mask issue Reply with quote

pietinger wrote:
we need the output of all those mentioned here:https://wiki.gentoo.org/wiki/User:Pietinger/Overview_of_System_Information#All_Settings_for_Portage
grep -r "" /etc/portage
grep -r "" /etc/portage

or shortened by some unnecessary information:
grep -r --exclude-dir=savedconfig --exclude-dir=repos.conf "" /etc/portage

Error in posting
Very long lists, probably too big to post here?

pietinger wrote:
cat /var/lib/portage/world


Code:

pp-admin/sudo
app-portage/gentoolkit
app-shells/zsh
dev-lang/python
dev-libs/libxml2
dev-vcs/git
sys-apps/openrc
x11-drivers/nvidia-drivers


dmesg:
[code]
Error in posting
[/code\
Back to top
View user's profile Send private message
Banana
Moderator
Moderator


Joined: 21 May 2004
Posts: 2021
Location: Germany

PostPosted: Fri May 16, 2025 12:22 pm    Post subject: Reply with quote

Use https://wiki.gentoo.org/wiki/Wgetpaste to provide information which is too long for a forum post.
_________________
Forum Guidelines

PFL - Portage file list - find which package a file or command belongs to.
My delta-labs.org snippets do expire
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



OSZAR »