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:

88024

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-08-30
boost - 1.92.0
Ebuild name:

dev-libs/boost-1.92.0

Description

Boost Libraries for C++

Added to portage

2026-08-30

doggo - 1.3.0
Ebuild name:

net-dns/doggo-1.3.0

Description

Command-line DNS Client for Humans

Added to portage

2026-08-30

gitea - 1.27.3
Ebuild name:

www-apps/gitea-1.27.3

Description

A painless self-hosted Git service

Added to portage

2026-08-30

incus - 7.4
Ebuild name:

app-containers/incus-7.4

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-08-30

luajit - 2.1.1787165859
Ebuild name:

dev-lang/luajit-2.1.1787165859

Description

Just-In-Time Compiler for the Lua programming language

Added to portage

2026-08-30

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-08-30

rust-parallel - 1.24.0
Ebuild name:

sys-process/rust-parallel-1.24.0

Description

Fast command line app to run commands in parallel

Added to portage

2026-08-30

tuned - 2.28.0
Ebuild name:

sys-apps/tuned-2.28.0

Description

Daemon for monitoring and adaptive tuning of system devices

Added to portage

2026-08-30

2026-08-29
AusweisApp - 2.5.5
Ebuild name:

sys-auth/AusweisApp-2.5.5

Description

Official authentication app for German ID cards and residence permits

Added to portage

2026-08-29

alectryon - 2.0.0-r1
Ebuild name:

sci-mathematics/alectryon-2.0.0-r1

Description

Toolkit for literate programming in Coq/Rocq

Added to portage

2026-08-29

awscli-bin - 2.36.34
Ebuild name:

app-admin/awscli-bin-2.36.34

Description

command line interface for Amazon Web Services

Added to portage

2026-08-29

bedrock-server - 1.26.45.1
Ebuild name:

games-server/bedrock-server-1.26.45.1

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2026-08-29

boto3 - 1.43.83
Ebuild name:

dev-python/boto3-1.43.83

Description

The AWS SDK for Python

Added to portage

2026-08-29

botocore - 1.43.83
Ebuild name:

dev-python/botocore-1.43.83

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-29

catalogus - 0.1.2
Ebuild name:

dev-python/catalogus-0.1.2

Description

Classes to provide name-to-object registry-like support

Added to portage

2026-08-29

clang - 23.1.0
Ebuild name:

dev-python/clang-23.1.0

Description

Python bindings for llvm-core/clang

Added to portage

2026-08-29

clang - 23.1.0
Ebuild name:

llvm-core/clang-23.1.0

Description

C language family frontend for LLVM

Added to portage

2026-08-29

clang-common - 23.1.0
Ebuild name:

llvm-core/clang-common-23.1.0

Description

Common files shared between multiple slots of clang

Added to portage

2026-08-29

compiler-rt - 23.1.0
Ebuild name:

llvm-runtimes/compiler-rt-23.1.0

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-08-29

compiler-rt-sanitizers - 23.1.0
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.1.0

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2026-08-29

coverage - 7.16.0
Ebuild name:

dev-python/coverage-7.16.0

Description

Code coverage measurement for Python

Added to portage

2026-08-29

dep-logic - 0.7.2
Ebuild name:

dev-python/dep-logic-0.7.2

Description

Python dependency specifications supporting logical operations

Added to portage

2026-08-29

django-js-asset - 4.1.0
Ebuild name:

dev-python/django-js-asset-4.1.0

Description

Script tag with additional attributes for django.forms.Media

Added to portage

2026-08-29

dkjson - 2.11
Ebuild name:

dev-lua/dkjson-2.11

Description

David Kolf's JSON module for Lua

Added to portage

2026-08-29

dulwich - 1.2.14
Ebuild name:

dev-python/dulwich-1.2.14

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-08-29

dxvk - 3.1
Ebuild name:

app-emulation/dxvk-3.1

Description

Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine

Added to portage

