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:

87118

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: Tutorials per portage category->net-misc->openvpn

OpenVPN primer


There are as many advantages to VPN tunnels as there are different VPN scenarios. One easy implementation is the "OpenVPN via tun-device" solution. An example: you'd like to connect your laptop to your LAN at home so that you can use your mail client without reconfiguring it anytime you switch from home to internet and back. Let's say your mail-server is 192.168.1.10 in your LAN (192.168.1.0/24) at home, and you have got a router/firewall providing access to the Internet. You connect from work or school and want to read mail. OpenVPN can create two virtual devices for you when connecting two computers through an encrypted tunnel. Naturally you then have the possibility of forwarding traffic into the networks behind them, and thus would be "virtually connected" to your LAN behind the firewall. To enable this, either your firewall or a server behind it should run OpenVPN (if you choose a server in your LAN, you'll have to forward the destination port to the OpenVPN server).

Here's what you need to do:
Code Listing 1: Enable the tun module in your kernel: Kernel config - tun module
          [*] Networking support    
Networking options --->
[ ] Amateur Radio support --->
< > IrDA (infrared) subsystem support --->
< > Bluetooth subsystem support --->
[*] Network device support
< > Dummy net driver support
< > Bonding driver support
< > EQL (serial line load balancing) support
Universal TUN/TAP device driver support
// This option must be enabled


Make sure this module exists and can be loaded. Next, install OpenVPN and it dependencies.
Code Listing 2: Install OpenVPN
emerge openvpn

Now on both server and client, create a directory for your configuration:

Code Listing 3: Make directory
mkdir /etc/openvpn    
mkdir /etc/openvpn/myhomelan


Inside that directory, create a shared key for your VPN session and copy that key to the client's directory, /etc/openvpn/myhomelan.

Code Listing 4: Generate shared key
cd /etc/openvpn/myhomelan    
openvpn --genkey --secret myhomelan-key.txt


Now for the tricky part, the routing. It is important that the two tun devices on the client and server use IP addresses from the same subnet. The configuration files shown below list the type of device, the two end-points of the tunnel, the compression method and the UDP-port on which the tunnel is established. Finally privileges are dropped to user and group as listed:

Code Listing 5: Server-side configuration file /etc/openvpn/myhomelan/local.conf
dev tun    
ifconfig 172.16.1.1 172.16.1.20 // IP of the local
// tun device and its peer
secret /etc/openvpn/myhomelan/myhomelan-key.txt
comp-lzo
port 5000
user nobody
group nobody


The client's configuration needs the tunnel's destination address. This is often a dynamic DNS address, sometimes a fixed IP, depending on your ISP. You also need to route to your home LAN (192.168.1.0 in our example). You can call a shell script from the configuration file that accordingly sets a route.

Code Listing 6: Client-side configuration file /etc/openvpn/myhomelan/local.conf
remote    // or your VPN 
// server's external IP if you have a fixed one
dev tun
ifconfig 172.16.1.20 172.16.1.1 // IP of the local tun
// device and its peer
secret /etc/openvpn/myhomelan/myhomelan-key.txt
comp-lzo
port 5000
user nobody
group nobody
up /etc/openvpn/myhomelan/route.sh // sets up the route
//to the network behind the VPN server


The route command would need to set the client's gateway for the network 192.168.1.0 to its peer's address (172.16.1.1 in our setup).

Code Listing 7: /etc/openvpn/myhomelan/route.sh
#!/bin/bash    
route add -net 192.168.1.0 netmask 255.255.255.0 gw 172.16.1.1


That's it. Start OpenVPN on the server and the client, and check the devices with ifconfig and the routes with route -n. Success!

From http://www.gentoo.org/news/en/gwn/20041011-newsletter.xml
rate this article:
current rating: average rating: 1.5 (69 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-07-22
CSS-Minifier-XS - 0.140.0
Ebuild name:

dev-perl/CSS-Minifier-XS-0.140.0

Description

XS based CSS minifier

Added to portage

2026-07-22

Config-IniFiles - 3.1.0
Ebuild name:

dev-perl/Config-IniFiles-3.1.0

Description

Module for reading .ini-style configuration files

Added to portage

2026-07-22

DBI - 1.651.0
Ebuild name:

dev-perl/DBI-1.651.0

Description

Database independent interface for Perl

Added to portage

2026-07-22

JavaScript-Minifier-XS - 0.160.0
Ebuild name:

dev-perl/JavaScript-Minifier-XS-0.160.0

Description

XS based JavaScript minifier

Added to portage

2026-07-22

List-SomeUtils-XS - 0.590.0
Ebuild name:

dev-perl/List-SomeUtils-XS-0.590.0

Description

XS implementation for List

Added to portage

2026-07-22

awscli - 1.45.53
Ebuild name:

app-admin/awscli-1.45.53

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-22

bind - 9.20.24
Ebuild name:

net-dns/bind-9.20.24

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2026-07-22

boto3 - 1.43.53
Ebuild name:

dev-python/boto3-1.43.53

Description

The AWS SDK for Python

Added to portage

2026-07-22

botocore - 1.43.53
Ebuild name:

dev-python/botocore-1.43.53

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-22

ceres-solver - 2.2.0-r2
Ebuild name:

sci-libs/ceres-solver-2.2.0-r2

Description

Nonlinear least-squares minimizer

Added to portage

2026-07-22

clazy - 1.17.1-r1
Ebuild name:

dev-util/clazy-1.17.1-r1

Description

Compiler plugin which allows clang to understand Qt semantics

Added to portage

2026-07-22

cryptsetup - 2.8.7
Ebuild name:

sys-fs/cryptsetup-2.8.7

Description

Tool to setup encrypted devices with dm-crypt

Added to portage

2026-07-22

dash - 0.5.13.5
Ebuild name:

app-shells/dash-0.5.13.5

Description

Debian Almquist Shell

Added to portage

2026-07-22

filelock - 3.32.0
Ebuild name:

dev-python/filelock-3.32.0

Description

A platform independent file lock for Python

Added to portage

2026-07-22

fish - 4.8.1
Ebuild name:

app-shells/fish-4.8.1

Description

Friendly Interactive SHell

Added to portage

2026-07-22

freerdp - 3.30.0
Ebuild name:

net-misc/freerdp-3.30.0

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-07-22

google-auth - 2.56.2
Ebuild name:

dev-python/google-auth-2.56.2

Description

Google Authentication Library

Added to portage

2026-07-22

hcloud - 2.23.0
Ebuild name:

dev-python/hcloud-2.23.0

Description

Official Hetzner Cloud python library

Added to portage

2026-07-22

jupyterlab - 4.5.10
Ebuild name:

dev-python/jupyterlab-4.5.10

Description

JupyterLab computational environment

Added to portage

2026-07-22

jupyterlab - 4.6.2
Ebuild name:

dev-python/jupyterlab-4.6.2

Description

JupyterLab computational environment

Added to portage

2026-07-22

kdeconnect - 26.04.3-r2
Ebuild name:

kde-misc/kdeconnect-26.04.3-r2

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2026-07-22

kdenetwork-meta - 26.04.3-r1
Ebuild name:

kde-apps/kdenetwork-meta-26.04.3-r1

Description

kdenetwork - merge this to pull in all kdenetwork-derived packa

Added to portage

2026-07-22

kirigami-app-components - 1.0.1
Ebuild name:

dev-libs/kirigami-app-components-1.0.1

Description

Kirigami addons and modules necessary to do a full featured

Added to portage

2026-07-22

libmysofa - 1.3.5
Ebuild name:

media-libs/libmysofa-1.3.5

Description

Library for reading AES SOFA (Spatially Oriented Format for Acoustics) f

Added to portage

2026-07-22

meson - 1.12.0_rc2
Ebuild name:

dev-build/meson-1.12.0_rc2

Description

Open source build system

Added to portage

2026-07-22

modus-themes - 5.3.0
Ebuild name:

app-emacs/modus-themes-5.3.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-07-22

pkgconf - 3.0.4
Ebuild name:

dev-util/pkgconf-3.0.4

Description

pkg-config compatible replacement with no dependencies other than C99

Added to portage

2026-07-22

platformdirs - 4.11.0
Ebuild name:

dev-python/platformdirs-4.11.0

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-07-22

postfix - 3.12_pre20260721
Ebuild name:

mail-mta/postfix-3.12_pre20260721

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-07-22

pyproject-api - 1.11.0
Ebuild name:

dev-python/pyproject-api-1.11.0

Description

API to interact with the python pyproject.toml based projects

Added to portage

2026-07-22

pytest-env - 1.7.0
Ebuild name:

dev-python/pytest-env-1.7.0

Description

pytest plugin that allows you to add environment variables

Added to portage

2026-07-22

python-discovery - 1.5.0
Ebuild name:

dev-python/python-discovery-1.5.0

Description

Python interpreter discovery

Added to portage

2026-07-22

seatd - 0.9.3-r1
Ebuild name:

sys-auth/seatd-0.9.3-r1

Description

Minimal seat management daemon and universal library

Added to portage

2026-07-22

setuptools-scm - 10.2.1
Ebuild name:

dev-python/setuptools-scm-10.2.1

Description

Manage versions by scm tags via setuptools

Added to portage

2026-07-22

skim - 5.4.0
Ebuild name:

app-misc/skim-5.4.0

Description

Command-line fuzzy finder

Added to portage

2026-07-22

soupsieve - 2.9.1
Ebuild name:

dev-python/soupsieve-2.9.1

Description

A modern CSS selector implementation for BeautifulSoup

Added to portage

2026-07-22

sphinx-autodoc-typehints - 3.13.0
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.13.0

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-07-22

subliminal - 2.7.0
Ebuild name:

media-video/subliminal-2.7.0

Description

Python library to search and download subtitles

Added to portage

2026-07-22

tox - 4.58.0
Ebuild name:

dev-python/tox-4.58.0

Description

virtualenv-based automation of test activities

Added to portage

2026-07-22

uv - 0.11.31
Ebuild name:

dev-python/uv-0.11.31

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-07-22

uv-build - 0.11.31
Ebuild name:

dev-python/uv-build-0.11.31

Description

PEP517 uv build backend

Added to portage

2026-07-22

virtualenv - 21.7.0
Ebuild name:

dev-python/virtualenv-21.7.0

Description

Virtual Python Environment builder

Added to portage

2026-07-22

wordpress - 6.8.6
Ebuild name:

www-apps/wordpress-6.8.6

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-07-22

wordpress - 6.9.5
Ebuild name:

www-apps/wordpress-6.9.5

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-07-22

xclipboard - 1.1.6
Ebuild name:

x11-apps/xclipboard-1.1.6

Description

interchange between cut buffer and selection

Added to portage

2026-07-22

xclock - 1.2.1
Ebuild name:

x11-apps/xclock-1.2.1

Description

analog / digital clock for X

Added to portage

2026-07-22

xkbprint - 1.0.8
Ebuild name:

x11-apps/xkbprint-1.0.8

Description

Print an XKB keyboard description

Added to portage

2026-07-22

xload - 1.2.1
Ebuild name:

x11-apps/xload-1.2.1

Description

system load average display for X

Added to portage

2026-07-22

xmodmap - 1.0.12
Ebuild name:

x11-apps/xmodmap-1.0.12

Description

utility for modifying keymaps and pointer button mappings in X

Added to portage

2026-07-22

xwininfo - 1.1.7
Ebuild name:

x11-apps/xwininfo-1.1.7

Description

window information utility for X

Added to portage

2026-07-22

2026-07-21
aiohttp - 3.14.2
Ebuild name:

dev-python/aiohttp-3.14.2

Description

HTTP client/server for asyncio

Added to portage

2026-07-21

awkward - 2.11.0
Ebuild name:

dev-python/awkward-2.11.0

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2026-07-21

awscli - 1.45.52
Ebuild name:

app-admin/awscli-1.45.52

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-21

awscli-bin - 2.36.4
Ebuild name:

app-admin/awscli-bin-2.36.4

Description

command line interface for Amazon Web Services

Added to portage

2026-07-21

boto3 - 1.43.52
Ebuild name:

dev-python/boto3-1.43.52

Description

The AWS SDK for Python

Added to portage

2026-07-21

botocore - 1.43.52
Ebuild name:

dev-python/botocore-1.43.52

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-21

bottom - 0.14.6
Ebuild name:

sys-process/bottom-0.14.6

Description

A graphical process/system monitor with a customizable interface

Added to portage

2026-07-21

bracex - 3.0.1
Ebuild name:

dev-python/bracex-3.0.1

Description

Bash style brace expansion for Python

Added to portage

2026-07-21

cfn-lint - 1.53.1
Ebuild name:

dev-python/cfn-lint-1.53.1

Description

CloudFormation Linter

Added to portage

2026-07-21

container-libs - 0.68.0-r1
Ebuild name:

app-containers/container-libs-0.68.0-r1

Description

Several utilities from the containers project

Added to portage

2026-07-21

containerd - 2.3.3
Ebuild name:

app-containers/containerd-2.3.3

Description

A daemon to control runC

Added to portage

2026-07-21

containers-shortnames - 2025.03.19_p20260615
Ebuild name:

app-containers/containers-shortnames-2025.03.19_p20260615

Description

Configures default shortnames (aliases) f

Added to portage

2026-07-21

dkms - 3.4.2
Ebuild name:

sys-kernel/dkms-3.4.2

Description

Dynamic Kernel Module Support

Added to portage

2026-07-21

dracut - 111-r2
Ebuild name:

sys-kernel/dracut-111-r2

Description

Generic initramfs generation tool

Added to portage

2026-07-21

faker - 40.32.0
Ebuild name:

dev-python/faker-40.32.0

Description

A Python package that generates fake data for you

Added to portage

2026-07-21

faust-cchardet - 3.0.0
Ebuild name:

dev-python/faust-cchardet-3.0.0

Description

High speed universal character encoding detector

Added to portage

2026-07-21

faust-cchardet - 3.0.0-r1
Ebuild name:

dev-python/faust-cchardet-3.0.0-r1

Description

High speed universal character encoding detector

Added to portage

2026-07-21

findbugs-annotations - 4.10.3
Ebuild name:

dev-java/findbugs-annotations-4.10.3

Description

Annotations the SpotBugs tool supports

Added to portage

2026-07-21

firefox - 140.13.0
Ebuild name:

www-client/firefox-140.13.0

Description

Firefox Web Browser

Added to portage

2026-07-21

firefox - 153.0
Ebuild name:

www-client/firefox-153.0

Description

Firefox Web Browser

Added to portage

2026-07-21

firefox-bin - 140.13.0
Ebuild name:

www-client/firefox-bin-140.13.0

Description

Firefox Web Browser

Added to portage

2026-07-21

firefox-l10n - 153.0
Ebuild name:

www-client/firefox-l10n-153.0

Description

Firefox Web Browser's translation files

Added to portage

2026-07-21

fuse-overlayfs - 1.17
Ebuild name:

sys-fs/fuse-overlayfs-1.17

Description

FUSE implementation for overlayfs

Added to portage

2026-07-21

ggml - 0.17.0
Ebuild name:

sci-ml/ggml-0.17.0

Description

Tensor library for machine learning

Added to portage

2026-07-21

gitpython - 3.1.53
Ebuild name:

dev-python/gitpython-3.1.53

Description

Library used to interact with Git repositories

Added to portage

2026-07-21

gradle-bin - 9.3.1-r1
Ebuild name:

dev-java/gradle-bin-9.3.1-r1

Description

A project automation and build tool with a Groovy based DSL

Added to portage

2026-07-21

hypothesis - 6.157.2
Ebuild name:

dev-python/hypothesis-6.157.2

Description

A library for property based testing

Added to portage

2026-07-21

icalendar - 7.2.2
Ebuild name:

dev-python/icalendar-7.2.2

Description

RFC 5545 compatible parser and generator of iCalendar files

Added to portage

2026-07-21

imageio - 2.37.4
Ebuild name:

dev-python/imageio-2.37.4

Description

Python library for reading and writing image data

Added to portage

2026-07-21

imaplib2 - 3.6
Ebuild name:

dev-python/imaplib2-3.6

Description

Threaded Python IMAP4 client

Added to portage

2026-07-21

imaplib2 - 9999
Ebuild name:

dev-python/imaplib2-9999

Description

Threaded Python IMAP4 client

Added to portage

2026-07-21

jdbc-postgresql - 42.7.13
Ebuild name:

dev-java/jdbc-postgresql-42.7.13

Description

Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database

Added to portage

2026-07-21

kdeconnect - 26.04.3-r1
Ebuild name:

kde-misc/kdeconnect-26.04.3-r1

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2026-07-21

kglobalacceld - 6.6.6-r1
Ebuild name:

kde-plasma/kglobalacceld-6.6.6-r1

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functiona

Added to portage

2026-07-21

kglobalacceld - 6.7.3-r1
Ebuild name:

kde-plasma/kglobalacceld-6.7.3-r1

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functiona

Added to portage

2026-07-21

kimageformats - 6.28.1
Ebuild name:

kde-frameworks/kimageformats-6.28.1

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-07-21

kirigami-addons - 1.13.1
Ebuild name:

dev-libs/kirigami-addons-1.13.1

Description

Visual end user components for Kirigami-based applications

Added to portage

2026-07-21

libebook - 0.1.4
Ebuild name:

app-text/libebook-0.1.4

Description

Library parsing various ebook formats

Added to portage

2026-07-21

libkscreen - 6.6.6-r1
Ebuild name:

kde-plasma/libkscreen-6.6.6-r1

Description

Plasma screen management library

Added to portage

2026-07-21

libkscreen - 6.7.3-r1
Ebuild name:

kde-plasma/libkscreen-6.7.3-r1

Description

Plasma screen management library

Added to portage

2026-07-21

libmwaw - 0.3.23
Ebuild name:

app-text/libmwaw-0.3.23

Description

Library parsing many pre-OSX MAC text formats

Added to portage

2026-07-21

lxc-templates - 3.0.4_p20260719
Ebuild name:

app-containers/lxc-templates-3.0.4_p20260719

Description

Old style template scripts for LXC

Added to portage

2026-07-21

mitmproxy-linux - 0.12.11
Ebuild name:

net-proxy/mitmproxy-linux-0.12.11

Description

mitmproxy's Rust bits (Linux-specific part)

Added to portage

2026-07-21

mitmproxy-rs - 0.12.11
Ebuild name:

net-proxy/mitmproxy-rs-0.12.11

Description

mitmproxy's Rust bits

Added to portage

2026-07-21

modus-themes - 5.2.0
Ebuild name:

app-emacs/modus-themes-5.2.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-07-21

modus-themes - 5.3.0
Ebuild name:

app-emacs/modus-themes-5.3.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-07-21

modus-themes - 9999
Ebuild name:

app-emacs/modus-themes-9999

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-07-21

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-07-21

node_exporter - 1.12.1
Ebuild name:

app-metrics/node_exporter-1.12.1

Description

Prometheus exporter for machine metrics

Added to portage

2026-07-21

offlineimap3 - 8.0.3
Ebuild name:

net-mail/offlineimap3-8.0.3

Description

Powerful IMAP/Maildir synchronization and reader support

Added to portage

2026-07-21

offlineimap3 - 9999
Ebuild name:

net-mail/offlineimap3-9999

Description

Powerful IMAP/Maildir synchronization and reader support

Added to portage

2026-07-21

oxygen - 6.6.6-r1
Ebuild name:

kde-plasma/oxygen-6.6.6-r1

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-07-21

oxygen - 6.7.3-r1
Ebuild name:

kde-plasma/oxygen-6.7.3-r1

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-07-21

passt - 2026.07.16
Ebuild name:

net-misc/passt-2026.07.16

Description

User-mode networking daemons for VMs and namespaces, replacement for Slir

Added to portage

2026-07-21

pgtap - 1.3.4
Ebuild name:

dev-db/pgtap-1.3.4

Description

Unit testing for PostgreSQL

Added to portage

2026-07-21

podman - 5.8.5
Ebuild name:

app-containers/podman-5.8.5

Description

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

Added to portage

2026-07-21

podman - 6.0.1
Ebuild name:

app-containers/podman-6.0.1

Description

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

Added to portage

2026-07-21

podman-tui - 1.11.3
Ebuild name:

app-containers/podman-tui-1.11.3

Description

Terminal UI frontend for Podman

Added to portage

2026-07-21

powerdevil - 6.6.6-r1
Ebuild name:

kde-plasma/powerdevil-6.6.6-r1

Description

Power management for KDE Plasma Shell

Added to portage

2026-07-21

powerdevil - 6.7.3-r1
Ebuild name:

kde-plasma/powerdevil-6.7.3-r1

Description

Power management for KDE Plasma Shell

Added to portage

2026-07-21

prometheus-podman-exporter - 1.21.2
Ebuild name:

app-metrics/prometheus-podman-exporter-1.21.2

Description

Exporter for podman giving containers, pods, images,

Added to portage

2026-07-21

pygraphviz - 2.0.1
Ebuild name:

dev-python/pygraphviz-2.0.1

Description

Python wrapper for the Graphviz Agraph data structure

Added to portage

2026-07-21

pyqtgraph - 0.14.0-r1
Ebuild name:

dev-python/pyqtgraph-0.14.0-r1

Description

A pure-python graphics and GUI library built on PyQt and numpy

Added to portage

2026-07-21

rfc6555 - 0.1.0
Ebuild name:

dev-python/rfc6555-0.1.0

Description

Implementation of the Happy Eyeballs Algorithm (RFC 6555)

Added to portage

2026-07-21

scram - 3.4
Ebuild name:

dev-java/scram-3.4

Description

SCRAM (RFC 5802) Java implementation

Added to portage

2026-07-21

sqlglot - 30.13.0
Ebuild name:

dev-python/sqlglot-30.13.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-07-21

stringprep - 2.4
Ebuild name:

dev-java/stringprep-2.4

Description

Stringprep (RFC 3454) Java implementation

Added to portage

2026-07-21

syntax-highlighting - 6.28.1
Ebuild name:

kde-frameworks/syntax-highlighting-6.28.1

Description

Framework for syntax highlighting

Added to portage

2026-07-21

taglib - 2.3.1
Ebuild name:

media-libs/taglib-2.3.1

Description

Library for reading and editing audio meta data

Added to portage

2026-07-21

tox - 4.57.2
Ebuild name:

dev-python/tox-4.57.2

Description

virtualenv-based automation of test activities

Added to portage

2026-07-21

toybox - 0.8.14
Ebuild name:

sys-apps/toybox-0.8.14

Description

Common linux commands in a multicall binary

Added to portage

2026-07-21

uchardet - 0.0.8_p20250825
Ebuild name:

app-i18n/uchardet-0.0.8_p20250825

Description

Encoding detector library

Added to portage

2026-07-21

urwid - 4.0.5
Ebuild name:

dev-python/urwid-4.0.5

Description

Curses-based user interface library for Python

Added to portage

2026-07-21

uv - 0.11.30
Ebuild name:

dev-python/uv-0.11.30

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-07-21

uv-build - 0.11.30
Ebuild name:

dev-python/uv-build-0.11.30

Description

PEP517 uv build backend

Added to portage

2026-07-21

wacomtablet - 6.6.6-r1
Ebuild name:

kde-plasma/wacomtablet-6.6.6-r1

Description

Wacom system settings module that supports different button/pen lay

Added to portage

2026-07-21

wacomtablet - 6.7.3-r1
Ebuild name:

kde-plasma/wacomtablet-6.7.3-r1

Description

Wacom system settings module that supports different button/pen lay

Added to portage

2026-07-21

xvfbwrapper - 0.2.28
Ebuild name:

dev-python/xvfbwrapper-0.2.28

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-07-21

yarl - 1.24.5
Ebuild name:

dev-python/yarl-1.24.5

Description

Yet another URL library

Added to portage

2026-07-21

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