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:

83555

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-03-05
awscli - 1.44.51
Ebuild name:

app-admin/awscli-1.44.51

Description

Universal Command Line Environment for AWS

Added to portage

2026-03-05

boto3 - 1.42.61
Ebuild name:

dev-python/boto3-1.42.61

Description

The AWS SDK for Python

Added to portage

2026-03-05

botocore - 1.42.61
Ebuild name:

dev-python/botocore-1.42.61

Description

Low-level, data-driven core of boto 3

Added to portage

2026-03-05

configshell-fb - 2.0.3
Ebuild name:

dev-python/configshell-fb-2.0.3

Description

A Python library for building configuration shells

Added to portage

2026-03-05

dist-kernel - 5.10.252
Ebuild name:

virtual/dist-kernel-5.10.252

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-05

dist-kernel - 5.15.202
Ebuild name:

virtual/dist-kernel-5.15.202

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-05

dist-kernel - 6.18.16
Ebuild name:

virtual/dist-kernel-6.18.16

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-05

dist-kernel - 6.19.6
Ebuild name:

virtual/dist-kernel-6.19.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-05

faker - 40.7.0
Ebuild name:

dev-python/faker-40.7.0

Description

A Python package that generates fake data for you

Added to portage

2026-03-05

gentoo-kernel - 5.10.252
Ebuild name:

sys-kernel/gentoo-kernel-5.10.252

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel - 5.15.202
Ebuild name:

sys-kernel/gentoo-kernel-5.15.202

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel - 6.18.16
Ebuild name:

sys-kernel/gentoo-kernel-6.18.16

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel - 6.19.6
Ebuild name:

sys-kernel/gentoo-kernel-6.19.6

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel-bin - 5.10.252
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.252

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel-bin - 5.15.202
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.202

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel-bin - 6.18.16
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.16

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-05

gentoo-kernel-bin - 6.19.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.19.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-05

gentoo-sources - 5.10.252
Ebuild name:

sys-kernel/gentoo-sources-5.10.252

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-05

gentoo-sources - 5.15.202
Ebuild name:

sys-kernel/gentoo-sources-5.15.202

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-05

gentoo-sources - 6.1.165
Ebuild name:

sys-kernel/gentoo-sources-6.1.165

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-05

gentoo-sources - 6.12.75
Ebuild name:

sys-kernel/gentoo-sources-6.12.75

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-05

gentoo-sources - 6.18.16
Ebuild name:

sys-kernel/gentoo-sources-6.18.16

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-05

glaze - 6.5.1
Ebuild name:

dev-cpp/glaze-6.5.1

Description

Extremely fast, in memory, JSON and interface library for modern C++

Added to portage

2026-03-05

jj - 0.39.0
Ebuild name:

dev-vcs/jj-0.39.0

Description

Jujutsu - an experimental version control system

Added to portage

2026-03-05

labwc - 0.9.5
Ebuild name:

gui-wm/labwc-0.9.5

Description

Openbox alternative for wayland

Added to portage

2026-03-05

libxml2 - 2.15.2
Ebuild name:

dev-libs/libxml2-2.15.2

Description

XML C parser and toolkit

Added to portage

2026-03-05

mawk - 1.3.4_p20260302
Ebuild name:

sys-apps/mawk-1.3.4_p20260302

Description

An (often faster than gawk) awk-interpreter

Added to portage

2026-03-05

nushell - 0.111.0
Ebuild name:

app-shells/nushell-0.111.0

Description

A new type of shell, written in Rust

Added to portage

2026-03-05

opentelemetry-api - 1.40.0
Ebuild name:

dev-python/opentelemetry-api-1.40.0

Description

OpenTelemetry Python API

Added to portage

2026-03-05

opentelemetry-sdk - 1.40.0
Ebuild name:

dev-python/opentelemetry-sdk-1.40.0

Description

OpenTelemetry Python SDK

Added to portage

2026-03-05

opentelemetry-semantic-conventions - 1.40.0
Ebuild name:

dev-python/opentelemetry-semantic-conventions-1.40.0

Description

OpenTelemetry Semantic Conventions

Added to portage

2026-03-05

poedit - 3.8.2
Ebuild name:

app-i18n/poedit-3.8.2

Description

GUI gettext translations editor

Added to portage

2026-03-05

purpose - 6.23.0-r1
Ebuild name:

kde-frameworks/purpose-6.23.0-r1

Description

Library for providing abstractions to get the developer's purposes

Added to portage

2026-03-05

pyfakefs - 6.1.4
Ebuild name:

dev-python/pyfakefs-6.1.4

Description

A fake file system that mocks the Python file system modules

Added to portage

2026-03-05

pytest-check - 2.7.4
Ebuild name:

dev-python/pytest-check-2.7.4

Description

pytest plugin that allows multiple failures per test

Added to portage

2026-03-05

python - 3.12.13_p1
Ebuild name:

dev-lang/python-3.12.13_p1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-03-05

python-tests - 3.12.13_p1
Ebuild name:

dev-python/python-tests-3.12.13_p1

Description

Test modules from dev-lang/python

Added to portage

2026-03-05

requests-cache - 1.3.1
Ebuild name:

dev-python/requests-cache-1.3.1

Description

Persistent cache for requests library

Added to portage

2026-03-05

rssguard - 5.0.2
Ebuild name:

net-news/rssguard-5.0.2

Description

Simple (yet powerful) news feed reader

Added to portage

2026-03-05

rtslib-fb - 2.2.4
Ebuild name:

dev-python/rtslib-fb-2.2.4

Description

A Python object API for managing the Linux LIO kernel target

Added to portage

2026-03-05

simsimd - 6.5.15
Ebuild name:

dev-python/simsimd-6.5.15

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2026-03-05

sphinx-autodoc-typehints - 3.9.6
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.9.6

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-03-05

tabulate - 0.10.0
Ebuild name:

dev-python/tabulate-0.10.0

Description

Pretty-print tabular data

Added to portage

2026-03-05

taglib - 2.2
Ebuild name:

media-libs/taglib-2.2

Description

Library for reading and editing audio meta data

Added to portage

2026-03-05

test2ref - 1.2.1
Ebuild name:

dev-python/test2ref-1.2.1

Description

Testing Against Learned Reference Data

Added to portage

2026-03-05

tox - 4.47.3
Ebuild name:

dev-python/tox-4.47.3

Description

virtualenv-based automation of test activities

Added to portage

2026-03-05

vanilla-kernel - 5.10.252
Ebuild name:

sys-kernel/vanilla-kernel-5.10.252

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-05

vanilla-kernel - 5.15.202
Ebuild name:

sys-kernel/vanilla-kernel-5.15.202

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-05

vanilla-kernel - 6.18.16
Ebuild name:

sys-kernel/vanilla-kernel-6.18.16

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-05

vanilla-kernel - 6.19.6
Ebuild name:

sys-kernel/vanilla-kernel-6.19.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-05

2026-03-04
adcli - 0.9.3.1
Ebuild name:

app-crypt/adcli-0.9.3.1

Description

Tool for performing actions on an Active Directory domain

Added to portage

2026-03-04

android-studio - 2025.3.2.6
Ebuild name:

dev-util/android-studio-2025.3.2.6

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-03-04

asterisk-base - 4
Ebuild name:

net-misc/asterisk-base-4

Description

Gentoo Asterisk init scripts

Added to portage

2026-03-04

aurorae - 6.6.2
Ebuild name:

kde-plasma/aurorae-6.6.2

Description

Themeable window decoration for KWin

Added to portage

2026-03-04

awscli - 1.44.50
Ebuild name:

app-admin/awscli-1.44.50

Description

Universal Command Line Environment for AWS

Added to portage

2026-03-04

bear - 4.0.4
Ebuild name:

dev-util/bear-4.0.4

Description

Bear is a tool that generates a compilation database for clang tooling.

Added to portage

2026-03-04

bluedevil - 6.6.2
Ebuild name:

kde-plasma/bluedevil-6.6.2

Description

Bluetooth stack for KDE Plasma

Added to portage

2026-03-04

blueprint-compiler - 0.20.0
Ebuild name:

dev-util/blueprint-compiler-0.20.0

Description

Compiler for Blueprint, a markup language for GTK user interface

Added to portage

2026-03-04

boto3 - 1.42.60
Ebuild name:

dev-python/boto3-1.42.60

Description

The AWS SDK for Python

Added to portage

2026-03-04

botocore - 1.42.60
Ebuild name:

dev-python/botocore-1.42.60

Description

Low-level, data-driven core of boto 3

Added to portage

2026-03-04

breeze - 6.6.2
Ebuild name:

kde-plasma/breeze-6.6.2

Description

Breeze visual style for the Plasma desktop

Added to portage

2026-03-04

breeze-grub - 6.6.2
Ebuild name:

kde-plasma/breeze-grub-6.6.2

Description

Breeze theme for GRUB

Added to portage

2026-03-04

breeze-gtk - 6.6.2
Ebuild name:

kde-plasma/breeze-gtk-6.6.2

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2026-03-04

breeze-plymouth - 6.6.2
Ebuild name:

kde-plasma/breeze-plymouth-6.6.2

Description

Breeze theme for Plymouth

Added to portage

2026-03-04

c-blosc2 - 2.23.1
Ebuild name:

dev-libs/c-blosc2-2.23.1

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-03-04

chromium - 146.0.7680.31-r2
Ebuild name:

www-client/chromium-146.0.7680.31-r2

Description

Open-source version of Google Chrome web browser

Added to portage

2026-03-04

chromium - 147.0.7703.0-r1
Ebuild name:

www-client/chromium-147.0.7703.0-r1

Description

Open-source version of Google Chrome web browser

Added to portage

2026-03-04

chromium-common - 2
Ebuild name:

www-client/chromium-common-2

Description

Common configuration files for Chromium slots

Added to portage

2026-03-04

clang - 23.0.0_pre20260303
Ebuild name:

dev-python/clang-23.0.0_pre20260303

Description

Python bindings for llvm-core/clang

Added to portage

2026-03-04

clang - 23.0.0_pre20260303
Ebuild name:

llvm-core/clang-23.0.0_pre20260303

Description

C language family frontend for LLVM

Added to portage

2026-03-04

clang-common - 23.0.0_pre20260303
Ebuild name:

llvm-core/clang-common-23.0.0_pre20260303

Description

Common files shared between multiple slots of clang

Added to portage

2026-03-04

cmd2 - 3.4.0
Ebuild name:

dev-python/cmd2-3.4.0

Description

Extra features for standard library's cmd module

Added to portage

2026-03-04

compiler-rt - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/compiler-rt-23.0.0_pre20260303

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-03-04

compiler-rt-sanitizers - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.0.0_pre20260303

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-03-04

deno-bin - 2.7.3
Ebuild name:

dev-lang/deno-bin-2.7.3

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-03-04

discord - 0.0.127
Ebuild name:

net-im/discord-0.0.127

Description

All-in-one voice and text chat for gamers

Added to portage

2026-03-04

discover - 6.6.2
Ebuild name:

kde-plasma/discover-6.6.2

Description

KDE Plasma resources management GUI

Added to portage

2026-03-04

django - 4.2.29
Ebuild name:

dev-python/django-4.2.29

Description

High-level Python web framework

Added to portage

2026-03-04

django - 5.2.12
Ebuild name:

dev-python/django-5.2.12

Description

High-level Python web framework

Added to portage

2026-03-04

django - 6.0.3
Ebuild name:

dev-python/django-6.0.3

Description

High-level Python web framework

Added to portage

2026-03-04

drkonqi - 6.6.2
Ebuild name:

kde-plasma/drkonqi-6.6.2

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2026-03-04

dropbox - 243.4.6956
Ebuild name:

net-misc/dropbox-243.4.6956

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-03-04

exiv2 - 0.28.8
Ebuild name:

media-gfx/exiv2-0.28.8

Description

EXIF, IPTC and XMP metadata C++ library and command line utility

Added to portage

2026-03-04

fish - 4.5.0-r2
Ebuild name:

app-shells/fish-4.5.0-r2

Description

Friendly Interactive SHell

Added to portage

2026-03-04

flang - 23.0.0_pre20260303
Ebuild name:

llvm-core/flang-23.0.0_pre20260303

Description

LLVM's Fortran frontend

Added to portage

2026-03-04

flang-rt - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/flang-rt-23.0.0_pre20260303

Description

LLVM's Fortran runtime

Added to portage

2026-03-04

flatpak-kcm - 6.6.2
Ebuild name:

kde-plasma/flatpak-kcm-6.6.2

Description

Flatpak Permissions Management KCM

Added to portage

2026-03-04

freetype - 2.14.2
Ebuild name:

media-libs/freetype-2.14.2

Description

High-quality and portable font engine

Added to portage

2026-03-04

gawk - 5.4.0-r2
Ebuild name:

sys-apps/gawk-5.4.0-r2

Description

GNU awk pattern-matching language

Added to portage

2026-03-04

gentoo-sources - 6.18.15
Ebuild name:

sys-kernel/gentoo-sources-6.18.15

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-04

gentoo-sources - 6.19.5
Ebuild name:

sys-kernel/gentoo-sources-6.19.5

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-04

gimp - 3.2.0_rc3
Ebuild name:

media-gfx/gimp-3.2.0_rc3

Description

GNU Image Manipulation Program

Added to portage