2026-08-29

ejabberd - 26.07
Ebuild name:

net-im/ejabberd-26.07

Description

Robust, scalable and extensible XMPP server

Added to portage

2026-08-29

faudio - 26.08
Ebuild name:

app-emulation/faudio-26.08

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-08-29

flang - 23.1.0
Ebuild name:

llvm-core/flang-23.1.0

Description

LLVM's Fortran frontend

Added to portage

2026-08-29

flang-rt - 23.1.0
Ebuild name:

llvm-runtimes/flang-rt-23.1.0

Description

LLVM's Fortran runtime

Added to portage

2026-08-29

freeipmi - 1.6.19
Ebuild name:

sys-libs/freeipmi-1.6.19

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2026-08-29

freerdp - 3.31.0-r1
Ebuild name:

net-misc/freerdp-3.31.0-r1

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-08-29

gallery-dl - 1.32.10
Ebuild name:

net-misc/gallery-dl-1.32.10

Description

Download image galleries and collections from several image hosting sit

Added to portage

2026-08-29

gawk - 5.4.1a
Ebuild name:

sys-apps/gawk-5.4.1a

Description

GNU awk pattern-matching language

Added to portage

2026-08-29

github-cli - 2.98.0
Ebuild name:

dev-util/github-cli-2.98.0

Description

GitHub CLI

Added to portage

2026-08-29

gitpython - 3.1.61
Ebuild name:

dev-python/gitpython-3.1.61

Description

Library used to interact with Git repositories

Added to portage

2026-08-29

golangci-lint - 2.13.2
Ebuild name:

dev-go/golangci-lint-2.13.2

Description

Fast linters runner for Go

Added to portage

2026-08-29

grpcio - 1.83.1
Ebuild name:

dev-python/grpcio-1.83.1

Description

HTTP/2-based RPC framework

Added to portage

2026-08-29

grpcio-status - 1.83.1
Ebuild name:

dev-python/grpcio-status-1.83.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-08-29

helm - 4.2.4
Ebuild name:

app-admin/helm-4.2.4

Description

Kubernetes Package Manager

Added to portage

2026-08-29

importlib-metadata - 9.0.1
Ebuild name:

dev-python/importlib-metadata-9.0.1

Description

Read metadata from Python packages

Added to portage

2026-08-29

intel-graphics-system-controller - 1.3.1
Ebuild name:

dev-util/intel-graphics-system-controller-1.3.1

Description

Intel graphics system controller firmware update li

Added to portage

2026-08-29

intel-metrics-discovery - 1.16.193
Ebuild name:

dev-libs/intel-metrics-discovery-1.16.193

Description

A user mode library that provides access to GPU performan

Added to portage

2026-08-29

intel-metrics-library - 1.0.238
Ebuild name:

dev-libs/intel-metrics-library-1.0.238

Description

User mode driver helper library that provides access to GPU

Added to portage

2026-08-29

ipython - 9.17.0
Ebuild name:

dev-python/ipython-9.17.0

Description

Advanced interactive shell for Python

Added to portage

2026-08-29

jiffy - 1.1.5
Ebuild name:

dev-erlang/jiffy-1.1.5

Description

JSON NIFs for Erlang

Added to portage

2026-08-29

jupyter-client - 8.10.0
Ebuild name:

dev-python/jupyter-client-8.10.0

Description

Jupyter protocol implementation and client libraries

Added to portage

2026-08-29

keystoneauth1 - 5.17.0
Ebuild name:

dev-python/keystoneauth1-5.17.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-08-29

kiwisolver - 1.5.1
Ebuild name:

dev-python/kiwisolver-1.5.1

Description

An efficient C++ implementation of the Cassowary constraint solving alg

Added to portage

2026-08-29

kube-apiserver - 1.37.0
Ebuild name:

sys-cluster/kube-apiserver-1.37.0

Description

Kubernetes API server

Added to portage

