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:

88557

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->app-editors->VI

2. Commands



Below you will find a cheat-sheet with vi commands. This cheat sheet will also come in handy in the next section of this document,
Practice Lesson #1.



vi cheat-sheet


a. cursor movements (items below are sometimes called objects):
h - left one character
l - right one character
j - down one line
k - up one line
w - right one word
b - back one word
$ - to the end of line
0 - to the beginning of the line
) - right one sentence
( - left one sentence
} - right one paragraph
{ - left one paragraph
Ctrl-F - forward one page
Ctrl-B - back one page
G - go to (without arguments, go to end of file)
b. deleting:
d - delete
then add one of the cursor movement symbols to
show what should be deleted, i.e.:
d$ - delete to end of line
d0 - delete to the beginning of the line
d} - delete to the end of paragraph
dd - delete delete (delete the whole line)
x - delete character cursor is on
c. other basic commands:
r - replace one character
ZZ - save and exit (hold down shift and press "z" twice)
y - yank (copy into temporary buffer)
then add cursor movement symbol to show what should be
copied, for example: y) - copy to the end of sentence
Y - yank line cursor is on
p - paste below cursor line (deleted or copied text)
P - paste above cursor line
u - undo last editing command
/sometext - search for "sometext"

d. any command can take numeric argument before the name of "object", i.e.:
5dd - delete 5 lines beginning with cursor line (or) d5d - same
2dw - delete two words (or) d2w - delete two words
c3w - change 3 words
3Ctrl-B - move up three pages
1G - go to the first line
e. external commands can be performed on the selected text (in lines)
if command is started with "!", i.e.:
!}fmt - reformat paragraph to 72 columns
f. command line (sometimes called "ex mode"):
:
g. from the command line a "set" command can be executed to
customize editing environment, i.e.:
:set all - will show the state of all options
:set number - will show on the screen numbers of all lines
:set autoindent // obvious
h. from the command line operations can be performed on the range of lines,
i.e.:
:18,24 del - delete from line 18 to line 24
:23,48 copy 17 - block from line 23 to 48 copy to line 17
:2,17 move 92 - block from line 2 to 17 move to line 92
i. from the command line any external UNIX command can be performed on
the range of lines if line range is superseded by "!":
:11,16! sed -e "s/^//*/" -e "s/$/*//"

(the command above wraps the block of text with
"C" style comments - /* text */. It can be done
easier, but this is an example)
:14,19! sort -r +3
(sort the table in reverse order by fourth column)
j. file manipulation from the command line:
:r somefile - read in "somefile"
:x - save and exit (if file is "Read Only", this command will
exit without saving)
:wq - write and quit (same as above)
:w - write (save) if the file permissions allow it
:w! - save file even if it is read-only as long as we own it
:w somefile - save this file as "somefile"
:q - quit without saving
:q! - quit without saving if changes were made
k. text input commands (all require "Esc" to terminate):
i - insert text before the character cursor is on
I - insert text at the beginning of the line
a - append (insert text after the character cursor is on)
A - append text to the end of the line
c - change (replace previous text with new one)
takes arguments just like the delete command - it is
a fast and powerful way of changing original text -
much more so than typical "overwrite"

R - start overwriting text
o - start entering text at the beginning of the new line
below the cursor
O - start entering text at the beginning of the new line
above the cursor
l. if in doubt, press "Esc"


/* The article above and any accompanying files are freely
* distributable, but please leave this notice and the text intact.
* Home for this document: http://www.infobound.com/vi.html
* Copyright (C) 1994, 1999 Tony Thomas
* Contact author through email:
tony@infobound.com
* Last revision Feb 23, 1999
* UNIX is a trademark of X/Open
*/

