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:

82858

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.6 (45 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-01-18
async-lru - 2.1.0
Ebuild name:

dev-python/async-lru-2.1.0

Description

Simple lru_cache for asyncio

Added to portage

2026-01-18

blosc - 1.11.4
Ebuild name:

dev-python/blosc-1.11.4

Description

High performance compressor optimized for binary data

Added to portage

2026-01-18

boost-m4 - 0.4_p20221019-r1
Ebuild name:

dev-build/boost-m4-0.4_p20221019-r1

Description

Another set of autoconf macros for compiling against boost

Added to portage

2026-01-18

connection_pool - 3.0.2-r1
Ebuild name:

dev-ruby/connection_pool-3.0.2-r1

Description

Generic connection pooling for Ruby

Added to portage

2026-01-18

dulwich - 1.0.0
Ebuild name:

dev-python/dulwich-1.0.0

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-01-18

imapclient - 3.1.0
Ebuild name:

dev-python/imapclient-3.1.0

Description

easy-to-use, pythonic, and complete IMAP client library

Added to portage

2026-01-18

maxitest - 6.2.0
Ebuild name:

dev-ruby/maxitest-6.2.0

Description

Minitest + all the features you always wanted

Added to portage

2026-01-18

moto - 5.1.20
Ebuild name:

dev-python/moto-5.1.20

Description

Mock library for boto

Added to portage

2026-01-18

scummvm - 2026.1.0
Ebuild name:

games-engines/scummvm-2026.1.0

Description

Reimplementation of the SCUMM game engine used in Lucasarts adventur

Added to portage

2026-01-18

trimesh - 4.11.1
Ebuild name:

dev-python/trimesh-4.11.1

Description

Python library for loading and using triangular meshes

Added to portage

2026-01-18

vdr-fritzbox - 1.5.8
Ebuild name:

media-plugins/vdr-fritzbox-1.5.8

Description

VDR Plugin Inform about incoming phone-calls and use the fritz pho

Added to portage

2026-01-18

xmlschema - 4.3.1
Ebuild name:

dev-python/xmlschema-4.3.1

Description

An XML Schema validator and decoder

Added to portage

2026-01-18

2026-01-17
agate - 1.14.1
Ebuild name:

dev-python/agate-1.14.1

Description

A Python data analysis library that is optimized for humans instead of mach

Added to portage

2026-01-17

awscli - 1.44.20
Ebuild name:

app-admin/awscli-1.44.20

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-17

boto3 - 1.42.30
Ebuild name:

dev-python/boto3-1.42.30

Description

The AWS SDK for Python

Added to portage

2026-01-17

botocore - 1.42.30
Ebuild name:

dev-python/botocore-1.42.30

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-17

chrome-binary-plugins - 144.0.7559.59
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7559.59

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2026-01-17

chrome-binary-plugins - 145.0.7632.5_beta
Ebuild name:

www-plugins/chrome-binary-plugins-145.0.7632.5_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2026-01-17

chrome-binary-plugins - 146.0.7635.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7635.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-17

chromedriver-bin - 144.0.7559.59
Ebuild name:

www-apps/chromedriver-bin-144.0.7559.59

Description

WebDriver for Chrome

Added to portage

2026-01-17

chromium - 144.0.7559.59
Ebuild name:

www-client/chromium-144.0.7559.59

Description

Open-source version of Google Chrome web browser

Added to portage

2026-01-17

clang - 22.1.0_rc1
Ebuild name:

dev-python/clang-22.1.0_rc1

Description

Python bindings for llvm-core/clang

Added to portage

2026-01-17

clang - 22.1.0_rc1
Ebuild name:

llvm-core/clang-22.1.0_rc1

Description

C language family frontend for LLVM

Added to portage

2026-01-17

clang - 23.0.0.9999
Ebuild name:

dev-python/clang-23.0.0.9999

Description

Python bindings for llvm-core/clang

Added to portage

2026-01-17

clang - 23.0.0.9999
Ebuild name:

llvm-core/clang-23.0.0.9999

Description

C language family frontend for LLVM

Added to portage

2026-01-17

clang-common - 22.1.0_rc1
Ebuild name:

llvm-core/clang-common-22.1.0_rc1

Description

Common files shared between multiple slots of clang

Added to portage

2026-01-17

clang-common - 23.0.0.9999
Ebuild name:

llvm-core/clang-common-23.0.0.9999

Description

Common files shared between multiple slots of clang

Added to portage

2026-01-17

clang-linker-config - 23
Ebuild name:

llvm-core/clang-linker-config-23

Description

Default linker configuration for clang

Added to portage

2026-01-17

clang-rtlib-config - 23
Ebuild name:

llvm-runtimes/clang-rtlib-config-23

Description

Default rtlib configuration for clang

Added to portage

2026-01-17

clang-runtime - 23
Ebuild name:

llvm-runtimes/clang-runtime-23

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-01-17

clang-stdlib-config - 23
Ebuild name:

llvm-runtimes/clang-stdlib-config-23

Description

Default C++ library configuration for clang

Added to portage

2026-01-17

clang-toolchain-symlinks - 23
Ebuild name:

llvm-core/clang-toolchain-symlinks-23

Description

Symlinks to use Clang on GCC-free system

Added to portage

2026-01-17

clang-unwindlib-config - 23
Ebuild name:

llvm-runtimes/clang-unwindlib-config-23

Description

Default unwindlib configuration for clang

Added to portage

2026-01-17

compiler-rt - 22.1.0_rc1
Ebuild name:

llvm-runtimes/compiler-rt-22.1.0_rc1

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-01-17

compiler-rt - 23.0.0.9999
Ebuild name:

llvm-runtimes/compiler-rt-23.0.0.9999

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-01-17

compiler-rt-sanitizers - 22.1.0_rc1
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-22.1.0_rc1

Description

Compiler runtime libraries for clang (sanitizers &

Added to portage

2026-01-17

compiler-rt-sanitizers - 23.0.0.9999
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.0.0.9999

Description

Compiler runtime libraries for clang (sanitizers &

Added to portage

2026-01-17

distrobox - 1.8.2.3
Ebuild name:

app-containers/distrobox-1.8.2.3

Description

Use any Linux distribution inside your terminal (powered by docker

Added to portage

2026-01-17

django-polymorphic - 4.10.3
Ebuild name:

dev-python/django-polymorphic-4.10.3

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-01-17

dotnet-runtime-nugets - 10.0.2
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-10.0.2

Description

.NET runtime nugets

Added to portage

2026-01-17

dotnet-runtime-nugets - 8.0.23
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-8.0.23

Description

.NET runtime nugets

Added to portage

2026-01-17

dotnet-runtime-nugets - 9.0.12
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-9.0.12

Description

.NET runtime nugets

Added to portage

2026-01-17

dotnet-sdk-bin - 10.0.102
Ebuild name:

dev-dotnet/dotnet-sdk-bin-10.0.102

Description

.NET is a free, cross-platform, open-source developer platform

Added to portage

2026-01-17

dovecot - 2.4.2-r2
Ebuild name:

net-mail/dovecot-2.4.2-r2

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2026-01-17

fex-xtajit - 2601
Ebuild name:

app-emulation/fex-xtajit-2601

Description

A wine emulation dll for running x86 application on an arm64 host

Added to portage

2026-01-17

ffmpeg-chromium - 144
Ebuild name:

media-video/ffmpeg-chromium-144

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2026-01-17

firefox - 147.0.1
Ebuild name:

www-client/firefox-147.0.1

Description

Firefox Web Browser

Added to portage

2026-01-17

firefox-bin - 147.0.1
Ebuild name:

www-client/firefox-bin-147.0.1

Description

Firefox Web Browser

Added to portage

2026-01-17

flang - 22.1.0_rc1
Ebuild name:

llvm-core/flang-22.1.0_rc1

Description

LLVM's Fortran frontend

Added to portage

2026-01-17

flang - 23.0.0.9999
Ebuild name:

llvm-core/flang-23.0.0.9999

Description

LLVM's Fortran frontend

Added to portage

2026-01-17

flang-rt - 22.1.0_rc1
Ebuild name:

llvm-runtimes/flang-rt-22.1.0_rc1

Description

LLVM's Fortran runtime

Added to portage

2026-01-17

flang-rt - 23.0.0.9999
Ebuild name:

llvm-runtimes/flang-rt-23.0.0.9999

Description

LLVM's Fortran runtime

Added to portage

2026-01-17

freepg - 2.5.16-r1
Ebuild name:

app-crypt/freepg-2.5.16-r1

Description

Cross-distro GnuPG fork focused on OpenPGP compliance

Added to portage

2026-01-17

gallery-dl - 1.31.3
Ebuild name:

net-misc/gallery-dl-1.31.3

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-01-17

gfan - 0.6.2-r8
Ebuild name:

sci-mathematics/gfan-0.6.2-r8

Description

Compute Groebner fans and tropical varieties

Added to portage

2026-01-17

glibc - 2.41-r9
Ebuild name:

sys-libs/glibc-2.41-r9

Description

GNU libc C library

Added to portage

2026-01-17

glibc - 2.42-r4
Ebuild name:

sys-libs/glibc-2.42-r4

Description

GNU libc C library

Added to portage

2026-01-17

google-chrome - 144.0.7559.59
Ebuild name:

www-client/google-chrome-144.0.7559.59

Description

The web browser from Google

Added to portage

2026-01-17

google-chrome-beta - 145.0.7632.5
Ebuild name:

www-client/google-chrome-beta-145.0.7632.5

Description

The web browser from Google

Added to portage

2026-01-17

google-chrome-unstable - 146.0.7635.0
Ebuild name:

www-client/google-chrome-unstable-146.0.7635.0

Description

The web browser from Google

Added to portage

2026-01-17

hcloud - 2.15.0
Ebuild name:

dev-python/hcloud-2.15.0

Description

Official Hetzner Cloud python library

Added to portage

2026-01-17

httparty - 0.24.2
Ebuild name:

dev-ruby/httparty-0.24.2

Description

Makes http fun Also, makes consuming restful web services dead easy

Added to portage

2026-01-17

jq - 1.11.0
Ebuild name:

dev-python/jq-1.11.0

Description

Python bindings for jq

Added to portage

2026-01-17

keepassxc - 2.7.10-r2
Ebuild name:

app-admin/keepassxc-2.7.10-r2

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2026-01-17

libclc - 22.1.0_rc1
Ebuild name:

llvm-core/libclc-22.1.0_rc1

Description

OpenCL C library

Added to portage

2026-01-17

libclc - 23.0.0.9999
Ebuild name:

llvm-core/libclc-23.0.0.9999

Description

OpenCL C library

Added to portage

2026-01-17

libcxx - 22.1.0_rc1
Ebuild name:

llvm-runtimes/libcxx-22.1.0_rc1

Description

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

Added to portage

2026-01-17

libcxx - 23.0.0.9999
Ebuild name:

llvm-runtimes/libcxx-23.0.0.9999

Description

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

Added to portage

2026-01-17

libcxxabi - 22.1.0_rc1
Ebuild name:

llvm-runtimes/libcxxabi-22.1.0_rc1

Description

Low level support for a standard C++ library

Added to portage

2026-01-17

libcxxabi - 23.0.0.9999
Ebuild name:

llvm-runtimes/libcxxabi-23.0.0.9999

Description

Low level support for a standard C++ library

Added to portage

2026-01-17

libgcc - 22.1.0_rc1
Ebuild name:

llvm-runtimes/libgcc-22.1.0_rc1

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-01-17

libgcc - 23.0.0.9999
Ebuild name:

llvm-runtimes/libgcc-23.0.0.9999

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-01-17

libnbd - 1.24.0
Ebuild name:

sys-libs/libnbd-1.24.0

Description

NBD client library in userspace

Added to portage

2026-01-17

libstdc++-v3 - 3.3.6-r5
Ebuild name:

sys-libs/libstdc++-v3-3.3.6-r5

Description

Compatibility package for binaries linked against a pre gcc 3.4 libs

Added to portage

2026-01-17

libunwind - 22.1.0_rc1
Ebuild name:

llvm-runtimes/libunwind-22.1.0_rc1

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-01-17

libunwind - 23.0.0.9999
Ebuild name:

llvm-runtimes/libunwind-23.0.0.9999

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-01-17

listen - 3.10.0
Ebuild name:

dev-ruby/listen-3.10.0

Description

Listens to file modifications and notifies you about the changes

Added to portage

2026-01-17

lit - 22.1.0_rc1
Ebuild name:

dev-python/lit-22.1.0_rc1

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-01-17

lit - 23.0.0.9999
Ebuild name:

dev-python/lit-23.0.0.9999

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-01-17

lld - 22.1.0_rc1
Ebuild name:

llvm-core/lld-22.1.0_rc1

Description

The LLVM linker (link editor)

Added to portage

2026-01-17

lld - 23.0.0.9999
Ebuild name:

llvm-core/lld-23.0.0.9999

Description

The LLVM linker (link editor)

Added to portage

2026-01-17

lld-toolchain-symlinks - 23
Ebuild name:

llvm-core/lld-toolchain-symlinks-23

Description

Symlinks to use LLD on binutils-free system

Added to portage

2026-01-17

lldb - 22.1.0_rc1
Ebuild name:

llvm-core/lldb-22.1.0_rc1

Description

The LLVM debugger

Added to portage

2026-01-17

lldb - 23.0.0.9999
Ebuild name:

llvm-core/lldb-23.0.0.9999

Description

The LLVM debugger

Added to portage

2026-01-17

llvm - 22.1.0_rc1
Ebuild name:

dev-ml/llvm-22.1.0_rc1

Description

OCaml bindings for LLVM

Added to portage

2026-01-17

llvm - 22.1.0_rc1
Ebuild name:

llvm-core/llvm-22.1.0_rc1

Description

Low Level Virtual Machine

Added to portage

2026-01-17

llvm - 23.0.0.9999
Ebuild name:

dev-ml/llvm-23.0.0.9999

Description

OCaml bindings for LLVM

Added to portage

2026-01-17

llvm - 23.0.0.9999
Ebuild name:

llvm-core/llvm-23.0.0.9999

Description

Low Level Virtual Machine

Added to portage

2026-01-17

llvm-common - 22.1.0_rc1
Ebuild name:

llvm-core/llvm-common-22.1.0_rc1

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-01-17

llvm-common - 23.0.0.9999
Ebuild name:

llvm-core/llvm-common-23.0.0.9999

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-01-17

llvm-mingw64 - 13.0.0-r4
Ebuild name:

dev-util/llvm-mingw64-13.0.0-r4

Description

Clang/LLVM based mingw64 toolchain

Added to portage

2026-01-17

llvm-toolchain-symlinks - 23
Ebuild name:

llvm-core/llvm-toolchain-symlinks-23

Description

Symlinks to use LLVM on binutils-free system

Added to portage

2026-01-17

llvmgold - 23
Ebuild name:

llvm-core/llvmgold-23

Description

LLVMgold plugin symlink for autoloading

Added to portage

2026-01-17

mattermost-desktop-bin - 6.0.3
Ebuild name:

net-im/mattermost-desktop-bin-6.0.3

Description

Mattermost Desktop application

Added to portage

2026-01-17

meson-python - 0.19.0
Ebuild name:

dev-python/meson-python-0.19.0

Description

Meson PEP 517 Python build backend

Added to portage

2026-01-17

minitest-mock - 5.27.0
Ebuild name:

dev-ruby/minitest-mock-5.27.0

Description

A tiny mock and stub object framework for minitest.

Added to portage

2026-01-17

mlir - 22.1.0_rc1
Ebuild name:

llvm-core/mlir-22.1.0_rc1

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-01-17

mlir - 23.0.0.9999
Ebuild name:

llvm-core/mlir-23.0.0.9999

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-01-17

myst-parser - 5.0.0
Ebuild name:

dev-python/myst-parser-5.0.0

Description

Extended commonmark compliant parser, with bridges to Sphinx

Added to portage

2026-01-17

nbdime - 4.0.3
Ebuild name:

dev-python/nbdime-4.0.3

Description

Diff and merge of Jupyter Notebooks

Added to portage

2026-01-17

nbdkit - 1.46.0
Ebuild name:

sys-block/nbdkit-1.46.0

Description

NBD server with stable plugin ABI and permissive license

Added to portage

2026-01-17

offload - 22.1.0_rc1
Ebuild name:

llvm-runtimes/offload-22.1.0_rc1

Description

OpenMP offloading support

Added to portage

2026-01-17

offload - 23.0.0.9999
Ebuild name:

llvm-runtimes/offload-23.0.0.9999

Description

OpenMP offloading support

Added to portage

2026-01-17

openblas - 0.3.31
Ebuild name:

sci-libs/openblas-0.3.31

Description

Optimized BLAS library based on GotoBLAS2

Added to portage

2026-01-17

openmp - 22.1.0_rc1
Ebuild name:

llvm-runtimes/openmp-22.1.0_rc1

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-01-17

openmp - 23.0.0.9999
Ebuild name:

llvm-runtimes/openmp-23.0.0.9999

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-01-17

pekwm - 0.4.2
Ebuild name:

x11-wm/pekwm-0.4.2

Description

A lightweight window manager initially based on aewm++

Added to portage

2026-01-17

pf-sources - 6.18_p5
Ebuild name:

sys-kernel/pf-sources-6.18_p5

Description

Added to portage

2026-01-17

phonenumbers - 9.0.22
Ebuild name:

dev-python/phonenumbers-9.0.22

Description

Python port of Google's libphonenumber

Added to portage

2026-01-17

pipewire - 1.4.10
Ebuild name:

media-video/pipewire-1.4.10

Description

Multimedia processing graphs

Added to portage

2026-01-17

pixi - 0.63.1
Ebuild name:

dev-util/pixi-0.63.1

Description

A package management and workflow tool

Added to portage

2026-01-17

polly - 22.1.0_rc1
Ebuild name:

llvm-core/polly-22.1.0_rc1

Description

Polyhedral optimizations for LLVM

Added to portage

2026-01-17

polly - 23.0.0.9999
Ebuild name:

llvm-core/polly-23.0.0.9999

Description

Polyhedral optimizations for LLVM

Added to portage

2026-01-17

pyasn1 - 0.6.2
Ebuild name:

dev-python/pyasn1-0.6.2

Description

ASN.1 library for Python

Added to portage

2026-01-17

pyzotero - 1.8.0
Ebuild name:

dev-python/pyzotero-1.8.0

Description

A Python client for the Zotero API

Added to portage

2026-01-17

quantities - 0.16.4
Ebuild name:

dev-python/quantities-0.16.4

Description

Support for physical quantities with units, based on numpy

Added to portage

2026-01-17

reportlab - 4.4.9
Ebuild name:

dev-python/reportlab-4.4.9

Description

Tools for generating printable PDF documents from any data source

Added to portage

2026-01-17

ruby-gdk3 - 4.3.4
Ebuild name:

dev-ruby/ruby-gdk3-4.3.4

Description

Ruby GDK-3.x bindings

Added to portage

2026-01-17

ruby-gtk3 - 4.3.4
Ebuild name:

dev-ruby/ruby-gtk3-4.3.4

Description

Ruby Gtk2 bindings

Added to portage

2026-01-17

sabctools - 9.3.1
Ebuild name:

dev-python/sabctools-9.3.1

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2026-01-17

sbctl - 0.16
Ebuild name:

app-crypt/sbctl-0.16

Description

Secure Boot key manager

Added to portage

2026-01-17

sbctl - 0.18
Ebuild name:

app-crypt/sbctl-0.18

Description

Secure Boot key manager

Added to portage

2026-01-17

seamonkey - 2.53.23
Ebuild name:

www-client/seamonkey-2.53.23

Description

Seamonkey Web Browser

Added to portage

2026-01-17

sphinxcontrib-mermaid - 2.0.0
Ebuild name:

dev-python/sphinxcontrib-mermaid-2.0.0

Description

Sphinx spelling extension

Added to portage

2026-01-17

teakra - 20250824
Ebuild name:

dev-libs/teakra-20250824

Description

Emulator, assembler, etc for XpertTeak, the DSP used by DSi/3DS

Added to portage

2026-01-17

tomcat-native - 2.0.12
Ebuild name:

dev-java/tomcat-native-2.0.12

Description

Allows Tomcat to use certain native resources for better performance

Added to portage

2026-01-17

upmpdcli - 1.9.11
Ebuild name:

media-sound/upmpdcli-1.9.11

Description

UPnP Media Renderer front-end for MPD, the Music Player Daemon

Added to portage

2026-01-17

vampire - 5.0.0
Ebuild name:

sci-mathematics/vampire-5.0.0

Description

The Vampire Prover, theorem prover for first-order logic

Added to portage

2026-01-17

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