2026-08-29

kube-controller-manager - 1.37.0
Ebuild name:

sys-cluster/kube-controller-manager-1.37.0

Description

Kubernetes Controller Manager

Added to portage

2026-08-29

kube-proxy - 1.37.0
Ebuild name:

sys-cluster/kube-proxy-1.37.0

Description

Kubernetes Proxy service

Added to portage

2026-08-29

kube-scheduler - 1.37.0
Ebuild name:

sys-cluster/kube-scheduler-1.37.0

Description

Kubernetes Scheduler

Added to portage

2026-08-29

kubeadm - 1.37.0
Ebuild name:

sys-cluster/kubeadm-1.37.0

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2026-08-29

kubectl - 1.37.0
Ebuild name:

sys-cluster/kubectl-1.37.0

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-08-29

kubelet - 1.37.0
Ebuild name:

sys-cluster/kubelet-1.37.0

Description

Kubernetes Node Agent

Added to portage

2026-08-29

level-zero - 1.33.1
Ebuild name:

dev-libs/level-zero-1.33.1

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-08-29

libclc - 23.1.0
Ebuild name:

llvm-runtimes/libclc-23.1.0

Description

OpenCL C library

Added to portage

2026-08-29

libcxx - 23.1.0
Ebuild name:

llvm-runtimes/libcxx-23.1.0

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2026-08-29

libcxxabi - 23.1.0
Ebuild name:

llvm-runtimes/libcxxabi-23.1.0

Description

Low level support for a standard C++ library

Added to portage

2026-08-29

libgcc - 23.1.0
Ebuild name:

llvm-runtimes/libgcc-23.1.0

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-08-29

libunwind - 23.1.0
Ebuild name:

llvm-runtimes/libunwind-23.1.0

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-08-29

libupnp - 22.0.6
Ebuild name:

net-libs/libupnp-22.0.6

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-08-29

lit - 23.1.0
Ebuild name:

dev-python/lit-23.1.0

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-08-29

lld - 23.1.0
Ebuild name:

llvm-core/lld-23.1.0

Description

The LLVM linker (link editor)

Added to portage

2026-08-29

lldb - 23.1.0
Ebuild name:

llvm-core/lldb-23.1.0

Description

The LLVM debugger

Added to portage

2026-08-29

llvm - 23.1.0
Ebuild name:

dev-ml/llvm-23.1.0

Description

OCaml bindings for LLVM

Added to portage

2026-08-29

llvm - 23.1.0
Ebuild name:

llvm-core/llvm-23.1.0

Description

Low Level Virtual Machine

Added to portage

2026-08-29

llvm-common - 23.1.0
Ebuild name:

llvm-core/llvm-common-23.1.0

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-08-29

macrostep - 0.9.5
Ebuild name:

app-emacs/macrostep-0.9.5

Description

Interactive macro-expander for Emacs

Added to portage

2026-08-29

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-08-29

magit - 4.5.0-r1
Ebuild name:

app-emacs/magit-4.5.0-r1

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

magit - 4.6.0
Ebuild name:

app-emacs/magit-4.6.0

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

magit - 4.7.0
Ebuild name:

app-emacs/magit-4.7.0

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

mlir - 23.1.0
Ebuild name:

llvm-core/mlir-23.1.0

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-08-29

mxml - 4.0.5
Ebuild name:

dev-libs/mxml-4.0.5

Description

A small XML parsing library that you can use to read XML data files or strings

Added to portage

2026-08-29

mysqltuner - 2.9.2
Ebuild name:

dev-db/mysqltuner-2.9.2

Description

Makes recommendations for increased performance and stability for MySQL

Added to portage

2026-08-29

netpbm - 11.2.22
Ebuild name:

media-libs/netpbm-11.2.22

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-08-29

nss - 3.128
Ebuild name:

dev-libs/nss-3.128

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-08-29

nvidia-drivers - 595.44.15
Ebuild name:

