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:

88477

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-09-18
Coro - 6.570.0-r1
Ebuild name:

dev-perl/Coro-6.570.0-r1

Description

The only real threads in perl

Added to portage

2026-09-18

awkward - 2.14.0
Ebuild name:

dev-python/awkward-2.14.0

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2026-09-18

awkward-cpp - 57
Ebuild name:

dev-python/awkward-cpp-57

Description

CPU kernels and compiled extensions for Awkward Array

Added to portage

2026-09-18

awscli - 2.36.48
Ebuild name:

app-admin/awscli-2.36.48

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-18

barman - 3.20.0
Ebuild name:

dev-db/barman-3.20.0

Description

Administration tool for disaster recovery of PostgreSQL servers

Added to portage

2026-09-18

boto3 - 1.43.97
Ebuild name:

dev-python/boto3-1.43.97

Description

The AWS SDK for Python

Added to portage

2026-09-18

botocore - 1.43.97
Ebuild name:

dev-python/botocore-1.43.97

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-18

cfn-lint - 1.57.0
Ebuild name:

dev-python/cfn-lint-1.57.0

Description

CloudFormation Linter

Added to portage

2026-09-18

elfutils - 0.196
Ebuild name:

dev-libs/elfutils-0.196

Description

Libraries/utilities to handle ELF objects (drop in replacement for libelf)

Added to portage

2026-09-18

firewalld - 2.5.2
Ebuild name:

net-firewall/firewalld-2.5.2

Description

Firewall daemon with D-Bus interface providing a dynamic firewall

Added to portage

2026-09-18

flang-rt - 21.1.8-r1
Ebuild name:

llvm-runtimes/flang-rt-21.1.8-r1

Description

LLVM's Fortran runtime

Added to portage

2026-09-18

flang-rt - 22.1.8-r1
Ebuild name:

llvm-runtimes/flang-rt-22.1.8-r1

Description

LLVM's Fortran runtime

Added to portage

2026-09-18

flang-rt - 23.1.1-r1
Ebuild name:

llvm-runtimes/flang-rt-23.1.1-r1

Description

LLVM's Fortran runtime

Added to portage

2026-09-18

gcc - 14.4.1_p20260917
Ebuild name:

sys-devel/gcc-14.4.1_p20260917

Description

The GNU Compiler Collection

Added to portage

2026-09-18

git-lfs - 3.8.0
Ebuild name:

dev-vcs/git-lfs-3.8.0

Description

Command line extension and specification for managing large files with git

Added to portage

2026-09-18

google-api-core - 2.38.0
Ebuild name:

dev-python/google-api-core-2.38.0

Description

Core Library for Google Client Libraries

Added to portage

2026-09-18

grafana-bin - 12.1.10
Ebuild name:

www-apps/grafana-bin-12.1.10

Description

Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB &

Added to portage

2026-09-18

grafana-bin - 12.2.10
Ebuild name:

www-apps/grafana-bin-12.2.10

Description

Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB &

Added to portage

2026-09-18

hidapi-hotplug - 0.15.0
Ebuild name:

dev-libs/hidapi-hotplug-0.15.0

Description

Fork of dev-libs/hidapi with hotplug support

Added to portage

2026-09-18

iminuit - 2.33.0
Ebuild name:

dev-python/iminuit-2.33.0

Description

Minuit numerical function minimization in Python

Added to portage

2026-09-18

inform-mode - 2.0.1
Ebuild name:

app-emacs/inform-mode-2.0.1

Description

A major mode for editing Inform programs

Added to portage

2026-09-18

kirigami-addons - 1.14.0
Ebuild name:

dev-libs/kirigami-addons-1.14.0

Description

Visual end user components for Kirigami-based applications

Added to portage

2026-09-18

libde265 - 1.1.3
Ebuild name:

media-libs/libde265-1.1.3

Description

Open h.265 video codec implementation

Added to portage

2026-09-18

libdwarf - 2.3.2
Ebuild name:

dev-libs/libdwarf-2.3.2

Description

Library intended to simplify reading (and writing) applications using DWARF

Added to portage

2026-09-18

libmaxminddb - 1.14.1
Ebuild name:

dev-libs/libmaxminddb-1.14.1

Description

C library for the MaxMind DB file format

Added to portage

2026-09-18

lyx - 2.5.3
Ebuild name:

app-office/lyx-2.5.3

Description

WYSIWYM (What You See Is What You Mean) document processor based on LaTeX

Added to portage

2026-09-18

openrgb - 1.0
Ebuild name:

app-misc/openrgb-1.0