2026-03-04

git-cola - 4.17.1
Ebuild name:

dev-vcs/git-cola-4.17.1

Description

The highly caffeinated git GUI

Added to portage

2026-03-04

gitolite - 3.6.14
Ebuild name:

dev-vcs/gitolite-3.6.14

Description

Highly flexible server for git directory version tracker

Added to portage

2026-03-04

icalendar - 7.0.3
Ebuild name:

dev-python/icalendar-7.0.3

Description

RFC 5545 compatible parser and generator of iCalendar files

Added to portage

2026-03-04

imagesize - 2.0.0
Ebuild name:

dev-python/imagesize-2.0.0

Description

Pure Python module for getting image size from png/jpeg/jpeg2000/gif fil

Added to portage

2026-03-04

iptables - 1.8.13
Ebuild name:

net-firewall/iptables-1.8.13

Description

Linux kernel (2.4+) firewall, NAT and packet mangling tools

Added to portage

2026-03-04

itcl - 4.3.7
Ebuild name:

dev-tcltk/itcl-4.3.7

Description

Object Oriented Enhancements for Tcl/Tk

Added to portage

2026-03-04

itextomml - 1.6.1-r1
Ebuild name:

dev-ruby/itextomml-1.6.1-r1

Description

Native Ruby bindings to itex2MML, which converts itex equations to Math

Added to portage

2026-03-04

jsonschema-path - 0.4.5
Ebuild name:

dev-python/jsonschema-path-0.4.5

Description

JSONSchema Spec with object-oriented paths

Added to portage

2026-03-04

kactivitymanagerd - 6.6.2
Ebuild name:

kde-plasma/kactivitymanagerd-6.6.2

Description

System service to manage user's activities, track the usage patt

Added to portage

2026-03-04

kde-cli-tools - 6.6.2
Ebuild name:

kde-plasma/kde-cli-tools-6.6.2

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2026-03-04

kde-cli-tools-common - 6.6.2
Ebuild name:

kde-plasma/kde-cli-tools-common-6.6.2

Description

Added to portage

2026-03-04

kde-gtk-config - 6.6.2
Ebuild name:

kde-plasma/kde-gtk-config-6.6.2

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2026-03-04

kdecoration - 6.6.2
Ebuild name:

kde-plasma/kdecoration-6.6.2

Description

Plugin based library to create window decorations

Added to portage

2026-03-04

kdeplasma-addons - 6.6.2
Ebuild name:

kde-plasma/kdeplasma-addons-6.6.2

Description

Extra Plasma applets and engines

Added to portage

2026-03-04

kdesu-gui - 6.6.2
Ebuild name:

kde-plasma/kdesu-gui-6.6.2

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2026-03-04

kdiff3 - 1.12.4
Ebuild name:

kde-misc/kdiff3-1.12.4

Description

Frontend to diff3 based on KDE Frameworks

Added to portage

2026-03-04

kea - 3.0.2-r3
Ebuild name:

net-misc/kea-3.0.2-r3

Description

High-performance production grade DHCPv4 & DHCPv6 server

Added to portage

2026-03-04

keditfiletype - 6.6.2
Ebuild name:

kde-plasma/keditfiletype-6.6.2

Description

File Type Editor

Added to portage

2026-03-04

kgamma - 6.6.2
Ebuild name:

kde-plasma/kgamma-6.6.2

Description

Screen gamma values kcontrol module

Added to portage

2026-03-04

kglobalacceld - 6.6.2
Ebuild name:

kde-plasma/kglobalacceld-6.6.2

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2026-03-04

kinfocenter - 6.6.2
Ebuild name:

kde-plasma/kinfocenter-6.6.2

Description

Utility providing information about the computer hardware

Added to portage

2026-03-04

kmenuedit - 6.6.2
Ebuild name:

kde-plasma/kmenuedit-6.6.2

Description

KDE Plasma menu editor

Added to portage

2026-03-04

knighttime - 6.6.2
Ebuild name:

kde-plasma/knighttime-6.6.2

Description

Helpers for scheduling the dark-light cycle

Added to portage

2026-03-04

kpipewire - 6.6.2
Ebuild name:

kde-plasma/kpipewire-6.6.2

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2026-03-04

krdp - 6.6.2
Ebuild name:

kde-plasma/krdp-6.6.2

Description

Library and examples for creating an RDP server

Added to portage

2026-03-04

kscreen - 6.6.2
Ebuild name:

kde-plasma/kscreen-6.6.2

Description

KDE Plasma screen management

Added to portage

2026-03-04

