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:

85178

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: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
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

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