from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

81969

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-11-07
aioitertools - 0.13.0
Ebuild name:

dev-python/aioitertools-0.13.0

Description

itertools and builtins for AsyncIO and mixed iterables

Added to portage

2025-11-07

asteval - 1.0.7
Ebuild name:

dev-python/asteval-1.0.7

Description

Evaluator of Python expression using ast module

Added to portage

2025-11-07

awscli - 1.42.68
Ebuild name:

app-admin/awscli-1.42.68

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-07

boto3 - 1.40.68
Ebuild name:

dev-python/boto3-1.40.68

Description

The AWS SDK for Python

Added to portage

2025-11-07

botocore - 1.40.68
Ebuild name:

dev-python/botocore-1.40.68

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-07

cerberus - 1.3.8
Ebuild name:

dev-python/cerberus-1.3.8

Description

A lightweight and extensible data-validation library for Python

Added to portage

2025-11-07

chromium - 143.0.7499.17
Ebuild name:

www-client/chromium-143.0.7499.17

Description

Open-source version of Google Chrome web browser

Added to portage

2025-11-07

chromium - 143.0.7499.4
Ebuild name:

www-client/chromium-143.0.7499.4

Description

Open-source version of Google Chrome web browser

Added to portage

2025-11-07

django-crispy-forms - 2.5
Ebuild name:

dev-python/django-crispy-forms-2.5

Description

DRY Django forms

Added to portage

2025-11-07

ena-driver - 2.16.0
Ebuild name:

net-misc/ena-driver-2.16.0

Description

Amazon EC2 Elastic Network Adapter (ENA) kernel driver

Added to portage

2025-11-07

ffmpeg-chromium - 143
Ebuild name:

media-video/ffmpeg-chromium-143

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2025-11-07

flask-compress - 1.23
Ebuild name:

dev-python/flask-compress-1.23

Description

Compress responses in your Flask app with gzip

Added to portage

2025-11-07

girara - 0.4.5-r1
Ebuild name:

dev-libs/girara-0.4.5-r1

Description

UI library that focuses on simplicity and minimalism

Added to portage

2025-11-07

gn - 0.2289
Ebuild name:

dev-build/gn-0.2289

Description

GN is a meta-build system that generates build files for Ninja

Added to portage

2025-11-07

googleapis-common-protos - 1.72.0
Ebuild name:

dev-python/googleapis-common-protos-1.72.0

Description

Python classes generated from the common protos in the g

Added to portage

2025-11-07

grub - 2.14_rc1-r1
Ebuild name:

sys-boot/grub-2.14_rc1-r1

Description

GNU GRUB boot loader

Added to portage

2025-11-07

hishel - 1.1.4
Ebuild name:

dev-python/hishel-1.1.4

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2025-11-07

hypothesis - 6.147.0
Ebuild name:

dev-python/hypothesis-6.147.0

Description

A library for property based testing

Added to portage

2025-11-07

libreoffice - 25.2.7.2-r1
Ebuild name:

app-office/libreoffice-25.2.7.2-r1

Description

A full office productivity suite

Added to portage

2025-11-07

pariemacs - 3.14-r1
Ebuild name:

app-emacs/pariemacs-3.14-r1

Description

sci-mathematics/pari emacs mode

Added to portage

2025-11-07

parsebib - 6.7
Ebuild name:

app-emacs/parsebib-6.7

Description

Emacs Lisp library for reading .bib files

Added to portage

2025-11-07

parseclj - 1.1.1
Ebuild name:

app-emacs/parseclj-1.1.1

Description

Clojure Parser for Emacs Lisp

Added to portage

2025-11-07

poppler - 25.11.0
Ebuild name:

app-text/poppler-25.11.0

Description

PDF rendering library based on the xpdf-3.0 code base

Added to portage

2025-11-07

power_assert - 3.0.1
Ebuild name:

dev-ruby/power_assert-3.0.1

Description

Shows each value of variables and method calls in the expression

Added to portage

2025-11-07

rivet - 4.1.2
Ebuild name:

sci-physics/rivet-4.1.2

Description

Rivet toolkit (Robust Independent Validation of Experiment and Theory)

Added to portage

2025-11-07

runc - 1.2.8
Ebuild name:

app-containers/runc-1.2.8

Description

runc container cli tools

Added to portage

2025-11-07

runc - 1.3.3
Ebuild name:

app-containers/runc-1.3.3

Description

runc container cli tools

Added to portage

2025-11-07

sqlite3 - 2.8.0
Ebuild name:

dev-ruby/sqlite3-2.8.0

Description

An extension library to access a SQLite database from Ruby

Added to portage

2025-11-07

vivaldi-snapshot - 7.7.3851.25
Ebuild name:

www-client/vivaldi-snapshot-7.7.3851.25

Description

A browser for our friends

Added to portage

2025-11-07

wrapt - 2.0.1
Ebuild name:

dev-python/wrapt-2.0.1

Description

Module for decorators, wrappers and monkey patching

Added to portage

2025-11-07

zathura - 0.5.13
Ebuild name:

app-text/zathura-0.5.13

Description

Highly customizable & functional document viewer

Added to portage

2025-11-07

2025-11-06
actioncable - 8.1.1
Ebuild name:

dev-ruby/actioncable-8.1.1

Description

Integrated WebSockets for Rails

Added to portage

2025-11-06

actionmailbox - 8.1.1
Ebuild name:

dev-ruby/actionmailbox-8.1.1

Description

Framework for designing email-service layers

Added to portage

2025-11-06

actionmailer - 8.1.1
Ebuild name:

dev-ruby/actionmailer-8.1.1

Description

Framework for designing email-service layers

Added to portage

2025-11-06

actionpack - 8.1.1
Ebuild name:

dev-ruby/actionpack-8.1.1

Description

Eases web-request routing, handling, and response

Added to portage

2025-11-06

actiontext - 8.1.1
Ebuild name:

dev-ruby/actiontext-8.1.1

Description

Edit and display rich text in Rails applications

Added to portage

2025-11-06

actionview - 8.1.1
Ebuild name:

dev-ruby/actionview-8.1.1

Description

Simple, battle-tested conventions and helpers for building web pages

Added to portage

2025-11-06

activejob - 8.1.1
Ebuild name:

dev-ruby/activejob-8.1.1

Description

Job framework with pluggable queues

Added to portage

2025-11-06

activemodel - 8.1.1
Ebuild name:

dev-ruby/activemodel-8.1.1

Description

Toolkit for building modeling frameworks like Active Record and Active R

Added to portage

2025-11-06

activerecord - 8.1.1
Ebuild name:

dev-ruby/activerecord-8.1.1

Description

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM

Added to portage

2025-11-06

activestorage - 8.1.1
Ebuild name:

dev-ruby/activestorage-8.1.1

Description

Attach cloud and local files in Rails applications

Added to portage

2025-11-06

activesupport - 8.1.1
Ebuild name:

dev-ruby/activesupport-8.1.1

Description

Utility Classes and Extension to the Standard Library

Added to portage

2025-11-06

akonadi - 25.08.3
Ebuild name:

kde-apps/akonadi-25.08.3

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-11-06

akonadi-calendar - 25.08.3
Ebuild name:

kde-apps/akonadi-calendar-25.08.3

Description

Library for akonadi calendar integration

Added to portage

2025-11-06

akonadi-calendar-tools-common - 25.08.3
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.08.3

Description

Added to portage

2025-11-06

akonadi-contacts - 25.08.3
Ebuild name:

kde-apps/akonadi-contacts-25.08.3

Description

Library for akonadi contact integration

Added to portage

2025-11-06

akonadi-import-wizard - 25.08.3
Ebuild name:

kde-apps/akonadi-import-wizard-25.08.3

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2025-11-06

akonadi-mime - 25.08.3
Ebuild name:

kde-apps/akonadi-mime-25.08.3

Description

Library for akonadi mime types

Added to portage

2025-11-06

akonadi-search - 25.08.3
Ebuild name:

kde-apps/akonadi-search-25.08.3

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2025-11-06

akonadiconsole - 25.08.3
Ebuild name:

kde-apps/akonadiconsole-25.08.3

Description

Application for debugging Akonadi Resources

Added to portage

2025-11-06

akregator - 25.08.3
Ebuild name:

kde-apps/akregator-25.08.3

Description

News feed aggregator

Added to portage

