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:

85176

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-05-16
awscli - 1.45.9
Ebuild name:

app-admin/awscli-1.45.9

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-16

boto3 - 1.43.9
Ebuild name:

dev-python/boto3-1.43.9

Description

The AWS SDK for Python

Added to portage

2026-05-16

botocore - 1.43.9
Ebuild name:

dev-python/botocore-1.43.9

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-16

c-blosc2 - 3.0.3
Ebuild name:

dev-libs/c-blosc2-3.0.3

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-05-16

dbus-fast - 4.2.5
Ebuild name:

dev-python/dbus-fast-4.2.5

Description

A faster version of dbus-next

Added to portage

2026-05-16

dist-kernel - 5.10.256
Ebuild name:

virtual/dist-kernel-5.10.256

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-16

dist-kernel - 5.15.207
Ebuild name:

virtual/dist-kernel-5.15.207

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-16

dist-kernel - 6.1.173
Ebuild name:

virtual/dist-kernel-6.1.173

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-16

dist-kernel - 6.6.139
Ebuild name:

virtual/dist-kernel-6.6.139

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-16

dropbox - 252.4.3485
Ebuild name:

net-misc/dropbox-252.4.3485

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-05-16

flatpak-builder - 1.4.8
Ebuild name:

dev-util/flatpak-builder-1.4.8

Description

Tool to build flatpaks from source

Added to portage

2026-05-16

freepg - 2.5.20
Ebuild name:

app-crypt/freepg-2.5.20

Description

Cross-distro GnuPG fork focused on OpenPGP compliance

Added to portage

2026-05-16

gentoo-kernel - 5.10.256
Ebuild name:

sys-kernel/gentoo-kernel-5.10.256

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel - 5.15.207
Ebuild name:

sys-kernel/gentoo-kernel-5.15.207

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel - 6.1.173
Ebuild name:

sys-kernel/gentoo-kernel-6.1.173

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel - 6.6.139
Ebuild name:

sys-kernel/gentoo-kernel-6.6.139

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel-bin - 5.10.256
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.256

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel-bin - 5.15.207
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.207

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel-bin - 6.1.173
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.173

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-16

gentoo-kernel-bin - 6.6.139
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.139

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-16

glslang - 1.4.350.0
Ebuild name:

dev-util/glslang-1.4.350.0

Description

Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generat

Added to portage

2026-05-16

google-auth - 2.53.0
Ebuild name:

dev-python/google-auth-2.53.0

Description

Google Authentication Library

Added to portage

2026-05-16

iterable-io - 1.0.2
Ebuild name:

dev-python/iterable-io-1.0.2

Description

Adapt generators and other iterables to a file-like interface

Added to portage

2026-05-16

jaraco-functools - 4.5.0
Ebuild name:

dev-python/jaraco-functools-4.5.0

Description

Additional functions used by other projects by developer jaraco

Added to portage

2026-05-16

magic-wormhole-mailbox-server - 0.8.0
Ebuild name:

dev-python/magic-wormhole-mailbox-server-0.8.0

Description

Mailbox server for magic-wormhole

Added to portage

2026-05-16

mesa - 26.0.7
Ebuild name:

media-libs/mesa-26.0.7

Description

OpenGL-like graphic library for Linux

Added to portage

2026-05-16

mesa_clc - 26.0.7
Ebuild name:

dev-util/mesa_clc-26.0.7

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-05-16

multiple-cursors - 1.5.0
Ebuild name:

app-emacs/multiple-cursors-1.5.0

Description

Multiple cursors for Emacs

Added to portage

2026-05-16

nss - 3.124
Ebuild name:

dev-libs/nss-3.124

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-05-16

numpy - 2.4.5
Ebuild name:

dev-python/numpy-2.4.5

Description

Fast array and numerical python library

Added to portage

2026-05-16

pf-sources - 7.0_p4
Ebuild name:

sys-kernel/pf-sources-7.0_p4

Description

Added to portage

2026-05-16

postfix-logwatch - 1.40.07
Ebuild name:

net-mail/postfix-logwatch-1.40.07

Description

A log analyzer for postfix

Added to portage

2026-05-16

qt5-sqlcipher - 1.1.0-r1
Ebuild name:

dev-db/qt5-sqlcipher-1.1.0-r1

Description

Qt SQL driver plugin for SQLCipher

Added to portage

2026-05-16

samba - 4.24.2
Ebuild name:

net-fs/samba-4.24.2

Description

Samba Suite Version 4

Added to portage

2026-05-16

shaderc - 2026.2
Ebuild name:

media-libs/shaderc-2026.2

Description

Collection of tools, libraries and tests for shader compilation

Added to portage

2026-05-16

spirv-headers - 1.4.350.0
Ebuild name:

dev-util/spirv-headers-1.4.350.0

Description

Machine-readable files for the SPIR-V Registry

Added to portage

2026-05-16

spirv-tools - 1.4.350.0
Ebuild name:

dev-util/spirv-tools-1.4.350.0

Description

Provides an API and commands for processing SPIR-V modules

Added to portage

2026-05-16

tifffile - 2026.5.15
Ebuild name:

dev-python/tifffile-2026.5.15

Description

Read and write TIFF files

Added to portage

2026-05-16

vanilla-kernel - 5.10.256
Ebuild name:

sys-kernel/vanilla-kernel-5.10.256

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-16

vanilla-kernel - 5.15.207
Ebuild name:

sys-kernel/vanilla-kernel-5.15.207

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-16

vanilla-kernel - 6.1.173
Ebuild name:

sys-kernel/vanilla-kernel-6.1.173

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-16

vanilla-kernel - 6.6.139
Ebuild name:

sys-kernel/vanilla-kernel-6.6.139

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-16

vulkan-headers - 1.4.350.0
Ebuild name:

dev-util/vulkan-headers-1.4.350.0

Description

Vulkan Header files and API registry

Added to portage

2026-05-16

vulkan-layers - 1.4.350.0
Ebuild name:

media-libs/vulkan-layers-1.4.350.0

Description

Vulkan Validation Layers

Added to portage

2026-05-16

vulkan-loader - 1.4.350.0
Ebuild name:

media-libs/vulkan-loader-1.4.350.0

Description

Vulkan Installable Client Driver (ICD) Loader

Added to portage

2026-05-16

vulkan-tools - 1.4.350.0
Ebuild name:

dev-util/vulkan-tools-1.4.350.0

Description

Official Vulkan Tools and Utilities for Windows, Linux, Android, an

Added to portage

2026-05-16

vulkan-utility-libraries - 1.4.350.0
Ebuild name:

dev-util/vulkan-utility-libraries-1.4.350.0

Description

Share code across various Vulkan repositories

Added to portage

2026-05-16

wine-staging - 11.9
Ebuild name:

app-emulation/wine-staging-11.9

Description

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

Added to portage

2026-05-16

wine-vanilla - 11.9
Ebuild name:

app-emulation/wine-vanilla-11.9

Description

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

Added to portage

2026-05-16

zellij - 0.44.3
Ebuild name:

app-misc/zellij-0.44.3

Description

A terminal workspace with batteries included

Added to portage

2026-05-16

2026-05-15
at-spi2-core - 2.58.5
Ebuild name:

app-accessibility/at-spi2-core-2.58.5

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-05-15

awscli - 1.45.8
Ebuild name:

app-admin/awscli-1.45.8

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-15

bedrock-server - 1.26.21.1
Ebuild name:

games-server/bedrock-server-1.26.21.1

Description

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

Added to portage

2026-05-15

boto3 - 1.43.8
Ebuild name:

dev-python/boto3-1.43.8

Description

The AWS SDK for Python

Added to portage

2026-05-15

botocore - 1.43.8
Ebuild name:

dev-python/botocore-1.43.8

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-15

cbor2 - 6.1.1
Ebuild name:

dev-python/cbor2-6.1.1

Description

CBOR (de)serializer with extensive tag support

Added to portage

2026-05-15

chrome-binary-plugins - 150.0.7838.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-150.0.7838.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-15

chromium - 149.0.7827.14
Ebuild name:

www-client/chromium-149.0.7827.14

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-15

corrosion - 0.6.1
Ebuild name:

dev-build/corrosion-0.6.1

Description

Marrying Rust and CMake - Easy Rust and C/C++ Integration

Added to portage

2026-05-15