kscreenlocker - 6.6.2
Ebuild name:

kde-plasma/kscreenlocker-6.6.2

Description

Library and components for secure lock screen architecture

Added to portage

2026-03-04

ksshaskpass - 6.6.2
Ebuild name:

kde-plasma/ksshaskpass-6.6.2

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2026-03-04

ksystemstats - 6.6.2
Ebuild name:

kde-plasma/ksystemstats-6.6.2

Description

Plugin-based system monitoring daemon

Added to portage

2026-03-04

kup - 0.3.6-r4
Ebuild name:

dev-util/kup-0.3.6-r4

Description

kernel.org uploader tool

Added to portage

2026-03-04

kvantum - 1.1.6
Ebuild name:

x11-themes/kvantum-1.1.6

Description

SVG-based theme engine for Qt, KDE Plasma and LXQt

Added to portage

2026-03-04

kwallet-pam - 6.6.2
Ebuild name:

kde-plasma/kwallet-pam-6.6.2

Description

PAM module to not enter KWallet password again after login

Added to portage

2026-03-04

kwayland - 6.6.2
Ebuild name:

kde-plasma/kwayland-6.6.2

Description

Qt-style API to interact with the wayland-client API

Added to portage

2026-03-04

kwin - 6.6.2
Ebuild name:

kde-plasma/kwin-6.6.2

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-03-04

kwin-x11 - 6.6.2
Ebuild name:

kde-plasma/kwin-x11-6.6.2

Description

Flexible, composited X window manager

Added to portage

2026-03-04

kwrited - 6.6.2
Ebuild name:

kde-plasma/kwrited-6.6.2

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2026-03-04

layer-shell-qt - 6.6.2
Ebuild name:

kde-plasma/layer-shell-qt-6.6.2

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2026-03-04

libclc - 23.0.0_pre20260303
Ebuild name:

llvm-core/libclc-23.0.0_pre20260303

Description

OpenCL C library

Added to portage

2026-03-04

libcxx - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/libcxx-23.0.0_pre20260303

Description

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

Added to portage

2026-03-04

libcxxabi - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/libcxxabi-23.0.0_pre20260303

Description

Low level support for a standard C++ library

Added to portage

2026-03-04

libgcc - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/libgcc-23.0.0_pre20260303

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-03-04

libkscreen - 6.6.2
Ebuild name:

kde-plasma/libkscreen-6.6.2

Description

Plasma screen management library

Added to portage

2026-03-04

libksysguard - 6.6.2
Ebuild name:

kde-plasma/libksysguard-6.6.2

Description

Task management and system monitoring library

Added to portage

2026-03-04

libplasma - 6.6.2
Ebuild name:

kde-plasma/libplasma-6.6.2

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2026-03-04

libunwind - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/libunwind-23.0.0_pre20260303

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-03-04

lit - 23.0.0_pre20260303
Ebuild name:

dev-python/lit-23.0.0_pre20260303

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-03-04

lld - 23.0.0_pre20260303
Ebuild name:

llvm-core/lld-23.0.0_pre20260303

Description

The LLVM linker (link editor)

Added to portage

2026-03-04

lldb - 23.0.0_pre20260303
Ebuild name:

llvm-core/lldb-23.0.0_pre20260303

Description

The LLVM debugger

Added to portage

2026-03-04

llvm - 23.0.0_pre20260303
Ebuild name:

dev-ml/llvm-23.0.0_pre20260303

Description

OCaml bindings for LLVM

Added to portage

2026-03-04

llvm - 23.0.0_pre20260303
Ebuild name:

llvm-core/llvm-23.0.0_pre20260303

Description

Low Level Virtual Machine

Added to portage

2026-03-04

llvm-common - 23.0.0_pre20260303
Ebuild name:

llvm-core/llvm-common-23.0.0_pre20260303

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-03-04

man-pages - 6.17-r1
Ebuild name:

sys-apps/man-pages-6.17-r1

Description

A somewhat comprehensive collection of Linux man pages

Added to portage

2026-03-04

milou - 6.6.2
Ebuild name:

kde-plasma/milou-6.6.2

Description

Dedicated search application built on top of Baloo

Added to portage

2026-03-04

mirrorselect - 2.6.0
Ebuild name:

app-portage/mirrorselect-2.6.0

Description

Tool to help select distfiles mirrors for Gentoo

Added to portage

2026-03-04

mkdocs-material - 9.7.4
Ebuild name:

dev-python/mkdocs-material-9.7.4

Description

A Material Design theme for MkDocs

Added to portage

2026-03-04