2025-11-06

alligator - 25.08.3
Ebuild name:

net-news/alligator-25.08.3

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2025-11-06

analitza - 25.08.3
Ebuild name:

kde-apps/analitza-25.08.3

Description

KDE library for mathematical features

Added to portage

2025-11-06

apsw - 3.51.0.0
Ebuild name:

dev-python/apsw-3.51.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2025-11-06

ark - 25.08.3
Ebuild name:

kde-apps/ark-25.08.3

Description

File archiver by KDE

Added to portage

2025-11-06

artikulate - 25.08.3
Ebuild name:

kde-apps/artikulate-25.08.3

Description

Language learning application that helps improving pronunciation skills

Added to portage

2025-11-06

audex - 25.08.3
Ebuild name:

media-sound/audex-25.08.3

Description

Tool for ripping compact discs

Added to portage

2025-11-06

audiocd-kio - 25.08.3
Ebuild name:

kde-apps/audiocd-kio-25.08.3

Description

KIO worker for accessing audio CDs

Added to portage

2025-11-06

awscli - 1.42.67
Ebuild name:

app-admin/awscli-1.42.67

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-06

baloo-widgets - 25.08.3
Ebuild name:

kde-apps/baloo-widgets-25.08.3

Description

Widget library for baloo

Added to portage

2025-11-06

blinken - 25.08.3
Ebuild name:

kde-apps/blinken-25.08.3

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2025-11-06

bluetui - 0.7.2
Ebuild name:

net-wireless/bluetui-0.7.2

Description

TUI for managing bluetooth on Linux

Added to portage

2025-11-06

bomber - 25.08.3
Ebuild name:

kde-apps/bomber-25.08.3

Description

Single player arcade bombing game

Added to portage

2025-11-06

boto3 - 1.40.67
Ebuild name:

dev-python/boto3-1.40.67

Description

The AWS SDK for Python

Added to portage

2025-11-06

botocore - 1.40.67
Ebuild name:

dev-python/botocore-1.40.67

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-06

bovo - 25.08.3
Ebuild name:

kde-apps/bovo-25.08.3

Description

Five-in-a-row Board Game

Added to portage

2025-11-06

cache_tab - 1.0.33
Ebuild name:

dev-erlang/cache_tab-1.0.33

Description

In-memory cache Erlang and Elixir library

Added to portage

2025-11-06

calendarjanitor - 25.08.3
Ebuild name:

kde-apps/calendarjanitor-25.08.3

Description

Tool to scan calendar data for buggy instances

Added to portage

2025-11-06

calendarsupport - 25.08.3
Ebuild name:

kde-apps/calendarsupport-25.08.3

Description

Calendar support library

Added to portage

2025-11-06

cantor - 25.08.3
Ebuild name:

kde-apps/cantor-25.08.3

Description

Interface for doing mathematics and scientific computing

Added to portage

2025-11-06

chrome-binary-plugins - 142.0.7444.134
Ebuild name:

www-plugins/chrome-binary-plugins-142.0.7444.134

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2025-11-06

chromedriver-bin - 142.0.7444.134
Ebuild name:

www-apps/chromedriver-bin-142.0.7444.134

Description

WebDriver for Chrome

Added to portage

2025-11-06

chromium - 142.0.7444.134
Ebuild name:

www-client/chromium-142.0.7444.134

Description

Open-source version of Google Chrome web browser

Added to portage

2025-11-06

colord-kde - 25.08.3
Ebuild name:

kde-misc/colord-kde-25.08.3

Description

Provides interfaces and session daemon to colord

Added to portage

2025-11-06

curl - 8.17.0
Ebuild name:

net-misc/curl-8.17.0

Description

A Client that groks URLs

Added to portage

2025-11-06

cutlass - 4.1.0
Ebuild name:

dev-libs/cutlass-4.1.0

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

cutlass - 4.2.1
Ebuild name:

dev-libs/cutlass-4.2.1

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

cython - 3.2.0
Ebuild name:

dev-python/cython-3.2.0

Description

A Python to C compiler

Added to portage

2025-11-06

distrobox - 1.8.2.1
Ebuild name:

app-containers/distrobox-1.8.2.1

Description