x11-drivers/nvidia-drivers-595.44.15

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-29

ollama - 0.33.2
Ebuild name:

sci-ml/ollama-0.33.2

Description

Get up and running with Llama 3, Mistral, Gemma, and other language models

Added to portage

2026-08-29

openmp - 23.1.0
Ebuild name:

llvm-runtimes/openmp-23.1.0

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-08-29

openmp-amdgcn-amd-amdhsa - 23.1.0
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-23.1.0

Description

OpenMP target library for amdgcn devices

Added to portage

2026-08-29

openmp-nvptx64-nvidia-cuda - 23.1.0
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-23.1.0

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-08-29

openmp-spirv64-intel - 23.1.0
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-23.1.0

Description

OpenMP target library for spirv64 Intel devices

Added to portage

2026-08-29

openrct2 - 0.5.4
Ebuild name:

games-simulation/openrct2-0.5.4

Description

An open source re-implementation of Chris Sawyer's RollerCoaster Ty

Added to portage

2026-08-29

pandoc-bin - 3.11
Ebuild name:

app-text/pandoc-bin-3.11

Description

Conversion between markup formats (binary package)

Added to portage

2026-08-29

phonenumbers - 9.0.38
Ebuild name:

dev-python/phonenumbers-9.0.38

Description

Python port of Google's libphonenumber

Added to portage

2026-08-29

pixi - 0.78.0
Ebuild name:

dev-util/pixi-0.78.0

Description

A package management and workflow tool

Added to portage

2026-08-29

polly - 23.1.0
Ebuild name:

llvm-core/polly-23.1.0

Description

Polyhedral optimizations for LLVM

Added to portage

2026-08-29

powa-archivist - 5.3.0
Ebuild name:

dev-db/powa-archivist-5.3.0

Description

PostgreSQL Workload Analyzer Archivist

Added to portage

2026-08-29

pwsh - 7.6.3-r1
Ebuild name:

app-shells/pwsh-7.6.3-r1

Description

Cross-platform automation and configuration tool

Added to portage

2026-08-29

pwsh - 7.6.5
Ebuild name:

app-shells/pwsh-7.6.5

Description

Cross-platform automation and configuration tool

Added to portage

2026-08-29

pwsh-bin - 7.6.3-r1
Ebuild name:

app-shells/pwsh-bin-7.6.3-r1

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2026-08-29

pwsh-bin - 7.6.5
Ebuild name:

app-shells/pwsh-bin-7.6.5

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2026-08-29

pydantic - 2.13.5
Ebuild name:

dev-python/pydantic-2.13.5

Description

Data parsing and validation using Python type hints

Added to portage

2026-08-29

pyproject-fmt - 2.28.2
Ebuild name:

dev-python/pyproject-fmt-2.28.2

Description

Format your pyproject.toml file

Added to portage

2026-08-29

python-discovery - 1.6.0
Ebuild name:

dev-python/python-discovery-1.6.0

Description

Python interpreter discovery

Added to portage

2026-08-29

python-keystoneclient - 6.0.0
Ebuild name:

dev-python/python-keystoneclient-6.0.0

Description

Client Library for OpenStack Identity

Added to portage

2026-08-29

python-manilaclient - 6.3.0
Ebuild name:

dev-python/python-manilaclient-6.3.0

Description

Python bindings to the OpenStack Manila API

Added to portage

2026-08-29

python-novaclient - 18.13.1
Ebuild name:

dev-python/python-novaclient-18.13.1

Description

A client for the OpenStack Nova API

Added to portage

2026-08-29

python-swiftclient - 4.11.0
Ebuild name:

dev-python/python-swiftclient-4.11.0

Description

Python bindings to the OpenStack Object Storage API

Added to portage

2026-08-29

raspberrypi-firmware - 1.20260824
Ebuild name:

sys-boot/raspberrypi-firmware-1.20260824

Description

