In portage is version 1.8.19 which Arduino's site deems "legacy" https://www.arduino.cc/en/software. Current version of the IDE is 2.2.1. Reproducible: Always
I looked into trying to bump and it looks like there has been a complete change in the method of availability. See https://docs.arduino.cc/software/ide-v2/tutorials/getting-started/ide-v2-downloading-and-installing I do not think without a maintainer bumping the Arduino IDE will be possible. I wonder if Arduino should just be removed from portage.
I've done further digging into setting up the current Arduino IDE and finally succeeded in installing their current IDE. The process is entirely different, you just download their FUSE APP and run it (I unzipped it, but ran it afterwards). They rely on Filesystem in Userspace ("FUSE") which is sys-fs/fuse, and they require version 2.x whereas FUSE is at version 3. I may post to the forum a "howto" documenting what you do to run Arduino's current IDE. In the meantime 1.8.19 is as far as it goes.
It looks like it may be possible (but miserable) to actually build the IDE instead of just unpacking the appimage they release, but yes, it's a completely different process than before. The main problem is that upstream now uses Electron, which pulls in the whole dependency mess that is the Javascript ecosystem. Gentoo currently doesn't seem to have great support for apps that use npm/yarn as part of the build scripts (and honestly, I can't blame Gentoo). Here's the documentation on how to build the IDE: https://github.com/arduino/arduino-ide/blob/main/docs/development.md They then point to Theia IDE, which they're based off: https://github.com/eclipse-theia/theia/blob/master/doc/Developing.md#prerequisites Until Gentoo has a way to deal with Javascript dependencies in some sane manner, I don't know how much of a shot this has at being built. Are there other Electron apps in the Portage tree that can be used as inspiration? Actually, how is VSCode packaged up for Gentoo? I took a look at the ebuild... and do they just unpack the upstream release? Maybe something like this could be used for this IDE... not great, but hey, VSCode is doing it and it's in the tree right now.