mlir - 23.0.0_pre20260303
Ebuild name:

llvm-core/mlir-23.0.0_pre20260303

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-03-04

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-03-04

mpg123-el - 1.65
Ebuild name:

app-emacs/mpg123-el-1.65

Description

Emacs front-end to mpg123 audio player and OggVorbis audio player

Added to portage

2026-03-04

mu-cite - 8.1_p202011031127
Ebuild name:

app-emacs/mu-cite-8.1_p202011031127

Description

Message citation utilities for emacsen

Added to portage

2026-03-04

mycli - 1.59.0
Ebuild name:

dev-db/mycli-1.59.0

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-03-04

no-littering - 1.8.5
Ebuild name:

app-emacs/no-littering-1.8.5

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-03-04

nprolog - 4.83
Ebuild name:

dev-lang/nprolog-4.83

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2026-03-04

nuitka - 4.0.2
Ebuild name:

dev-python/nuitka-4.0.2

Description

Python to native compiler

Added to portage

2026-03-04

ocean-sound-theme - 6.6.2
Ebuild name:

kde-plasma/ocean-sound-theme-6.6.2

Description

Ocean Sound Theme for Plasma

Added to portage

2026-03-04

offload - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/offload-23.0.0_pre20260303

Description

OpenMP offloading support

Added to portage

2026-03-04

openmp - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/openmp-23.0.0_pre20260303

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-03-04

openmp-amdgcn - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/openmp-amdgcn-23.0.0_pre20260303

Description

OpenMP target library for amdgcn devices

Added to portage

2026-03-04

openmp-nvptx64 - 23.0.0_pre20260303
Ebuild name:

llvm-runtimes/openmp-nvptx64-23.0.0_pre20260303

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-03-04

oxygen - 6.6.2
Ebuild name:

kde-plasma/oxygen-6.6.2

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-03-04

oxygen-sounds - 6.6.2
Ebuild name:

kde-plasma/oxygen-sounds-6.6.2

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2026-03-04

pbs-installer - 2026.3.3
Ebuild name:

dev-python/pbs-installer-2026.3.3

Description

Installer for Python Build Standalone

Added to portage

2026-03-04

pdfminer - 20260107
Ebuild name:

app-text/pdfminer-20260107

Description

Python tool for extracting information from PDF documents

Added to portage

2026-03-04

plasma-activities - 6.6.2
Ebuild name:

kde-plasma/plasma-activities-6.6.2

Description

Core components for KDE's Activities System

Added to portage

2026-03-04

plasma-activities-stats - 6.6.2
Ebuild name:

kde-plasma/plasma-activities-stats-6.6.2

Description

Library for accessing usage data collected by the activiti

Added to portage

2026-03-04

plasma-browser-integration - 6.6.2
Ebuild name:

kde-plasma/plasma-browser-integration-6.6.2

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2026-03-04

plasma-desktop - 6.6.2
Ebuild name:

kde-plasma/plasma-desktop-6.6.2

Description

KDE Plasma desktop

Added to portage

2026-03-04

plasma-disks - 6.6.2
Ebuild name:

kde-plasma/plasma-disks-6.6.2

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2026-03-04

plasma-firewall - 6.6.2
Ebuild name:

kde-plasma/plasma-firewall-6.6.2

Description

Plasma frontend for Firewalld or UFW

Added to portage

2026-03-04

plasma-integration - 6.6.2
Ebuild name:

kde-plasma/plasma-integration-6.6.2

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2026-03-04

plasma-keyboard - 6.6.2
Ebuild name:

kde-plasma/plasma-keyboard-6.6.2

Description

Virtual keyboard based on Qt Virtual Keyboard

Added to portage

2026-03-04

plasma-login-manager - 6.6.2
Ebuild name:

kde-plasma/plasma-login-manager-6.6.2

Description

Plasma Login Manager

Added to portage

2026-03-04

plasma-login-sessions - 6.6.2
Ebuild name:

kde-plasma/plasma-login-sessions-6.6.2

Description

KDE Plasma login sessions

Added to portage

2026-03-04

plasma-meta - 6.6.2
Ebuild name:

kde-plasma/plasma-meta-6.6.2

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-03-04

plasma-nm - 6.6.2
Ebuild name:

kde-plasma/plasma-nm-6.6.2

Description

KDE Plasma applet for NetworkManager

Added to portage

2026-03-04

plasma-pa - 6.6.2
Ebuild name:

kde-plasma/plasma-pa-6.6.2

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2026-03-04

plasma-sdk - 6.6.2
Ebuild name:

kde-plasma/plasma-sdk-6.6.2

Description

Useful applications for Plasma development

Added to portage

2026-03-04

plasma-systemmonitor - 6.6.2
Ebuild name:

kde-plasma/plasma-systemmonitor-6.6.2

Description

Monitor system sensors, process information and other system

Added to portage

2026-03-04

plasma-thunderbolt - 6.6.2
Ebuild name:

kde-plasma/plasma-thunderbolt-6.6.2

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2026-03-04

plasma-vault - 6.6.2
Ebuild name:

kde-plasma/plasma-vault-6.6.2

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2026-03-04

plasma-welcome - 6.6.2
Ebuild name:

kde-plasma/plasma-welcome-6.6.2

Description

Friendly onboarding wizard for Plasma

Added to portage

2026-03-04

plasma-workspace - 6.6.2
Ebuild name:

kde-plasma/plasma-workspace-6.6.2

Description

KDE Plasma workspace

Added to portage

2026-03-04

plasma-workspace - 6.6.2-r1
Ebuild name:

kde-plasma/plasma-workspace-6.6.2-r1

Description

KDE Plasma workspace

Added to portage

2026-03-04

plasma-workspace-wallpapers - 6.6.2
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.6.2

Description

Wallpapers for the Plasma workspace

Added to portage

2026-03-04

plasma5support - 6.6.2
Ebuild name:

kde-plasma/plasma5support-6.6.2

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2026-03-04

plymouth-kcm - 6.6.2
Ebuild name:

kde-plasma/plymouth-kcm-6.6.2

Description

KDE Plasma control module for Plymouth

Added to portage

2026-03-04

poetry - 2.2.1-r2
Ebuild name:

dev-python/poetry-2.2.1-r2

Description

A frontend for poetry - a python dependency management and packaging too

Added to portage

2026-03-04

poetry - 2.3.0-r1
Ebuild name:

dev-python/poetry-2.3.0-r1

Description

A frontend for poetry - a python dependency management and packaging too

Added to portage

2026-03-04

poetry - 2.3.2-r1
Ebuild name:

dev-python/poetry-2.3.2-r1

Description

A frontend for poetry - a python dependency management and packaging too

Added to portage

2026-03-04

polkit-kde-agent - 6.6.2
Ebuild name:

kde-plasma/polkit-kde-agent-6.6.2

Description

PolKit agent module for KDE Plasma

Added to portage

2026-03-04

polly - 23.0.0_pre20260303
Ebuild name:

llvm-core/polly-23.0.0_pre20260303

Description

Polyhedral optimizations for LLVM

Added to portage

2026-03-04

postfix - 3.11.0_rc5
Ebuild name:

mail-mta/postfix-3.11.0_rc5

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-03-04

postfix - 3.12_pre20260302
Ebuild name:

mail-mta/postfix-3.12_pre20260302

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-03-04

powerdevil - 6.6.2
Ebuild name:

kde-plasma/powerdevil-6.6.2

Description

Power management for KDE Plasma Shell

Added to portage

2026-03-04

print-manager - 6.6.2
Ebuild name:

kde-plasma/print-manager-6.6.2

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2026-03-04

pyproject-fmt - 2.18.1
Ebuild name:

dev-python/pyproject-fmt-2.18.1

Description

Format your pyproject.toml file

Added to portage

2026-03-04

pytz - 2026.1_p1
Ebuild name:

dev-python/pytz-2026.1_p1

Description

World timezone definitions for Python

Added to portage

2026-03-04

qqc2-breeze-style - 6.6.2
Ebuild name:

kde-plasma/qqc2-breeze-style-6.6.2

Description

Breeze inspired QQC2 Style

Added to portage

2026-03-04

redis - 8.2.5
Ebuild name:

dev-db/redis-8.2.5

Description

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

Added to portage

2026-03-04

redis - 8.4.2
Ebuild name:

dev-db/redis-8.4.2

Description

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

Added to portage

2026-03-04

redis - 8.6.1
Ebuild name:

dev-db/redis-8.6.1

Description

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

Added to portage

2026-03-04

resolve-march-native - 6.1.0
Ebuild name:

app-misc/resolve-march-native-6.1.0

Description

Resolve GCC flag -march=native

Added to portage

2026-03-04

rssguard - 5.0.1
Ebuild name:

net-news/rssguard-5.0.1

Description

Simple (yet powerful) news feed reader

Added to portage

2026-03-04

scikit-build - 0.19.0
Ebuild name:

dev-python/scikit-build-0.19.0

Description