dbus-fast - 4.1.0
Ebuild name:

dev-python/dbus-fast-4.1.0

Description

A faster version of dbus-next

Added to portage

2026-05-15

dist-kernel - 5.10.255_p4
Ebuild name:

virtual/dist-kernel-5.10.255_p4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 5.15.206_p4
Ebuild name:

virtual/dist-kernel-5.15.206_p4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.1.172_p4
Ebuild name:

virtual/dist-kernel-6.1.172_p4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.12.88_p1
Ebuild name:

virtual/dist-kernel-6.12.88_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.18.30_p1
Ebuild name:

virtual/dist-kernel-6.18.30_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.6.138_p4
Ebuild name:

virtual/dist-kernel-6.6.138_p4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 7.0.7_p1
Ebuild name:

virtual/dist-kernel-7.0.7_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dump1090 - 11.0
Ebuild name:

net-wireless/dump1090-11.0

Description

Simple Mode S decoder for RTLSDR devices

Added to portage

2026-05-15

erlang - 26.2.5.20
Ebuild name:

dev-lang/erlang-26.2.5.20

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 27.3.4.11
Ebuild name:

dev-lang/erlang-27.3.4.11

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 28.5
Ebuild name:

dev-lang/erlang-28.5

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 29.0
Ebuild name:

dev-lang/erlang-29.0

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

faker - 40.18.0
Ebuild name:

dev-python/faker-40.18.0

Description

A Python package that generates fake data for you

Added to portage

2026-05-15

fonttools - 4.63.0
Ebuild name:

dev-python/fonttools-4.63.0

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2026-05-15

framework_tool - 0.6.3
Ebuild name:

app-laptop/framework_tool-0.6.3

Description

Tool to control Framework Computer systems

Added to portage

2026-05-15

gentoo-kernel - 5.10.255_p4
Ebuild name:

sys-kernel/gentoo-kernel-5.10.255_p4

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 5.15.206_p4
Ebuild name:

sys-kernel/gentoo-kernel-5.15.206_p4

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.1.172_p4
Ebuild name:

sys-kernel/gentoo-kernel-6.1.172_p4

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.12.88_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.12.88_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.18.30_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.18.30_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.6.138_p4
Ebuild name:

sys-kernel/gentoo-kernel-6.6.138_p4

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 7.0.7_p1
Ebuild name:

sys-kernel/gentoo-kernel-7.0.7_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 5.10.255_p4
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.255_p4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 5.15.206_p4
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.206_p4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.1.172_p4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.172_p4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.12.88_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.88_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.18.30_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.30_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.6.138_p4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.138_p4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 7.0.7_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.7_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-sources - 5.10.256
Ebuild name:

sys-kernel/gentoo-sources-5.10.256

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

gentoo-sources - 5.15.207
Ebuild name:

sys-kernel/gentoo-sources-5.15.207

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

gentoo-sources - 6.1.173
Ebuild name:

sys-kernel/gentoo-sources-6.1.173

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

gentoo-sources - 6.12.89
Ebuild name:

sys-kernel/gentoo-sources-6.12.89

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

gentoo-sources - 6.18.31
Ebuild name:

sys-kernel/gentoo-sources-6.18.31

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

gentoo-sources - 6.6.139
Ebuild name:

sys-kernel/gentoo-sources-6.6.139

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

gentoo-sources - 7.0.8
Ebuild name:

sys-kernel/gentoo-sources-7.0.8

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-15

glibmm - 2.88.0
Ebuild name:

dev-cpp/glibmm-2.88.0

Description

C++ interface for glib2

Added to portage

2026-05-15

gnome-commander - 1.18.6
Ebuild name:

gnome-extra/gnome-commander-1.18.6

Description

A graphical, full featured, twin-panel file manager

Added to portage

2026-05-15

gnome-desktop - 44.5-r300
Ebuild name:

gnome-base/gnome-desktop-44.5-r300

Description

Library with common API for various GNOME modules

Added to portage

2026-05-15

gnome-desktop - 44.5-r400
Ebuild name:

gnome-base/gnome-desktop-44.5-r400

Description

Library with common API for various GNOME modules

Added to portage

2026-05-15

gnome-online-accounts - 3.56.5
Ebuild name:

net-libs/gnome-online-accounts-3.56.5

Description

GNOME framework for accessing online accounts

Added to portage

2026-05-15

gnumeric - 1.12.61
Ebuild name:

app-office/gnumeric-1.12.61

Description

The GNOME Spreadsheet

Added to portage

2026-05-15

goffice - 0.10.61
Ebuild name:

x11-libs/goffice-0.10.61

Description

A library of document-centric objects and utilities

Added to portage

2026-05-15

gom - 0.5.6
Ebuild name:

dev-libs/gom-0.5.6

Description

GObject to SQLite object mapper library

Added to portage

2026-05-15

google-chrome-unstable - 150.0.7838.0
Ebuild name:

www-client/google-chrome-unstable-150.0.7838.0

Description

The web browser from Google

Added to portage

2026-05-15

gr-osmosdr - 0.2.6-r1
Ebuild name:

net-wireless/gr-osmosdr-0.2.6-r1

Description

GNU Radio source block for OsmoSDR and rtlsdr and hackrf

Added to portage

2026-05-15

gspell - 1.14.3
Ebuild name:

app-text/gspell-1.14.3

Description

Spell check library for GTK+ applications

Added to portage

2026-05-15

gthumb - 3.12.10
Ebuild name:

media-gfx/gthumb-3.12.10

Description

Image viewer and browser for Gnome

Added to portage

2026-05-15

gucharmap - 17.0.2
Ebuild name:

gnome-extra/gucharmap-17.0.2

Description

Unicode character map viewer and library

Added to portage

2026-05-15

hamlib - 4.7.1-r1
Ebuild name:

media-libs/hamlib-4.7.1-r1

Description

Ham radio backend rig control libraries

Added to portage

2026-05-15

ibus-m17n - 1.4.39
Ebuild name:

app-i18n/ibus-m17n-1.4.39

Description

M17N engine for IBus

Added to portage

2026-05-15

ibus-typing-booster - 2.30.8
Ebuild name:

app-i18n/ibus-typing-booster-2.30.8

Description

Completion input method for IBus

Added to portage

2026-05-15

intel-metrics-library - 1.0.209.1-r1
Ebuild name:

dev-libs/intel-metrics-library-1.0.209.1-r1

Description

User mode driver helper library that provides access to

Added to portage

2026-05-15

khal - 0.14.0
Ebuild name:

app-misc/khal-0.14.0

Description

A CalDAV based calendar

Added to portage

2026-05-15

lego - 5.0.4
Ebuild name:

app-crypt/lego-5.0.4

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2026-05-15

libgsf - 1.14.58
Ebuild name:

gnome-extra/libgsf-1.14.58

Description

The GNOME Structured File Library

Added to portage

2026-05-15

libshumate - 1.6.1
Ebuild name:

media-libs/libshumate-1.6.1

Description

Shumate is a GTK toolkit providing widgets for embedded maps

Added to portage

2026-05-15

libspelling - 0.4.10
Ebuild name:

app-text/libspelling-0.4.10

Description

A GNOME library for spellchecking

Added to portage

2026-05-15

lldpd - 1.0.22
Ebuild name:

net-misc/lldpd-1.0.22

Description

Implementation of IEEE 802.1ab (LLDP)

Added to portage

2026-05-15

magic-wormhole-mailbox-server - 0.7.0
Ebuild name:

dev-python/magic-wormhole-mailbox-server-0.7.0

Description

Mailbox server for magic-wormhole

Added to portage

2026-05-15

mattermost-desktop-bin - 6.2.0
Ebuild name:

net-im/mattermost-desktop-bin-6.2.0

Description

Mattermost Desktop application

Added to portage

2026-05-15

mgorny-dev-scripts - 72
Ebuild name:

app-portage/mgorny-dev-scripts-72

Description

Handy scripts for ebuild development and more

Added to portage

2026-05-15

microsoft-edge-beta - 149.0.4022.8
Ebuild name:

www-client/microsoft-edge-beta-149.0.4022.8

Description

The web browser from Microsoft

Added to portage

2026-05-15

microsoft-edge-dev - 149.0.4022.8
Ebuild name:

www-client/microsoft-edge-dev-149.0.4022.8

Description

