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:

63847

userrating:

average rating: 1.5 (4 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
2023-10-01
arrow - 1.3.0
Ebuild name:

dev-python/arrow-1.3.0

Description

Better dates and times for Python

Added to portage

2023-10-01

basis_universal - 1.16.4
Ebuild name:

games-util/basis_universal-1.16.4

Description

Basis Universal GPU Texture Codec

Added to portage

2023-10-01

chromium - 118.0.5993.32
Ebuild name:

www-client/chromium-118.0.5993.32

Description

Open-source version of Google Chrome web browser

Added to portage

2023-10-01

clustershell - 1.9.2
Ebuild name:

app-admin/clustershell-1.9.2

Description

Python framework for efficient cluster administration

Added to portage

2023-10-01

denonavr - 0.11.4
Ebuild name:

dev-python/denonavr-0.11.4

Description

Automation Library for Denon AVR receivers

Added to portage

2023-10-01

dns-lexicon - 3.15.0
Ebuild name:

dev-python/dns-lexicon-3.15.0

Description

Manipulate DNS records on various DNS providers in a standardized/agn

Added to portage

2023-10-01

gcc - 13.2.1_p20230930
Ebuild name:

sys-devel/gcc-13.2.1_p20230930

Description

The GNU Compiler Collection

Added to portage

2023-10-01

graphviz - 9.0.0
Ebuild name:

media-gfx/graphviz-9.0.0

Description

Open Source Graph Visualization Software

Added to portage

2023-10-01

httpbin - 0.10.1-r1
Ebuild name:

dev-python/httpbin-0.10.1-r1

Description

HTTP Request and Response Service

Added to portage

2023-10-01

identify - 2.5.30
Ebuild name:

dev-python/identify-2.5.30

Description

File identification library for Python

Added to portage

2023-10-01

libvpx - 1.13.1
Ebuild name:

media-libs/libvpx-1.13.1

Description

WebM VP8 and VP9 Codec SDK

Added to portage

2023-10-01

munin - 2.0.73-r4
Ebuild name:

net-analyzer/munin-2.0.73-r4

Description

Munin Server Monitoring Tool

Added to portage

2023-10-01

pylint - 2.17.7
Ebuild name:

dev-python/pylint-2.17.7

Description

Python code static checker

Added to portage

2023-10-01

skypeforlinux - 8.105.0.208
Ebuild name:

net-im/skypeforlinux-8.105.0.208

Description

Instant messaging client, with support for audio and video

Added to portage

2023-10-01

texinfo - 7.0.93
Ebuild name:

sys-apps/texinfo-7.0.93

Description

The GNU info program and utilities

Added to portage

2023-10-01

tkimg - 1.4.15
Ebuild name:

dev-tcltk/tkimg-1.4.15

Description

Adds a lot of image formats to Tcl/Tk

Added to portage

2023-10-01

typing - 1.1.4
Ebuild name:

app-emacs/typing-1.1.4

Description

The Typing of Emacs -- an Elisp parody of The Typing of the Dead for Dreamca

Added to portage

2023-10-01

2023-09-30
Nuitka - 1.8.3
Ebuild name:

dev-python/Nuitka-1.8.3

Description

Python to native compiler

Added to portage

2023-09-30

PyGithub - 2.1.1
Ebuild name:

dev-python/PyGithub-2.1.1

Description

Python library to access the Github API v3

Added to portage

2023-09-30

abcde - 2.9.3-r4
Ebuild name:

media-sound/abcde-2.9.3-r4

Description

Command line CD encoder

Added to portage

2023-09-30

aqualung - 1.2-r2
Ebuild name:

media-sound/aqualung-1.2-r2

Description

Music player for a wide range of formats designed for gapless playback

Added to portage

2023-09-30

aqualung - 1.2-r3
Ebuild name:

media-sound/aqualung-1.2-r3

Description

Music player for a wide range of formats designed for gapless playback

Added to portage

2023-09-30

aspell-sr - 0.02-r1
Ebuild name:

app-dicts/aspell-sr-0.02-r1

Description

Aspell () language dictionary

Added to portage

2023-09-30

asunder - 2.9.7-r1
Ebuild name:

media-sound/asunder-2.9.7-r1

Description

Graphical Audio CD ripper and encoder with support for many output for

Added to portage

2023-09-30

asunder - 3.0.1-r1
Ebuild name:

media-sound/asunder-3.0.1-r1

Description

Graphical Audio CD ripper and encoder with support for many output for

Added to portage

2023-09-30

cargo-nextest - 0.9.59
Ebuild name:

dev-util/cargo-nextest-0.9.59

Description

Next-generation test runner for Rust

Added to portage

2023-09-30

charset-normalizer - 3.3.0
Ebuild name:

dev-python/charset-normalizer-3.3.0

Description

The Real First Universal Charset Detector

Added to portage

2023-09-30

dafny - 4.3.0
Ebuild name:

dev-lang/dafny-4.3.0

Description

Dafny is a verification-aware programming language

Added to portage

2023-09-30

dafny-bin - 4.3.0
Ebuild name:

dev-lang/dafny-bin-4.3.0

Description

Verification-aware programming language

Added to portage

2023-09-30

dask - 2023.9.3
Ebuild name:

dev-python/dask-2023.9.3

Description

Task scheduling and blocked algorithms for parallel processing

Added to portage

2023-09-30

dir2ogg - 0.13-r2
Ebuild name:

media-sound/dir2ogg-0.13-r2

Description

Converts mp3, m4a, wma, and wav files to Ogg Vorbis format

Added to portage

2023-09-30

duperemove - 0.13
Ebuild name:

sys-fs/duperemove-0.13

Description

Btrfs and xfs deduplication utility

Added to portage

2023-09-30

earthly - 0.7.19
Ebuild name:

app-containers/earthly-0.7.19

Description

Build automation tool that executes in containers

Added to portage

2023-09-30

easycrypt - 2023.09
Ebuild name:

sci-mathematics/easycrypt-2023.09

Description

Computer-Aided Cryptographic Proofs

Added to portage

2023-09-30

executing - 2.0.0
Ebuild name:

dev-python/executing-2.0.0

Description

Get information about what a Python frame is currently doing

Added to portage

2023-09-30

flacon - 10.0.0-r1
Ebuild name:

media-sound/flacon-10.0.0-r1

Description

Extracts audio tracks from an audio CD image to separate tracks

Added to portage

2023-09-30

flask - 3.0.0
Ebuild name:

dev-python/flask-3.0.0

Description

A microframework based on Werkzeug, Jinja2 and good intentions

Added to portage

2023-09-30

fonttools - 4.43.0
Ebuild name:

dev-python/fonttools-4.43.0

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2023-09-30

fq - 0.8.0
Ebuild name:

dev-util/fq-0.8.0

Description

Tool for working with binary data (app-misc/jq for binary formats)

Added to portage

2023-09-30

gcc - 12.3.1_p20230929
Ebuild name:

sys-devel/gcc-12.3.1_p20230929

Description

The GNU Compiler Collection

Added to portage

2023-09-30

ipython - 8.16.0
Ebuild name:

dev-python/ipython-8.16.0

Description

Advanced interactive shell for Python

Added to portage

2023-09-30

kea - 2.4.0
Ebuild name:

net-misc/kea-2.4.0

Description

High-performance production grade DHCPv4 & DHCPv6 server

Added to portage

2023-09-30

kscreenlocker - 5.27.8-r1
Ebuild name:

kde-plasma/kscreenlocker-5.27.8-r1

Description

Library and components for secure lock screen architecture

Added to portage

2023-09-30

kwin - 5.27.8-r3
Ebuild name:

kde-plasma/kwin-5.27.8-r3

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2023-09-30

mac - 10.24
Ebuild name:

media-sound/mac-10.24

Description

Monkey's Audio Codecs

Added to portage

2023-09-30

mdbook - 0.4.35
Ebuild name:

app-text/mdbook-0.4.35

Description

Create a book from markdown files

Added to portage

2023-09-30

memtrace - 0.2.3
Ebuild name:

dev-ml/memtrace-0.2.3

Description

Streaming client for OCaml's Memprof

Added to portage

2023-09-30

meson - 1.2.2
Ebuild name:

dev-util/meson-1.2.2

Description

Open source build system

Added to portage

2023-09-30

mistune - 3.0.2
Ebuild name:

dev-python/mistune-3.0.2

Description

The fastest markdown parser in pure Python

Added to portage

2023-09-30

moar - 1.17.1
Ebuild name:

sys-apps/moar-1.17.1

Description

Pager designed to do the right thing without any configuration

Added to portage

2023-09-30

moto - 4.2.5
Ebuild name:

dev-python/moto-4.2.5

Description

Mock library for boto

Added to portage

2023-09-30

netpbm - 11.4.2
Ebuild name:

media-libs/netpbm-11.4.2

Description

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

Added to portage

2023-09-30

ocaml-ssl - 0.7.0
Ebuild name:

dev-ml/ocaml-ssl-0.7.0

Description

OCaml bindings for OpenSSL

Added to portage

2023-09-30

octokit - 7.2.0
Ebuild name:

dev-ruby/octokit-7.2.0

Description

Ruby toolkit for the Github API

Added to portage

2023-09-30

phonenumbers - 8.13.22
Ebuild name:

dev-python/phonenumbers-8.13.22

Description

Python port of Google's libphonenumber

Added to portage

2023-09-30

pkgcraft - 0.0.12
Ebuild name:

sys-libs/pkgcraft-0.0.12

Description

C library for pkgcraft

Added to portage

2023-09-30

pkgcraft - 0.0.7
Ebuild name:

dev-python/pkgcraft-0.0.7

Description

Python bindings for pkgcraft

Added to portage

2023-09-30

pkgcraft-tools - 0.0.12
Ebuild name:

sys-apps/pkgcraft-tools-0.0.12

Description

pkgcraft-based tools for Gentoo

Added to portage

2023-09-30

podman - 4.7.0
Ebuild name:

app-containers/podman-4.7.0

Description

A tool for managing OCI containers and pods with Docker-compatible CLI

Added to portage

2023-09-30

podman - 9999
Ebuild name:

app-containers/podman-9999

Description

A tool for managing OCI containers and pods with Docker-compatible CLI

Added to portage

2023-09-30

puppet_forge - 5.0.2
Ebuild name:

dev-ruby/puppet_forge-5.0.2

Description

Tools to access Forge API information on Modules, Users, and Releases

Added to portage

2023-09-30

pyaml - 23.9.7
Ebuild name:

dev-python/pyaml-23.9.7

Description

PyYAML-based module to produce pretty and readable YAML-serialized data

Added to portage

2023-09-30

pypy - 7.3.13
Ebuild name:

dev-python/pypy-7.3.13

Description

A fast, compliant alternative implementation of the Python language

Added to portage

2023-09-30

pypy-exe - 7.3.13
Ebuild name:

dev-python/pypy-exe-7.3.13

Description

PyPy executable (build from source)

Added to portage

2023-09-30

pypy-exe-bin - 7.3.13
Ebuild name:

dev-python/pypy-exe-bin-7.3.13

Description

PyPy executable (pre-built version)

Added to portage

2023-09-30

pypy3 - 7.3.13
Ebuild name:

dev-python/pypy3-7.3.13

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2023-09-30

pypy3_10 - 7.3.13
Ebuild name:

dev-python/pypy3_10-7.3.13

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2023-09-30

pypy3_10-exe - 7.3.13
Ebuild name:

dev-python/pypy3_10-exe-7.3.13

Description

PyPy3 executable (build from source)

Added to portage

2023-09-30

pypy3_10-exe-bin - 7.3.13
Ebuild name:

dev-python/pypy3_10-exe-bin-7.3.13

Description

PyPy3 executable (pre-built version)

Added to portage

2023-09-30

pypy3_9 - 7.3.13
Ebuild name:

dev-python/pypy3_9-7.3.13

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2023-09-30

pypy3_9-exe - 7.3.13
Ebuild name:

dev-python/pypy3_9-exe-7.3.13

Description

PyPy3 executable (build from source)

Added to portage

2023-09-30

pypy3_9-exe-bin - 7.3.13
Ebuild name:

dev-python/pypy3_9-exe-bin-7.3.13

Description

PyPy3 executable (pre-built version)

Added to portage

2023-09-30

pyspnego - 0.10.1
Ebuild name:

dev-python/pyspnego-0.10.1

Description

Library to handle SPNEGO and CredSSP authentication

Added to portage

2023-09-30

qtwayland - 5.15.10-r6
Ebuild name:

dev-qt/qtwayland-5.15.10-r6

Description

Wayland platform plugin for Qt

Added to portage

2023-09-30

rich - 13.6.0
Ebuild name:

dev-python/rich-13.6.0

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2023-09-30

rspec-collection_matchers - 1.2.1
Ebuild name:

dev-ruby/rspec-collection_matchers-1.2.1

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2023-09-30

sabctools - 8.0.0
Ebuild name:

dev-python/sabctools-8.0.0

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2023-09-30

seaborn - 0.13.0
Ebuild name:

dev-python/seaborn-0.13.0

Description

Statistical data visualization

Added to portage

2023-09-30

shntool - 3.0.10-r3
Ebuild name:

media-sound/shntool-3.0.10-r3

Description

A multi-purpose WAVE data processing and reporting utility

Added to portage

2023-09-30

sqlglot - 18.10.1
Ebuild name:

dev-python/sqlglot-18.10.1

Description

An easily customizable SQL parser and transpiler

Added to portage

2023-09-30

stack-data - 0.6.2
Ebuild name:

dev-python/stack-data-0.6.2

Description

Extract data from Python tracebacks for informative displays

Added to portage

2023-09-30

stack-data - 0.6.3
Ebuild name:

dev-python/stack-data-0.6.3

Description

Extract data from Python tracebacks for informative displays

Added to portage

2023-09-30

system-monitoring-center - 2.23.0
Ebuild name:

sys-apps/system-monitoring-center-2.23.0

Description

Multi-featured system monitor GUI written in Python

Added to portage

2023-09-30

systemd - 253.12
Ebuild name:

sys-apps/systemd-253.12

Description

System and service manager for Linux

Added to portage

2023-09-30

systemd - 254.5
Ebuild name:

sys-apps/systemd-254.5

Description

System and service manager for Linux

Added to portage

2023-09-30

systemd-utils - 253.12
Ebuild name:

sys-apps/systemd-utils-253.12

Description

Utilities split out from systemd for OpenRC users

Added to portage

2023-09-30

systemd-utils - 254.5
Ebuild name:

sys-apps/systemd-utils-254.5

Description

Utilities split out from systemd for OpenRC users

Added to portage

2023-09-30

thunderbird - 115.3.1
Ebuild name:

mail-client/thunderbird-115.3.1

Description

Thunderbird Mail Client

Added to portage

2023-09-30

thunderbird-bin - 115.3.1
Ebuild name:

mail-client/thunderbird-bin-115.3.1

Description

Thunderbird Mail Client

Added to portage

2023-09-30

tyxml - 4.6.0
Ebuild name:

dev-ml/tyxml-4.6.0

Description

A library for building correct HTML and SVG documents

Added to portage

2023-09-30

uboat - 1.2
Ebuild name:

app-emacs/uboat-1.2

Description

Generate u-boat-death messages, patterned after Iron Coffins

Added to portage

2023-09-30

uboat - 1.2
Ebuild name:

app-emacs/uboat-1.2

Description

Generate u-boat-death messages, patterned after Iron Coffins

Added to portage

2023-09-30

undercover - 0.8.1
Ebuild name:

app-emacs/undercover-0.8.1

Description

Test coverage library for Emacs

Added to portage

2023-09-30

undercover - 0.8.1
Ebuild name:

app-emacs/undercover-0.8.1

Description

Test coverage library for Emacs

Added to portage

2023-09-30

undo-tree - 0.8.2-r1
Ebuild name:

app-emacs/undo-tree-0.8.2-r1

Description

Undo trees and visualization

Added to portage

2023-09-30

wcwidth - 0.2.8
Ebuild name:

dev-python/wcwidth-0.2.8

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2023-09-30

weasyprint - 60.1
Ebuild name:

dev-python/weasyprint-60.1

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2023-09-30

werkzeug - 3.0.0
Ebuild name:

dev-python/werkzeug-3.0.0

Description

Collection of various utilities for WSGI applications

Added to portage

2023-09-30

wine-staging - 8.17
Ebuild name:

app-emulation/wine-staging-8.17

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2023-09-30

wine-vanilla - 8.17
Ebuild name:

app-emulation/wine-vanilla-8.17

Description

Free implementation of Windows(tm) on Unix, without external patchs

Added to portage

2023-09-30

xmms2 - 0.9.3-r1
Ebuild name:

media-sound/xmms2-0.9.3-r1

Description

X(cross)platform Music Multiplexing System, next generation of the XMMS

Added to portage

2023-09-30

yaml - 0.5.4
Ebuild name:

app-emacs/yaml-0.5.4

Description

YAML parser in Emacs Lisp

Added to portage

2023-09-30

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: 85.6 ms