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:

82370

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Speeding up the boot process (next generation)

The idea is to preload the useful files into kernel buffer cache before they are needed. Since I/O can happen parallel to the other CPU intensive tasks during bootup, this leads to faster bootup and faster startup time for your chosen applications. Other projects use static lists to preload the files.

This tutorial uses an automated process of generating the "useful" prefetch database.

This is /etc/init.d/my-readahead.
Code:

#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
        before syslog-ng
}

start() {
        ebegin "Starting readahead ROYALE"
        cat /etc/conf.d/* > /dev/null 2>&1 &
        cat /usr/lib/gconv/gconv-modules.cache > /dev/null 2>&1 &
        cat /usr/share/icons/gnome/icon-theme.cache > /dev/null 2>&1 &
        cat /usr/share/icons/hicolor/icon-theme.cache > /dev/null 2>&1 &
        cat `cat /etc/conf.d/sofile-list.load` > /dev/null 2>&1 &
        if [ -f /forcesampler ];then
                /usr/sbin/sample-init-process /etc/conf.d/sofile-list.load &
                rm -f /forcesampler
        fi 
        eend 0
}

stop() {
        eend 0
}

The executable shell script /usr/sbin/sample-init-process:
Code:

 #!/bin/bash
final_db="$1"

# total number of lists to keep in /etc/conf.d/
total_to_keep=4

# total number of samples to make in /forcesampler boot.
# It will take twice this amount of seconds to finish sampling.
total_samples_per_boot=200

# touch empty file if not there
[ ! -f "$final_db" ] && touch "$final_db"

let i=0
while [ "$i" -ne "$total_to_keep" ] ; do
        if [ ! -f "$final_db$i" ] ; then
                break;
        else
                j=$((i+1))
                if [ "$j" = "$total_to_keep" ] ;then
                        j=0
                fi
                if [ -f "$final_db$j" -a "$final_db$i" -nt "$final_db$j" ];then
                        i=$((j))
                        break;
                fi
        fi
        i=$((i+1))
done
if [ "$i" = "$total_to_keep" ] ;then
        i=0
fi

slot="$i"
cp "$final_db" "$final_db$i"

function collect_sample()
{
        lsof | awk '{if ($5=="REG") {if (match($9,".so") || match($9,".conf") \
        || match($9,"/bin/") || match($9,"ttf") || match($9,"libexec")) \
        print $9}}' | sort | uniq >> $1
}

collect_sample /tmp/init_sample1

i=0 
while [ "$i" -ne "$total_samples_per_boot" ] ; do
        collect_sample /tmp/init_sample2
        cat /tmp/init_sample1 /tmp/init_sample2 | sort | uniq > /tmp/init_sample3
        mv /tmp/init_sample3 /tmp/init_sample1
        sleep 1
        i=$((i+1))
done

cat /tmp/init_sample1 "$final_db$slot" | sort | uniq > "$final_db"

rm -f /tmp/init_sample[123]
And then do this:
Code:
chmod +x /usr/sbin/sample-init-process
rc-update add my-readahead default
touch /forcesampler

What you have done is asked my-readahead to create a sampler process which samples what files (fonts, binaries, libraries, configs) are in use, every second. It collects 200 samples (will be busy for at least 10 minutes after boot) and keeps updating the database with a list of useful files.

Once you boot after this the first time, you will probably see a slow down because its collecting samples for use on the next and subsequent boots. Use your system as you normally would. Open firefox, gaim, OO or whatever. Once the sampler script has finished ('ps -aef|grep sample-init-process' will tell you if its running), reboot. Now this and all subsequent boots will be much faster.

If it takes too long for the sample-init-process to finish, reduce the total_samples_per_boot variable in the sampler script to 100 and try again by touching /forcesampler.

In future, whenever you feel like updating the prefetch database, just 'touch /forcesampler' and database will be updated on next reboot.

based on http://forums.gentoo.org/viewtopic-t-478491.html, some script modifications done.

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-12-10
async-pool - 0.11.1
Ebuild name:

dev-ruby/async-pool-0.11.1

Description

A singleplex and multiplex resource pool for implementing robust clients

Added to portage

2025-12-10

aurorae - 6.5.4
Ebuild name:

kde-plasma/aurorae-6.5.4

Description

Themeable window decoration for KWin

Added to portage

2025-12-10

bluedevil - 6.5.4
Ebuild name:

kde-plasma/bluedevil-6.5.4

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-12-10

breeze - 6.5.4
Ebuild name:

kde-plasma/breeze-6.5.4

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-12-10

breeze-grub - 6.5.4
Ebuild name:

kde-plasma/breeze-grub-6.5.4

Description

Breeze theme for GRUB

Added to portage

2025-12-10

breeze-gtk - 6.5.4
Ebuild name:

kde-plasma/breeze-gtk-6.5.4

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-12-10

breeze-plymouth - 6.5.4
Ebuild name:

kde-plasma/breeze-plymouth-6.5.4

Description

Breeze theme for Plymouth

Added to portage

2025-12-10

claude-code - 2.0.62
Ebuild name:

dev-util/claude-code-2.0.62

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-12-10

ctags - 6.2.1
Ebuild name:

dev-util/ctags-6.2.1

Description

Exuberant Ctags creates tags files for code browsing in editors

Added to portage

2025-12-10

discover - 6.5.4
Ebuild name:

kde-plasma/discover-6.5.4

Description

KDE Plasma resources management GUI

Added to portage

2025-12-10

drkonqi - 6.5.4
Ebuild name:

kde-plasma/drkonqi-6.5.4

Description

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

Added to portage

2025-12-10

faker - 3.5.3
Ebuild name:

dev-ruby/faker-3.5.3

Description

A library for generating fake data such as names, addresses, and phone numbers

Added to portage

2025-12-10

flatpak-kcm - 6.5.4
Ebuild name:

kde-plasma/flatpak-kcm-6.5.4

Description

Flatpak Permissions Management KCM

Added to portage

2025-12-10

io-endpoint - 0.16.0
Ebuild name:

dev-ruby/io-endpoint-0.16.0

Description

Provides a separation of concerns interface for IO endpoints

Added to portage

2025-12-10

kactivitymanagerd - 6.5.4
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.4

Description

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

Added to portage

2025-12-10

kde-cli-tools - 6.5.4
Ebuild name:

kde-plasma/kde-cli-tools-6.5.4

Description

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

Added to portage

2025-12-10

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

kde-plasma/kde-cli-tools-common-6.5.4

Description

Added to portage

2025-12-10

kde-gtk-config - 6.5.4
Ebuild name:

kde-plasma/kde-gtk-config-6.5.4

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-12-10

kdecoration - 6.5.4
Ebuild name:

kde-plasma/kdecoration-6.5.4

Description

Plugin based library to create window decorations

Added to portage

2025-12-10

kdeplasma-addons - 6.5.4
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.4

Description

Extra Plasma applets and engines

Added to portage

2025-12-10

kdesu-gui - 6.5.4
Ebuild name:

kde-plasma/kdesu-gui-6.5.4

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-12-10

keditfiletype - 6.5.4
Ebuild name:

kde-plasma/keditfiletype-6.5.4

Description

File Type Editor

Added to portage

2025-12-10

kgamma - 6.5.4
Ebuild name:

kde-plasma/kgamma-6.5.4

Description

Screen gamma values kcontrol module

Added to portage

2025-12-10

kglobalacceld - 6.5.4
Ebuild name:

kde-plasma/kglobalacceld-6.5.4

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-12-10

kinfocenter - 6.5.4
Ebuild name:

kde-plasma/kinfocenter-6.5.4

Description

Utility providing information about the computer hardware

Added to portage

2025-12-10

kmenuedit - 6.5.4
Ebuild name:

kde-plasma/kmenuedit-6.5.4

Description

KDE Plasma menu editor

Added to portage

2025-12-10

knighttime - 6.5.4
Ebuild name:

kde-plasma/knighttime-6.5.4

Description

Helpers for scheduling the dark-light cycle

Added to portage

2025-12-10

kpipewire - 6.5.4
Ebuild name:

kde-plasma/kpipewire-6.5.4

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-12-10

krdp - 6.5.4
Ebuild name:

kde-plasma/krdp-6.5.4

Description

Library and examples for creating an RDP server

Added to portage

2025-12-10

kscreen - 6.5.4
Ebuild name:

kde-plasma/kscreen-6.5.4

Description

KDE Plasma screen management

Added to portage

2025-12-10

kscreenlocker - 6.5.4
Ebuild name:

kde-plasma/kscreenlocker-6.5.4

Description

Library and components for secure lock screen architecture

Added to portage

2025-12-10

ksshaskpass - 6.5.4
Ebuild name:

kde-plasma/ksshaskpass-6.5.4

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-12-10

ksystemstats - 6.5.4
Ebuild name:

kde-plasma/ksystemstats-6.5.4

Description

Plugin-based system monitoring daemon

Added to portage

2025-12-10

kwallet-pam - 6.5.4
Ebuild name:

kde-plasma/kwallet-pam-6.5.4

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-12-10

kwayland - 6.5.4
Ebuild name:

kde-plasma/kwayland-6.5.4

Description

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

Added to portage

2025-12-10

kwayland-integration - 6.5.4
Ebuild name:

kde-plasma/kwayland-integration-6.5.4

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-12-10

kwin - 6.5.4
Ebuild name:

kde-plasma/kwin-6.5.4

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-12-10

kwin-x11 - 6.5.4
Ebuild name:

kde-plasma/kwin-x11-6.5.4

Description

Flexible, composited X window manager

Added to portage

2025-12-10

kwrited - 6.5.4
Ebuild name:

kde-plasma/kwrited-6.5.4

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-12-10

layer-shell-qt - 6.5.4
Ebuild name:

kde-plasma/layer-shell-qt-6.5.4

Description

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

Added to portage

2025-12-10

libkscreen - 6.5.4
Ebuild name:

kde-plasma/libkscreen-6.5.4

Description

Plasma screen management library

Added to portage

2025-12-10

libksysguard - 6.5.4
Ebuild name:

kde-plasma/libksysguard-6.5.4

Description

Task management and system monitoring library

Added to portage

2025-12-10

libplasma - 6.5.4
Ebuild name:

kde-plasma/libplasma-6.5.4

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-12-10

milou - 6.5.4
Ebuild name:

kde-plasma/milou-6.5.4

Description

Dedicated search application built on top of Baloo

Added to portage

2025-12-10

ocean-sound-theme - 6.5.4
Ebuild name:

kde-plasma/ocean-sound-theme-6.5.4

Description

Ocean Sound Theme for Plasma

Added to portage

2025-12-10

oxygen - 6.5.4
Ebuild name:

kde-plasma/oxygen-6.5.4

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-12-10

oxygen-sounds - 6.5.4
Ebuild name:

kde-plasma/oxygen-sounds-6.5.4

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-12-10

qtdeclarative - 5.15.18-r1
Ebuild name:

dev-qt/qtdeclarative-5.15.18-r1

Description

The QML and Quick modules for the Qt5 framework

Added to portage

2025-12-10

rb_sys - 0.9.119
Ebuild name:

dev-ruby/rb_sys-0.9.119

Description

Easily build Ruby native extensions in Rust

Added to portage

2025-12-10

worldofpadman - 1.7.0-r2
Ebuild name:

games-fps/worldofpadman-1.7.0-r2

Description

Cartoon style multiplayer first-person shooter

Added to portage

2025-12-10

2025-12-09
adareducer - 0.20250402
Ebuild name:

dev-ada/adareducer-0.20250402

Description

Ada Reducer

Added to portage

2025-12-09

alsa-tools - 1.2.15
Ebuild name:

media-sound/alsa-tools-1.2.15

Description

Advanced Linux Sound Architecture tools

Added to portage

2025-12-09

alsa-ucm-conf - 1.2.15
Ebuild name:

media-libs/alsa-ucm-conf-1.2.15

Description

ALSA ucm configuration files

Added to portage

2025-12-09

alsa-utils - 1.2.15
Ebuild name:

media-sound/alsa-utils-1.2.15

Description

Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)

Added to portage

2025-12-09

async - 2.35.0
Ebuild name:

dev-ruby/async-2.35.0

Description

A concurrency framework for Ruby

Added to portage

2025-12-09

awscli - 1.43.11
Ebuild name:

app-admin/awscli-1.43.11

Description

Universal Command Line Environment for AWS

Added to portage

2025-12-09

boto3 - 1.42.5
Ebuild name:

dev-python/boto3-1.42.5

Description

The AWS SDK for Python

Added to portage

2025-12-09

botocore - 1.42.5
Ebuild name:

dev-python/botocore-1.42.5

Description

Low-level, data-driven core of boto 3

Added to portage

2025-12-09

caffe2 - 2.8.0-r2
Ebuild name:

sci-ml/caffe2-2.8.0-r2

Description

A deep learning framework

Added to portage

2025-12-09

caffe2 - 2.9.0-r3
Ebuild name:

sci-ml/caffe2-2.9.0-r3

Description

A deep learning framework

Added to portage

2025-12-09

caffe2 - 2.9.1-r1
Ebuild name:

sci-ml/caffe2-2.9.1-r1

Description

A deep learning framework

Added to portage

2025-12-09

coolio - 1.9.1
Ebuild name:

dev-ruby/coolio-1.9.1

Description

A high performance event framework for Ruby which uses the libev C library

Added to portage

2025-12-09

coverage - 7.13.0
Ebuild name:

dev-python/coverage-7.13.0

Description

Code coverage measurement for Python

Added to portage

2025-12-09

cpp-httplib - 0.28.0
Ebuild name:

dev-cpp/cpp-httplib-0.28.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2025-12-09

discord - 0.0.118
Ebuild name:

net-im/discord-0.0.118

Description

All-in-one voice and text chat for gamers

Added to portage

2025-12-09

discord - 0.0.118-r1
Ebuild name:

net-im/discord-0.0.118-r1

Description

All-in-one voice and text chat for gamers

Added to portage

2025-12-09

element - 1.12.6
Ebuild name:

www-apps/element-1.12.6

Description

A glossy Matrix collaboration client for the web

Added to portage

2025-12-09

fetchmail - 6.6.1
Ebuild name:

net-mail/fetchmail-6.6.1

Description

the legendary remote-mail retrieval and forwarding utility

Added to portage

2025-12-09

findimports - 3.0.0
Ebuild name:

dev-python/findimports-3.0.0

Description

Python module import analysis tool

Added to portage

2025-12-09

firefox - 140.6.0
Ebuild name:

www-client/firefox-140.6.0

Description

Firefox Web Browser

Added to portage

2025-12-09

firefox - 146.0
Ebuild name:

www-client/firefox-146.0

Description

Firefox Web Browser

Added to portage

2025-12-09

firefox-bin - 140.6.0
Ebuild name:

www-client/firefox-bin-140.6.0

Description

Firefox Web Browser

Added to portage

2025-12-09

free42 - 3.3.10
Ebuild name:

app-emulation/free42-3.3.10

Description

An HP-42S Calculator Simulator

Added to portage

2025-12-09

indexed-gzip - 1.10.3
Ebuild name:

dev-python/indexed-gzip-1.10.3

Description

Fast random access of gzip files in Python

Added to portage

2025-12-09

inspectrum - 0.4.0
Ebuild name:

net-wireless/inspectrum-0.4.0

Description

Tool for analysing captured signals from software-defined radio recei

Added to portage

2025-12-09

irqbalance - 1.9.5
Ebuild name:

sys-apps/irqbalance-1.9.5

Description

Distribute hardware interrupts across processors on a multiprocessor syst

Added to portage

2025-12-09

kissfft - 131.2.0
Ebuild name:

sci-libs/kissfft-131.2.0

Description

Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid

Added to portage

2025-12-09

libpng - 1.6.53
Ebuild name:

media-libs/libpng-1.6.53

Description

Portable Network Graphics library

Added to portage

2025-12-09

moodle - 4.4.12
Ebuild name:

www-apps/moodle-4.4.12

Description

The Moodle Course Management System

Added to portage

2025-12-09

moodle - 4.5.8
Ebuild name:

www-apps/moodle-4.5.8

Description

The Moodle Course Management System

Added to portage

2025-12-09

moodle - 5.0.4
Ebuild name:

www-apps/moodle-5.0.4

Description

The Moodle Course Management System

Added to portage

2025-12-09

networkx - 3.6.1
Ebuild name:

dev-python/networkx-3.6.1

Description

Python tools to manipulate graphs and complex networks

Added to portage

2025-12-09

nx - 3.5.99.27-r3
Ebuild name:

net-misc/nx-3.5.99.27-r3

Description

NX compression technology core libraries

Added to portage

2025-12-09

onnx - 1.18.0-r1
Ebuild name:

sci-ml/onnx-1.18.0-r1

Description

Open Neural Network Exchange (ONNX)

Added to portage

2025-12-09

persist - 0.8
Ebuild name:

app-emacs/persist-0.8

Description

Persist variables between Emacs sessions

Added to portage

2025-12-09

plus42 - 1.3.12
Ebuild name:

app-emulation/plus42-1.3.12

Description

An Enhanced HP-42S Calculator Simulator

Added to portage

2025-12-09

pyghmi - 1.6.9
Ebuild name:

dev-python/pyghmi-1.6.9

Description

A pure python implementation of IPMI protocol

Added to portage

2025-12-09

pyqt5-sip - 12.17.2
Ebuild name:

dev-python/pyqt5-sip-12.17.2

Description

sip extension module for PyQt5

Added to portage

2025-12-09

pyqt6-sip - 13.10.3
Ebuild name:

dev-python/pyqt6-sip-13.10.3

Description

sip module support for PyQt6

Added to portage

2025-12-09

qt3d - 6.11.9999
Ebuild name:

dev-qt/qt3d-6.11.9999

Description

3D rendering module for the Qt6 framework

Added to portage

2025-12-09

qt5compat - 6.11.9999
Ebuild name:

dev-qt/qt5compat-6.11.9999

Description

Qt module containing the unsupported Qt 5 APIs

Added to portage

2025-12-09

qtbase - 6.11.9999
Ebuild name:

dev-qt/qtbase-6.11.9999

Description

Cross-platform application development framework

Added to portage

2025-12-09

qtcharts - 6.11.9999
Ebuild name:

dev-qt/qtcharts-6.11.9999

Description

Chart component library for the Qt6 framework

Added to portage

2025-12-09

qtconnectivity - 6.11.9999
Ebuild name:

dev-qt/qtconnectivity-6.11.9999

Description

Bluetooth and NFC support library for the Qt6 framework

Added to portage

2025-12-09

qtdeclarative - 6.11.9999
Ebuild name:

dev-qt/qtdeclarative-6.11.9999

Description

Qt Declarative (Quick 2)

Added to portage

2025-12-09

qtgraphs - 6.11.9999
Ebuild name:

dev-qt/qtgraphs-6.11.9999

Description

Graphs component library for the Qt6 framework

Added to portage

2025-12-09

qthttpserver - 6.11.9999
Ebuild name:

dev-qt/qthttpserver-6.11.9999

Description

HTTP server functionality for the Qt6 framework

Added to portage

2025-12-09

qtimageformats - 6.11.9999
Ebuild name:

dev-qt/qtimageformats-6.11.9999

Description

Additional format plugins for the Qt image I/O system

Added to portage

2025-12-09

qtlanguageserver - 6.11.9999
Ebuild name:

dev-qt/qtlanguageserver-6.11.9999

Description

Implementation of the Language Server Protocol for Qt

Added to portage

2025-12-09

qtlocation - 6.11.9999
Ebuild name:

dev-qt/qtlocation-6.11.9999

Description

Location (places, maps, navigation) library for the Qt6 framework

Added to portage

2025-12-09

qtmultimedia - 6.11.9999
Ebuild name:

dev-qt/qtmultimedia-6.11.9999

Description

Multimedia (audio, video, radio, camera) library for the Qt6 framewor

Added to portage

2025-12-09

qtnetworkauth - 6.11.9999
Ebuild name:

dev-qt/qtnetworkauth-6.11.9999

Description

Network authorization library for the Qt6 framework

Added to portage

2025-12-09

qtpositioning - 6.11.9999
Ebuild name:

dev-qt/qtpositioning-6.11.9999

Description

Physical position determination library for the Qt6 framework

Added to portage

2025-12-09

qtquick3d - 6.11.9999
Ebuild name:

dev-qt/qtquick3d-6.11.9999

Description

Qt module and API for defining 3D content in Qt QuickTools

Added to portage

2025-12-09

qtquicktimeline - 6.11.9999
Ebuild name:

dev-qt/qtquicktimeline-6.11.9999

Description

Qt module for keyframe-based timeline construction

Added to portage

2025-12-09

qtremoteobjects - 6.11.9999
Ebuild name:

dev-qt/qtremoteobjects-6.11.9999

Description

Inter-Process Communication (IPC) library for the Qt6 framework

Added to portage

2025-12-09

qtscxml - 6.11.9999
Ebuild name:

dev-qt/qtscxml-6.11.9999

Description

State Chart XML (SCXML) support library for the Qt6 framework

Added to portage

2025-12-09

qtsensors - 6.11.9999
Ebuild name:

dev-qt/qtsensors-6.11.9999

Description

Hardware sensor access library for the Qt6 framework

Added to portage

2025-12-09

qtserialbus - 6.11.9999
Ebuild name:

dev-qt/qtserialbus-6.11.9999

Description

Qt module to access CAN, ModBus, and other industrial serial buses and

Added to portage

2025-12-09

qtserialport - 6.11.9999
Ebuild name:

dev-qt/qtserialport-6.11.9999

Description

Serial port abstraction library for the Qt6 framework

Added to portage

2025-12-09

qtshadertools - 6.11.9999
Ebuild name:

dev-qt/qtshadertools-6.11.9999

Description

Qt APIs and Tools for Graphics Pipelines

Added to portage

2025-12-09

qtspeech - 6.11.9999
Ebuild name:

dev-qt/qtspeech-6.11.9999

Description

Text-to-speech library for the Qt6 framework

Added to portage

2025-12-09

qtsvg - 6.11.9999
Ebuild name:

dev-qt/qtsvg-6.11.9999

Description

SVG rendering library for the Qt6 framework

Added to portage

2025-12-09

qttools - 6.11.9999
Ebuild name:

dev-qt/qttools-6.11.9999

Description

Qt Tools Collection

Added to portage

2025-12-09

qttranslations - 6.11.9999
Ebuild name:

dev-qt/qttranslations-6.11.9999

Description

Translation files for the Qt6 framework

Added to portage

2025-12-09

qtvirtualkeyboard - 6.11.9999
Ebuild name:

dev-qt/qtvirtualkeyboard-6.11.9999

Description

Customizable input framework and virtual keyboard for Qt

Added to portage

2025-12-09

qtwayland - 6.11.9999
Ebuild name:

dev-qt/qtwayland-6.11.9999

Description

Toolbox for making Qt based Wayland compositors

Added to portage

2025-12-09

qtwebchannel - 6.11.9999
Ebuild name:

dev-qt/qtwebchannel-6.11.9999

Description

Qt WebChannel

Added to portage

2025-12-09

qtwebengine - 6.11.9999
Ebuild name:

dev-qt/qtwebengine-6.11.9999

Description

Library for rendering dynamic web content in Qt6 C++ and QML applicati

Added to portage

2025-12-09

qtwebsockets - 6.11.9999
Ebuild name:

dev-qt/qtwebsockets-6.11.9999

Description

Implementation of the WebSocket protocol for the Qt6 framework

Added to portage

2025-12-09

qtwebview - 6.11.9999
Ebuild name:

dev-qt/qtwebview-6.11.9999

Description

Module for displaying web content in a QML application using the Qt6 fra

Added to portage

2025-12-09

sip - 6.15.0
Ebuild name:

dev-python/sip-6.15.0

Description

Python bindings generator for C/C++ libraries

Added to portage

2025-12-09

sphinx-autodoc-typehints - 3.6.0
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.6.0

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2025-12-09

steve - 1.1.0
Ebuild name:

dev-build/steve-1.1.0

Description

A simple jobserver for Gentoo

Added to portage

2025-12-09

timeout - 0.5.0
Ebuild name:

dev-ruby/timeout-0.5.0

Description

Provides a framework for message digest libraries

Added to portage

2025-12-09

tins - 1.48.0
Ebuild name:

dev-ruby/tins-1.48.0

Description

All the stuff that isn't good enough for a real library

Added to portage

2025-12-09

tmuxp - 1.61.0
Ebuild name:

app-misc/tmuxp-1.61.0

Description

tmux session manager. built on libtmux

Added to portage

2025-12-09

urllib3 - 2.6.1
Ebuild name:

dev-python/urllib3-2.6.1

Description

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

Added to portage

2025-12-09

vcrpy - 8.1.0
Ebuild name:

dev-python/vcrpy-8.1.0

Description

Automatically mock your HTTP interactions to simplify and speed up testing

Added to portage

2025-12-09

zoom - 6.6.11.6052
Ebuild name:

net-im/zoom-6.6.11.6052

Description

Video conferencing and web conferencing service

Added to portage

2025-12-09

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