rate this article:
current rating: average rating: 1.2 (48 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-09-20
adwaita-icon-theme - 50.0
Ebuild name:

x11-themes/adwaita-icon-theme-50.0

Description

GNOME default icon theme

Added to portage

2026-09-20

at-spi2-core - 2.60.7
Ebuild name:

app-accessibility/at-spi2-core-2.60.7

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-09-20

automake - 1.19
Ebuild name:

dev-build/automake-1.19

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-09-20

automake-vanilla - 1.19
Ebuild name:

dev-build/automake-vanilla-1.19

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-09-20

automake-wrapper - 20260920
Ebuild name:

dev-build/automake-wrapper-20260920

Description

Wrapper for automake to manage multiple automake versions

Added to portage

2026-09-20

cairomm - 1.18.1
Ebuild name:

dev-cpp/cairomm-1.18.1

Description

C++ bindings for the Cairo vector graphics library

Added to portage

2026-09-20

cups-filters - 9999
Ebuild name:

net-print/cups-filters-9999

Description

Cups filters

Added to portage

2026-09-20

editor - 0-r8
Ebuild name:

virtual/editor-0-r8

Description

Virtual for editor

Added to portage

2026-09-20

eigen - 3.4.1-r1
Ebuild name:

dev-cpp/eigen-3.4.1-r1

Description

C++ template library for linear algebra

Added to portage

2026-09-20

gcc - 15.3.1_p20260918
Ebuild name:

sys-devel/gcc-15.3.1_p20260918

Description

The GNU Compiler Collection

Added to portage

2026-09-20

gcr - 4.4.1
Ebuild name:

app-crypt/gcr-4.4.1

Description

Libraries for cryptographic UIs and accessing PKCS11 modules

Added to portage

2026-09-20

gdm - 50.3
Ebuild name:

gnome-base/gdm-50.3

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-09-20

gdm - 50.3-r1
Ebuild name:

gnome-base/gdm-50.3-r1

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-09-20

gnome-calendar - 50.0
Ebuild name:

gnome-extra/gnome-calendar-50.0

Description

Manage your calendars with simple and modern interface

Added to portage

2026-09-20

gnome-control-center - 50.4
Ebuild name:

gnome-base/gnome-control-center-50.4

Description

GNOME's main interface to configure various aspects of the des

Added to portage

2026-09-20

gnome-session - 50.1
Ebuild name:

gnome-base/gnome-session-50.1

Description

Gnome session manager

Added to portage

2026-09-20

gnome-session-openrc - 50.0
Ebuild name:

gnome-base/gnome-session-openrc-50.0

Description

Gnome session leader for OpenRC

Added to portage

2026-09-20

gnome-settings-daemon - 50.1
Ebuild name:

gnome-base/gnome-settings-daemon-50.1

Description

Gnome Settings Daemon

Added to portage

2026-09-20

gnome-shell - 50.5
Ebuild name:

gnome-base/gnome-shell-50.5

Description

Provides core UI functions for the GNOME desktop

Added to portage

2026-09-20

gnome-shell-extension-applications-overview-tooltip - 24-r1
Ebuild name:

gnome-extra/gnome-shell-extension-applications-overview-tooltip-24-r1

Description

Show tooltip with full name a

Added to portage

2026-09-20

gnome-shell-extension-dash-to-panel - 74
Ebuild name:

gnome-extra/gnome-shell-extension-dash-to-panel-74

Description

An icon taskbar for the Gnome Shell

Added to portage

2026-09-20

gnome-shell-extension-desktop-icons-ng - 51.0.8
Ebuild name:

gnome-extra/gnome-shell-extension-desktop-icons-ng-51.0.8

Description

Desktop icon support for GNOME Shell

Added to portage

2026-09-20

gnome-shell-extensions - 50.4
Ebuild name:

gnome-extra/gnome-shell-extensions-50.4

Description

JavaScript extensions for GNOME Shell

Added to portage

2026-09-20

gnome-shell-frippery - 50.0
Ebuild name:

gnome-extra/gnome-shell-frippery-50.0

Description

Unofficial extension pack providing GNOME 2-like features

Added to portage

2026-09-20

gsettings-desktop-schemas - 50.1
Ebuild name:

gnome-base/gsettings-desktop-schemas-50.1

Description

Collection of GSettings schemas for GNOME desktop

Added to portage

2026-09-20

gtkmm - 4.22.0
Ebuild name:

dev-cpp/gtkmm-4.22.0

Description

C++ interface for GTK+

Added to portage

2026-09-20

howm - 1.5.0
Ebuild name:

app-emacs/howm-1.5.0

Description

Note-taking tool on Emacs

Added to portage

2026-09-20

ht - 2.3
Ebuild name:

app-emacs/ht-2.3

Description

The missing hash table library for Emacs

Added to portage

2026-09-20

htmlize - 1.59
Ebuild name:

app-emacs/htmlize-1.59

Description

HTML-ize font-lock buffers in Emacs

Added to portage

2026-09-20

httpd - 1.1-r1
Ebuild name:

app-emacs/httpd-1.1-r1

Description

A HTTP server embedded in the Emacs

Added to portage

2026-09-20

hydra - 0.15.0
Ebuild name:

app-emacs/hydra-0.15.0

Description

Make Emacs bindings that stick around

Added to portage

2026-09-20

icicles - 2018.02.13.23733
Ebuild name:

app-emacs/icicles-2018.02.13.23733

Description

Minibuffer input completion and cycling

Added to portage

2026-09-20

libadwaita - 1.9.4
Ebuild name:

gui-libs/libadwaita-1.9.4

Description

Building blocks for modern GNOME applications

Added to portage

2026-09-20

libcec - 8.1.7
Ebuild name:

dev-libs/libcec-8.1.7

Description

Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor

Added to portage

2026-09-20

libcupsfilters - 9999
Ebuild name:

net-print/libcupsfilters-9999

Description

library for developing printing features, split out of cups-filters

Added to portage

2026-09-20

libdvdread - 7.1.1
Ebuild name:

media-libs/libdvdread-7.1.1

Description

Library for DVD navigation tools

Added to portage

2026-09-20

libltdl - 2.6.2
Ebuild name:

dev-libs/libltdl-2.6.2

Description

A shared library tool for developers

Added to portage

2026-09-20

libtool - 2.6.2
Ebuild name:

dev-build/libtool-2.6.2

Description

A shared library tool for developers

Added to portage

2026-09-20

minicoredumper - 2.1.0
Ebuild name:

sys-process/minicoredumper-2.1.0

Description

Core dump file processor

Added to portage

2026-09-20

mutter - 50.5
Ebuild name:

x11-wm/mutter-50.5

Description

GNOME compositing window manager based on Clutter

Added to portage

2026-09-20

nautilus - 50.3.1
Ebuild name:

gnome-base/nautilus-50.3.1

Description

Default file manager for the GNOME desktop

Added to portage

2026-09-20

networkmanager-libreswan - 1.2.31
Ebuild name:

net-vpn/networkmanager-libreswan-1.2.31

Description

NetworkManager libreswan plugin

Added to portage

2026-09-20

openpgp-keys-ddevault - 20250219
Ebuild name:

sec-keys/openpgp-keys-ddevault-20250219

Description

Drew DeVault's PGP signing key

Added to portage

2026-09-20

openpgp-keys-paulhardy - 20220319
Ebuild name:

sec-keys/openpgp-keys-paulhardy-20220319

Description

OpenPGP keys used by Paul Hardy

Added to portage

2026-09-20

pch-session - 50.0
Ebuild name:

gnome-extra/pch-session-50.0

Description

Unofficial gnome based session with different default settings and ext

Added to portage

2026-09-20

sddm - 0.21.0_p20260819
Ebuild name:

x11-misc/sddm-0.21.0_p20260819

Description

Simple Desktop Display Manager

Added to portage

2026-09-20

shotwell - 33.0
Ebuild name:

media-gfx/shotwell-33.0

Description

Open source photo manager for GNOME

Added to portage

2026-09-20

unifont - 18.0.01
Ebuild name:

media-fonts/unifont-18.0.01

Description

Unicode bitmap font with full Basic Multilingual Plane coverage

Added to portage

2026-09-20

uzdoom - 5.0.1
Ebuild name:

games-engines/uzdoom-5.0.1

Description

Modder-friendly hardware-accelerated source port of the DOOM engine

Added to portage

2026-09-20

xdg-desktop-portal-gnome - 50.0
Ebuild name:

sys-apps/xdg-desktop-portal-gnome-50.0

Description

Backend implementation for xdg-desktop-portal using GNOME

Added to portage

2026-09-20

2026-09-19
airline - 0.12
Ebuild name:

app-vim/airline-0.12

Description

vim plugin lean & mean statusline for vim that's light as air

Added to portage

2026-09-19

android-studio - 2026.1.4.8
Ebuild name:

dev-util/android-studio-2026.1.4.8

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-09-19

aws-crt-cpp - 0.43.7
Ebuild name:

dev-cpp/aws-crt-cpp-0.43.7

Description

C++ wrapper around the aws-c-* libraries

Added to portage

2026-09-19

awscli - 2.36.49
Ebuild name:

app-admin/awscli-2.36.49

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-19

borgmatic - 2.1.8
Ebuild name:

app-backup/borgmatic-2.1.8

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-09-19

boto3 - 1.43.98
Ebuild name:

dev-python/boto3-1.43.98

Description

The AWS SDK for Python

Added to portage

2026-09-19

botocore - 1.43.98
Ebuild name:

dev-python/botocore-1.43.98

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-19

camlidl - 1.13-r1
Ebuild name:

dev-ml/camlidl-1.13-r1

Description

Stub code generator for OCaml

Added to portage

2026-09-19

clang - 24.0.0_pre20260919
Ebuild name:

dev-python/clang-24.0.0_pre20260919

Description

Python bindings for llvm-core/clang

Added to portage

2026-09-19

clang - 24.0.0_pre20260919
Ebuild name:

llvm-core/clang-24.0.0_pre20260919

Description

C language family frontend for LLVM

Added to portage

2026-09-19

clang-common - 24.0.0_pre20260919
Ebuild name:

llvm-core/clang-common-24.0.0_pre20260919

Description

Common files shared between multiple slots of clang

Added to portage

2026-09-19

clang-runtime - 19.1.7-r2
Ebuild name:

llvm-runtimes/clang-runtime-19.1.7-r2

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 20.1.8-r2
Ebuild name:

llvm-runtimes/clang-runtime-20.1.8-r2

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 21.1.8-r1
Ebuild name:

llvm-runtimes/clang-runtime-21.1.8-r1

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 22-r1
Ebuild name:

llvm-runtimes/clang-runtime-22-r1

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 23-r2
Ebuild name:

llvm-runtimes/clang-runtime-23-r2

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

cmigemo - 1.8.0
Ebuild name:

app-text/cmigemo-1.8.0

Description

Migemo library implementation in C

Added to portage

2026-09-19

compiler-rt - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/compiler-rt-24.0.0_pre20260919

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-09-19

compiler-rt-sanitizers - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-24.0.0_pre20260919

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-09-19

conky - 1.24.2-r1
Ebuild name:

app-admin/conky-1.24.2-r1

Description

An advanced, highly configurable system monitor for X

Added to portage

2026-09-19

cups-meta - 2
Ebuild name:

net-print/cups-meta-2

Description

Metapackage for a fully configured cups printer setup

Added to portage

2026-09-19

deno-bin - 2.9.7
Ebuild name:

dev-lang/deno-bin-2.9.7

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-09-19

dina - 2.93-r1
Ebuild name:

media-fonts/dina-2.93-r1

Description

Monospace bitmap font, primarily aimed at programmers

Added to portage

2026-09-19

editorconfig-vim - 1.2.1
Ebuild name:

app-vim/editorconfig-vim-1.2.1

Description

vim plugin Support EditorConfig files

Added to portage

2026-09-19

ffmpeg - 9.0.2
Ebuild name:

media-video/ffmpeg-9.0.2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-09-19

filelock - 4.0.1
Ebuild name:

dev-python/filelock-4.0.1

Description

A platform independent file lock for Python

Added to portage

2026-09-19

flang - 24.0.0_pre20260919
Ebuild name:

llvm-core/flang-24.0.0_pre20260919

Description

LLVM's Fortran frontend

Added to portage

2026-09-19

flang-rt - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/flang-rt-24.0.0_pre20260919

Description

LLVM's Fortran runtime

Added to portage

2026-09-19

fsspec - 2026.9.0
Ebuild name:

dev-python/fsspec-2026.9.0

Description

A specification that python filesystems should adhere to

Added to portage

2026-09-19

gfloat - 0.5.2-r2
Ebuild name:

dev-python/gfloat-0.5.2-r2

Description

Generic floating-point types in Python

Added to portage

2026-09-19

htmldoc - 1.9.24
Ebuild name:

app-text/htmldoc-1.9.24

Description

Convert HTML pages into a PDF document

Added to portage

2026-09-19

ibus-table - 1.18.0
Ebuild name:

app-i18n/ibus-table-1.18.0

Description

Tables engines for IBus

Added to portage

2026-09-19

icicles - 2018.10.15.23738
Ebuild name:

app-emacs/icicles-2018.10.15.23738

Description

Minibuffer input completion and cycling

Added to portage

2026-09-19

igrep - 2.113
Ebuild name:

app-emacs/igrep-2.113

Description

Added to portage

2026-09-19

indent-bars - 0.9.2
Ebuild name:

app-emacs/indent-bars-0.9.2

Description

Fast, configurable indentation guide-bars for Emacs

Added to portage

2026-09-19

inetutils - 2.8-r1
Ebuild name:

net-misc/inetutils-2.8-r1

Description

Collection of common network programs

Added to portage

2026-09-19

inf-clojure - 3.3.0
Ebuild name:

app-emacs/inf-clojure-3.3.0

Description

Major mode for Clojure code

Added to portage

2026-09-19

inf-clojure - 3.4.0
Ebuild name:

app-emacs/inf-clojure-3.4.0

Description

Major mode for Clojure code

Added to portage

2026-09-19

kirigami-addons - 1.14.1
Ebuild name:

dev-libs/kirigami-addons-1.14.1

Description

Visual end user components for Kirigami-based applications

Added to portage

2026-09-19

libass - 0.17.5-r1
Ebuild name:

media-libs/libass-0.17.5-r1

Description

Library for SSA/ASS subtitles rendering

Added to portage

2026-09-19

libayatana-appindicator - 0.6.0
Ebuild name:

dev-libs/libayatana-appindicator-0.6.0

Description

Ayatana Application Indicators (Shared Library)

Added to portage

2026-09-19

libayatana-indicator - 0.9.5
Ebuild name:

dev-libs/libayatana-indicator-0.9.5

Description

Ayatana Application Indicators (Shared Library)

Added to portage

2026-09-19

libclc - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libclc-24.0.0_pre20260919

Description

OpenCL C library

Added to portage

2026-09-19

libcupsfilters - 2.2.1
Ebuild name:

net-print/libcupsfilters-2.2.1

Description

library for developing printing features, split out of cups-filters

Added to portage

2026-09-19

libcxx - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libcxx-24.0.0_pre20260919

Description

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

Added to portage

2026-09-19

libcxxabi - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libcxxabi-24.0.0_pre20260919

Description

Low level support for a standard C++ library

Added to portage

2026-09-19

libgcc - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libgcc-24.0.0_pre20260919

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-09-19

libheif - 1.23.4
Ebuild name:

media-libs/libheif-1.23.4

Description

ISO/IEC 23008-12 HEIF file format decoder and encoder

Added to portage

2026-09-19

libunibreak - 8.0
Ebuild name:

dev-libs/libunibreak-8.0

Description

Line and word breaking library

Added to portage

2026-09-19

libunwind - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libunwind-24.0.0_pre20260919

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-19

lit - 24.0.0_pre20260919
Ebuild name:

dev-python/lit-24.0.0_pre20260919

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-09-19

lld - 24.0.0_pre20260919
Ebuild name:

llvm-core/lld-24.0.0_pre20260919

Description

The LLVM linker (link editor)

Added to portage

2026-09-19

lldb - 24.0.0_pre20260919
Ebuild name:

llvm-core/lldb-24.0.0_pre20260919

Description

The LLVM debugger

Added to portage

2026-09-19

llvm - 24.0.0_pre20260919
Ebuild name:

dev-ml/llvm-24.0.0_pre20260919

Description

OCaml bindings for LLVM

Added to portage

2026-09-19

llvm - 24.0.0_pre20260919
Ebuild name:

llvm-core/llvm-24.0.0_pre20260919

Description

Low Level Virtual Machine

Added to portage

2026-09-19

llvm-common - 24.0.0_pre20260919
Ebuild name:

llvm-core/llvm-common-24.0.0_pre20260919

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-09-19

mlir - 24.0.0_pre20260919
Ebuild name:

llvm-core/mlir-24.0.0_pre20260919

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-09-19

msgpack-cxx - 9.0.0
Ebuild name:

dev-cpp/msgpack-cxx-9.0.0

Description

MessagePack for C++

Added to portage

2026-09-19

mxml - 4.0.5-r1
Ebuild name:

dev-libs/mxml-4.0.5-r1

Description

A small XML parsing library that you can use to read XML data files or strin

Added to portage

2026-09-19

nanobind - 3.1.0
Ebuild name:

dev-python/nanobind-3.1.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2026-09-19

netkit-telnetd - 0.17-r15
Ebuild name:

net-misc/netkit-telnetd-0.17-r15

Description

Standard Linux telnet client and server

Added to portage

2026-09-19

openmp - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-24.0.0_pre20260919

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-09-19

openmp-amdgcn-amd-amdhsa - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-24.0.0_pre20260919

Description

OpenMP target library for amdgcn devices

Added to portage

2026-09-19

openmp-nvptx64-nvidia-cuda - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-24.0.0_pre20260919

Description

OpenMP target library for nvptx64 devic

Added to portage

2026-09-19

openmp-spirv64-intel - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-24.0.0_pre20260919

Description

OpenMP target library for spirv64 Intel devic

Added to portage

2026-09-19

openpgp-keys-michaelrsweet - 20260917
Ebuild name:

sec-keys/openpgp-keys-michaelrsweet-20260917

Description

OpenPGP keys used by Michael R Sweet

Added to portage

2026-09-19

parse - 1.22.2
Ebuild name:

dev-python/parse-1.22.2

Description

Parse strings using a specification based on the Python format() syntax

Added to portage

2026-09-19

pdfio - 1.6.5
Ebuild name:

app-text/pdfio-1.6.5

Description

Simple C library for reading and writing PDFs

Added to portage

2026-09-19

pdfio - 9999
Ebuild name:

app-text/pdfio-9999

Description

Simple C library for reading and writing PDFs

Added to portage

2026-09-19

pfl - 3.6.0
Ebuild name:

app-portage/pfl-3.6.0

Description

Searchable online file/package database for Gentoo

Added to portage

2026-09-19

platformdirs - 4.11.11
Ebuild name:

dev-python/platformdirs-4.11.11

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-09-19

polly - 24.0.0_pre20260919
Ebuild name:

llvm-core/polly-24.0.0_pre20260919

Description

Polyhedral optimizations for LLVM

Added to portage

2026-09-19

powerdevil - 6.7.5-r1
Ebuild name:

kde-plasma/powerdevil-6.7.5-r1

Description

Power management for KDE Plasma Shell

Added to portage

2026-09-19

psycopg - 3.3.6
Ebuild name:

dev-python/psycopg-3.3.6

Description

PostgreSQL database adapter for Python

Added to portage

2026-09-19

pv - 1.12.0
Ebuild name:

sys-apps/pv-1.12.0

Description

Pipe Viewer a tool for monitoring the progress of data through a pipe

Added to portage

2026-09-19

python-slugify - 9.1.0
Ebuild name:

dev-python/python-slugify-9.1.0

Description

A Python Slugify application that handles Unicode

Added to portage

2026-09-19

pyzotero - 1.15.2
Ebuild name:

dev-python/pyzotero-1.15.2

Description

A Python client for the Zotero API

Added to portage

2026-09-19

qlog - 0.53.0
Ebuild name:

media-radio/qlog-0.53.0

Description

Amateur radio logbook software

Added to portage

2026-09-19

sphinx-gallery - 0.22.1
Ebuild name:

dev-python/sphinx-gallery-0.22.1

Description

Sphinx extension to automatically generate an examples gallery

Added to portage

2026-09-19

spidermonkey - 140.16.0
Ebuild name:

dev-lang/spidermonkey-140.16.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2026-09-19

spidermonkey - 153.3.0
Ebuild name:

dev-lang/spidermonkey-153.3.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2026-09-19

sqlmap - 1.10.9
Ebuild name:

dev-db/sqlmap-1.10.9

Description

An automatic SQL injection and database takeover tool

Added to portage

2026-09-19

telnet-bsd - 1.2-r6
Ebuild name:

net-misc/telnet-bsd-1.2-r6

Description

Telnet and telnetd ported from OpenBSD with IPv6 support

Added to portage

2026-09-19

tox - 4.62.0
Ebuild name:

dev-python/tox-4.62.0

Description

virtualenv-based automation of test activities

Added to portage

2026-09-19

ttf - 1.1.0
Ebuild name:

media-libs/ttf-1.1.0

Description

Simple C library for using TrueType and OpenType font files

Added to portage

2026-09-19

ttf - 9999
Ebuild name:

media-libs/ttf-9999

Description

Simple C library for using TrueType and OpenType font files

Added to portage

2026-09-19

unibilium - 2.1.4
Ebuild name:

dev-libs/unibilium-2.1.4

Description

A very basic terminfo library

Added to portage

2026-09-19

uv - 0.12.17
Ebuild name:

dev-python/uv-0.12.17

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-19

uv-build - 0.12.17
Ebuild name:

dev-python/uv-build-0.12.17

Description

PEP517 uv build backend

Added to portage

2026-09-19

virtualenv - 21.7.15
Ebuild name:

dev-python/virtualenv-21.7.15

Description

Virtual Python Environment builder

Added to portage

2026-09-19

volatility3 - 2.28.2
Ebuild name:

app-forensics/volatility3-2.28.2

Description

Framework for analyzing volatile memory

Added to portage

2026-09-19

wine-staging - 11.18
Ebuild name:

app-emulation/wine-staging-11.18

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patc

Added to portage

2026-09-19

wine-vanilla - 11.18
Ebuild name:

app-emulation/wine-vanilla-11.18

Description

Free implementation of Windows(tm) on Unix, without external patch

Added to portage

2026-09-19

wordpress - 6.4.11
Ebuild name:

www-apps/wordpress-6.4.11

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.5.11
Ebuild name:

www-apps/wordpress-6.5.11

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.6.8
Ebuild name:

www-apps/wordpress-6.6.8

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.7.8
Ebuild name:

www-apps/wordpress-6.7.8

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.8.9
Ebuild name:

www-apps/wordpress-6.8.9

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.9.8
Ebuild name:

www-apps/wordpress-6.9.8

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 7.0.5
Ebuild name:

www-apps/wordpress-7.0.5

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

xmlstarlet - 1.7.0
Ebuild name:

app-text/xmlstarlet-1.7.0

Description

A set of tools to transform, query, validate, and edit XML documents

Added to portage

2026-09-19

yaspin - 3.5.1
Ebuild name:

dev-python/yaspin-3.5.1

Description

Yet Another Terminal Spinner

Added to portage

2026-09-19

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