Raspberry Pi (all versions) bootloader and GPU firmware

Added to portage

2026-08-29

raspberrypi-image - 6.18.46_p20260824
Ebuild name:

sys-kernel/raspberrypi-image-6.18.46_p20260824

Description

Raspberry Pi (all versions) kernel and modules

Added to portage

2026-08-29

raspberrypi-sources - 6.18.46_p20260824
Ebuild name:

sys-kernel/raspberrypi-sources-6.18.46_p20260824

Description

Raspberry Pi kernel sources

Added to portage

2026-08-29

readme-renderer - 46.0
Ebuild name:

dev-python/readme-renderer-46.0

Description

A library for rendering 'readme' descriptions for Warehouse

Added to portage

2026-08-29

requests-futures - 1.1.0
Ebuild name:

dev-python/requests-futures-1.1.0

Description

Asynchronous Python HTTP for Humans

Added to portage

2026-08-29

rpi-eeprom - 28.30
Ebuild name:

dev-embedded/rpi-eeprom-28.30

Description

Updater for Raspberry Pi 4/5 bootloader and the VL805 USB controller

Added to portage

2026-08-29

rtl-sdr - 2.0.3
Ebuild name:

net-wireless/rtl-sdr-2.0.3

Description

Turns your Realtek RTL2832 based DVB dongle into a SDR receiver

Added to portage

2026-08-29

rtl-sdr-blog - 1.4.0
Ebuild name:

net-wireless/rtl-sdr-blog-1.4.0

Description

Modified Osmocom drivers with enhancements for RTL-SDR Blog V3 and

Added to portage

2026-08-29

ruff - 0.16.5
Ebuild name:

dev-util/ruff-0.16.5

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-08-29

seamonkey - 2.53.24
Ebuild name:

www-client/seamonkey-2.53.24

Description

Seamonkey Web Browser

Added to portage

2026-08-29

shader-slang - 2026.16.1
Ebuild name:

dev-util/shader-slang-2026.16.1

Description

Making it easier to work with shaders

Added to portage

2026-08-29

spirv-llvm-translator - 23.1.0
Ebuild name:

dev-util/spirv-llvm-translator-23.1.0

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-08-29

stress-ng - 0.22.00
Ebuild name:

app-benchmarks/stress-ng-0.22.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-08-29

testscenarios - 0.7.0
Ebuild name:

dev-python/testscenarios-0.7.0

Description

A pyunit extension for dependency injection

Added to portage

2026-08-29

tox - 4.61.1
Ebuild name:

dev-python/tox-4.61.1

Description

virtualenv-based automation of test activities

Added to portage

2026-08-29

typer - 0.27.2
Ebuild name:

dev-python/typer-0.27.2

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-08-29

unifi - 10.6.101
Ebuild name:

net-wireless/unifi-10.6.101

Description

A Management Controller for Ubiquiti Networks UniFi APs

Added to portage

2026-08-29

virtualenv - 21.7.7
Ebuild name:

dev-python/virtualenv-21.7.7

Description

Virtual Python Environment builder

Added to portage

2026-08-29

wasm3 - 0.9.0
Ebuild name:

dev-util/wasm3-0.9.0

Description

A fast WebAssembly interpreter and the most universal WASM runtime

Added to portage

2026-08-29

wcwidth - 0.8.3
Ebuild name:

dev-python/wcwidth-0.8.3

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-08-29

xmpp - 1.13.4
Ebuild name:

dev-erlang/xmpp-1.13.4

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2026-08-29

xterm - 411
Ebuild name:

x11-terms/xterm-411

Description

Terminal Emulator for X Windows

Added to portage

2026-08-29

zellij - 0.45.1
Ebuild name:

app-misc/zellij-0.45.1

Description

A terminal workspace with batteries included

Added to portage

2026-08-29

zeroconf - 0.151.1
Ebuild name:

dev-python/zeroconf-0.151.1

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2026-08-29

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