Use any Linux distribution inside your terminal (powered by docker

Added to portage

2025-11-06

django - 4.2.26
Ebuild name:

dev-python/django-4.2.26

Description

High-level Python web framework

Added to portage

2025-11-06

django - 5.1.14
Ebuild name:

dev-python/django-5.1.14

Description

High-level Python web framework

Added to portage

2025-11-06

django - 5.2.8
Ebuild name:

dev-python/django-5.2.8

Description

High-level Python web framework

Added to portage

2025-11-06

dnsruby - 1.73.1
Ebuild name:

dev-ruby/dnsruby-1.73.1

Description

A pure Ruby DNS client library

Added to portage

2025-11-06

docutils - 0.22.3
Ebuild name:

dev-python/docutils-0.22.3

Description

Python Documentation Utilities (reference reStructuredText impl.)

Added to portage

2025-11-06

dolphin - 25.08.3
Ebuild name:

kde-apps/dolphin-25.08.3

Description

Plasma filemanager focusing on usability

Added to portage

2025-11-06

dolphin-plugins-common - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-common-25.08.3

Description

Added to portage

2025-11-06

dolphin-plugins-dropbox - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.08.3

Description

Dolphin plugin for Dropbox service integration

Added to portage

2025-11-06

dolphin-plugins-git - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-git-25.08.3

Description

Dolphin plugin for Git integration

Added to portage

2025-11-06

dolphin-plugins-makefileactions - 25.08.3
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.08.3

Description

Dolphin plugin for Makefile targets integration

Added to portage

2025-11-06

dolphin-plugins-mercurial - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.08.3

Description

Dolphin plugin for Mercurial integration

Added to portage

2025-11-06

dolphin-plugins-mountiso - 25.08.3
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.08.3

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2025-11-06

dolphin-plugins-subversion - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.08.3

Description

Dolphin plugin for Subversion integration

Added to portage

2025-11-06

dragon - 25.08.3
Ebuild name:

kde-apps/dragon-25.08.3

Description

Simple video player

Added to portage

2025-11-06

eimp - 1.0.26
Ebuild name:

dev-erlang/eimp-1.0.26

Description

Erlang Image Manipulation Process

Added to portage

2025-11-06

ejabberd - 25.10
Ebuild name:

net-im/ejabberd-25.10

Description

Robust, scalable and extensible XMPP server

Added to portage

2025-11-06

elisa - 25.08.3
Ebuild name:

media-sound/elisa-25.08.3

Description

Simple music player by KDE

Added to portage

2025-11-06

esip - 1.0.59
Ebuild name:

dev-erlang/esip-1.0.59

Description

ProcessOne SIP server component

Added to portage

2025-11-06

eventviews - 25.08.3
Ebuild name:

kde-apps/eventviews-25.08.3

Description

Calendar viewer for KDE PIM

Added to portage

2025-11-06

ezlib - 1.0.15
Ebuild name:

dev-erlang/ezlib-1.0.15

Description

Native zlib driver for Erlang and Elixir

Added to portage

2025-11-06

fakeredis - 2.32.1
Ebuild name:

dev-python/fakeredis-2.32.1

Description

Fake implementation of redis API for testing purposes

Added to portage

2025-11-06

falkon - 25.08.3
Ebuild name:

www-client/falkon-25.08.3

Description

Cross-platform web browser using QtWebEngine

Added to portage

2025-11-06

fast_tls - 1.1.25
Ebuild name:

dev-erlang/fast_tls-1.1.25

Description

TLS/SSL native driver for Erlang and Elixir

Added to portage

2025-11-06

fast_xml - 1.1.57
Ebuild name:

dev-erlang/fast_xml-1.1.57

Description

Fast Expat based Erlang XML parsing library

Added to portage

2025-11-06

fast_yaml - 1.0.39
Ebuild name:

dev-erlang/fast_yaml-1.0.39

Description

Fast Yaml native library for Erlang and Elixir

Added to portage

2025-11-06

ffmpegthumbs - 25.08.3
Ebuild name:

kde-apps/ffmpegthumbs-25.08.3

Description

FFmpeg based thumbnail generator for video files

Added to portage

2025-11-06

filelight - 25.08.3
Ebuild name:

kde-apps/filelight-25.08.3

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2025-11-06

francis - 25.08.3
Ebuild name:

app-misc/francis-25.08.3

Description

Productivity application using the well-known pomodoro technique

Added to portage

2025-11-06

gherkin-official - 36.1.0
Ebuild name:

dev-python/gherkin-official-36.1.0

Description

Gherkin parser/compiler for Python

Added to portage

2025-11-06

google-api-python-client - 2.187.0
Ebuild name:

dev-python/google-api-python-client-2.187.0

Description

Google API Client for Python

Added to portage

2025-11-06

google-auth - 2.43.0
Ebuild name:

dev-python/google-auth-2.43.0

Description

Google Authentication Library

Added to portage

2025-11-06

google-chrome - 142.0.7444.134
Ebuild name:

www-client/google-chrome-142.0.7444.134

Description

The web browser from Google

Added to portage

2025-11-06

granatier - 25.08.3
Ebuild name:

kde-apps/granatier-25.08.3

Description

KDE Bomberman game

Added to portage

2025-11-06

grantlee-editor - 25.08.3
Ebuild name:

kde-apps/grantlee-editor-25.08.3

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2025-11-06

grantleetheme - 25.08.3
Ebuild name:

kde-apps/grantleetheme-25.08.3

Description

Library for Grantlee plugins

Added to portage

2025-11-06

gwenview - 25.08.3
Ebuild name:

kde-apps/gwenview-25.08.3

Description

Image viewer by KDE

Added to portage

2025-11-06

hypothesis - 6.146.0
Ebuild name:

dev-python/hypothesis-6.146.0

Description

A library for property based testing

Added to portage

2025-11-06

icalendar - 6.3.2
Ebuild name:

dev-python/icalendar-6.3.2

Description

Package used for parsing and generating iCalendar files (RFC 2445)

Added to portage

2025-11-06

incidenceeditor - 25.08.3
Ebuild name:

kde-apps/incidenceeditor-25.08.3

Description

Incidence editor for KOrganizer

Added to portage

2025-11-06

ipython - 9.7.0
Ebuild name:

dev-python/ipython-9.7.0

Description

Advanced interactive shell for Python

Added to portage

2025-11-06

iscan - 2.30.4.2-r5
Ebuild name:

media-gfx/iscan-2.30.4.2-r5

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan - 2.30.4.2-r6
Ebuild name:

media-gfx/iscan-2.30.4.2-r6

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan-plugin-gt-f500 - 1.0.0.1-r2
Ebuild name:

media-gfx/iscan-plugin-gt-f500-1.0.0.1-r2

Description

Epson Perfection 2480/2580 PHOTO scanner plugin for SANE

Added to portage

2025-11-06

iscan-plugin-gt-f720 - 0.0.1.2-r1
Ebuild name:

media-gfx/iscan-plugin-gt-f720-0.0.1.2-r1

Description

Epson Perfection V300 PHOTO scanner plugin for SANE 'epko

Added to portage

2025-11-06

iscan-plugin-gt-x770 - 2.1.2.1-r4
Ebuild name:

media-gfx/iscan-plugin-gt-x770-2.1.2.1-r4

Description

Epson Perfection V500 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

iscan-plugin-gt-x820 - 2.2.0.1-r1
Ebuild name:

media-gfx/iscan-plugin-gt-x820-2.2.0.1-r1

Description

Epson Perfection V600 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

isoimagewriter - 25.08.3
Ebuild name:

app-cdr/isoimagewriter-25.08.3

Description

Write hybrid ISO files onto a USB disk

Added to portage

2025-11-06

jaq - 3.0.0_alpha
Ebuild name:

app-misc/jaq-3.0.0_alpha

Description

Just another JSON query tool

Added to portage

2025-11-06

juk - 25.08.3
Ebuild name:

kde-apps/juk-25.08.3

Description

Jukebox and music manager by KDE

Added to portage

2025-11-06

k3b - 25.08.3
Ebuild name:

kde-apps/k3b-25.08.3

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2025-11-06

kaccounts-integration - 25.08.3
Ebuild name:

kde-apps/kaccounts-integration-25.08.3

Description

Administer web accounts for the sites and services across th

Added to portage

2025-11-06

kaccounts-providers - 25.08.3
Ebuild name:

kde-apps/kaccounts-providers-25.08.3

Description

KDE accounts providers

Added to portage

2025-11-06

kaddressbook - 25.08.3
Ebuild name:

kde-apps/kaddressbook-25.08.3

Description

Address book application based on KDE Frameworks

Added to portage

2025-11-06

kajongg - 25.08.3
Ebuild name:

kde-apps/kajongg-25.08.3

Description

Classical Mah Jongg for four players

Added to portage

2025-11-06

kalarm - 25.08.3
Ebuild name:

kde-apps/kalarm-25.08.3

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2025-11-06

kalgebra - 25.08.3
Ebuild name:

kde-apps/kalgebra-25.08.3

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2025-11-06

kalzium - 25.08.3
Ebuild name:

kde-apps/kalzium-25.08.3

Description

Periodic table of the elements

Added to portage

2025-11-06

kamera - 25.08.3
Ebuild name:

kde-apps/kamera-25.08.3

Description

Plasma integration for gphoto2 cameras

Added to portage

2025-11-06

kamoso - 25.08.3
Ebuild name:

kde-apps/kamoso-25.08.3

Description

Application to take pictures and videos from your webcam

Added to portage

2025-11-06

kanagram - 25.08.3
Ebuild name:

kde-apps/kanagram-25.08.3

Description

Game based on anagrams of words

Added to portage

2025-11-06

kapman - 25.08.3
Ebuild name:

kde-apps/kapman-25.08.3

Description

Pac-Man clone by KDE

Added to portage

2025-11-06

kapptemplate - 25.08.3
Ebuild name:

kde-apps/kapptemplate-25.08.3

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2025-11-06

kasts - 25.08.3
Ebuild name:

media-sound/kasts-25.08.3

Description

Convergent podcast application for desktop and mobile

Added to portage

2025-11-06

kate - 25.08.3
Ebuild name:

kde-apps/kate-25.08.3

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2025-11-06

kate-addons - 25.08.3
Ebuild name:

kde-apps/kate-addons-25.08.3

Description

Addons used by Kate

Added to portage

2025-11-06

kate-common - 25.08.3
Ebuild name:

kde-apps/kate-common-25.08.3

Description

Added to portage

2025-11-06

kate-lib - 25.08.3
Ebuild name:

kde-apps/kate-lib-25.08.3

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2025-11-06

katomic - 25.08.3
Ebuild name:

kde-apps/katomic-25.08.3

Description

KDE Atomic Entertainment Game

Added to portage

2025-11-06

kbackup - 25.08.3
Ebuild name:

kde-apps/kbackup-25.08.3

Description

Program that lets you back up any directories or files

Added to portage

2025-11-06

kblackbox - 25.08.3
Ebuild name:

kde-apps/kblackbox-25.08.3

Description

Game of hide and seek played on a grid of boxes

Added to portage

2025-11-06

kblocks - 25.08.3
Ebuild name:

kde-apps/kblocks-25.08.3

Description

Single-player Tetris-like KDE game

Added to portage

2025-11-06

kbounce - 25.08.3
Ebuild name:

kde-apps/kbounce-25.08.3

Description

KDE Bounce Ball Game

Added to portage

2025-11-06

kbreakout - 25.08.3
Ebuild name:

kde-apps/kbreakout-25.08.3

Description

Breakout-like game by KDE

Added to portage

2025-11-06

kbruch - 25.08.3
Ebuild name:

kde-apps/kbruch-25.08.3

Description

Educational application to learn calculating with fractions

Added to portage

2025-11-06

kcachegrind - 25.08.3
Ebuild name:

kde-apps/kcachegrind-25.08.3

Description

Frontend for Cachegrind by KDE

Added to portage

2025-11-06

kcalc - 25.08.3
Ebuild name:

kde-apps/kcalc-25.08.3

Description

KDE calculator

Added to portage

2025-11-06

kcalutils - 25.08.3
Ebuild name:

kde-apps/kcalutils-25.08.3

Description

Library providing utility functions for the handling of calendar data

Added to portage

2025-11-06

kcharselect - 25.08.3
Ebuild name:

kde-apps/kcharselect-25.08.3

Description

KDE character selection utility

Added to portage

2025-11-06

kclock - 25.08.3
Ebuild name:

kde-misc/kclock-25.08.3

Description

Convergent clock application for Plasma

Added to portage

2025-11-06

kcolorchooser - 25.08.3
Ebuild name:

kde-apps/kcolorchooser-25.08.3

Description

KDE color selector/editor

Added to portage

2025-11-06

kcron - 25.08.3
Ebuild name:

kde-apps/kcron-25.08.3

Description

KDE Task Scheduler

Added to portage

2025-11-06

kde-apps-meta - 25.08.3
Ebuild name:

kde-apps/kde-apps-meta-25.08.3

Description

Meta package for the KDE Release Service collection

Added to portage

2025-11-06

kde-dev-scripts - 25.08.3
Ebuild name:

kde-apps/kde-dev-scripts-25.08.3

Description

KDE Development Scripts

Added to portage

2025-11-06

kde-dev-utils - 25.08.3
Ebuild name:

kde-apps/kde-dev-utils-25.08.3

Description

KDE Development Utilities

Added to portage

2025-11-06

kdeaccessibility-meta - 25.08.3
Ebuild name:

kde-apps/kdeaccessibility-meta-25.08.3

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2025-11-06

kdeadmin-meta - 25.08.3
Ebuild name:

kde-apps/kdeadmin-meta-25.08.3

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2025-11-06

kdebugsettings - 25.08.3
Ebuild name:

kde-apps/kdebugsettings-25.08.3

Description

Application to enable/disable qCDebug

Added to portage

2025-11-06

kdeconnect - 25.08.3
Ebuild name:

kde-misc/kdeconnect-25.08.3

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2025-11-06

kdecore-meta - 25.08.3
Ebuild name:

kde-apps/kdecore-meta-25.08.3

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2025-11-06

kdeedu-data - 25.08.3
Ebuild name:

kde-apps/kdeedu-data-25.08.3

Description

Shared icons, artwork and data files for educational applications

Added to portage

2025-11-06

kdeedu-meta - 25.08.3
Ebuild name:

kde-apps/kdeedu-meta-25.08.3

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2025-11-06

kdegames-meta - 25.08.3
Ebuild name:

kde-apps/kdegames-meta-25.08.3

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2025-11-06

kdegraphics-meta - 25.08.3
Ebuild name:

kde-apps/kdegraphics-meta-25.08.3

Description

kdegraphics - merge this to pull in all kdegraphics-derived packa

Added to portage

2025-11-06

kdegraphics-mobipocket - 25.08.3
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.08.3

Description

Library to support mobipocket ebooks

Added to portage

2025-11-06

kdemultimedia-meta - 25.08.3
Ebuild name:

kde-apps/kdemultimedia-meta-25.08.3

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2025-11-06

kdenetwork-filesharing - 25.08.3
Ebuild name:

kde-apps/kdenetwork-filesharing-25.08.3

Description

Samba filesharing plugin for file properties

Added to portage

2025-11-06

kdenetwork-meta - 25.08.3
Ebuild name:

kde-apps/kdenetwork-meta-25.08.3

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2025-11-06

kdenlive - 25.08.3
Ebuild name:

kde-apps/kdenlive-25.08.3

Description

Non-linear video editing suite by KDE

Added to portage

2025-11-06

kdepim-addons - 25.08.3
Ebuild name:

kde-apps/kdepim-addons-25.08.3

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2025-11-06

kdepim-meta - 25.08.3
Ebuild name:

kde-apps/kdepim-meta-25.08.3

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2025-11-06

kdepim-runtime - 25.08.3
Ebuild name:

kde-apps/kdepim-runtime-25.08.3

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-11-06

kdesdk-meta - 25.08.3
Ebuild name:

kde-apps/kdesdk-meta-25.08.3

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2025-11-06

kdesdk-thumbnailers - 25.08.3
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.08.3

Description

Thumbnail generator for PO files

Added to portage

2025-11-06

kdeutils-meta - 25.08.3
Ebuild name:

kde-apps/kdeutils-meta-25.08.3

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2025-11-06

kdevelop - 25.08.3
Ebuild name:

dev-util/kdevelop-25.08.3

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2025-11-06

kdevelop-php - 25.08.3
Ebuild name:

dev-util/kdevelop-php-25.08.3

Description

PHP plugin for KDevelop

Added to portage

2025-11-06

kdevelop-python - 25.08.3
Ebuild name:

dev-util/kdevelop-python-25.08.3

Description

Python plugin for KDevelop

Added to portage

2025-11-06

kdf - 25.08.3
Ebuild name:

kde-apps/kdf-25.08.3

Description

KDE free disk space utility

Added to portage

2025-11-06

kdialog - 25.08.3
Ebuild name:

kde-apps/kdialog-25.08.3

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2025-11-06

kdiamond - 25.08.3
Ebuild name:

kde-apps/kdiamond-25.08.3

Description

Single player three-in-a-row game

Added to portage

2025-11-06

keditbookmarks - 25.08.3
Ebuild name:

kde-apps/keditbookmarks-25.08.3

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2025-11-06

keysmith - 25.08.3
Ebuild name:

app-crypt/keysmith-25.08.3

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2025-11-06

kfind - 25.08.3
Ebuild name:

kde-apps/kfind-25.08.3

Description

File finder utility based on KDE Frameworks

Added to portage

2025-11-06

kfourinline - 25.08.3
Ebuild name:

kde-apps/kfourinline-25.08.3

Description

KDE four-in-a-row game

Added to portage

2025-11-06

kgeography - 25.08.3
Ebuild name:

kde-apps/kgeography-25.08.3

Description

Geography learning tool

Added to portage

2025-11-06

kget - 25.08.3
Ebuild name:

kde-apps/kget-25.08.3

Description

Advanced download manager by KDE

Added to portage

2025-11-06

kgoldrunner - 25.08.3
Ebuild name:

kde-apps/kgoldrunner-25.08.3

Description

Game of action and puzzle solving by KDE

Added to portage

2025-11-06

kgpg - 25.08.3
Ebuild name:

kde-apps/kgpg-25.08.3

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2025-11-06

kgraphviewer - 25.08.3
Ebuild name:

media-gfx/kgraphviewer-25.08.3

Description

Graphviz dot graph file viewer

Added to portage

2025-11-06

khangman - 25.08.3
Ebuild name:

kde-apps/khangman-25.08.3

Description

Classical hangman game by KDE

Added to portage

2025-11-06

khelpcenter - 25.08.3
Ebuild name:

kde-apps/khelpcenter-25.08.3

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2025-11-06

kidentitymanagement - 25.08.3
Ebuild name:

kde-apps/kidentitymanagement-25.08.3

Description

Library for managing identitites

Added to portage

2025-11-06

kig - 25.08.3
Ebuild name:

kde-apps/kig-25.08.3

Description

KDE Interactive Geometry tool

Added to portage

2025-11-06

kigo - 25.08.3
Ebuild name:

kde-apps/kigo-25.08.3

Description

Go game by KDE

Added to portage

2025-11-06

killbots - 25.08.3
Ebuild name:

kde-apps/killbots-25.08.3

Description

Kill the bots or they kill you

Added to portage

2025-11-06

kimagemapeditor - 25.08.3
Ebuild name:

kde-apps/kimagemapeditor-25.08.3

Description

Generator of HTML image maps

Added to portage

2025-11-06

kimap - 25.08.3
Ebuild name:

kde-apps/kimap-25.08.3

Description

Library for interacting with IMAP servers

Added to portage

2025-11-06

kio-admin - 25.08.3
Ebuild name:

app-admin/kio-admin-25.08.3

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2025-11-06

kio-blender-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.08.3

Description

KIO thumbnail generator for Blender files

Added to portage

2025-11-06

kio-extras - 25.08.3
Ebuild name:

kde-apps/kio-extras-25.08.3

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2025-11-06

kio-gdrive - 25.08.3
Ebuild name:

kde-misc/kio-gdrive-25.08.3

Description

KIO worker for Google Drive service

Added to portage

2025-11-06

kio-gdrive-common - 25.08.3
Ebuild name:

kde-misc/kio-gdrive-common-25.08.3

Description

Added to portage

2025-11-06

kio-mobi-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.08.3

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2025-11-06

kio-perldoc - 25.08.3
Ebuild name:

dev-util/kio-perldoc-25.08.3

Description

KIO worker interface to browse Perl documentation

Added to portage

2025-11-06

kio-ps-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.08.3

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2025-11-06

kio-raw-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.08.3

Description

KIO thumbnail generator for RAW files

Added to portage

2025-11-06

kio-zeroconf - 25.08.3
Ebuild name:

net-misc/kio-zeroconf-25.08.3

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2025-11-06

kiriki - 25.08.3
Ebuild name:

kde-apps/kiriki-25.08.3

Description

An addictive and fun dice game

Added to portage

2025-11-06

kiten - 25.08.3
Ebuild name:

kde-apps/kiten-25.08.3

Description

KDE Japanese dictionary and reference

Added to portage

2025-11-06

kitinerary - 25.08.3
Ebuild name:

kde-apps/kitinerary-25.08.3

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-11-06

kjumpingcube - 25.08.3
Ebuild name:

kde-apps/kjumpingcube-25.08.3

Description

Tactical one or two player game

Added to portage

2025-11-06

kldap - 25.08.3
Ebuild name:

kde-apps/kldap-25.08.3

Description

Library for interacting with LDAP servers

Added to portage

2025-11-06

kleopatra - 25.08.3
Ebuild name:

kde-apps/kleopatra-25.08.3

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2025-11-06

klettres - 25.08.3
Ebuild name:

kde-apps/klettres-25.08.3

Description

Alphabet learning application

Added to portage

2025-11-06

klickety - 25.08.3
Ebuild name:

kde-apps/klickety-25.08.3

Description

An adaptation of the Clickomania game

Added to portage

2025-11-06

klines - 25.08.3
Ebuild name:

kde-apps/klines-25.08.3

Description

A little KDE game about balls and how to get rid of them

Added to portage

2025-11-06

kmag - 25.08.3
Ebuild name:

kde-apps/kmag-25.08.3

Description

KDE screen magnifier

Added to portage

2025-11-06

kmahjongg - 25.08.3
Ebuild name:

kde-apps/kmahjongg-25.08.3

Description

A tile matching game for one or two players

Added to portage

2025-11-06

kmail - 25.08.3
Ebuild name:

kde-apps/kmail-25.08.3

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2025-11-06

kmail-account-wizard - 25.08.3
Ebuild name:

kde-apps/kmail-account-wizard-25.08.3

Description

Assistant for KMail accounts configuration

Added to portage

2025-11-06

kmailtransport - 25.08.3
Ebuild name:

kde-apps/kmailtransport-25.08.3

Description

Mail transport service

Added to portage

2025-11-06

kmbox - 25.08.3
Ebuild name:

kde-apps/kmbox-25.08.3

Description

Library for accessing MBox format mail storages

Added to portage

2025-11-06

kmime - 25.08.3
Ebuild name:

kde-apps/kmime-25.08.3

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2025-11-06

kmines - 25.08.3
Ebuild name:

kde-apps/kmines-25.08.3

Description

Classic mine sweeper game

Added to portage

2025-11-06

kmix - 25.08.3
Ebuild name:

kde-apps/kmix-25.08.3

Description

Volume control gui based on KDE Frameworks

Added to portage

2025-11-06

kmousetool - 25.08.3
Ebuild name:

kde-apps/kmousetool-25.08.3

Description

KDE program that clicks the mouse for you

Added to portage

2025-11-06

kmouth - 25.08.3
Ebuild name:

kde-apps/kmouth-25.08.3

Description

Text-to-speech synthesizer front end

Added to portage

2025-11-06

kmplot - 25.08.3
Ebuild name:

kde-apps/kmplot-25.08.3

Description

Mathematical function plotter

Added to portage

2025-11-06

knavalbattle - 25.08.3
Ebuild name:

kde-apps/knavalbattle-25.08.3

Description

Battleship clone by KDE

Added to portage

2025-11-06

knetwalk - 25.08.3
Ebuild name:

kde-apps/knetwalk-25.08.3

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2025-11-06

knights - 25.08.3
Ebuild name:

kde-apps/knights-25.08.3

Description

Simple chess board based on KDE Frameworks

Added to portage

2025-11-06

kolf - 25.08.3
Ebuild name:

kde-apps/kolf-25.08.3

Description

Minigolf game by KDE

Added to portage

2025-11-06

kollision - 25.08.3
Ebuild name:

kde-apps/kollision-25.08.3

Description

Simple ball dodging game

Added to portage

2025-11-06

kolourpaint - 25.08.3
Ebuild name:

kde-apps/kolourpaint-25.08.3

Description

Paint Program by KDE

Added to portage

2025-11-06

kompare - 25.08.3
Ebuild name:

kde-apps/kompare-25.08.3

Description

Graphical File Differences Tool

Added to portage

2025-11-06

konqueror - 25.08.3
Ebuild name:

kde-apps/konqueror-25.08.3

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2025-11-06

konquest - 25.08.3
Ebuild name:

kde-apps/konquest-25.08.3

Description

Galactic Strategy KDE Game

Added to portage

2025-11-06

konsole - 25.08.3
Ebuild name:

kde-apps/konsole-25.08.3

Description

KDE's terminal emulator

Added to portage

2025-11-06

konsolekalendar - 25.08.3
Ebuild name:

kde-apps/konsolekalendar-25.08.3

Description

Command line interface to KDE calendars

Added to portage

2025-11-06

kontact - 25.08.3
Ebuild name:

kde-apps/kontact-25.08.3

Description

Container application to unify several major PIM applications within one

Added to portage

2025-11-06

kontactinterface - 25.08.3
Ebuild name:

kde-apps/kontactinterface-25.08.3

Description

Library for embedding KParts in a Kontact component

Added to portage

2025-11-06

kontrast - 25.08.3
Ebuild name:

app-accessibility/kontrast-25.08.3

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2025-11-06

konversation - 25.08.3
Ebuild name:

net-irc/konversation-25.08.3

Description

User friendly IRC Client

Added to portage

2025-11-06

kopeninghours - 25.08.3
Ebuild name:

dev-libs/kopeninghours-25.08.3

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2025-11-06

korganizer - 25.08.3
Ebuild name:

kde-apps/korganizer-25.08.3

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2025-11-06

kosmindoormap - 25.08.3
Ebuild name:

dev-libs/kosmindoormap-25.08.3

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-11-06

kpat - 25.08.3
Ebuild name:

kde-apps/kpat-25.08.3

Description

KDE patience game

Added to portage

2025-11-06

kpimtextedit - 25.08.3
Ebuild name:

kde-apps/kpimtextedit-25.08.3

Description

Extended text editor for PIM applications

Added to portage

2025-11-06

kpkpass - 25.08.3
Ebuild name:

kde-apps/kpkpass-25.08.3

Description

Library to deal with Apple Wallet pass files

Added to portage

2025-11-06

kpmcore - 25.08.3
Ebuild name:

sys-libs/kpmcore-25.08.3

Description

Library for managing partitions

Added to portage

2025-11-06

kpublictransport - 25.08.3
Ebuild name:

dev-libs/kpublictransport-25.08.3

Description

Library for accessing public transport timetables and other infor

Added to portage

2025-11-06

kqtquickcharts - 25.08.3
Ebuild name:

kde-apps/kqtquickcharts-25.08.3

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-11-06

krdc - 25.08.3
Ebuild name:

kde-apps/krdc-25.08.3

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2025-11-06

krecorder - 25.08.3
Ebuild name:

media-sound/krecorder-25.08.3

Description

Convergent audio recording application for Plasma

Added to portage

2025-11-06

kreversi - 25.08.3
Ebuild name:

kde-apps/kreversi-25.08.3

Description

Board game by KDE

Added to portage

2025-11-06

krfb - 25.08.3
Ebuild name:

kde-apps/krfb-25.08.3

Description

VNC-compatible server to share Plasma desktops

Added to portage

2025-11-06

kruler - 25.08.3
Ebuild name:

kde-apps/kruler-25.08.3

Description

Screen ruler for Plasma

Added to portage

2025-11-06

ksanecore - 25.08.3
Ebuild name:

media-libs/ksanecore-25.08.3

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2025-11-06

kshisen - 25.08.3
Ebuild name:

kde-apps/kshisen-25.08.3

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2025-11-06

ksirk - 25.08.3
Ebuild name:

kde-apps/ksirk-25.08.3

Description

Port of the board game Risk

Added to portage

2025-11-06

ksmtp - 25.08.3
Ebuild name:

kde-apps/ksmtp-25.08.3

Description

Job-based library to send email through an SMTP server

Added to portage

2025-11-06

ksnakeduel - 25.08.3
Ebuild name:

kde-apps/ksnakeduel-25.08.3

Description

KDE Tron game

Added to portage

2025-11-06

kspaceduel - 25.08.3
Ebuild name:

kde-apps/kspaceduel-25.08.3

Description

Space Game by KDE

Added to portage

2025-11-06

ksquares - 25.08.3
Ebuild name:

kde-apps/ksquares-25.08.3

Description

KDE clone of the game squares

Added to portage

2025-11-06

ksudoku - 25.08.3
Ebuild name:

kde-apps/ksudoku-25.08.3

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2025-11-06

ksystemlog - 25.08.3
Ebuild name:

kde-apps/ksystemlog-25.08.3

Description

System log viewer by KDE

Added to portage

2025-11-06

kteatime - 25.08.3
Ebuild name:

kde-apps/kteatime-25.08.3

Description

KDE timer for making a fine cup of tea

Added to portage

2025-11-06

ktimer - 25.08.3
Ebuild name:

kde-apps/ktimer-25.08.3

Description

Little tool to execute programs after some time

Added to portage

2025-11-06

ktorrent - 25.08.3
Ebuild name:

net-p2p/ktorrent-25.08.3

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2025-11-06

ktouch - 25.08.3
Ebuild name:

kde-apps/ktouch-25.08.3

Description

Program that helps to learn and practice touch typing

Added to portage

2025-11-06

ktuberling - 25.08.3
Ebuild name:

kde-apps/ktuberling-25.08.3

Description

Potato game for kids by KDE

Added to portage

2025-11-06

kturtle - 25.08.3
Ebuild name:

kde-apps/kturtle-25.08.3

Description

Educational programming environment using the Logo programming language

Added to portage

2025-11-06

kubrick - 25.08.3
Ebuild name:

kde-apps/kubrick-25.08.3

Description

Game based on the

Added to portage

2025-11-06

kwalletmanager - 25.08.3
Ebuild name:

kde-apps/kwalletmanager-25.08.3

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2025-11-06

kwave - 25.08.3
Ebuild name:

kde-apps/kwave-25.08.3

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2025-11-06

kweather - 25.08.3
Ebuild name:

kde-misc/kweather-25.08.3

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2025-11-06

kweathercore - 25.08.3
Ebuild name:

dev-libs/kweathercore-25.08.3

Description

Library for retrieval of weather information including forecasts and

Added to portage

2025-11-06

kwordquiz - 25.08.3
Ebuild name:

kde-apps/kwordquiz-25.08.3

Description

Powerful flashcard and vocabulary learning program

Added to portage

2025-11-06

kwrite - 25.08.3
Ebuild name:

kde-apps/kwrite-25.08.3

Description

Simple text editor based on KDE Frameworks

Added to portage

2025-11-06

libdeflate - 1.25
Ebuild name:

app-arch/libdeflate-1.25

Description

Heavily optimized DEFLATE/zlib/gzip (de)compression

Added to portage

2025-11-06

libfm-qt - 2.3.0
Ebuild name:

x11-libs/libfm-qt-2.3.0

Description

Qt Library for Building File Managers

Added to portage

2025-11-06

libgravatar - 25.08.3
Ebuild name:

kde-apps/libgravatar-25.08.3

Description

Library for gravatar integration

Added to portage

2025-11-06

libkcddb - 25.08.3
Ebuild name:

kde-apps/libkcddb-25.08.3

Description

KDE library for CDDB

Added to portage

2025-11-06

libkcddb-common - 25.08.3
Ebuild name:

kde-apps/libkcddb-common-25.08.3

Description

Added to portage

2025-11-06

libkcompactdisc - 25.08.3
Ebuild name:

kde-apps/libkcompactdisc-25.08.3

Description

Library for playing & ripping CDs

Added to portage

2025-11-06

libkdcraw - 25.08.3
Ebuild name:

kde-apps/libkdcraw-25.08.3

Description

Digital camera raw image library wrapper

Added to portage

2025-11-06

libkdegames - 25.08.3
Ebuild name:

kde-apps/libkdegames-25.08.3

Description

Base library common to many KDE games

Added to portage

2025-11-06

libkdepim - 25.08.3
Ebuild name:

kde-apps/libkdepim-25.08.3

Description

Common PIM libraries

Added to portage

2025-11-06

libkeduvocdocument - 25.08.3
Ebuild name:

kde-apps/libkeduvocdocument-25.08.3

Description

Library for reading/writing KVTML

Added to portage

2025-11-06

libkexiv2 - 25.08.3
Ebuild name:

kde-apps/libkexiv2-25.08.3

Description

Wrapper around exiv2 library

Added to portage

2025-11-06

libkgapi - 25.08.3
Ebuild name:

kde-apps/libkgapi-25.08.3

Description

Library for accessing Google calendar and contact resources

Added to portage

2025-11-06

libkleo - 25.08.3
Ebuild name:

kde-apps/libkleo-25.08.3

Description

Library for encryption handling

Added to portage

2025-11-06

libkmahjongg - 25.08.3
Ebuild name:

kde-apps/libkmahjongg-25.08.3

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2025-11-06

libkomparediff2 - 25.08.3
Ebuild name:

kde-apps/libkomparediff2-25.08.3

Description

Library to compare files and strings

Added to portage

2025-11-06

libksane - 25.08.3
Ebuild name:

kde-apps/libksane-25.08.3

Description

SANE Library interface based on KDE Frameworks

Added to portage

2025-11-06

libksane-common - 25.08.3
Ebuild name:

kde-apps/libksane-common-25.08.3

Description

Added to portage

2025-11-06

libksieve - 25.08.3
Ebuild name:

kde-apps/libksieve-25.08.3

Description

Common PIM libraries

Added to portage

2025-11-06

libktnef - 25.08.3
Ebuild name:

kde-apps/libktnef-25.08.3

Description

Library for handling TNEF data

Added to portage

2025-11-06

libktorrent - 25.08.3
Ebuild name:

net-libs/libktorrent-25.08.3

Description

BitTorrent library based on KDE Frameworks

Added to portage

2025-11-06

liblxqt - 2.3.0
Ebuild name:

lxqt-base/liblxqt-2.3.0

Description

Common base library for the LXQt desktop environment

Added to portage

2025-11-06

libqtxdg - 4.3.0
Ebuild name:

dev-libs/libqtxdg-4.3.0

Description

Qt Implementation of XDG Standards

Added to portage

2025-11-06

logbook - 1.9.1
Ebuild name:

dev-python/logbook-1.9.1

Description

A logging replacement for Python

Added to portage

2025-11-06

lokalize - 25.08.3
Ebuild name:

kde-apps/lokalize-25.08.3

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2025-11-06

lskat - 25.08.3
Ebuild name:

kde-apps/lskat-25.08.3

Description

Skat game by KDE

Added to portage

2025-11-06

lximage-qt - 2.3.0
Ebuild name:

media-gfx/lximage-qt-2.3.0

Description

Qt Image Viewer

Added to portage

2025-11-06

lxqt-about - 2.3.0
Ebuild name:

lxqt-base/lxqt-about-2.3.0

Description

LXQt about dialog

Added to portage

2025-11-06

lxqt-admin - 2.3.0
Ebuild name:

lxqt-base/lxqt-admin-2.3.0

Description

LXQt system administration tool

Added to portage

2025-11-06

lxqt-archiver - 1.3.0
Ebuild name:

app-arch/lxqt-archiver-1.3.0

Description

Qt GUI File Archiver

Added to portage

2025-11-06

lxqt-build-tools - 2.3.0
Ebuild name:

dev-util/lxqt-build-tools-2.3.0

Description

LXQt Build Tools

Added to portage

2025-11-06

lxqt-config - 2.3.0
Ebuild name:

lxqt-base/lxqt-config-2.3.0

Description

LXQt system configuration control center

Added to portage

2025-11-06

lxqt-globalkeys - 2.3.0
Ebuild name:

lxqt-base/lxqt-globalkeys-2.3.0

Description

Daemon and library for global keyboard shortcuts registration

Added to portage

2025-11-06

lxqt-menu-data - 2.3.0
Ebuild name:

lxqt-base/lxqt-menu-data-2.3.0

Description

LXQt Menu Files and Translations for Menu Categories

Added to portage

2025-11-06

lxqt-meta - 2.3.0
Ebuild name:

lxqt-base/lxqt-meta-2.3.0

Description

Meta ebuild for LXQt, the Lightweight Desktop Environment

Added to portage

2025-11-06

lxqt-notificationd - 2.3.0
Ebuild name:

lxqt-base/lxqt-notificationd-2.3.0

Description

LXQt notification daemon and library

Added to portage

2025-11-06

lxqt-openssh-askpass - 2.3.0
Ebuild name:

lxqt-base/lxqt-openssh-askpass-2.3.0

Description

LXQt OpenSSH user password prompt tool

Added to portage

2025-11-06

lxqt-panel - 2.3.0
Ebuild name:

lxqt-base/lxqt-panel-2.3.0

Description

LXQt desktop panel and plugins

Added to portage

2025-11-06

lxqt-policykit - 2.3.0
Ebuild name:

lxqt-base/lxqt-policykit-2.3.0

Description

LXQt PolKit authentication agent

Added to portage

2025-11-06

lxqt-powermanagement - 2.3.0
Ebuild name:

lxqt-base/lxqt-powermanagement-2.3.0

Description

LXQt daemon for power management and auto-suspend

Added to portage

2025-11-06

lxqt-qtplugin - 2.3.0
Ebuild name:

lxqt-base/lxqt-qtplugin-2.3.0

Description

LXQt system integration plugin for Qt

Added to portage

2025-11-06

lxqt-runner - 2.3.0
Ebuild name:

lxqt-base/lxqt-runner-2.3.0

Description

LXQt quick launcher

Added to portage

2025-11-06

lxqt-session - 2.3.0
Ebuild name:

lxqt-base/lxqt-session-2.3.0

Description

LXQt Session Manager

Added to portage

2025-11-06

lxqt-sudo - 2.3.0
Ebuild name:

lxqt-base/lxqt-sudo-2.3.0

Description

LXQt GUI frontend for sudo

Added to portage

2025-11-06

lxqt-themes - 2.3.0
Ebuild name:

x11-themes/lxqt-themes-2.3.0

Description

LXQt Themes

Added to portage

2025-11-06

lxqt-wayland-session - 0.3.0
Ebuild name:

lxqt-base/lxqt-wayland-session-0.3.0

Description

LXQt Wayland Session Support

Added to portage

2025-11-06

mailcommon - 25.08.3
Ebuild name:

kde-apps/mailcommon-25.08.3

Description

Common mail library

Added to portage

2025-11-06

mailimporter - 25.08.3
Ebuild name:

kde-apps/mailimporter-25.08.3

Description

Library to import mail from various sources

Added to portage

2025-11-06

marble - 25.08.3
Ebuild name:

kde-apps/marble-25.08.3

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2025-11-06

markdownpart - 25.08.3
Ebuild name:

kde-misc/markdownpart-25.08.3

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2025-11-06

massif-visualizer - 25.08.3
Ebuild name:

dev-util/massif-visualizer-25.08.3

Description

Tool visualising massif data

Added to portage

2025-11-06

mbox-importer - 25.08.3
Ebuild name:

kde-apps/mbox-importer-25.08.3

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2025-11-06

merkuro - 25.08.3
Ebuild name:

app-office/merkuro-25.08.3

Description

Calendar application using Akonadi

Added to portage

2025-11-06

messagelib - 25.08.3
Ebuild name:

kde-apps/messagelib-25.08.3

Description

Libraries for messaging functions

Added to portage

2025-11-06

metakernel - 0.30.4
Ebuild name:

dev-python/metakernel-0.30.4

Description

Metakernel for Jupyter

Added to portage

2025-11-06

microsoft-edge - 142.0.3595.53
Ebuild name:

www-client/microsoft-edge-142.0.3595.53

Description

The web browser from Microsoft

Added to portage

2025-11-06

microsoft-edge-beta - 142.0.3595.53
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.53

Description

The web browser from Microsoft

Added to portage

2025-11-06

microsoft-edge-dev - 143.0.3650.3
Ebuild name:

www-client/microsoft-edge-dev-143.0.3650.3

Description

The web browser from Microsoft

Added to portage

2025-11-06

mimetreeparser - 25.08.3
Ebuild name:

kde-apps/mimetreeparser-25.08.3

Description

Libraries for messaging functions

Added to portage

2025-11-06

minuet - 25.08.3
Ebuild name:

kde-apps/minuet-25.08.3

Description

Music Education software by KDE

Added to portage

2025-11-06

mod_security - 2.9.12
Ebuild name:

www-apache/mod_security-2.9.12

Description

Application firewall and intrusion detection for Apache

Added to portage

2025-11-06

modsecurity-crs - 4.20.0
Ebuild name:

www-apache/modsecurity-crs-4.20.0

Description

OWASP ModSecurity Core Rule Set

Added to portage

2025-11-06

mqtree - 1.0.19
Ebuild name:

dev-erlang/mqtree-1.0.19

Description

Index tree for MQTT topic filters

Added to portage

2025-11-06

neochat - 25.08.3
Ebuild name:

net-im/neochat-25.08.3

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2025-11-06

nessus-agent-bin - 11.0.2
Ebuild name:

net-analyzer/nessus-agent-bin-11.0.2

Description

A remote security scanner for Linux - agent component

Added to portage

2025-11-06

nessus-bin - 10.10.1
Ebuild name:

net-analyzer/nessus-bin-10.10.1

Description

A remote security scanner for Linux

Added to portage

2025-11-06

nspr - 4.38
Ebuild name:

dev-libs/nspr-4.38

Description

Netscape Portable Runtime

Added to portage

2025-11-06

okular - 25.08.3
Ebuild name:

kde-apps/okular-25.08.3

Description

Universal document viewer based on KDE Frameworks

Added to portage

2025-11-06

opera - 123.0.5669.47
Ebuild name:

www-client/opera-123.0.5669.47

Description

A fast and secure web browser

Added to portage

2025-11-06

opera-developer - 125.0.5707.0
Ebuild name:

www-client/opera-developer-125.0.5707.0

Description

A fast and secure web browser

Added to portage

2025-11-06

p1_acme - 1.0.29
Ebuild name:

dev-erlang/p1_acme-1.0.29

Description

ACME client library for Erlang

Added to portage

2025-11-06

p1_pgsql - 1.1.36
Ebuild name:

dev-erlang/p1_pgsql-1.1.36

Description

Pure Erlang PostgreSQL driver

Added to portage

2025-11-06

p1_utils - 1.0.28
Ebuild name:

dev-erlang/p1_utils-1.0.28

Description

Erlang utility modules from ProcessOne

Added to portage

2025-11-06

palapeli - 25.08.3
Ebuild name:

kde-apps/palapeli-25.08.3

Description

Jigsaw puzzle game by KDE

Added to portage

2025-11-06

parley - 25.08.3
Ebuild name:

kde-apps/parley-25.08.3

Description

Vocabulary trainer to help you memorize things

Added to portage

2025-11-06

parseedn - 1.2.1
Ebuild name:

app-emacs/parseedn-1.2.1

Description

EDN parser for Emacs Lisp

Added to portage

2025-11-06

partitionmanager - 25.08.3
Ebuild name:

sys-block/partitionmanager-25.08.3

Description

Utility for management of disks, partitions and file systems

Added to portage

2025-11-06

pavucontrol-qt - 2.3.0
Ebuild name:

media-sound/pavucontrol-qt-2.3.0

Description

Qt GUI Pulseaudio Mixer

Added to portage

2025-11-06

pcmanfm-qt - 2.3.0
Ebuild name:

x11-misc/pcmanfm-qt-2.3.0

Description

Qt GUI Tabbed Filemanager

Added to portage

2025-11-06

pdf-tools - 1.1.0
Ebuild name:

app-emacs/pdf-tools-1.1.0

Description

Emacs Lisp support library for PDF documents

Added to portage

2025-11-06

persist - 0.6.1
Ebuild name:

app-emacs/persist-0.6.1

Description

Persist variables between Emacs sessions

Added to portage

2025-11-06

persist - 0.7
Ebuild name:

app-emacs/persist-0.7

Description

Persist variables between Emacs sessions

Added to portage

2025-11-06

persist - 0.8
Ebuild name:

app-emacs/persist-0.8

Description

Persist variables between Emacs sessions

Added to portage

2025-11-06

pfuture - 1.10.3
Ebuild name:

app-emacs/pfuture-1.10.3

Description

Simple wrapper around asynchronous processes

Added to portage

2025-11-06

php-mode - 1.27.0
Ebuild name:

app-emacs/php-mode-1.27.0

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-11-06

php-mode - 9999
Ebuild name:

app-emacs/php-mode-9999

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-11-06

picmi - 25.08.3
Ebuild name:

kde-apps/picmi-25.08.3

Description

Nonogram logic game by KDE

Added to portage

2025-11-06

pim-data-exporter - 25.08.3
Ebuild name:

kde-apps/pim-data-exporter-25.08.3

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2025-11-06

pim-sieve-editor - 25.08.3
Ebuild name:

kde-apps/pim-sieve-editor-25.08.3

Description

Assistant for editing IMAP Sieve filters

Added to portage

2025-11-06

pimcommon - 25.08.3
Ebuild name:

kde-apps/pimcommon-25.08.3

Description

Common PIM libraries

Added to portage

2025-11-06

pinentry - 0.1_p20250408
Ebuild name:

app-emacs/pinentry-0.1_p20250408

Description

GnuPG Pinentry server implementation for Emacs

Added to portage

2025-11-06

portage - 3.0.71
Ebuild name:

sys-apps/portage-3.0.71

Description

The package management and distribution system for Gentoo

Added to portage

2025-11-06

poxml - 25.08.3
Ebuild name:

kde-apps/poxml-25.08.3

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2025-11-06

pydantic - 2.12.4
Ebuild name:

dev-python/pydantic-2.12.4

Description

Data parsing and validation using Python type hints

Added to portage

2025-11-06

pyproject-fmt - 2.11.1
Ebuild name:

dev-python/pyproject-fmt-2.11.1

Description

Format your pyproject.toml file

Added to portage

2025-11-06

pytokens - 0.3.0
Ebuild name:

dev-python/pytokens-0.3.0

Description

A fast, spec compliant Python 3.13+ tokenizer that runs on older Pythons

Added to portage

2025-11-06

qps - 2.12.0
Ebuild name:

x11-misc/qps-2.12.0

Description

Qt GUI Process Manager

Added to portage

2025-11-06

qrca - 25.08.3
Ebuild name:

media-gfx/qrca-25.08.3

Description

Simple barcode scanner and QR code generator

Added to portage

2025-11-06

qterminal - 2.3.0
Ebuild name:

x11-terms/qterminal-2.3.0

Description

Qt-based multitab terminal emulator

Added to portage

2025-11-06

qtermwidget - 2.3.0
Ebuild name:

x11-libs/qtermwidget-2.3.0

Description

Qt terminal emulator widget

Added to portage

2025-11-06

qtxdg-tools - 4.3.0
Ebuild name:

app-misc/qtxdg-tools-4.3.0

Description

User Tools from libqtxdg

Added to portage

2025-11-06

rails - 8.1.1
Ebuild name:

dev-ruby/rails-8.1.1

Description

ruby on rails is a web-application and persistence framework

Added to portage

2025-11-06

railties - 8.1.1
Ebuild name:

dev-ruby/railties-8.1.1

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-11-06

rofi - 2.0.0
Ebuild name:

x11-misc/rofi-2.0.0

Description

A window switcher, run dialog and dmenu replacement

Added to portage

2025-11-06

rspec-mocks - 3.13.7
Ebuild name:

dev-ruby/rspec-mocks-3.13.7

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-11-06

scad-mode - 97.0
Ebuild name:

app-emacs/scad-mode-97.0

Description

GNU Emacs mode to edit OpenSCAD files

Added to portage

2025-11-06

screengrab - 3.1.0
Ebuild name:

x11-misc/screengrab-3.1.0

Description

Qt GUI Screenshot Utility

Added to portage

2025-11-06

signon-kwallet-extension - 25.08.3
Ebuild name:

kde-apps/signon-kwallet-extension-25.08.3

Description

KWallet extension for signond

Added to portage

2025-11-06

sigutils - 0.3.0_p20251029-r1
Ebuild name:

net-wireless/sigutils-0.3.0_p20251029-r1

Description

signal processing library for blind signal analysis and au

Added to portage

2025-11-06

skanlite - 25.08.3
Ebuild name:

kde-misc/skanlite-25.08.3

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2025-11-06

skanpage - 25.08.3
Ebuild name:

media-gfx/skanpage-25.08.3

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2025-11-06

skladnik - 25.08.3
Ebuild name:

games-puzzle/skladnik-25.08.3

Description

The Japanese warehouse keeper sokoban game

Added to portage

2025-11-06

squashfs-tools - 4.7.3
Ebuild name:

sys-fs/squashfs-tools-4.7.3

Description

Tools to create and extract Squashfs filesystems

Added to portage

2025-11-06

squid - 6.14-r1
Ebuild name:

net-proxy/squid-6.14-r1

Description

Full-featured web proxy cache

Added to portage

2025-11-06

step - 25.08.3
Ebuild name:

kde-apps/step-25.08.3

Description

Interactive physics simulator

Added to portage

2025-11-06

stringprep - 1.0.33
Ebuild name:

dev-erlang/stringprep-1.0.33

Description

Fast Stringprep implementation for Erlang and Elixir

Added to portage

2025-11-06

stripe - 13.2.0
Ebuild name:

dev-python/stripe-13.2.0

Description

Stripe Python bindings

Added to portage

2025-11-06

stun - 1.2.21
Ebuild name:

dev-erlang/stun-1.2.21

Description

STUN and TURN library for Erlang and Elixir

Added to portage

2025-11-06

svgpart - 25.08.3
Ebuild name:

kde-apps/svgpart-25.08.3

Description

Kpart for viewing SVGs

Added to portage

2025-11-06

sweeper - 25.08.3
Ebuild name:

kde-apps/sweeper-25.08.3

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2025-11-06

syd - 3.42.0
Ebuild name:

sys-apps/syd-3.42.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-11-06

texstudio - 4.8.9-r1
Ebuild name:

app-office/texstudio-4.8.9-r1

Description

Free cross-platform LaTeX editor (fork from texmakerX)

Added to portage

2025-11-06

thumbnailers - 25.08.3
Ebuild name:

kde-apps/thumbnailers-25.08.3

Description

Metapackage for KIO thumbnail generators

Added to portage

2025-11-06

tokodon - 25.08.3
Ebuild name:

net-im/tokodon-25.08.3

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2025-11-06

transmission - 4.1.0_beta3
Ebuild name:

net-p2p/transmission-4.1.0_beta3

Description

A fast, easy, and free BitTorrent client

Added to portage

2025-11-06

unbound - 1.24.1
Ebuild name:

net-dns/unbound-1.24.1

Description

A validating, recursive and caching DNS resolver

Added to portage

2025-11-06

xdg-desktop-portal-lxqt - 1.3.0
Ebuild name:

gui-libs/xdg-desktop-portal-lxqt-1.3.0

Description

Backend implementation for xdg-desktop-portal using Qt/KF5/l

Added to portage

2025-11-06

xfce4-screenshooter - 1.11.3
Ebuild name:

xfce-extra/xfce4-screenshooter-1.11.3

Description

Xfce4 screenshooter application and panel plugin

Added to portage

2025-11-06

xmpp - 1.11.2
Ebuild name:

dev-erlang/xmpp-1.11.2

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2025-11-06

yakuake - 25.08.3
Ebuild name:

kde-apps/yakuake-25.08.3

Description

Quake-style terminal emulator based on konsole

Added to portage

2025-11-06

yconf - 1.0.22
Ebuild name:

dev-erlang/yconf-1.0.22

Description

YAML configuration processor

Added to portage

2025-11-06

zanshin - 25.08.3
Ebuild name:

kde-misc/zanshin-25.08.3

Description

Getting things done application by KDE

Added to portage

2025-11-06

zlib - 3.2.2
Ebuild name:

dev-ruby/zlib-3.2.2

Description

Ruby interface for the zlib compression/decompression library

Added to portage

2025-11-06

zoom - 6.6.6.5306
Ebuild name:

net-im/zoom-6.6.6.5306

Description

Video conferencing and web conferencing service

Added to portage

2025-11-06

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 73.5 ms