Description

Open source RGB lighting control

Added to portage

2026-09-18

openrgb-plugin-effects - 1.0
Ebuild name:

app-misc/openrgb-plugin-effects-1.0

Description

Plugin for OpenRGB with various Effects that can be synced acro

Added to portage

2026-09-18

openrgb-plugin-effects - 1.0_rc2-r1
Ebuild name:

app-misc/openrgb-plugin-effects-1.0_rc2-r1

Description

Plugin for OpenRGB with various Effects that can be sync

Added to portage

2026-09-18

openrgb-plugin-skin - 1.0_rc2-r1
Ebuild name:

app-misc/openrgb-plugin-skin-1.0_rc2-r1

Description

Plugin for OpenRGB that allows you to customize the look an

Added to portage

2026-09-18

openrgb-plugin-visualmap - 1.0
Ebuild name:

app-misc/openrgb-plugin-visualmap-1.0

Description

Plugin for OpenRGB to create virtual devices out of multiple

Added to portage

2026-09-18

openrgb-plugin-visualmap - 1.0_rc2-r1
Ebuild name:

app-misc/openrgb-plugin-visualmap-1.0_rc2-r1

Description

Plugin for OpenRGB to create virtual devices out of mu

Added to portage

2026-09-18

pipewire - 1.6.9
Ebuild name:

media-video/pipewire-1.6.9

Description

Multimedia processing graphs

Added to portage

2026-09-18

pulseaudio-qt - 1.9.0
Ebuild name:

media-libs/pulseaudio-qt-1.9.0

Description

Qt bindings for libpulse

Added to portage

2026-09-18

pyproject-api - 1.11.2
Ebuild name:

dev-python/pyproject-api-1.11.2

Description

API to interact with the python pyproject.toml based projects

Added to portage

2026-09-18

quiche - 0.30.0
Ebuild name:

net-libs/quiche-0.30.0

Description

Implementation of the QUIC transport protocol and HTTP/3

Added to portage

2026-09-18

redis - 8.10.2
Ebuild name:

dev-db/redis-8.10.2

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-09-18

redis - 8.2.10
Ebuild name:

dev-db/redis-8.2.10

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-09-18

redis - 8.4.7
Ebuild name:

dev-db/redis-8.4.7

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-09-18

redis - 8.6.7
Ebuild name:

dev-db/redis-8.6.7

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-09-18

redis - 8.8.3
Ebuild name:

dev-db/redis-8.8.3

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-09-18

strace - 7.2
Ebuild name:

dev-debug/strace-7.2

Description

Useful diagnostic, instructional, and debugging tool

Added to portage

2026-09-18

stunnel - 5.81
Ebuild name:

net-misc/stunnel-5.81

Description

TLS/SSL - Port Wrapper

Added to portage

2026-09-18

tree-sitter - 0.26.0_p20260816-r1
Ebuild name:

dev-python/tree-sitter-0.26.0_p20260816-r1

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2026-09-18

uv - 0.12.16
Ebuild name:

dev-python/uv-0.12.16

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-18

uv-build - 0.12.16
Ebuild name:

dev-python/uv-build-0.12.16

Description

PEP517 uv build backend

Added to portage

2026-09-18

virtualenv - 21.7.11
Ebuild name:

dev-python/virtualenv-21.7.11

Description

Virtual Python Environment builder

Added to portage

2026-09-18

wcwidth - 0.8.4
Ebuild name:

dev-python/wcwidth-0.8.4

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-09-18

wireplumber - 0.5.17
Ebuild name:

media-video/wireplumber-0.5.17

Description

Replacement for pipewire-media-session

Added to portage

2026-09-18

xfsprogs - 7.2.0
Ebuild name:

sys-fs/xfsprogs-7.2.0

Description

XFS filesystem utilities

Added to portage

2026-09-18

2026-09-17
aiostream - 0.8.1
Ebuild name:

dev-python/aiostream-0.8.1

Description

Generator-based operators for asynchronous iteration

Added to portage

2026-09-17

awscli - 2.36.47
Ebuild name:

app-admin/awscli-2.36.47

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-17

boto3 - 1.43.96
Ebuild name:

dev-python/boto3-1.43.96

Description

The AWS SDK for Python

Added to portage

2026-09-17

botocore - 1.43.96
Ebuild name:

dev-python/botocore-1.43.96

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-17

braintree - 4.47.0
Ebuild name:

dev-python/braintree-4.47.0

Description

Braintree Python Library

Added to portage

2026-09-17

cachetools - 7.2.0
Ebuild name:

dev-python/cachetools-7.2.0

Description

Extensible memoizing collections and decorators

Added to portage

2026-09-17

cargo-nextest - 0.9.144
Ebuild name:

dev-util/cargo-nextest-0.9.144

Description

Next-generation test runner for Rust

Added to portage

2026-09-17

ccid - 1.8.3
Ebuild name:

app-crypt/ccid-1.8.3

Description

CCID free software driver

Added to portage

2026-09-17

clang - 24.0.0_pre20260916
Ebuild name:

dev-python/clang-24.0.0_pre20260916

Description

Python bindings for llvm-core/clang

Added to portage

2026-09-17

clang - 24.0.0_pre20260916
Ebuild name:

llvm-core/clang-24.0.0_pre20260916

Description

C language family frontend for LLVM

Added to portage

2026-09-17

clang-common - 24.0.0_pre20260916
Ebuild name:

llvm-core/clang-common-24.0.0_pre20260916

Description

Common files shared between multiple slots of clang

Added to portage

2026-09-17

compiler-rt - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/compiler-rt-24.0.0_pre20260916

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-09-17

compiler-rt-sanitizers - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-24.0.0_pre20260916

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-09-17

element-desktop-bin - 1.12.28
Ebuild name:

net-im/element-desktop-bin-1.12.28

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-09-17

emoji - 2.16.0
Ebuild name:

dev-python/emoji-2.16.0

Description

Emoji for Python

Added to portage

2026-09-17

eselect-ctags - 1.20
Ebuild name:

app-eselect/eselect-ctags-1.20

Description

Manages ctags implementations

Added to portage

2026-09-17

eselect-emacs - 1.20
Ebuild name:

app-eselect/eselect-emacs-1.20

Description

Manage multiple Emacs versions on one system

Added to portage

2026-09-17

filelock - 4.0.0
Ebuild name:

dev-python/filelock-4.0.0

Description

A platform independent file lock for Python

Added to portage

2026-09-17

fish - 4.9.3
Ebuild name:

app-shells/fish-4.9.3

Description

Friendly Interactive SHell

Added to portage

2026-09-17

flang - 24.0.0_pre20260916
Ebuild name:

llvm-core/flang-24.0.0_pre20260916

Description

LLVM's Fortran frontend

Added to portage

2026-09-17

flang-rt - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/flang-rt-24.0.0_pre20260916

Description

LLVM's Fortran runtime

Added to portage

2026-09-17

flightgear - 2024.1.7
Ebuild name:

games-simulation/flightgear-2024.1.7

Description

Open Source Flight Simulator

Added to portage

2026-09-17

flightgear-data - 2024.1.7
Ebuild name:

games-simulation/flightgear-data-2024.1.7

Description

FlightGear data files

Added to portage

2026-09-17

flit - 4.1.0
Ebuild name:

dev-python/flit-4.1.0

Description

Simplified packaging of Python modules

Added to portage

2026-09-17

flit-core - 4.1.0
Ebuild name:

dev-python/flit-core-4.1.0

Description

Simplified packaging of Python modules (core module)

Added to portage

2026-09-17

gammu - 1.45.0
Ebuild name:

app-mobilephone/gammu-1.45.0

Description

A tool to handle your cellular phone

Added to portage

2026-09-17

ggml - 0.24.0
Ebuild name:

sci-ml/ggml-0.24.0

Description

Tensor library for machine learning

Added to portage

2026-09-17

hcloud - 2.25.1
Ebuild name:

dev-python/hcloud-2.25.1

Description

Official Hetzner Cloud python library

Added to portage

2026-09-17

heroic-bin - 2.22.3
Ebuild name:

games-util/heroic-bin-2.22.3

Description

GOG and Epic Games Launcher for Linux

Added to portage

2026-09-17

hishel - 1.4.0
Ebuild name:

dev-python/hishel-1.4.0

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2026-09-17

idna - 3.20
Ebuild name:

dev-python/idna-3.20

Description

Internationalized Domain Names in Applications (IDNA)

Added to portage

2026-09-17

initsplit - 1.8_pre20160919
Ebuild name:

app-emacs/initsplit-1.8_pre20160919

Description

Split customizations into different files

Added to portage

2026-09-17

jj - 0.45.1-r1
Ebuild name:

dev-vcs/jj-0.45.1-r1

Description

Jujutsu - an experimental version control system

Added to portage

2026-09-17

krita - 6.0.4
Ebuild name:

media-gfx/krita-6.0.4

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-09-17

libclc - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libclc-24.0.0_pre20260916

Description