Improved build system generator for Python C/C++/Fortran/Cython exte

Added to portage

2026-03-04

sddm-kcm - 6.6.2
Ebuild name:

kde-plasma/sddm-kcm-6.6.2

Description

KDE Plasma control module for SDDM

Added to portage

2026-03-04

simsimd - 6.5.14
Ebuild name:

dev-python/simsimd-6.5.14

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2026-03-04

spectacle - 6.6.2
Ebuild name:

kde-plasma/spectacle-6.6.2

Description

Screenshot capture utility

Added to portage

2026-03-04

spotipy - 2.26.0
Ebuild name:

dev-python/spotipy-2.26.0

Description

A lightweight Python library for the Spotify Web API

Added to portage

2026-03-04

systemsettings - 6.6.2
Ebuild name:

kde-plasma/systemsettings-6.6.2

Description

Control Center to configure KDE Plasma desktop

Added to portage

2026-03-04

telegram-desktop-bin - 6.6.2
Ebuild name:

net-im/telegram-desktop-bin-6.6.2

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-03-04

texinfo - 7.3
Ebuild name:

sys-apps/texinfo-7.3

Description

The GNU info program and utilities

Added to portage

2026-03-04

thread - 2.8.12
Ebuild name:

dev-tcltk/thread-2.8.12

Description

Tcl Thread extension

Added to portage

2026-03-04

thread - 3.0.5
Ebuild name:

dev-tcltk/thread-3.0.5

Description

Tcl Thread extension

Added to portage

2026-03-04

tifffile - 2026.3.3
Ebuild name:

dev-python/tifffile-2026.3.3

Description

Read and write TIFF files

Added to portage

2026-03-04

timezone-data - 2026a
Ebuild name:

sys-libs/timezone-data-2026a

Description

Timezone data (/usr/share/zoneinfo) and utilities (tzselect/zic/zdump)

Added to portage

2026-03-04

tkcvs - 9.4.9
Ebuild name:

dev-vcs/tkcvs-9.4.9

Description

Tcl/Tk-based graphical interface to CVS with Subversion support

Added to portage

2026-03-04

tkdnd - 2.9.5
Ebuild name:

dev-tcltk/tkdnd-2.9.5

Description

Adds native drag & drop capabilities to tk toolkit

Added to portage

2026-03-04

tkimg - 2.1.0-r1
Ebuild name:

dev-tcltk/tkimg-2.1.0-r1

Description

Adds a lot of image formats to Tcl/Tk

Added to portage

2026-03-04

tox - 4.47.2
Ebuild name:

dev-python/tox-4.47.2

Description

virtualenv-based automation of test activities

Added to portage

2026-03-04

translate-toolkit - 3.19.3
Ebuild name:

dev-python/translate-toolkit-3.19.3

Description

Toolkit to convert between many translation formats

Added to portage

2026-03-04

uv - 0.10.8
Ebuild name:

dev-python/uv-0.10.8

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-03-04

uv-build - 0.10.8
Ebuild name:

dev-python/uv-build-0.10.8

Description

PEP517 uv build backend

Added to portage

2026-03-04

vanilla-sources - 5.10.252
Ebuild name:

sys-kernel/vanilla-sources-5.10.252

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

vanilla-sources - 5.15.202
Ebuild name:

sys-kernel/vanilla-sources-5.15.202

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

vanilla-sources - 6.1.165
Ebuild name:

sys-kernel/vanilla-sources-6.1.165

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

vanilla-sources - 6.12.75
Ebuild name:

sys-kernel/vanilla-sources-6.12.75

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

vanilla-sources - 6.18.16
Ebuild name:

sys-kernel/vanilla-sources-6.18.16

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

vanilla-sources - 6.19.6
Ebuild name:

sys-kernel/vanilla-sources-6.19.6

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

vanilla-sources - 6.6.128
Ebuild name:

sys-kernel/vanilla-sources-6.6.128

Description

Full sources for the Linux kernel

Added to portage

2026-03-04

wacomtablet - 6.6.2
Ebuild name:

kde-plasma/wacomtablet-6.6.2

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2026-03-04

with-editor - 3.4.9
Ebuild name:

app-emacs/with-editor-3.4.9

Description

Use the Emacsclient as the of child processes

Added to portage

2026-03-04

xdg-desktop-portal-kde - 6.6.2
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.6.2

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2026-03-04

xmldiff - 2.7.0
Ebuild name:

app-text/xmldiff-2.7.0

Description

Tool that figures out the differences between two similar XML files

Added to portage

2026-03-04

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