The web browser from Microsoft

Added to portage

2026-05-15

muse - 3.20.2
Ebuild name:

app-emacs/muse-3.20.2

Description

An authoring and publishing environment for Emacs

Added to portage

2026-05-15

nagios-mode - 0.4
Ebuild name:

app-emacs/nagios-mode-0.4

Description

Major mode for editing Nagios configuration files

Added to portage

2026-05-15

nvidia-drivers - 595.44.08
Ebuild name:

x11-drivers/nvidia-drivers-595.44.08

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-05-15

opera - 131.0.5877.55
Ebuild name:

www-client/opera-131.0.5877.55

Description

A fast and secure web browser

Added to portage

2026-05-15

opera-developer - 132.0.5898.0
Ebuild name:

www-client/opera-developer-132.0.5898.0

Description

A fast and secure web browser

Added to portage

2026-05-15

pikepdf - 10.6.0
Ebuild name:

dev-python/pikepdf-10.6.0

Description

Python library to work with pdf files based on qpdf

Added to portage

2026-05-15

pkgdev - 0.2.15
Ebuild name:

dev-util/pkgdev-0.2.15

Description

Collection of tools for Gentoo development

Added to portage

2026-05-15

postfix - 3.11.2-r1
Ebuild name:

mail-mta/postfix-3.11.2-r1

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-05-15

postfix - 3.12_pre20260514
Ebuild name:

mail-mta/postfix-3.12_pre20260514

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-05-15

prek - 0.4.0
Ebuild name:

dev-util/prek-0.4.0

Description

Better `pre-commit`, re-engineered in Rust

Added to portage

2026-05-15

pyatspi - 2.58.2
Ebuild name:

dev-python/pyatspi-2.58.2

Description

Python client bindings for D-Bus AT-SPI

Added to portage

2026-05-15

pyside - 6.11.1
Ebuild name:

dev-python/pyside-6.11.1

Description

Python bindings for the Qt framework

Added to portage

2026-05-15

python-distutils-extra - 3.3
Ebuild name:

dev-python/python-distutils-extra-3.3

Description

Gettext support, themed icons and scrollkeeper-based document

Added to portage

2026-05-15

python-ldap - 3.4.6
Ebuild name:

dev-python/python-ldap-3.4.6

Description

Various LDAP-related Python modules

Added to portage

2026-05-15

quassel - 0.14.50_pre20260513
Ebuild name:

net-irc/quassel-0.14.50_pre20260513

Description

Qt/KDE IRC client supporting a remote daemon for 24/7 connectiv

Added to portage

2026-05-15

quiche - 0.29.0
Ebuild name:

net-libs/quiche-0.29.0

Description

Implementation of the QUIC transport protocol and HTTP/3

Added to portage

2026-05-15

requests - 2.34.2
Ebuild name:

dev-python/requests-2.34.2

Description

HTTP library for human beings

Added to portage

2026-05-15

rsyslog - 8.2602.0-r1
Ebuild name:

app-admin/rsyslog-8.2602.0-r1

Description

An enhanced multi-threaded syslogd with database support and more

Added to portage

2026-05-15

rsyslog - 8.2604.0-r1
Ebuild name:

app-admin/rsyslog-8.2604.0-r1

Description

An enhanced multi-threaded syslogd with database support and more

Added to portage

2026-05-15

ruff - 0.15.13
Ebuild name:

dev-util/ruff-0.15.13

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-05-15

selinux-accountsd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-accountsd-2.20260312_p1

Description

SELinux policy for accountsd

Added to portage

2026-05-15

selinux-acct - 2.20260312_p1
Ebuild name:

sec-policy/selinux-acct-2.20260312_p1

Description

SELinux policy for acct

Added to portage

2026-05-15

selinux-afs - 2.20260312_p1
Ebuild name:

sec-policy/selinux-afs-2.20260312_p1

Description

SELinux policy for afs

Added to portage

2026-05-15

selinux-aide - 2.20260312_p1
Ebuild name:

sec-policy/selinux-aide-2.20260312_p1

Description

SELinux policy for aide

Added to portage

2026-05-15

selinux-alsa - 2.20260312_p1
Ebuild name:

sec-policy/selinux-alsa-2.20260312_p1

Description

SELinux policy for alsa

Added to portage

2026-05-15

selinux-amanda - 2.20260312_p1
Ebuild name:

sec-policy/selinux-amanda-2.20260312_p1

Description

SELinux policy for amanda

Added to portage

2026-05-15

selinux-amavis - 2.20260312_p1
Ebuild name:

sec-policy/selinux-amavis-2.20260312_p1

Description

SELinux policy for amavis

Added to portage

2026-05-15

selinux-android - 2.20260312_p1
Ebuild name:

sec-policy/selinux-android-2.20260312_p1

Description

SELinux policy for android

Added to portage

2026-05-15

selinux-apache - 2.20260312_p1
Ebuild name:

sec-policy/selinux-apache-2.20260312_p1

Description

SELinux policy for apache

Added to portage

2026-05-15

selinux-apcupsd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-apcupsd-2.20260312_p1

Description

SELinux policy for apcupsd

Added to portage

2026-05-15

selinux-apm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-apm-2.20260312_p1

Description

SELinux policy for acpi

Added to portage

2026-05-15

selinux-arpwatch - 2.20260312_p1
Ebuild name:

sec-policy/selinux-arpwatch-2.20260312_p1

Description

SELinux policy for arpwatch

Added to portage

2026-05-15

selinux-asterisk - 2.20260312_p1
Ebuild name:

sec-policy/selinux-asterisk-2.20260312_p1

Description

SELinux policy for asterisk

Added to portage

2026-05-15

selinux-at - 2.20260312_p1
Ebuild name:

sec-policy/selinux-at-2.20260312_p1

Description

SELinux policy for at

Added to portage

2026-05-15

selinux-automount - 2.20260312_p1
Ebuild name:

sec-policy/selinux-automount-2.20260312_p1

Description

SELinux policy for automount

Added to portage

2026-05-15

selinux-avahi - 2.20260312_p1
Ebuild name:

sec-policy/selinux-avahi-2.20260312_p1

Description

SELinux policy for avahi

Added to portage

2026-05-15

selinux-awstats - 2.20260312_p1
Ebuild name:

sec-policy/selinux-awstats-2.20260312_p1

Description

SELinux policy for awstats

Added to portage

2026-05-15

selinux-backup - 2.20260312_p1
Ebuild name:

sec-policy/selinux-backup-2.20260312_p1

Description

SELinux policy for generic backup apps

Added to portage

2026-05-15

selinux-bacula - 2.20260312_p1
Ebuild name:

sec-policy/selinux-bacula-2.20260312_p1

Description

SELinux policy for bacula

Added to portage

2026-05-15

selinux-base - 2.20260312_p1
Ebuild name:

sec-policy/selinux-base-2.20260312_p1

Description

Gentoo base policy for SELinux

Added to portage

2026-05-15

selinux-base-policy - 2.20260312_p1
Ebuild name:

sec-policy/selinux-base-policy-2.20260312_p1

Description

SELinux policy for core modules

Added to portage

2026-05-15

selinux-bind - 2.20260312_p1
Ebuild name:

sec-policy/selinux-bind-2.20260312_p1

Description

SELinux policy for bind

Added to portage

2026-05-15

selinux-bitcoin - 2.20260312_p1
Ebuild name:

sec-policy/selinux-bitcoin-2.20260312_p1

Description

SELinux policy for bitcoin

Added to portage

2026-05-15

selinux-bitlbee - 2.20260312_p1
Ebuild name:

sec-policy/selinux-bitlbee-2.20260312_p1

Description

SELinux policy for bitlbee

Added to portage

2026-05-15

selinux-bluetooth - 2.20260312_p1
Ebuild name:

sec-policy/selinux-bluetooth-2.20260312_p1

Description

SELinux policy for bluetooth

Added to portage

2026-05-15

selinux-brctl - 2.20260312_p1
Ebuild name:

sec-policy/selinux-brctl-2.20260312_p1

Description

SELinux policy for brctl

Added to portage

2026-05-15

selinux-cachefilesd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cachefilesd-2.20260312_p1

Description

SELinux policy for cachefilesd

Added to portage

2026-05-15

selinux-calamaris - 2.20260312_p1
Ebuild name:

sec-policy/selinux-calamaris-2.20260312_p1

Description

SELinux policy for calamaris

Added to portage

2026-05-15

selinux-canna - 2.20260312_p1
Ebuild name:

sec-policy/selinux-canna-2.20260312_p1

Description

SELinux policy for canna

Added to portage

2026-05-15

selinux-cdrecord - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cdrecord-2.20260312_p1

Description

SELinux policy for cdrecord

Added to portage

2026-05-15

selinux-ceph - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ceph-2.20260312_p1

Description

SELinux policy for ceph

Added to portage

2026-05-15

selinux-certbot - 2.20260312_p1
Ebuild name:

sec-policy/selinux-certbot-2.20260312_p1

Description

SELinux policy for certbot

Added to portage

2026-05-15

selinux-cgmanager - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cgmanager-2.20260312_p1

Description

SELinux policy for cgmanager

Added to portage

2026-05-15

selinux-cgroup - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cgroup-2.20260312_p1

Description

SELinux policy for cgroup

Added to portage

2026-05-15

selinux-chromium - 2.20260312_p1
Ebuild name:

sec-policy/selinux-chromium-2.20260312_p1

Description

SELinux policy for chromium

Added to portage

2026-05-15

selinux-chronyd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-chronyd-2.20260312_p1

Description

SELinux policy for chronyd

Added to portage

2026-05-15

selinux-clamav - 2.20260312_p1
Ebuild name:

sec-policy/selinux-clamav-2.20260312_p1

Description

SELinux policy for clamav

Added to portage

2026-05-15

selinux-cloudinit - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cloudinit-2.20260312_p1

Description

SELinux policy for cloudinit

Added to portage

2026-05-15

selinux-collectd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-collectd-2.20260312_p1

Description

SELinux policy for collectd

Added to portage

2026-05-15

selinux-colord - 2.20260312_p1
Ebuild name:

sec-policy/selinux-colord-2.20260312_p1

Description

SELinux policy for colord

Added to portage

2026-05-15

selinux-container - 2.20260312_p1
Ebuild name:

sec-policy/selinux-container-2.20260312_p1

Description

SELinux policy for container

Added to portage

2026-05-15

selinux-corosync - 2.20260312_p1
Ebuild name:

sec-policy/selinux-corosync-2.20260312_p1

Description

SELinux policy for corosync

Added to portage

2026-05-15

selinux-couchdb - 2.20260312_p1
Ebuild name:

sec-policy/selinux-couchdb-2.20260312_p1

Description

SELinux policy for couchdb

Added to portage

2026-05-15

selinux-courier - 2.20260312_p1
Ebuild name:

sec-policy/selinux-courier-2.20260312_p1

Description

SELinux policy for courier

Added to portage

2026-05-15

selinux-cpucontrol - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cpucontrol-2.20260312_p1

Description

SELinux policy for cpucontrol

Added to portage

2026-05-15

selinux-cpufreqselector - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cpufreqselector-2.20260312_p1

Description

SELinux policy for cpufreqselector

Added to portage

2026-05-15

selinux-crio - 2.20260312_p1
Ebuild name:

sec-policy/selinux-crio-2.20260312_p1

Description

SELinux policy for cri-o

Added to portage

2026-05-15

selinux-cups - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cups-2.20260312_p1

Description

SELinux policy for cups

Added to portage

2026-05-15

selinux-cvs - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cvs-2.20260312_p1

Description

SELinux policy for cvs

Added to portage

2026-05-15

selinux-cyphesis - 2.20260312_p1
Ebuild name:

sec-policy/selinux-cyphesis-2.20260312_p1

Description

SELinux policy for cyphesis

Added to portage

2026-05-15

selinux-daemontools - 2.20260312_p1
Ebuild name:

sec-policy/selinux-daemontools-2.20260312_p1

Description

SELinux policy for daemontools

Added to portage

2026-05-15

selinux-dante - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dante-2.20260312_p1

Description

SELinux policy for dante

Added to portage

2026-05-15

selinux-dbadm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dbadm-2.20260312_p1

Description

SELinux policy for dbadm

Added to portage

2026-05-15

selinux-dbskk - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dbskk-2.20260312_p1

Description

SELinux policy for dbskk

Added to portage

2026-05-15

selinux-dbus - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dbus-2.20260312_p1

Description

SELinux policy for dbus

Added to portage

2026-05-15

selinux-ddclient - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ddclient-2.20260312_p1

Description

SELinux policy for ddclient

Added to portage

2026-05-15

selinux-devicekit - 2.20260312_p1
Ebuild name:

sec-policy/selinux-devicekit-2.20260312_p1

Description

SELinux policy for devicekit

Added to portage

2026-05-15

selinux-dhcp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dhcp-2.20260312_p1

Description

SELinux policy for dhcp

Added to portage

2026-05-15

selinux-dictd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dictd-2.20260312_p1

Description

SELinux policy for dictd

Added to portage

2026-05-15

selinux-dirmngr - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dirmngr-2.20260312_p1

Description

SELinux policy for dirmngr

Added to portage

2026-05-15

selinux-dirsrv - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dirsrv-2.20260312_p1

Description

SELinux policy for dirsrv

Added to portage

2026-05-15

selinux-distcc - 2.20260312_p1
Ebuild name:

sec-policy/selinux-distcc-2.20260312_p1

Description

SELinux policy for distcc

Added to portage

2026-05-15

selinux-djbdns - 2.20260312_p1
Ebuild name:

sec-policy/selinux-djbdns-2.20260312_p1

Description

SELinux policy for djbdns

Added to portage

2026-05-15

selinux-dkim - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dkim-2.20260312_p1

Description

SELinux policy for dkim

Added to portage

2026-05-15

selinux-dmidecode - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dmidecode-2.20260312_p1

Description

SELinux policy for dmidecode

Added to portage

2026-05-15

selinux-dnsmasq - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dnsmasq-2.20260312_p1

Description

SELinux policy for dnsmasq

Added to portage

2026-05-15

selinux-docker - 2.20260312_p1
Ebuild name:

sec-policy/selinux-docker-2.20260312_p1

Description

SELinux policy for docker

Added to portage

2026-05-15

selinux-dovecot - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dovecot-2.20260312_p1

Description

SELinux policy for dovecot

Added to portage

2026-05-15

selinux-dpkg - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dpkg-2.20260312_p1

Description

SELinux policy for dpkg

Added to portage

2026-05-15

selinux-dracut - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dracut-2.20260312_p1

Description

SELinux policy for dracut

Added to portage

2026-05-15

selinux-dropbox - 2.20260312_p1
Ebuild name:

sec-policy/selinux-dropbox-2.20260312_p1

Description

SELinux policy for dropbox

Added to portage

2026-05-15

selinux-entropyd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-entropyd-2.20260312_p1

Description

SELinux policy for entropyd

Added to portage

2026-05-15

selinux-evolution - 2.20260312_p1
Ebuild name:

sec-policy/selinux-evolution-2.20260312_p1

Description

SELinux policy for evolution

Added to portage

2026-05-15

selinux-exim - 2.20260312_p1
Ebuild name:

sec-policy/selinux-exim-2.20260312_p1

Description

SELinux policy for exim

Added to portage

2026-05-15

selinux-fail2ban - 2.20260312_p1
Ebuild name:

sec-policy/selinux-fail2ban-2.20260312_p1

Description

SELinux policy for fail2ban

Added to portage

2026-05-15

selinux-fetchmail - 2.20260312_p1
Ebuild name:

sec-policy/selinux-fetchmail-2.20260312_p1

Description

SELinux policy for fetchmail

Added to portage

2026-05-15

selinux-finger - 2.20260312_p1
Ebuild name:

sec-policy/selinux-finger-2.20260312_p1

Description

SELinux policy for finger

Added to portage

2026-05-15

selinux-firewalld - 2.20260312_p1
Ebuild name:

sec-policy/selinux-firewalld-2.20260312_p1

Description

SELinux policy for firewalld

Added to portage

2026-05-15

selinux-fprintd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-fprintd-2.20260312_p1

Description

SELinux policy for fprintd

Added to portage

2026-05-15

selinux-ftp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ftp-2.20260312_p1

Description

SELinux policy for ftp

Added to portage

2026-05-15

selinux-games - 2.20260312_p1
Ebuild name:

