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:

85845

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 (57 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
2026-06-13
attica - 6.27.0
Ebuild name:

kde-frameworks/attica-6.27.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-06-13

baloo - 6.27.0
Ebuild name:

kde-frameworks/baloo-6.27.0

Description

Framework for searching and managing metadata

Added to portage

2026-06-13

bluez-qt - 6.27.0
Ebuild name:

kde-frameworks/bluez-qt-6.27.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-06-13

breeze-icons - 6.27.0
Ebuild name:

kde-frameworks/breeze-icons-6.27.0

Description

Breeze SVG icon theme

Added to portage

2026-06-13

extra-cmake-modules - 6.27.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.27.0

Description

Extra modules and scripts for CMake

Added to portage

2026-06-13

frameworkintegration - 6.27.0
Ebuild name:

kde-frameworks/frameworkintegration-6.27.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-06-13

kapidox - 6.27.0
Ebuild name:

kde-frameworks/kapidox-6.27.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-06-13

karchive - 6.27.0
Ebuild name:

kde-frameworks/karchive-6.27.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-06-13

kauth - 6.27.0
Ebuild name:

kde-frameworks/kauth-6.27.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-06-13

kbookmarks - 6.27.0
Ebuild name:

kde-frameworks/kbookmarks-6.27.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-06-13

kcalendarcore - 6.27.0
Ebuild name:

kde-frameworks/kcalendarcore-6.27.0

Description

Library for interfacing with calendars

Added to portage

2026-06-13

kcmutils - 6.27.0
Ebuild name:

kde-frameworks/kcmutils-6.27.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-06-13

kcodecs - 6.27.0
Ebuild name:

kde-frameworks/kcodecs-6.27.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-06-13

kcolorscheme - 6.27.0
Ebuild name:

kde-frameworks/kcolorscheme-6.27.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-06-13

kcompletion - 6.27.0
Ebuild name:

kde-frameworks/kcompletion-6.27.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-06-13

kconfig - 6.27.0
Ebuild name:

kde-frameworks/kconfig-6.27.0

Description

Framework for reading and writing configuration

Added to portage

2026-06-13

kconfigwidgets - 6.27.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.27.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-06-13

kcontacts - 6.27.0
Ebuild name:

kde-frameworks/kcontacts-6.27.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-06-13

kcoreaddons - 6.27.0
Ebuild name:

kde-frameworks/kcoreaddons-6.27.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-06-13

kcrash - 6.27.0
Ebuild name:

kde-frameworks/kcrash-6.27.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-06-13

kdav - 6.27.0
Ebuild name:

kde-frameworks/kdav-6.27.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-06-13

kdbusaddons - 6.27.0
Ebuild name:

kde-frameworks/kdbusaddons-6.27.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-06-13

kdeclarative - 6.27.0
Ebuild name:

kde-frameworks/kdeclarative-6.27.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-06-13

kded - 6.27.0
Ebuild name:

kde-frameworks/kded-6.27.0

Description

Central daemon of KDE workspaces

Added to portage

2026-06-13

kdepim-runtime - 26.04.2-r1
Ebuild name:

kde-apps/kdepim-runtime-26.04.2-r1

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2026-06-13

kdesu - 6.27.0
Ebuild name:

kde-frameworks/kdesu-6.27.0

Description

Framework to handle super user actions

Added to portage

2026-06-13

kdnssd - 6.27.0
Ebuild name:

kde-frameworks/kdnssd-6.27.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-06-13

kdoctools - 6.27.0
Ebuild name:

kde-frameworks/kdoctools-6.27.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-06-13

kfilemetadata - 6.27.0
Ebuild name:

kde-frameworks/kfilemetadata-6.27.0

Description

Library for extracting file metadata

Added to portage

2026-06-13

kglobalaccel - 6.27.0
Ebuild name:

kde-frameworks/kglobalaccel-6.27.0

Description

Framework to handle global shortcuts

Added to portage

2026-06-13

kguiaddons - 6.27.0
Ebuild name:

kde-frameworks/kguiaddons-6.27.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-06-13

kholidays - 6.27.0
Ebuild name:

kde-frameworks/kholidays-6.27.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-06-13

ki18n - 6.27.0
Ebuild name:

kde-frameworks/ki18n-6.27.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-06-13

kiconthemes - 6.27.0
Ebuild name:

kde-frameworks/kiconthemes-6.27.0

Description

Framework for icon theming and configuration

Added to portage

2026-06-13

kidletime - 6.27.0
Ebuild name:

kde-frameworks/kidletime-6.27.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-06-13

kimageformats - 6.27.0
Ebuild name:

kde-frameworks/kimageformats-6.27.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-06-13

kio - 6.27.0
Ebuild name:

kde-frameworks/kio-6.27.0

Description

Framework providing transparent file and data management

Added to portage

2026-06-13

kirigami - 6.27.0
Ebuild name:

kde-frameworks/kirigami-6.27.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2026-06-13

kitemmodels - 6.27.0
Ebuild name:

kde-frameworks/kitemmodels-6.27.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2026-06-13

kitemviews - 6.27.0
Ebuild name:

kde-frameworks/kitemviews-6.27.0

Description

Framework providing additional widgets for item models

Added to portage

2026-06-13

kjobwidgets - 6.27.0
Ebuild name:

kde-frameworks/kjobwidgets-6.27.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2026-06-13

kmime - 26.04.2-r1
Ebuild name:

kde-apps/kmime-26.04.2-r1

Description

Library for handling mail messages and newsgroup articles

Added to portage

2026-06-13

kmime - 6.27.0
Ebuild name:

kde-frameworks/kmime-6.27.0

Description

Library for handling mail messages and newsgroup articles

Added to portage

2026-06-13

kmime-common - 26.04.2-r1
Ebuild name:

kde-apps/kmime-common-26.04.2-r1

Description

Common files for

Added to portage

2026-06-13

knewstuff - 6.27.0
Ebuild name:

kde-frameworks/knewstuff-6.27.0

Description

Framework for downloading and sharing additional application data

Added to portage

2026-06-13

lyskom-elisp-client - 0.48_p20200226
Ebuild name:

app-emacs/lyskom-elisp-client-0.48_p20200226

Description

Elisp client for the LysKOM conference system

Added to portage

2026-06-13

m-buffer - 0.16.1
Ebuild name:

app-emacs/m-buffer-0.16.1

Description

List Oriented Buffer Operations for Emacs

Added to portage

2026-06-13

platyps - 1.0.1
Ebuild name:

app-shells/platyps-1.0.1

Description

Generate PowerShell external help files from Markdown

Added to portage

2026-06-13

shell-maker - 0.93.1
Ebuild name:

app-emacs/shell-maker-0.93.1

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-06-13

yaml - 1.2.4
Ebuild name:

app-emacs/yaml-1.2.4

Description

YAML parser in Emacs Lisp

Added to portage

2026-06-13

2026-06-12
aardvark-dns - 2.0.0
Ebuild name:

app-containers/aardvark-dns-2.0.0

Description

A container-focused DNS server

Added to portage

2026-06-12

android-studio - 2026.1.1.9
Ebuild name:

dev-util/android-studio-2026.1.1.9

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-06-12

asteval - 1.0.9
Ebuild name:

dev-python/asteval-1.0.9

Description

Evaluator of Python expression using ast module

Added to portage

2026-06-12

awscli - 1.45.28
Ebuild name:

app-admin/awscli-1.45.28

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-12

bcachefs-tools - 1.38.5
Ebuild name:

sys-fs/bcachefs-tools-1.38.5

Description

Tools for bcachefs

Added to portage

2026-06-12

bcftools - 1.23.1
Ebuild name:

sci-biology/bcftools-1.23.1

Description

Utilities for variant calling and manipulating VCF and BCF files

Added to portage

2026-06-12

boto3 - 1.43.28
Ebuild name:

dev-python/boto3-1.43.28

Description

The AWS SDK for Python

Added to portage

2026-06-12

botocore - 1.43.28
Ebuild name:

dev-python/botocore-1.43.28

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-12

cargo-audit - 0.22.2
Ebuild name:

dev-util/cargo-audit-0.22.2

Description

Audit Cargo.lock for crates with security vulnerabilities

Added to portage

2026-06-12

cbindgen - 0.29.4
Ebuild name:

dev-util/cbindgen-0.29.4

Description

A tool for generating C bindings to Rust code

Added to portage

2026-06-12

chrome-binary-plugins - 149.0.7827.114
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7827.114

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-06-12

chrome-binary-plugins - 150.0.7871.13_beta
Ebuild name:

www-plugins/chrome-binary-plugins-150.0.7871.13_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-06-12

chrome-binary-plugins - 151.0.7872.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-151.0.7872.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-06-12

chromedriver-bin - 149.0.7827.114
Ebuild name:

www-apps/chromedriver-bin-149.0.7827.114

Description

WebDriver for Chrome

Added to portage

2026-06-12

chromium - 149.0.7827.114
Ebuild name:

www-client/chromium-149.0.7827.114

Description

Open-source version of Google Chrome web browser

Added to portage

2026-06-12

cucumber-expressions - 20.0.0
Ebuild name:

dev-python/cucumber-expressions-20.0.0

Description

Human friendly alternative to Regular Expressions

Added to portage

2026-06-12

cucumber-tag-expressions - 10.0.0
Ebuild name:

dev-python/cucumber-tag-expressions-10.0.0

Description

Cucumber tag expression parser

Added to portage

2026-06-12

cyme - 3.0.1
Ebuild name:

sys-apps/cyme-3.0.1

Description

List system USB buses and devices; a modern cross-platform `lsusb`

Added to portage

2026-06-12

dash - 0.5.13.4-r1
Ebuild name:

app-shells/dash-0.5.13.4-r1

Description

Debian Almquist Shell

Added to portage

2026-06-12

dcc - 2.3.168-r2
Ebuild name:

mail-filter/dcc-2.3.168-r2

Description

Distributed Checksum Clearinghouse

Added to portage

2026-06-12

dcc - 2.3.169
Ebuild name:

mail-filter/dcc-2.3.169

Description

Distributed Checksum Clearinghouse

Added to portage

2026-06-12

deno-bin - 2.8.3
Ebuild name:

dev-lang/deno-bin-2.8.3

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-06-12

distlib - 0.4.3
Ebuild name:

dev-python/distlib-0.4.3

Description

Low-level components of distutils2/packaging

Added to portage

2026-06-12

django-js-asset - 4.0.1
Ebuild name:

dev-python/django-js-asset-4.0.1

Description

Script tag with additional attributes for django.forms.Media

Added to portage

2026-06-12

docker-registry - 3.1.1
Ebuild name:

app-containers/docker-registry-3.1.1

Description

Docker Registry 2.0

Added to portage

2026-06-12

dosbox-staging - 0.82.2-r2
Ebuild name:

games-emulation/dosbox-staging-0.82.2-r2

Description

Modernized DOSBox soft-fork

Added to portage

2026-06-12

dunamai - 1.26.0
Ebuild name:

dev-python/dunamai-1.26.0

Description

Dynamic version generation

Added to portage

2026-06-12

dunamai - 1.26.1
Ebuild name:

dev-python/dunamai-1.26.1

Description

Dynamic version generation

Added to portage

2026-06-12

eselect-lua - 4-r2
Ebuild name:

app-eselect/eselect-lua-4-r2

Description

Lua eselect module

Added to portage

2026-06-12

execline - 2.9.9.1
Ebuild name:

dev-lang/execline-2.9.9.1

Description

A non-interactive scripting language

Added to portage

2026-06-12

fractal - 14
Ebuild name:

net-im/fractal-14

Description

Matrix messaging app for GNOME written in Rust

Added to portage

2026-06-12

gcc - 15.3.0
Ebuild name:

sys-devel/gcc-15.3.0

Description

The GNU Compiler Collection

Added to portage

2026-06-12

gfxreconstruct - 1.4.350.0
Ebuild name:

dev-debug/gfxreconstruct-1.4.350.0

Description

Graphics API Capture and Replay Tools

Added to portage

2026-06-12

google-chrome - 149.0.7827.114
Ebuild name:

www-client/google-chrome-149.0.7827.114

Description

The web browser from Google

Added to portage

2026-06-12

google-chrome-beta - 150.0.7871.13
Ebuild name:

www-client/google-chrome-beta-150.0.7871.13

Description

The web browser from Google

Added to portage

2026-06-12

google-chrome-unstable - 151.0.7872.0
Ebuild name:

www-client/google-chrome-unstable-151.0.7872.0

Description

The web browser from Google

Added to portage

2026-06-12

grpcio - 1.81.1
Ebuild name:

dev-python/grpcio-1.81.1

Description

HTTP/2-based RPC framework

Added to portage

2026-06-12

grpcio-status - 1.81.1
Ebuild name:

dev-python/grpcio-status-1.81.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-06-12

hcloud - 2.21.0
Ebuild name:

dev-python/hcloud-2.21.0

Description

Official Hetzner Cloud python library

Added to portage

2026-06-12

hishel - 1.3.0
Ebuild name:

dev-python/hishel-1.3.0

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2026-06-12

htslib - 1.23.1
Ebuild name:

sci-libs/htslib-1.23.1

Description

C library for high-throughput sequencing data formats

Added to portage

2026-06-12

httpx2 - 2.4.0
Ebuild name:

dev-python/httpx2-2.4.0

Description

The next generation HTTP client (Pydantic fork)

Added to portage

2026-06-12

jaq - 3.1.0
Ebuild name:

app-misc/jaq-3.1.0

Description

Just another JSON query tool

Added to portage

2026-06-12

kitty - 0.47.3
Ebuild name:

x11-terms/kitty-0.47.3

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2026-06-12

kitty-shell-integration - 0.47.3
Ebuild name:

x11-terms/kitty-shell-integration-0.47.3

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2026-06-12

kitty-terminfo - 0.47.3
Ebuild name:

x11-terms/kitty-terminfo-0.47.3

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2026-06-12

labwc - 0.9.8
Ebuild name:

gui-wm/labwc-0.9.8

Description

Openbox alternative for wayland

Added to portage

2026-06-12

libsecret - 0.21.7-r1
Ebuild name:

app-crypt/libsecret-0.21.7-r1

Description

GObject library for accessing the freedesktop.org Secret Service API

Added to portage

2026-06-12

libu2f-host - 1.1.10-r1
Ebuild name:

app-crypt/libu2f-host-1.1.10-r1

Description

Yubico Universal 2nd Factor (U2F) Host C Library

Added to portage

2026-06-12

macrostep - 0.9.5
Ebuild name:

app-emacs/macrostep-0.9.5

Description

Interactive macro-expander for Emacs

Added to portage

2026-06-12

macrostep-geiser - 0.2.0_p20210717
Ebuild name:

app-emacs/macrostep-geiser-0.2.0_p20210717

Description

Emacs macrostep back-end powered by geiser

Added to portage

2026-06-12

magit - 4.5.0
Ebuild name:

app-emacs/magit-4.5.0

Description

A Git porcelain inside Emacs

Added to portage

2026-06-12

magit - 4.5.0-r1
Ebuild name:

app-emacs/magit-4.5.0-r1

Description

A Git porcelain inside Emacs

Added to portage

2026-06-12

magit - 9999
Ebuild name:

app-emacs/magit-9999

Description

A Git porcelain inside Emacs

Added to portage

2026-06-12

magit-popup - 2.13.3-r1
Ebuild name:

app-emacs/magit-popup-2.13.3-r1

Description

Define prefix-infix-suffix command combos

Added to portage

2026-06-12

mailcrypt - 3.5.9-r3
Ebuild name:

app-emacs/mailcrypt-3.5.9-r3

Description

Provides a simple interface to public key cryptography with OpenPGP

Added to portage

2026-06-12

matplotlib - 3.11.0
Ebuild name:

dev-python/matplotlib-3.11.0

Description

Pure python plotting library with matlab like syntax

Added to portage

2026-06-12

maturin - 1.14.0
Ebuild name:

dev-util/maturin-1.14.0

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-06-12

microsoft-edge - 149.0.4022.62
Ebuild name:

www-client/microsoft-edge-149.0.4022.62

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-beta - 149.0.4022.52
Ebuild name:

www-client/microsoft-edge-beta-149.0.4022.52

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-beta - 149.0.4022.62
Ebuild name:

www-client/microsoft-edge-beta-149.0.4022.62

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-beta - 150.0.4078.5
Ebuild name:

www-client/microsoft-edge-beta-150.0.4078.5

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-dev - 150.0.4064.2
Ebuild name:

www-client/microsoft-edge-dev-150.0.4064.2

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-dev - 150.0.4078.1
Ebuild name:

www-client/microsoft-edge-dev-150.0.4078.1

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-dev - 150.0.4078.5
Ebuild name:

www-client/microsoft-edge-dev-150.0.4078.5

Description

The web browser from Microsoft

Added to portage

2026-06-12

msgpack - 1.2.0
Ebuild name:

dev-python/msgpack-1.2.0

Description

MessagePack (de)serializer for Python

Added to portage

2026-06-12

openmw - 0.51.0
Ebuild name:

games-engines/openmw-0.51.0

Description

Open source reimplementation of TES III Morrowind

Added to portage

2026-06-12

openscenegraph-openmw - 3.6_p20260130
Ebuild name:

dev-games/openscenegraph-openmw-3.6_p20260130

Description

OpenMW-specific fork of OpenSceneGraph

Added to portage

2026-06-12

opera - 132.0.5905.37
Ebuild name:

www-client/opera-132.0.5905.37

Description

A fast and secure web browser

Added to portage

2026-06-12

opera-developer - 133.0.5917.0
Ebuild name:

www-client/opera-developer-133.0.5917.0

Description

A fast and secure web browser

Added to portage

2026-06-12

opera-developer - 133.0.5924.0
Ebuild name:

www-client/opera-developer-133.0.5924.0

Description

A fast and secure web browser

Added to portage

2026-06-12

oslo-config - 10.5.0
Ebuild name:

dev-python/oslo-config-10.5.0

Description

Oslo Configuration API

Added to portage

2026-06-12

pbs-installer - 2026.6.10
Ebuild name:

dev-python/pbs-installer-2026.6.10

Description

Installer for Python Build Standalone

Added to portage

2026-06-12

peewee - 4.0.7
Ebuild name:

dev-python/peewee-4.0.7

Description

Small Python ORM

Added to portage

2026-06-12

podman-tui - 1.11.1
Ebuild name:

app-containers/podman-tui-1.11.1

Description

Terminal UI frontend for Podman

Added to portage

2026-06-12

protobuf - 7.35.1
Ebuild name:

dev-python/protobuf-7.35.1

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-06-12

pyproject-fmt - 2.24.0
Ebuild name:

dev-python/pyproject-fmt-2.24.0

Description

Format your pyproject.toml file

Added to portage

2026-06-12

python-discovery - 1.4.2
Ebuild name:

dev-python/python-discovery-1.4.2

Description

Python interpreter discovery

Added to portage

2026-06-12

qmapshack - 1.20.3
Ebuild name:

sci-geosciences/qmapshack-1.20.3

Description

GPS mapping utility

Added to portage

2026-06-12

ruff - 0.15.17
Ebuild name:

dev-util/ruff-0.15.17

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-06-12

s6 - 2.15.0.0
Ebuild name:

sys-apps/s6-2.15.0.0

Description

skarnet.org's small and secure supervision software suite

Added to portage

2026-06-12

s6-dns - 2.4.1.2
Ebuild name:

net-dns/s6-dns-2.4.1.2

Description

Suite of DNS client programs and libraries for Unix systems

Added to portage

2026-06-12

s6-frontend - 0.0.1.2
Ebuild name:

sys-apps/s6-frontend-0.0.1.2

Description

Frontend to the s6 init system

Added to portage

2026-06-12

s6-linux-init - 1.2.0.1
Ebuild name:

sys-apps/s6-linux-init-1.2.0.1

Description

Generates an init binary for s6-based init systems

Added to portage

2026-06-12

s6-networking - 2.8.0.0
Ebuild name:

net-misc/s6-networking-2.8.0.0

Description

Suite of small networking utilities for Unix systems

Added to portage

2026-06-12

s6-portable-utils - 2.3.1.2
Ebuild name:

sys-apps/s6-portable-utils-2.3.1.2

Description

Set of tiny portable unix utilities

Added to portage

2026-06-12

s6-rc - 0.6.1.1
Ebuild name:

sys-apps/s6-rc-0.6.1.1

Description

Service manager for the s6 supervision suite

Added to portage

2026-06-12

samtools - 1.23.1
Ebuild name:

sci-biology/samtools-1.23.1

Description

Utilities for analysing and manipulating the SAM/BAM alignment formats

Added to portage

2026-06-12

skalibs - 2.15.0.0
Ebuild name:

dev-libs/skalibs-2.15.0.0

Description

General-purpose libraries from skarnet.org

Added to portage

2026-06-12

skopeo - 1.23.0
Ebuild name:

app-containers/skopeo-1.23.0

Description

Work with remote container images registries

Added to portage

2026-06-12

sphinx-autodoc-typehints - 3.10.6
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.10.6

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-06-12

sphinx-autodoc-typehints - 3.11.0
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.11.0

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-06-12

sqlglot - 30.11.0
Ebuild name:

dev-python/sqlglot-30.11.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-06-12

starlette - 1.3.0
Ebuild name:

dev-python/starlette-1.3.0

Description

The little ASGI framework that shines

Added to portage

2026-06-12

starlette - 1.3.1
Ebuild name:

dev-python/starlette-1.3.1

Description

The little ASGI framework that shines

Added to portage

2026-06-12

telegram-desktop-bin - 6.9.1
Ebuild name:

net-im/telegram-desktop-bin-6.9.1

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-06-12

testfixtures - 12.0.1
Ebuild name:

dev-python/testfixtures-12.0.1

Description

A collection of helpers and mock objects for unit tests and doc test

Added to portage

2026-06-12

thunderbird - 151.0.1
Ebuild name:

mail-client/thunderbird-151.0.1

Description

Thunderbird Mail Client

Added to portage

2026-06-12

thunderbird-bin - 151.0.1
Ebuild name:

mail-client/thunderbird-bin-151.0.1

Description

Thunderbird Mail Client

Added to portage

2026-06-12

thunderbird-l10n - 151.0.1
Ebuild name:

mail-client/thunderbird-l10n-151.0.1

Description

Thunderbird mail client's translation files

Added to portage

2026-06-12

uv - 0.11.21
Ebuild name:

dev-python/uv-0.11.21

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-06-12

uv-build - 0.11.21
Ebuild name:

dev-python/uv-build-0.11.21

Description

PEP517 uv build backend

Added to portage

2026-06-12

uv-dynamic-versioning - 0.13.0
Ebuild name:

dev-python/uv-dynamic-versioning-0.13.0

Description

Dynamic versioning based on VCS tags for uv/hatch project

Added to portage

2026-06-12

uv-dynamic-versioning - 0.14.0
Ebuild name:

dev-python/uv-dynamic-versioning-0.14.0

Description

Dynamic versioning based on VCS tags for uv/hatch project

Added to portage

2026-06-12

virtualenv - 21.4.3
Ebuild name:

dev-python/virtualenv-21.4.3

Description

Virtual Python Environment builder

Added to portage

2026-06-12

vivaldi - 8.0.4033.46
Ebuild name:

www-client/vivaldi-8.0.4033.46

Description

A browser for our friends

Added to portage

2026-06-12

vivaldi-snapshot - 8.1.4068.3
Ebuild name:

www-client/vivaldi-snapshot-8.1.4068.3

Description

A browser for our friends

Added to portage

2026-06-12

vivaldi-snapshot - 8.1.4069.3
Ebuild name:

www-client/vivaldi-snapshot-8.1.4069.3

Description

A browser for our friends

Added to portage

2026-06-12

waybar - 0.15.0
Ebuild name:

gui-apps/waybar-0.15.0

Description

Highly customizable Wayland bar for Sway and Wlroots based compositors

Added to portage

2026-06-12

xfce4-dev-tools - 4.21.2
Ebuild name:

dev-build/xfce4-dev-tools-4.21.2

Description

A set of scripts and m4/autoconf macros that ease build system mai

Added to portage

2026-06-12

xscreensaver - 6.15
Ebuild name:

x11-misc/xscreensaver-6.15

Description

Modular screen saver and locker for the X Window System

Added to portage

2026-06-12

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 56.6 ms