OpenCL C library

Added to portage

2026-09-17

libcxx - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libcxx-24.0.0_pre20260916

Description

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

Added to portage

2026-09-17

libcxxabi - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libcxxabi-24.0.0_pre20260916

Description

Low level support for a standard C++ library

Added to portage

2026-09-17

libgcc - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libgcc-24.0.0_pre20260916

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-09-17

libunwind - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/libunwind-24.0.0_pre20260916

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-17

lit - 24.0.0_pre20260916
Ebuild name:

dev-python/lit-24.0.0_pre20260916

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-09-17

lld - 24.0.0_pre20260916
Ebuild name:

llvm-core/lld-24.0.0_pre20260916

Description

The LLVM linker (link editor)

Added to portage

2026-09-17

lldb - 24.0.0_pre20260916
Ebuild name:

llvm-core/lldb-24.0.0_pre20260916

Description

The LLVM debugger

Added to portage

2026-09-17

llvm - 24.0.0_pre20260916
Ebuild name:

dev-ml/llvm-24.0.0_pre20260916

Description

OCaml bindings for LLVM

Added to portage

2026-09-17

llvm - 24.0.0_pre20260916
Ebuild name:

llvm-core/llvm-24.0.0_pre20260916

Description

Low Level Virtual Machine

Added to portage

2026-09-17

llvm-common - 24.0.0_pre20260916
Ebuild name:

llvm-core/llvm-common-24.0.0_pre20260916

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-09-17

mlir - 24.0.0_pre20260916
Ebuild name:

llvm-core/mlir-24.0.0_pre20260916

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-09-17

nginx - 1.30.5
Ebuild name:

www-servers/nginx-1.30.5

Description

Added to portage

2026-09-17

nginx - 1.31.6
Ebuild name:

www-servers/nginx-1.31.6

Description

Added to portage

2026-09-17

nodejs - 26.8.2-r2
Ebuild name:

net-libs/nodejs-26.8.2-r2

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-09-17

ollama - 0.34.1
Ebuild name:

sci-ml/ollama-0.34.1

Description

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

Added to portage

2026-09-17

openmp - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-24.0.0_pre20260916

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-09-17

openmp-amdgcn-amd-amdhsa - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-24.0.0_pre20260916

Description

OpenMP target library for amdgcn devices

Added to portage

2026-09-17

openmp-nvptx64-nvidia-cuda - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-24.0.0_pre20260916

Description

OpenMP target library for nvptx64 devic

Added to portage

2026-09-17

openmp-spirv64-intel - 24.0.0_pre20260916
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-24.0.0_pre20260916

Description

OpenMP target library for spirv64 Intel devic

Added to portage

2026-09-17

openpgp-keys-libass - 20260917
Ebuild name:

sec-keys/openpgp-keys-libass-20260917

Description

OpenPGP keys used to sign libass releases

Added to portage

2026-09-17

pcsc-lite - 2.5.1
Ebuild name:

sys-apps/pcsc-lite-2.5.1

Description

PC/SC Architecture smartcard middleware library

Added to portage

2026-09-17

pdm - 2.29.2
Ebuild name:

dev-python/pdm-2.29.2

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-09-17

platformdirs - 4.11.9
Ebuild name:

dev-python/platformdirs-4.11.9

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-09-17

polly - 24.0.0_pre20260916
Ebuild name:

llvm-core/polly-24.0.0_pre20260916

Description

Polyhedral optimizations for LLVM

Added to portage

2026-09-17

postfix - 3.12_pre20260916
Ebuild name:

mail-mta/postfix-3.12_pre20260916

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-09-17

pycurl - 7.48.0
Ebuild name:

dev-python/pycurl-7.48.0

Description

Python bindings for curl/libcurl

Added to portage

2026-09-17

pygraphviz - 2.0.2
Ebuild name:

dev-python/pygraphviz-2.0.2

Description

Python wrapper for the Graphviz Agraph data structure

Added to portage

2026-09-17

pymysql - 1.2.3
Ebuild name:

dev-python/pymysql-1.2.3

Description

Pure-Python MySQL Driver

Added to portage

2026-09-17

pypdf - 6.19.0
Ebuild name:

dev-python/pypdf-6.19.0

Description

Python library to work with PDF files

Added to portage

2026-09-17

pyproject-hooks - 1.3.3
Ebuild name:

dev-python/pyproject-hooks-1.3.3

Description

Wrappers to build Python packages using PEP 517 hooks

Added to portage

2026-09-17

pytest-rerunfailures - 16.7
Ebuild name:

dev-python/pytest-rerunfailures-16.7

Description

pytest plugin to re-run tests to eliminate flaky failures

Added to portage

2026-09-17

python-gammu - 3.5.0
Ebuild name:

dev-python/python-gammu-3.5.0

Description

Python bindings for Gammu

Added to portage

2026-09-17

python-ldap - 3.4.8
Ebuild name:

dev-python/python-ldap-3.4.8

Description

Various LDAP-related Python modules

Added to portage

2026-09-17

python-pam - 2.1.0
Ebuild name:

dev-python/python-pam-2.1.0

Description

Python PAM module

Added to portage

2026-09-17

sccache - 0.18.0
Ebuild name:

dev-util/sccache-0.18.0

Description

ccache/distcc like tool with support for rust and cloud storage

Added to portage

2026-09-17

scx - 1.1.3
Ebuild name:

sys-kernel/scx-1.1.3

Description

sched_ext schedulers and tools

Added to portage

2026-09-17

scx-loader - 1.1.3
Ebuild name:

sys-kernel/scx-loader-1.1.3

Description

DBUS on-demand loader of sched-ext schedulers

Added to portage

2026-09-17

simgear - 2024.1.7
Ebuild name:

dev-games/simgear-2024.1.7

Description

Development library for simulation games

Added to portage

2026-09-17

sphinx-gallery - 0.22.0
Ebuild name:

dev-python/sphinx-gallery-0.22.0

Description

Sphinx extension to automatically generate an examples gallery

Added to portage

2026-09-17

thunderbird - 140.16.0
Ebuild name:

mail-client/thunderbird-140.16.0

Description

Thunderbird Mail Client

Added to portage

2026-09-17

thunderbird - 153.3.0
Ebuild name:

mail-client/thunderbird-153.3.0

Description

Thunderbird Mail Client

Added to portage

2026-09-17

thunderbird - 156.0
Ebuild name:

mail-client/thunderbird-156.0

Description

Thunderbird Mail Client

Added to portage

2026-09-17

thunderbird-bin - 140.16.0
Ebuild name:

mail-client/thunderbird-bin-140.16.0

Description

Thunderbird Mail Client

Added to portage

2026-09-17

thunderbird-bin - 153.3.0
Ebuild name:

mail-client/thunderbird-bin-153.3.0

Description

Thunderbird Mail Client

Added to portage

2026-09-17

thunderbird-bin - 156.0
Ebuild name:

mail-client/thunderbird-bin-156.0

Description

Thunderbird Mail Client

Added to portage

2026-09-17

thunderbird-l10n - 153.3.0
Ebuild name:

mail-client/thunderbird-l10n-153.3.0

Description

Thunderbird mail client's translation files

Added to portage

2026-09-17

thunderbird-l10n - 156.0
Ebuild name:

mail-client/thunderbird-l10n-156.0

Description

Thunderbird mail client's translation files

Added to portage

2026-09-17

tox - 4.61.5
Ebuild name:

dev-python/tox-4.61.5

Description

virtualenv-based automation of test activities

Added to portage

2026-09-17

types-docutils - 0.23.0.20260917
Ebuild name:

dev-python/types-docutils-0.23.0.20260917

Description

Typing stubs for docutils

Added to portage

2026-09-17

urwid - 4.1.4
Ebuild name:

dev-python/urwid-4.1.4

Description

Curses-based user interface library for Python

Added to portage

2026-09-17

vcs-versioning - 2.4.1
Ebuild name:

dev-python/vcs-versioning-2.4.1

Description

Core VCS versioning functionality from setuptools-scm

Added to portage

2026-09-17

virtualbox - 7.2.18
Ebuild name:

app-emulation/virtualbox-7.2.18

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2026-09-17

virtualbox-additions - 7.2.18
Ebuild name:

app-emulation/virtualbox-additions-7.2.18

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-09-17

virtualbox-extpack-oracle - 7.2.18
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.18

Description

PUEL extensions for VirtualBox

Added to portage

2026-09-17

virtualbox-guest-additions - 7.2.18
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.18

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2026-09-17

virtualbox-guest-modules - 7.2.18
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.18

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-09-17

virtualbox-kvm - 7.2.18_pre20260201
Ebuild name:

app-emulation/virtualbox-kvm-7.2.18_pre20260201

Description

Family of powerful x86 virtualization products for

Added to portage

2026-09-17

virtualbox-modules - 7.2.18
Ebuild name:

app-emulation/virtualbox-modules-7.2.18

Description

Kernel Modules for Virtualbox

Added to portage

2026-09-17

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