sec-policy/selinux-games-2.20260312_p1

Description

SELinux policy for games

Added to portage

2026-05-15

selinux-gatekeeper - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gatekeeper-2.20260312_p1

Description

SELinux policy for gatekeeper

Added to portage

2026-05-15

selinux-git - 2.20260312_p1
Ebuild name:

sec-policy/selinux-git-2.20260312_p1

Description

SELinux policy for git

Added to portage

2026-05-15

selinux-gitosis - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gitosis-2.20260312_p1

Description

SELinux policy for gitosis

Added to portage

2026-05-15

selinux-glusterfs - 2.20260312_p1
Ebuild name:

sec-policy/selinux-glusterfs-2.20260312_p1

Description

SELinux policy for glusterfs

Added to portage

2026-05-15

selinux-gnome - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gnome-2.20260312_p1

Description

SELinux policy for gnome

Added to portage

2026-05-15

selinux-gpg - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gpg-2.20260312_p1

Description

SELinux policy for gpg

Added to portage

2026-05-15

selinux-gpm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gpm-2.20260312_p1

Description

SELinux policy for gpm

Added to portage

2026-05-15

selinux-gpsd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gpsd-2.20260312_p1

Description

SELinux policy for gpsd

Added to portage

2026-05-15

selinux-gssproxy - 2.20260312_p1
Ebuild name:

sec-policy/selinux-gssproxy-2.20260312_p1

Description

SELinux policy for gssproxy

Added to portage

2026-05-15

selinux-hddtemp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-hddtemp-2.20260312_p1

Description

SELinux policy for hddtemp

Added to portage

2026-05-15

selinux-hostapd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-hostapd-2.20260312_p1

Description

SELinux policy for hostapd

Added to portage

2026-05-15

selinux-icecast - 2.20260312_p1
Ebuild name:

sec-policy/selinux-icecast-2.20260312_p1

Description

SELinux policy for icecast

Added to portage

2026-05-15

selinux-ifplugd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ifplugd-2.20260312_p1

Description

SELinux policy for ifplugd

Added to portage

2026-05-15

selinux-inetd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-inetd-2.20260312_p1

Description

SELinux policy for inetd

Added to portage

2026-05-15

selinux-inn - 2.20260312_p1
Ebuild name:

sec-policy/selinux-inn-2.20260312_p1

Description

SELinux policy for inn

Added to portage

2026-05-15

selinux-ipsec - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ipsec-2.20260312_p1

Description

SELinux policy for ipsec

Added to portage

2026-05-15

selinux-irc - 2.20260312_p1
Ebuild name:

sec-policy/selinux-irc-2.20260312_p1

Description

SELinux policy for irc

Added to portage

2026-05-15

selinux-ircd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ircd-2.20260312_p1

Description

SELinux policy for ircd

Added to portage

2026-05-15

selinux-irqbalance - 2.20260312_p1
Ebuild name:

sec-policy/selinux-irqbalance-2.20260312_p1

Description

SELinux policy for irqbalance

Added to portage

2026-05-15

selinux-jabber - 2.20260312_p1
Ebuild name:

sec-policy/selinux-jabber-2.20260312_p1

Description

SELinux policy for jabber

Added to portage

2026-05-15

selinux-java - 2.20260312_p1
Ebuild name:

sec-policy/selinux-java-2.20260312_p1

Description

SELinux policy for java

Added to portage

2026-05-15

selinux-kdeconnect - 2.20260312_p1
Ebuild name:

sec-policy/selinux-kdeconnect-2.20260312_p1

Description

SELinux policy for kdeconnect

Added to portage

2026-05-15

selinux-kdump - 2.20260312_p1
Ebuild name:

sec-policy/selinux-kdump-2.20260312_p1

Description

SELinux policy for kdump

Added to portage

2026-05-15

selinux-kerberos - 2.20260312_p1
Ebuild name:

sec-policy/selinux-kerberos-2.20260312_p1

Description

SELinux policy for kerberos

Added to portage

2026-05-15

selinux-kerneloops - 2.20260312_p1
Ebuild name:

sec-policy/selinux-kerneloops-2.20260312_p1

Description

SELinux policy for kerneloops

Added to portage

2026-05-15

selinux-kismet - 2.20260312_p1
Ebuild name:

sec-policy/selinux-kismet-2.20260312_p1

Description

SELinux policy for kismet

Added to portage

2026-05-15

selinux-knot - 2.20260312_p1
Ebuild name:

sec-policy/selinux-knot-2.20260312_p1

Description

SELinux policy for knot

Added to portage

2026-05-15

selinux-ksmtuned - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ksmtuned-2.20260312_p1

Description

SELinux policy for ksmtuned

Added to portage

2026-05-15

selinux-kubernetes - 2.20260312_p1
Ebuild name:

sec-policy/selinux-kubernetes-2.20260312_p1

Description

SELinux policy for kubernetes

Added to portage

2026-05-15

selinux-ldap - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ldap-2.20260312_p1

Description

SELinux policy for ldap

Added to portage

2026-05-15

selinux-links - 2.20260312_p1
Ebuild name:

sec-policy/selinux-links-2.20260312_p1

Description

SELinux policy for links

Added to portage

2026-05-15

selinux-lircd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-lircd-2.20260312_p1

Description

SELinux policy for lircd

Added to portage

2026-05-15

selinux-loadkeys - 2.20260312_p1
Ebuild name:

sec-policy/selinux-loadkeys-2.20260312_p1

Description

SELinux policy for loadkeys

Added to portage

2026-05-15

selinux-logrotate - 2.20260312_p1
Ebuild name:

sec-policy/selinux-logrotate-2.20260312_p1

Description

SELinux policy for logrotate

Added to portage

2026-05-15

selinux-logsentry - 2.20260312_p1
Ebuild name:

sec-policy/selinux-logsentry-2.20260312_p1

Description

SELinux policy for logsentry

Added to portage

2026-05-15

selinux-logwatch - 2.20260312_p1
Ebuild name:

sec-policy/selinux-logwatch-2.20260312_p1

Description

SELinux policy for logwatch

Added to portage

2026-05-15

selinux-lpd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-lpd-2.20260312_p1

Description

SELinux policy for lpd

Added to portage

2026-05-15

selinux-makewhatis - 2.20260312_p1
Ebuild name:

sec-policy/selinux-makewhatis-2.20260312_p1

Description

SELinux policy for makewhatis

Added to portage

2026-05-15

selinux-mandb - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mandb-2.20260312_p1

Description

SELinux policy for mandb

Added to portage

2026-05-15

selinux-matrixd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-matrixd-2.20260312_p1

Description

SELinux policy for matrixd

Added to portage

2026-05-15

selinux-mcelog - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mcelog-2.20260312_p1

Description

SELinux policy for mcelog

Added to portage

2026-05-15

selinux-memcached - 2.20260312_p1
Ebuild name:

sec-policy/selinux-memcached-2.20260312_p1

Description

SELinux policy for memcached

Added to portage

2026-05-15

selinux-milter - 2.20260312_p1
Ebuild name:

sec-policy/selinux-milter-2.20260312_p1

Description

SELinux policy for milter

Added to portage

2026-05-15

selinux-modemmanager - 2.20260312_p1
Ebuild name:

sec-policy/selinux-modemmanager-2.20260312_p1

Description

SELinux policy for modemmanager

Added to portage

2026-05-15

selinux-mono - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mono-2.20260312_p1

Description

SELinux policy for mono

Added to portage

2026-05-15

selinux-mozilla - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mozilla-2.20260312_p1

Description

SELinux policy for mozilla

Added to portage

2026-05-15

selinux-mpd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mpd-2.20260312_p1

Description

SELinux policy for mpd

Added to portage

2026-05-15

selinux-mplayer - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mplayer-2.20260312_p1

Description

SELinux policy for mplayer

Added to portage

2026-05-15

selinux-mrtg - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mrtg-2.20260312_p1

Description

SELinux policy for mrtg

Added to portage

2026-05-15

selinux-munin - 2.20260312_p1
Ebuild name:

sec-policy/selinux-munin-2.20260312_p1

Description

SELinux policy for munin

Added to portage

2026-05-15

selinux-mutt - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mutt-2.20260312_p1

Description

SELinux policy for mutt

Added to portage

2026-05-15

selinux-mysql - 2.20260312_p1
Ebuild name:

sec-policy/selinux-mysql-2.20260312_p1

Description

SELinux policy for mysql

Added to portage

2026-05-15

selinux-nagios - 2.20260312_p1
Ebuild name:

sec-policy/selinux-nagios-2.20260312_p1

Description

SELinux policy for nagios

Added to portage

2026-05-15

selinux-ncftool - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ncftool-2.20260312_p1

Description

SELinux policy for ncftool

Added to portage

2026-05-15

selinux-networkmanager - 2.20260312_p1
Ebuild name:

sec-policy/selinux-networkmanager-2.20260312_p1

Description

SELinux policy for networkmanager

Added to portage

2026-05-15

selinux-nginx - 2.20260312_p1
Ebuild name:

sec-policy/selinux-nginx-2.20260312_p1

Description

SELinux policy for nginx

Added to portage

2026-05-15

selinux-node_exporter - 2.20260312_p1
Ebuild name:

sec-policy/selinux-node_exporter-2.20260312_p1

Description

SELinux policy for node_exporter

Added to portage

2026-05-15

selinux-nslcd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-nslcd-2.20260312_p1

Description

SELinux policy for nslcd

Added to portage

2026-05-15

selinux-ntop - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ntop-2.20260312_p1

Description

SELinux policy for ntop

Added to portage

2026-05-15

selinux-ntp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ntp-2.20260312_p1

Description

SELinux policy for ntp

Added to portage

2026-05-15

selinux-nut - 2.20260312_p1
Ebuild name:

sec-policy/selinux-nut-2.20260312_p1

Description

SELinux policy for nut

Added to portage

2026-05-15

selinux-nx - 2.20260312_p1
Ebuild name:

sec-policy/selinux-nx-2.20260312_p1

Description

SELinux policy for nx

Added to portage

2026-05-15

selinux-obfs4proxy - 2.20260312_p1
Ebuild name:

sec-policy/selinux-obfs4proxy-2.20260312_p1

Description

SELinux policy for obfs4proxy

Added to portage

2026-05-15

selinux-oddjob - 2.20260312_p1
Ebuild name:

sec-policy/selinux-oddjob-2.20260312_p1

Description

SELinux policy for oddjob

Added to portage

2026-05-15

selinux-oident - 2.20260312_p1
Ebuild name:

sec-policy/selinux-oident-2.20260312_p1

Description

SELinux policy for oident

Added to portage

2026-05-15

selinux-openct - 2.20260312_p1
Ebuild name:

sec-policy/selinux-openct-2.20260312_p1

Description

SELinux policy for openct

Added to portage

2026-05-15

selinux-openrc - 2.20260312_p1
Ebuild name:

sec-policy/selinux-openrc-2.20260312_p1

Description

SELinux policy for openrc

Added to portage

2026-05-15

selinux-opensm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-opensm-2.20260312_p1

Description

SELinux policy for opensm

Added to portage

2026-05-15

selinux-openvpn - 2.20260312_p1
Ebuild name:

sec-policy/selinux-openvpn-2.20260312_p1

Description

SELinux policy for openvpn

Added to portage

2026-05-15

selinux-openvswitch - 2.20260312_p1
Ebuild name:

sec-policy/selinux-openvswitch-2.20260312_p1

Description

SELinux policy for openvswitch

Added to portage

2026-05-15

selinux-pan - 2.20260312_p1
Ebuild name:

sec-policy/selinux-pan-2.20260312_p1

Description

SELinux policy for pan

Added to portage

2026-05-15

selinux-pcscd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-pcscd-2.20260312_p1

Description

SELinux policy for pcscd

Added to portage

2026-05-15

selinux-phpfpm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-phpfpm-2.20260312_p1

Description

SELinux policy for phpfpm

Added to portage

2026-05-15

selinux-plymouthd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-plymouthd-2.20260312_p1

Description

SELinux policy for plymouthd

Added to portage

2026-05-15

selinux-podman - 2.20260312_p1
Ebuild name:

sec-policy/selinux-podman-2.20260312_p1

Description

SELinux policy for podman

Added to portage

2026-05-15

selinux-policykit - 2.20260312_p1
Ebuild name:

sec-policy/selinux-policykit-2.20260312_p1

Description

SELinux policy for policykit

Added to portage

2026-05-15

selinux-portmap - 2.20260312_p1
Ebuild name:

sec-policy/selinux-portmap-2.20260312_p1

Description

SELinux policy for portmap

Added to portage

2026-05-15

selinux-postfix - 2.20260312_p1
Ebuild name:

sec-policy/selinux-postfix-2.20260312_p1

Description

SELinux policy for postfix

Added to portage

2026-05-15

selinux-postgresql - 2.20260312_p1
Ebuild name:

sec-policy/selinux-postgresql-2.20260312_p1

Description

SELinux policy for postgresql

Added to portage

2026-05-15

selinux-postgrey - 2.20260312_p1
Ebuild name:

sec-policy/selinux-postgrey-2.20260312_p1

Description

SELinux policy for postgrey

Added to portage

2026-05-15

selinux-powerprofiles - 2.20260312_p1
Ebuild name:

sec-policy/selinux-powerprofiles-2.20260312_p1

Description

SELinux policy for powerprofiles

Added to portage

2026-05-15

selinux-ppp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ppp-2.20260312_p1

Description

SELinux policy for ppp

Added to portage

2026-05-15

selinux-privoxy - 2.20260312_p1
Ebuild name:

sec-policy/selinux-privoxy-2.20260312_p1

Description

SELinux policy for privoxy

Added to portage

2026-05-15

selinux-procmail - 2.20260312_p1
Ebuild name:

sec-policy/selinux-procmail-2.20260312_p1

Description

SELinux policy for procmail

Added to portage

2026-05-15

selinux-psad - 2.20260312_p1
Ebuild name:

sec-policy/selinux-psad-2.20260312_p1

Description

SELinux policy for psad

Added to portage

2026-05-15

selinux-publicfile - 2.20260312_p1
Ebuild name:

sec-policy/selinux-publicfile-2.20260312_p1

Description

SELinux policy for publicfile

Added to portage

2026-05-15

selinux-pulseaudio - 2.20260312_p1
Ebuild name:

sec-policy/selinux-pulseaudio-2.20260312_p1

Description

SELinux policy for pulseaudio

Added to portage

2026-05-15

selinux-puppet - 2.20260312_p1
Ebuild name:

sec-policy/selinux-puppet-2.20260312_p1

Description

SELinux policy for puppet

Added to portage

2026-05-15

selinux-pyzor - 2.20260312_p1
Ebuild name:

sec-policy/selinux-pyzor-2.20260312_p1

Description

SELinux policy for pyzor

Added to portage

2026-05-15

selinux-qemu - 2.20260312_p1
Ebuild name:

sec-policy/selinux-qemu-2.20260312_p1

Description

SELinux policy for qemu

Added to portage

2026-05-15

selinux-qmail - 2.20260312_p1
Ebuild name:

sec-policy/selinux-qmail-2.20260312_p1

Description

SELinux policy for qmail

Added to portage

2026-05-15

selinux-quota - 2.20260312_p1
Ebuild name:

sec-policy/selinux-quota-2.20260312_p1

Description

SELinux policy for quota

Added to portage

2026-05-15

selinux-radius - 2.20260312_p1
Ebuild name:

sec-policy/selinux-radius-2.20260312_p1

Description

SELinux policy for radius

Added to portage

2026-05-15

selinux-radvd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-radvd-2.20260312_p1

Description

SELinux policy for radvd

Added to portage

2026-05-15

selinux-rasdaemon - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rasdaemon-2.20260312_p1

Description

SELinux policy for rasdaemon

Added to portage

2026-05-15

selinux-razor - 2.20260312_p1
Ebuild name:

sec-policy/selinux-razor-2.20260312_p1

Description

SELinux policy for razor

Added to portage

2026-05-15

selinux-redis - 2.20260312_p1
Ebuild name:

sec-policy/selinux-redis-2.20260312_p1

Description

SELinux policy for redis

Added to portage

2026-05-15

selinux-remotelogin - 2.20260312_p1
Ebuild name:

sec-policy/selinux-remotelogin-2.20260312_p1

Description

SELinux policy for remotelogin

Added to portage

2026-05-15

selinux-resolvconf - 2.20260312_p1
Ebuild name:

sec-policy/selinux-resolvconf-2.20260312_p1

Description

SELinux policy for resolvconf

Added to portage

2026-05-15

selinux-rngd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rngd-2.20260312_p1

Description

SELinux policy for rngd

Added to portage

2026-05-15

selinux-rootlesskit - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rootlesskit-2.20260312_p1

Description

SELinux policy for rootlesskit

Added to portage

2026-05-15

selinux-rpc - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rpc-2.20260312_p1

Description

SELinux policy for rpc

Added to portage

2026-05-15

selinux-rpcbind - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rpcbind-2.20260312_p1

Description

SELinux policy for rpcbind

Added to portage

2026-05-15

selinux-rpm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rpm-2.20260312_p1

Description

SELinux policy for rpm

Added to portage

2026-05-15

selinux-rssh - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rssh-2.20260312_p1

Description

SELinux policy for rssh

Added to portage

2026-05-15

selinux-rtkit - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rtkit-2.20260312_p1

Description

SELinux policy for rtkit

Added to portage

2026-05-15

selinux-rtorrent - 2.20260312_p1
Ebuild name:

sec-policy/selinux-rtorrent-2.20260312_p1

Description

SELinux policy for rtorrent

Added to portage

2026-05-15

selinux-salt - 2.20260312_p1
Ebuild name:

sec-policy/selinux-salt-2.20260312_p1

Description

SELinux policy for salt

Added to portage

2026-05-15

selinux-samba - 2.20260312_p1
Ebuild name:

sec-policy/selinux-samba-2.20260312_p1

Description

SELinux policy for samba

Added to portage

2026-05-15

selinux-sasl - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sasl-2.20260312_p1

Description

SELinux policy for sasl

Added to portage

2026-05-15

selinux-screen - 2.20260312_p1
Ebuild name:

sec-policy/selinux-screen-2.20260312_p1

Description

SELinux policy for screen

Added to portage

2026-05-15

selinux-secadm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-secadm-2.20260312_p1

Description

SELinux policy for secadm

Added to portage

2026-05-15

selinux-sendmail - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sendmail-2.20260312_p1

Description

SELinux policy for sendmail

Added to portage

2026-05-15

selinux-sensord - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sensord-2.20260312_p1

Description

SELinux policy for sensord

Added to portage

2026-05-15

selinux-shorewall - 2.20260312_p1
Ebuild name:

sec-policy/selinux-shorewall-2.20260312_p1

Description

SELinux policy for shorewall

Added to portage

2026-05-15

selinux-shutdown - 2.20260312_p1
Ebuild name:

sec-policy/selinux-shutdown-2.20260312_p1

Description

SELinux policy for shutdown

Added to portage

2026-05-15

selinux-slocate - 2.20260312_p1
Ebuild name:

sec-policy/selinux-slocate-2.20260312_p1

Description

SELinux policy for slocate

Added to portage

2026-05-15

selinux-slrnpull - 2.20260312_p1
Ebuild name:

sec-policy/selinux-slrnpull-2.20260312_p1

Description

SELinux policy for slrnpull

Added to portage

2026-05-15

selinux-smartmon - 2.20260312_p1
Ebuild name:

sec-policy/selinux-smartmon-2.20260312_p1

Description

SELinux policy for smartmon

Added to portage

2026-05-15

selinux-smokeping - 2.20260312_p1
Ebuild name:

sec-policy/selinux-smokeping-2.20260312_p1

Description

SELinux policy for smokeping

Added to portage

2026-05-15

selinux-snmp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-snmp-2.20260312_p1

Description

SELinux policy for snmp

Added to portage

2026-05-15

selinux-snort - 2.20260312_p1
Ebuild name:

sec-policy/selinux-snort-2.20260312_p1

Description

SELinux policy for snort

Added to portage

2026-05-15

selinux-soundserver - 2.20260312_p1
Ebuild name:

sec-policy/selinux-soundserver-2.20260312_p1

Description

SELinux policy for soundserver

Added to portage

2026-05-15

selinux-spamassassin - 2.20260312_p1
Ebuild name:

sec-policy/selinux-spamassassin-2.20260312_p1

Description

SELinux policy for spamassassin

Added to portage

2026-05-15

selinux-squid - 2.20260312_p1
Ebuild name:

sec-policy/selinux-squid-2.20260312_p1

Description

SELinux policy for squid

Added to portage

2026-05-15

selinux-sssd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sssd-2.20260312_p1

Description

SELinux policy for sssd

Added to portage

2026-05-15

selinux-stunnel - 2.20260312_p1
Ebuild name:

sec-policy/selinux-stunnel-2.20260312_p1

Description

SELinux policy for stunnel

Added to portage

2026-05-15

selinux-subsonic - 2.20260312_p1
Ebuild name:

sec-policy/selinux-subsonic-2.20260312_p1

Description

SELinux policy for subsonic

Added to portage

2026-05-15

selinux-sudo - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sudo-2.20260312_p1

Description

SELinux policy for sudo

Added to portage

2026-05-15

selinux-switcheroo - 2.20260312_p1
Ebuild name:

sec-policy/selinux-switcheroo-2.20260312_p1

Description

SELinux policy for switcheroo

Added to portage

2026-05-15

selinux-sxid - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sxid-2.20260312_p1

Description

SELinux policy for sxid

Added to portage

2026-05-15

selinux-syncthing - 2.20260312_p1
Ebuild name:

sec-policy/selinux-syncthing-2.20260312_p1

Description

SELinux policy for syncthing

Added to portage

2026-05-15

selinux-sysstat - 2.20260312_p1
Ebuild name:

sec-policy/selinux-sysstat-2.20260312_p1

Description

SELinux policy for sysstat

Added to portage

2026-05-15

selinux-tboot - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tboot-2.20260312_p1

Description

SELinux policy for tboot

Added to portage

2026-05-15

selinux-tcpd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tcpd-2.20260312_p1

Description

SELinux policy for tcpd

Added to portage

2026-05-15

selinux-tcsd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tcsd-2.20260312_p1

Description

SELinux policy for tcsd

Added to portage

2026-05-15

selinux-telnet - 2.20260312_p1
Ebuild name:

sec-policy/selinux-telnet-2.20260312_p1

Description

SELinux policy for telnet

Added to portage

2026-05-15

selinux-tftp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tftp-2.20260312_p1

Description

SELinux policy for tftp

Added to portage

2026-05-15

selinux-tgtd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tgtd-2.20260312_p1

Description

SELinux policy for tgtd

Added to portage

2026-05-15

selinux-thunderbird - 2.20260312_p1
Ebuild name:

sec-policy/selinux-thunderbird-2.20260312_p1

Description

SELinux policy for thunderbird

Added to portage

2026-05-15

selinux-thunderbolt - 2.20260312_p1
Ebuild name:

sec-policy/selinux-thunderbolt-2.20260312_p1

Description

SELinux policy for thunderbolt

Added to portage

2026-05-15

selinux-timidity - 2.20260312_p1
Ebuild name:

sec-policy/selinux-timidity-2.20260312_p1

Description

SELinux policy for timidity

Added to portage

2026-05-15

selinux-tmpreaper - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tmpreaper-2.20260312_p1

Description

SELinux policy for tmpreaper

Added to portage

2026-05-15

selinux-tor - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tor-2.20260312_p1

Description

SELinux policy for tor

Added to portage

2026-05-15

selinux-tripwire - 2.20260312_p1
Ebuild name:

sec-policy/selinux-tripwire-2.20260312_p1

Description

SELinux policy for tripwire

Added to portage

2026-05-15

selinux-ucspitcp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ucspitcp-2.20260312_p1

Description

SELinux policy for ucspitcp

Added to portage

2026-05-15

selinux-ulogd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-ulogd-2.20260312_p1

Description

SELinux policy for ulogd

Added to portage

2026-05-15

selinux-uml - 2.20260312_p1
Ebuild name:

sec-policy/selinux-uml-2.20260312_p1

Description

SELinux policy for uml

Added to portage

2026-05-15

selinux-unconfined - 2.20260312_p1
Ebuild name:

sec-policy/selinux-unconfined-2.20260312_p1

Description

SELinux policy for unconfined

Added to portage

2026-05-15

selinux-uptime - 2.20260312_p1
Ebuild name:

sec-policy/selinux-uptime-2.20260312_p1

Description

SELinux policy for uptime

Added to portage

2026-05-15

selinux-usbguard - 2.20260312_p1
Ebuild name:

sec-policy/selinux-usbguard-2.20260312_p1

Description

SELinux policy for usbguard

Added to portage

2026-05-15

selinux-usbmuxd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-usbmuxd-2.20260312_p1

Description

SELinux policy for usbmuxd

Added to portage

2026-05-15

selinux-uucp - 2.20260312_p1
Ebuild name:

sec-policy/selinux-uucp-2.20260312_p1

Description

SELinux policy for uucp

Added to portage

2026-05-15

selinux-uwimap - 2.20260312_p1
Ebuild name:

sec-policy/selinux-uwimap-2.20260312_p1

Description

SELinux policy for uwimap

Added to portage

2026-05-15

selinux-uwsgi - 2.20260312_p1
Ebuild name:

sec-policy/selinux-uwsgi-2.20260312_p1

Description

SELinux policy for uWSGI

Added to portage

2026-05-15

selinux-varnishd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-varnishd-2.20260312_p1

Description

SELinux policy for varnishd

Added to portage

2026-05-15

selinux-vbetool - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vbetool-2.20260312_p1

Description

SELinux policy for vbetool

Added to portage

2026-05-15

selinux-vdagent - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vdagent-2.20260312_p1

Description

SELinux policy for vdagent

Added to portage

2026-05-15

selinux-vde - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vde-2.20260312_p1

Description

SELinux policy for vde

Added to portage

2026-05-15

selinux-virt - 2.20260312_p1
Ebuild name:

sec-policy/selinux-virt-2.20260312_p1

Description

SELinux policy for virt

Added to portage

2026-05-15

selinux-vlock - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vlock-2.20260312_p1

Description

SELinux policy for vlock

Added to portage

2026-05-15

selinux-vmware - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vmware-2.20260312_p1

Description

SELinux policy for vmware

Added to portage

2026-05-15

selinux-vnstatd - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vnstatd-2.20260312_p1

Description

SELinux policy for vnstatd

Added to portage

2026-05-15

selinux-vpn - 2.20260312_p1
Ebuild name:

sec-policy/selinux-vpn-2.20260312_p1

Description

SELinux policy for vpn

Added to portage

2026-05-15

selinux-watchdog - 2.20260312_p1
Ebuild name:

sec-policy/selinux-watchdog-2.20260312_p1

Description

SELinux policy for watchdog

Added to portage

2026-05-15

selinux-webalizer - 2.20260312_p1
Ebuild name:

sec-policy/selinux-webalizer-2.20260312_p1

Description

SELinux policy for webalizer

Added to portage

2026-05-15

selinux-wine - 2.20260312_p1
Ebuild name:

sec-policy/selinux-wine-2.20260312_p1

Description

SELinux policy for wine

Added to portage

2026-05-15

selinux-wireguard - 2.20260312_p1
Ebuild name:

sec-policy/selinux-wireguard-2.20260312_p1

Description

SELinux policy for wireguard

Added to portage

2026-05-15

selinux-wireshark - 2.20260312_p1
Ebuild name:

sec-policy/selinux-wireshark-2.20260312_p1

Description

SELinux policy for wireshark

Added to portage

2026-05-15

selinux-wm - 2.20260312_p1
Ebuild name:

sec-policy/selinux-wm-2.20260312_p1

Description

SELinux policy for wm

Added to portage

2026-05-15

selinux-xen - 2.20260312_p1
Ebuild name:

sec-policy/selinux-xen-2.20260312_p1

Description

SELinux policy for xen

Added to portage

2026-05-15

selinux-xfs - 2.20260312_p1
Ebuild name:

sec-policy/selinux-xfs-2.20260312_p1

Description

SELinux policy for xfs

Added to portage

2026-05-15

selinux-xscreensaver - 2.20260312_p1
Ebuild name:

sec-policy/selinux-xscreensaver-2.20260312_p1

Description

SELinux policy for xscreensaver

Added to portage

2026-05-15

selinux-xserver - 2.20260312_p1
Ebuild name:

sec-policy/selinux-xserver-2.20260312_p1

Description

SELinux policy for xserver

Added to portage

2026-05-15

selinux-zabbix - 2.20260312_p1
Ebuild name:

sec-policy/selinux-zabbix-2.20260312_p1

Description

SELinux policy for zabbix

Added to portage

2026-05-15

selinux-zfs - 2.20260312_p1
Ebuild name:

sec-policy/selinux-zfs-2.20260312_p1

Description

SELinux policy for zfs

Added to portage

2026-05-15

shotwell - 0.32.15
Ebuild name:

media-gfx/shotwell-0.32.15

Description

Open source photo manager for GNOME

Added to portage

2026-05-15

spectrum2 - 2.2.1-r2
Ebuild name:

net-im/spectrum2-2.2.1-r2

Description

An open source instant messaging transport

Added to portage

2026-05-15

synapse - 1.152.1
Ebuild name:

net-im/synapse-1.152.1

Description

Reference implementation of Matrix homeserver

Added to portage

2026-05-15

telegram-desktop - 6.8.2
Ebuild name:

net-im/telegram-desktop-6.8.2

Description

Official desktop client for Telegram

Added to portage

2026-05-15

telegram-desktop-bin - 6.8.2
Ebuild name:

net-im/telegram-desktop-bin-6.8.2

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-05-15

thrift - 0.23.0
Ebuild name:

dev-python/thrift-0.23.0

Description

Python implementation of Thrift

Added to portage

2026-05-15

totem-pl-parser - 3.26.7
Ebuild name:

dev-libs/totem-pl-parser-3.26.7

Description

Playlist parsing library

Added to portage

2026-05-15

tp - 0.9
Ebuild name:

app-emacs/tp-0.9

Description

Utilities to create transient menus for POSTing to an API for GNU Emacs

Added to portage

2026-05-15

translate-toolkit - 3.19.10
Ebuild name:

dev-python/translate-toolkit-3.19.10

Description

Toolkit to convert between many translation formats

Added to portage

2026-05-15

tuned - 2.27.0-r2
Ebuild name:

sys-apps/tuned-2.27.0-r2

Description

Daemon for monitoring and adaptive tuning of system devices

Added to portage

2026-05-15

typeguard - 4.5.2
Ebuild name:

dev-python/typeguard-4.5.2

Description

Run-time type checker for Python

Added to portage

2026-05-15

uvicorn - 0.47.0
Ebuild name:

dev-python/uvicorn-0.47.0

Description

Lightning-fast ASGI server implementation

Added to portage

2026-05-15

vanilla-kernel - 6.12.88
Ebuild name:

sys-kernel/vanilla-kernel-6.12.88

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-kernel - 6.18.30
Ebuild name:

sys-kernel/vanilla-kernel-6.18.30

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-kernel - 7.0.7
Ebuild name:

sys-kernel/vanilla-kernel-7.0.7

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-sources - 5.10.256
Ebuild name:

sys-kernel/vanilla-sources-5.10.256

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vanilla-sources - 5.15.207
Ebuild name:

sys-kernel/vanilla-sources-5.15.207

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vanilla-sources - 6.1.173
Ebuild name:

sys-kernel/vanilla-sources-6.1.173

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vanilla-sources - 6.12.89
Ebuild name:

sys-kernel/vanilla-sources-6.12.89

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vanilla-sources - 6.18.31
Ebuild name:

sys-kernel/vanilla-sources-6.18.31

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vanilla-sources - 6.6.139
Ebuild name:

sys-kernel/vanilla-sources-6.6.139

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vanilla-sources - 7.0.8
Ebuild name:

sys-kernel/vanilla-sources-7.0.8

Description

Full sources for the Linux kernel

Added to portage

2026-05-15

vivaldi-snapshot - 8.0.4033.7
Ebuild name:

www-client/vivaldi-snapshot-8.0.4033.7

Description

A browser for our friends

Added to portage

2026-05-15

vlc - 4.0.0_pre20260515
Ebuild name:

media-video/vlc-4.0.0_pre20260515

Description

Media player and framework with support for most multimedia files

Added to portage

2026-05-15

yelp - 49.1
Ebuild name:

gnome-extra/yelp-49.1

Description

Help browser for GNOME

Added to portage

2026-05-15

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