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:

77388

userrating:

average rating: 1.2 (8 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.0 (7 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-06-20
adsf - 1.5.2-r1
Ebuild name:

www-servers/adsf-1.5.2-r1

Description

A Dead Simple Fileserver is a static file server that can launch in a dir

Added to portage

2025-06-20

aws-sam-translator - 1.99.0
Ebuild name:

dev-python/aws-sam-translator-1.99.0

Description

A library that transform SAM templates into AWS CloudFormation

Added to portage

2025-06-20

awscli - 1.40.39
Ebuild name:

app-admin/awscli-1.40.39

Description

Universal Command Line Environment for AWS

Added to portage

2025-06-20

bindgen - 0.72.0
Ebuild name:

dev-util/bindgen-0.72.0

Description

Automatically generates Rust FFI bindings to C and C++ libraries.

Added to portage

2025-06-20

boto3 - 1.38.40
Ebuild name:

dev-python/boto3-1.38.40

Description

The AWS SDK for Python

Added to portage

2025-06-20

botocore - 1.38.40
Ebuild name:

dev-python/botocore-1.38.40

Description

Low-level, data-driven core of boto 3

Added to portage

2025-06-20

cvise - 9999
Ebuild name:

dev-util/cvise-9999

Description

Super-parallel Python port of the C-Reduce

Added to portage

2025-06-20

difftastic - 0.64.0
Ebuild name:

dev-util/difftastic-0.64.0

Description

A structural diff that understands syntax.

Added to portage

2025-06-20

dist-kernel - 6.12.34
Ebuild name:

virtual/dist-kernel-6.12.34

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-06-20

dist-kernel - 6.15.3
Ebuild name:

virtual/dist-kernel-6.15.3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-06-20

dist-kernel - 6.6.94
Ebuild name:

virtual/dist-kernel-6.6.94

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-06-20

drgn - 0.0.32
Ebuild name:

dev-debug/drgn-0.0.32

Description

Programmable debugger

Added to portage

2025-06-20

fakeredis - 2.30.1
Ebuild name:

dev-python/fakeredis-2.30.1

Description

Fake implementation of redis API for testing purposes

Added to portage

2025-06-20

gentoo-kernel - 6.12.34
Ebuild name:

sys-kernel/gentoo-kernel-6.12.34

Description

Linux kernel built with Gentoo patches

Added to portage

2025-06-20

gentoo-kernel - 6.15.3
Ebuild name:

sys-kernel/gentoo-kernel-6.15.3

Description

Linux kernel built with Gentoo patches

Added to portage

2025-06-20

gentoo-kernel - 6.6.94
Ebuild name:

sys-kernel/gentoo-kernel-6.6.94

Description

Linux kernel built with Gentoo patches

Added to portage

2025-06-20

gentoo-kernel-bin - 6.12.34
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.34

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-06-20

gentoo-kernel-bin - 6.15.3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.15.3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-06-20

gentoo-kernel-bin - 6.6.94
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.94

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-06-20

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

dev-python/google-api-python-client-2.173.0

Description

Google API Client for Python

Added to portage

2025-06-20

hypothesis - 6.135.12
Ebuild name:

dev-python/hypothesis-6.135.12

Description

A library for property based testing

Added to portage

2025-06-20

less - 679
Ebuild name:

sys-apps/less-679

Description

Excellent text file viewer

Added to portage

2025-06-20

libaom - 3.12.1
Ebuild name:

media-libs/libaom-3.12.1

Description

Alliance for Open Media AV1 Codec SDK

Added to portage

2025-06-20

libffi - 3.4.8-r3
Ebuild name:

dev-libs/libffi-3.4.8-r3

Description

Portable, high level programming interface to various calling conventions

Added to portage

2025-06-20

libvpx - 1.15.2
Ebuild name:

media-libs/libvpx-1.15.2

Description

WebM VP8 and VP9 Codec SDK

Added to portage

2025-06-20

libwebp - 1.5.0
Ebuild name:

media-libs/libwebp-1.5.0

Description

A lossy image compression format

Added to portage

2025-06-20

markdown - 3.8.2
Ebuild name:

dev-python/markdown-3.8.2

Description

Python implementation of the markdown markup language

Added to portage

2025-06-20

minikanren - 1.0.4
Ebuild name:

dev-python/minikanren-1.0.4

Description

Relational programming in Python

Added to portage

2025-06-20

narwhals - 1.43.1
Ebuild name:

dev-python/narwhals-1.43.1

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-06-20

net-imap - 0.4.22
Ebuild name:

dev-ruby/net-imap-0.4.22

Description

Ruby client api for Internet Message Access Protocol

Added to portage

2025-06-20

net-imap - 0.5.9
Ebuild name:

dev-ruby/net-imap-0.5.9

Description

Ruby client api for Internet Message Access Protocol

Added to portage

2025-06-20

nuitka - 2.7.10
Ebuild name:

dev-python/nuitka-2.7.10

Description

Python to native compiler

Added to portage

2025-06-20

oauthlib - 3.3.1
Ebuild name:

dev-python/oauthlib-3.3.1

Description

Spec-compliant and thorough implementation of the OAuth request-signing l

Added to portage

2025-06-20

pdfpc - 4.7.0-r2
Ebuild name:

app-text/pdfpc-4.7.0-r2

Description

Presenter console with multi-monitor support for PDF files

Added to portage

2025-06-20

pybind11 - 3.0.0_rc4
Ebuild name:

dev-python/pybind11-3.0.0_rc4

Description

AST-based Python refactoring library

Added to portage

2025-06-20

pysnmp - 7.1.21
Ebuild name:

dev-python/pysnmp-7.1.21

Description

Python SNMP library

Added to portage

2025-06-20

qiskit - 2.1.0
Ebuild name:

dev-python/qiskit-2.1.0

Description

An open-source SDK for working with quantum computers

Added to portage

2025-06-20

qtcurve - 1.9.0_p20250314-r1
Ebuild name:

x11-themes/qtcurve-1.9.0_p20250314-r1

Description

Widget styles for Qt and GTK2

Added to portage

2025-06-20

quiche - 0.24.4
Ebuild name:

net-libs/quiche-0.24.4

Description

Implementation of the QUIC transport protocol and HTTP/3

Added to portage

2025-06-20

railway - 2.8.2
Ebuild name:

gui-apps/railway-2.8.2

Description

Travel with all your train information in one place

Added to portage

2025-06-20

rspec-rails - 8.0.1
Ebuild name:

dev-ruby/rspec-rails-8.0.1

Description

RSpec's official Ruby on Rails plugin

Added to portage

2025-06-20

ruby_smb - 3.3.16
Ebuild name:

dev-ruby/ruby_smb-3.3.16

Description

Pure Ruby implementation of the SMB Protocol Family

Added to portage

2025-06-20

vanilla-kernel - 6.12.34
Ebuild name:

sys-kernel/vanilla-kernel-6.12.34

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-06-20

vanilla-kernel - 6.15.3
Ebuild name:

sys-kernel/vanilla-kernel-6.15.3

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-06-20

vanilla-kernel - 6.6.94
Ebuild name:

sys-kernel/vanilla-kernel-6.6.94

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-06-20

xtables-addons - 3.28
Ebuild name:

net-firewall/xtables-addons-3.28

Description

iptables extensions not yet accepted in the main kernel

Added to portage

2025-06-20

zfs - 2.2.8
Ebuild name:

sys-fs/zfs-2.2.8

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-06-20

zfs - 2.3.3
Ebuild name:

sys-fs/zfs-2.3.3

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-06-20

zfs-kmod - 2.2.8
Ebuild name:

sys-fs/zfs-kmod-2.2.8

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-06-20

zfs-kmod - 2.3.3
Ebuild name:

sys-fs/zfs-kmod-2.3.3

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-06-20

2025-06-19
Cache-FastMmap - 1.600.0
Ebuild name:

dev-perl/Cache-FastMmap-1.600.0

Description

Uses an mmaped file to act as a shared memory interprocess cache

Added to portage

2025-06-19

IO-Socket-SSL - 2.94.0
Ebuild name:

dev-perl/IO-Socket-SSL-2.94.0

Description

Nearly transparent SSL encapsulation for IO

Added to portage

2025-06-19

Template-Tiny - 1.160.0
Ebuild name:

dev-perl/Template-Tiny-1.160.0

Description

Template Toolkit reimplemented in as little code as possible

Added to portage

2025-06-19

a2wsgi - 1.10.10
Ebuild name:

dev-python/a2wsgi-1.10.10

Description

Convert WSGI app to ASGI app or ASGI app to WSGI app

Added to portage

2025-06-19

ansible - 12.0.0_alpha6
Ebuild name:

app-admin/ansible-12.0.0_alpha6

Description

Model-driven deployment, config management, and command execution f

Added to portage

2025-06-19

ansible-compat - 25.6.0
Ebuild name:

dev-python/ansible-compat-25.6.0

Description

Contains functions that facilitate working with various versions o

Added to portage

2025-06-19

ansible-core - 2.19.0_beta6
Ebuild name:

app-admin/ansible-core-2.19.0_beta6

Description

Model-driven deployment, config management, and command executi

Added to portage

2025-06-19

asciidoctor-diagram - 2.3.2
Ebuild name:

dev-ruby/asciidoctor-diagram-2.3.2

Description

A set of Asciidoctor extensions that enable you to add diagrams

Added to portage

2025-06-19

async-container - 0.24.0
Ebuild name:

dev-ruby/async-container-0.24.0

Description

Abstract container-based parallelism using threads and processes

Added to portage

2025-06-19

aws-partitions - 1.1118.0
Ebuild name:

dev-ruby/aws-partitions-1.1118.0

Description

Provides interfaces to enumerate AWS partitions, regions, and serv

Added to portage

2025-06-19

awscli - 1.40.38
Ebuild name:

app-admin/awscli-1.40.38

Description

Universal Command Line Environment for AWS

Added to portage

2025-06-19

bindata - 2.4.15
Ebuild name:

dev-ruby/bindata-2.4.15

Description

Parsing Binary Data in Ruby

Added to portage

2025-06-19

boto3 - 1.38.39
Ebuild name:

dev-python/boto3-1.38.39

Description

The AWS SDK for Python

Added to portage

2025-06-19

botocore - 1.38.39
Ebuild name:

dev-python/botocore-1.38.39

Description

Low-level, data-driven core of boto 3

Added to portage

2025-06-19

bson - 5.1.1
Ebuild name:

dev-ruby/bson-5.1.1

Description

A Ruby BSON implementation for MongoDB. (Includes binary C-based extension.)

Added to portage

2025-06-19

c-intercal - 33.0-r2
Ebuild name:

dev-lang/c-intercal-33.0-r2

Description

C-INTERCAL - INTERCAL to binary (via C) compiler

Added to portage

2025-06-19

chrome-binary-plugins - 138.0.7204.35_beta
Ebuild name:

www-plugins/chrome-binary-plugins-138.0.7204.35_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-06-19

chromium - 138.0.7204.35
Ebuild name:

www-client/chromium-138.0.7204.35

Description

Open-source version of Google Chrome web browser

Added to portage

2025-06-19

clamav - 0.103.12-r2
Ebuild name:

app-antivirus/clamav-0.103.12-r2

Description

Clam Anti-Virus Scanner

Added to portage

2025-06-19

clamav - 1.4.3
Ebuild name:

app-antivirus/clamav-1.4.3

Description

Clam Anti-Virus Scanner

Added to portage

2025-06-19

claude-code - 1.0.28
Ebuild name:

dev-util/claude-code-1.0.28

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-06-19

claude-code - 1.0.29
Ebuild name:

dev-util/claude-code-1.0.29

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-06-19

cyme - 2.2.3
Ebuild name:

sys-apps/cyme-2.2.3

Description

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

Added to portage

2025-06-19

django-prometheus - 2.4.0
Ebuild name:

dev-python/django-prometheus-2.4.0

Description

Library to export Django metrics for Prometheus

Added to portage

2025-06-19

elementpath - 5.0.2
Ebuild name:

dev-python/elementpath-5.0.2

Description

XPath 1.0/2.0 parsers and selectors for ElementTree and lxml

Added to portage

2025-06-19

faraday-multipart - 1.1.1
Ebuild name:

dev-ruby/faraday-multipart-1.1.1

Description

Perform multipart-post requests using Faraday

Added to portage

2025-06-19

faraday-net_http - 3.4.1
Ebuild name:

dev-ruby/faraday-net_http-3.4.1

Description

Faraday adapter for Net

Added to portage

2025-06-19

faraday-net_http_persistent - 2.3.1
Ebuild name:

dev-ruby/faraday-net_http_persistent-2.3.1

Description

Faraday adapter for NetHttpPersistent

Added to portage

2025-06-19

faraday-retry - 2.3.2
Ebuild name:

dev-ruby/faraday-retry-2.3.2

Description

Faraday adapter for Net

Added to portage

2025-06-19

gentoo-sources - 6.12.34
Ebuild name:

sys-kernel/gentoo-sources-6.12.34

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-06-19

gentoo-sources - 6.15.3
Ebuild name:

sys-kernel/gentoo-sources-6.15.3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-06-19

gentoo-sources - 6.6.94
Ebuild name:

sys-kernel/gentoo-sources-6.6.94

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-06-19

google-chrome-beta - 138.0.7204.35
Ebuild name:

www-client/google-chrome-beta-138.0.7204.35

Description

The web browser from Google

Added to portage

2025-06-19

libwacom - 2.16.1
Ebuild name:

dev-libs/libwacom-2.16.1

Description

Library for identifying Wacom tablets and their model-specific features

Added to portage

2025-06-19

markdown - 3.8.1
Ebuild name:

dev-python/markdown-3.8.1

Description

Python implementation of the markdown markup language

Added to portage

2025-06-19

matrix - 0.4.3
Ebuild name:

dev-ruby/matrix-0.4.3

Description

An implementation of Matrix and Vector classes

Added to portage

2025-06-19

maxitest - 6.0.0
Ebuild name:

dev-ruby/maxitest-6.0.0

Description

Minitest + all the features you always wanted

Added to portage

2025-06-19

mesa - 25.1.4
Ebuild name:

media-libs/mesa-25.1.4

Description

OpenGL-like graphic library for Linux

Added to portage

2025-06-19

mesa_clc - 25.1.4
Ebuild name:

dev-util/mesa_clc-25.1.4

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2025-06-19

ninja - 1.13.0
Ebuild name:

dev-build/ninja-1.13.0

Description

A small build system similar to make

Added to portage

2025-06-19

nuitka - 2.7.9
Ebuild name:

dev-python/nuitka-2.7.9

Description

Python to native compiler

Added to portage

2025-06-19

openpgp-keys-apache-tomcat - 10.1.42
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-10.1.42

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2025-06-19

openpgp-keys-apache-tomcat - 11.0.8
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-11.0.8

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2025-06-19

openpgp-keys-apache-tomcat - 9.0.106
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-9.0.106

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2025-06-19

pikepdf - 9.9.0
Ebuild name:

dev-python/pikepdf-9.9.0

Description

Python library to work with pdf files based on qpdf

Added to portage

2025-06-19

podman - 5.5.0
Ebuild name:

dev-python/podman-5.5.0

Description

A library to interact with a Podman server

Added to portage

2025-06-19

pos-tip - 0.4.7
Ebuild name:

app-emacs/pos-tip-0.4.7

Description

Show tooltip at point

Added to portage

2025-06-19

posframe - 1.4.4
Ebuild name:

app-emacs/posframe-1.4.4

Description

Pop up a frame at point

Added to portage

2025-06-19

pov-mode - 3.3-r1
Ebuild name:

app-emacs/pov-mode-3.3-r1

Description

Major mode for Povray scene files

Added to portage

2025-06-19

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-06-19

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-06-19

powershell - 0.3_pre20220402
Ebuild name:

app-emacs/powershell-0.3_pre20220402

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-06-19

powershell - 0.3_pre20220805
Ebuild name:

app-emacs/powershell-0.3_pre20220805

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-06-19

prime - 0.1.4
Ebuild name:

dev-ruby/prime-0.1.4

Description

Prime numbers and factorization library

Added to portage

2025-06-19

projectile - 2.8.0-r1
Ebuild name:

app-emacs/projectile-2.8.0-r1

Description

A project interaction library for Emacs

Added to portage

2025-06-19

projectile - 2.9.1
Ebuild name:

app-emacs/projectile-2.9.1

Description

A project interaction library for Emacs

Added to portage

2025-06-19

proofgeneral - 4.5
Ebuild name:

app-emacs/proofgeneral-4.5

Description

A generic interface for proof assistants

Added to portage

2025-06-19

pytest - 8.4.1
Ebuild name:

dev-python/pytest-8.4.1

Description

Simple powerful testing with Python

Added to portage

2025-06-19

r10k - 5.0.1
Ebuild name:

app-admin/r10k-5.0.1

Description

Puppet environment and module deployment

Added to portage

2025-06-19

rdoc - 6.14.1
Ebuild name:

dev-ruby/rdoc-6.14.1

Description

An extended version of the RDoc library from Ruby 1.8

Added to portage

2025-06-19

reportlab - 4.4.2
Ebuild name:

dev-python/reportlab-4.4.2

Description

Tools for generating printable PDF documents from any data source

Added to portage

2025-06-19

ruby-feedparser - 0.11.4
Ebuild name:

dev-ruby/ruby-feedparser-0.11.4

Description

Ruby library to parse ATOM/RSS feeds

Added to portage

2025-06-19

symengine - 0.14.1-r1
Ebuild name:

dev-python/symengine-0.14.1-r1

Description

Python wrappers to the symengine C++ library

Added to portage

2025-06-19

tomcat - 10.1.42
Ebuild name:

www-servers/tomcat-10.1.42

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2025-06-19

tomcat - 11.0.8
Ebuild name:

www-servers/tomcat-11.0.8

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2025-06-19

tomcat - 9.0.106
Ebuild name:

www-servers/tomcat-9.0.106

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2025-06-19

typeguard - 4.4.4
Ebuild name:

dev-python/typeguard-4.4.4

Description

Run-time type checker for Python

Added to portage

2025-06-19

urllib3 - 2.5.0
Ebuild name:

dev-python/urllib3-2.5.0

Description

HTTP library with thread-safe connection pooling, file post, and more

Added to portage

2025-06-19

vanilla-sources - 6.12.34
Ebuild name:

sys-kernel/vanilla-sources-6.12.34

Description

Full sources for the Linux kernel

Added to portage

2025-06-19

vanilla-sources - 6.15.3
Ebuild name:

sys-kernel/vanilla-sources-6.15.3

Description

Full sources for the Linux kernel

Added to portage

2025-06-19

vanilla-sources - 6.6.93
Ebuild name:

sys-kernel/vanilla-sources-6.6.93

Description

Full sources for the Linux kernel

Added to portage

2025-06-19

with_advisory_lock - 5.3.0
Ebuild name:

dev-ruby/with_advisory_lock-5.3.0

Description

Advisory locking for ActiveRecord

Added to portage

2025-06-19

woff2 - 1.0.2-r7
Ebuild name:

media-libs/woff2-1.0.2-r7

Description

Encode/decode WOFF2 font format

Added to portage

2025-06-19

xfburn - 0.8.0
Ebuild name:

app-cdr/xfburn-0.8.0

Description

GTK+ based CD and DVD burning application

Added to portage

2025-06-19

xorg-server - 21.1.18
Ebuild name:

x11-base/xorg-server-21.1.18

Description

X.Org X servers

Added to portage

2025-06-19

xwayland - 24.1.8
Ebuild name:

x11-base/xwayland-24.1.8

Description

Standalone X server running under Wayland

Added to portage

2025-06-19

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