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:

82861

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

3. Practice Lesson #1


You should have a practice file called vilesson.txt in
your home directory. We will use it now:


$ vi vilesson.txt

Please note that in this lesson we will only practice the very
basics of vi. It is up to you to explore the editor further using
the provided cheat-sheet.


General Rules



  1. Do not use arrow keys to move the cursor
  2. Do not use PgDn or PgUp keys
  3. Do not use Home or End keys

If you accidently violate any of the above rules and cause strange
characters to be inserted into the file, or if anything else
unexpected happens, and you don't know how to correct it, press
Escape followed with :q! (quit without
saving
command). Then open the file again and continue the
lesson.


All exercises in Practice Lesson #1 consist of
Actions (marked here as A:) and Verifications
(marked here as V:).


Moving Around Text


First we will move around the file line by line.



A:
Press j three times.
V:
Cursor should now be resting on the fourth line.
A:
Type 8j
V:
Cursor should have moved 8 lines down to "Mr. John Bigfoot".
A:
Go up 2 lines by pressing k twice. Now go up 7 more
lines using the combination of a number and the k command.
V:
Your cursor should be on the "Big Town" line.

There is a way to move to a specific line number.



A:
Type :set number and press Enter key.
V:
Line numbers should be displayed at the left margin.
A:
Type 33G
V:
Your cursor should be resting at line #33.
A:
Type :set nonumber
V:
Line numbers should disappear.
A:
Go to the first line in the file by typing 1G (as in
line #1, GO).
V:
Your cursor should be at the top of the file.
A:
To go to the last line in the file, you do not need to specify
the line number at all (it would often be inconvenient). Type
G
V:
Cursor should be at the last line of the file.

To move sideways we will use command l (letter el)
to move right, and command h to move left. First go
back to the beginning of the line "40 PR Special (Pink Squirrel)".
When you're done, continue with the exercise.



A:
Press l three times.
V:
Cursor should be on character "P".
A:
Type 10l (number 10 followed by letter el)
V:
Cursor should be resting on white space between words "Special"
and "Pink".
A:
Press h twice.
V:
Cursor should be on character "a" of the letter "Special".
A:
Now go directly to the end of the line by pressing $
(dollar sign).
V:
Cursor should be at the end of the line.
A:
Go back to the beginning of the line by pressing 0 (zero).
V:
Cursor should be at the beginning of the line.

We can also move using words, sentences and paragraphs as delimiters.
First make sure your cursor is still at the beginning of the line
"40 PR Special (Pink Squirrel)".



A:
Press w (as in word) twice.
V:
Cursor should be at the beginning of the word "Special".
A:
Type 3w
V:
Cursor should be at the beginning of the word "Squirrel".
Note that vi knows that "(" is not a part of the word, and it
counts those elements separately.
A:
Go two paragraphs down by pressing 2} (right curly
brace).
V:
Cursor should be resting before the beginning of the
paragraph "We are looking forward [...]"
A:
Go to the previous sentence by pressing ( (left
parenthesis).
V:
Cursor should be on the word "We". Note:
Using sentences as delimiters is known to be broken in a couple
of vi implementations.
A:
Move to the end of the word by pressing e (as in end
of the word
).
V:
Cursor should be resting on the letter "e".
A:
To move one page forward, press Ctrl-F
V:
Depending on your terminal definition, the cursor should have
moved an appropriate number of lines forward. In our case, since
the file is short, you are most likely at the last line.
A:
Press Ctrl-B to go back one page.
V:
Cursor should have moved up one terminal page. Note:
On some older DOS versions of vi this command might scroll up the
page without moving the cursor. If this happens to you, press
Ctrl-B again.

Searching


Make sure your cursor is at the top of the file, then proceed
with the exercise.



A:
Press /, type your and press Enter
V:
Cursor should be on the word "your" in the middle of the sentence
"Thank you for placing your order with us".
A:
Press n (for 'next').
V:
Cursor should be on the word "your" before words "March 25".
A:
Press G to go to the end of the file.
V:
Cursor should be at the bottom of the file.
A:
Press ?, type ( and press Enter
V:
Your cursor should be on the left parenthesis before the word
"Moscow".

Deleting, Copying, And Pasting


We will practice commands d (delete),
p and P (paste), and the command
. (period, which means repeat last edit).
Make sure your cursor is still on the left paren before the word
"Moscow".



A:
Type d$
V:
You have just asked to delete to the end of line: d for
delete and $ for end of line (to
indicate the scope of the operation). Entire description of the
"Stock Option" drink should have disappeared.
A:
Press n to find the next instance of "(" (that was
our last search).
V:
Cursor should be on the left paren before the word "Ping-Pong".
A:
Repeat the previous edit (delete to end of the line) by pressing
. (period).
V:
Description of the "Day in TAC" drink should have disappeared.
A:
Press n again followed by . (period).
V:
Description of the "PR Special" drink should have disappeared.
A:
Repeat the last operation.
V:
All of the descriptions of the drinks (please ignore the fact that
some of them are intentionally wrong) should be gone.
A:
Exit the file without saving it by typing command :q!
V:
You should be at the UNIX shell command prompt.

Bring the file back into the editor with the command:



$ vi vilesson.txt

By now you have noticed that one of the drinks is really an appetizer.
We need to move it into the right place.



A:
Type /Early and press Enter
V:
Cursor should be on the line with "Early Release".
A:
Delete the whole line by pressing d twice.
V:
Line should be gone.
A:
Press P (upper case).
V:
The line you deleted is pasted above "Sales Engineer Special".
A:
Now press u for undo, remember which line
your cursor is on and then press p (lowercase).
V:
The line you deleted is pasted below your cursor line.

Note that uppercase P pastes text above the cursor line,
lowercase p pastes below.


If you only wish to copy the original line(s) without deleting at
the same time, use the yank command.



A:
Move you cursor to the second line, type 3Y, move your
cursor all the way down by pressing G and press
p
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now press u to undo the changes.
V:
The lines you have pasted should have disappeared.

The above operation could also be accomplished using lowercase
yank and the symbol for the object to be copied.



A:
Move your cursor back to line 2. Type commands y}Gp
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now undo the changes.
V:
The lines you have pasted should have disappeared.

Replacing Text


You have just noticed that the name of the addressee is spelled
"Bigfoot". It should be "Bigshot". You will now globally change
it.



A:
Press : (vi command line), type
%s/Bigfoot/Bigshot/g and press Enter
V:
All instances of "Bigfoot" should have changed to "Bigshot".

What you have typed means command line (:), the whole
file
(%), substitute (s), Bigfoot with Bigshot
(/Bigfoot/Bigshot/), any occurance on a line (g). Without
the last g, the substitution would be performed only
once per line. In our case it would not make any difference, but
it is a cheap insurance to take. The character % at
the beginning of the command means literally from the first to
the last line
. You could specify a narrower range of lines.
:13,19s/Bigfoot/Bigshot/ would perform the substitution
on a range of lines 13 through 19.


It is possible to replace specific number of words with whatever
text we wish to type in.



A:
Press / and then type send and press
Enter. Now type cw (for change word),
type be delivering and press Escape
V:
The word "send" should have been replaced with "be delivering".
Note that only the word "send" was replaced.

You could also specify
multiple words to be replaced, for example c3w. This
has a distinct advantage over more conventional overwriting because
it has clear word-boundary delimiters.


Overwriting one character, however, can be useful as a quick
correction. Note that the word "Febeuary" is misspelled.



A:
Place your cursor on the second "e" in that word and press r
twice.
V:
The word "Febeuary" should now read "February".

The first time you pressed r above it meant replace,
the second time with letter r. You do not need to finish
the command with Escape because there is an understanding
that only one letter will be input. This was single-letter
overwriting. Should you wish to overwrite continuously, you would
use the letter R instead. You would also need to finish
the command by pressing Escape since the number of
characters to be overwritten is not pre-determined.


Changing Case


Notice that the word "serVEd" has improperly capitalized two letters.



A:
Go to the word "serVEd", place your cursor over the first miscapitalized
letter and press ~ (tilde) twice.
V:
The word should now read "served".

Saving Files


It is time to save the changes.



A:
Press : (for command line), type w
(for write) and press Enter
V:
The changes have been saved. There could be a one-line note at
the bottom of the screen saying, "vilesson.txt: 48 lines, 954
characters" (or something similar) to confirm a successful save.

There are other ways to save files, so please read the cheat-sheet
for the command summary.


Inserting Text


There are three parts to entering text:



  1. input command (A, I, O, R, a, c, i, o)
  2. text to be inserted (anything you wish)
  3. termination of input command (Escape key)

The third part is always the same. All text input commands
listed above are terminated with Escape key. Part one
is where the variation occurs.



A:
Move the cursor to the beginning of line 38. Press i
and start typing text. When you finish the sentence, press
Escape.
V:
As you have noticed, i inserts text before the
letter the cursor rests on.

To enter text after the cursor, you would use a
(append) command. Now move your cursor to the second line
in the table listing drinks to be delivered.



A:
Press o.
V:
A new blank line should have been opened below the cursor line.
A:
Type some text. Press Escape.
V:
Text should have been entered on the blank line.
A:
Press u.
V:
Text you entered should have disappeared.
A:
Now press capital O, type some text and press
Escape.
V:
Text should have been entered on the line above the former cursor
line.

Note that the capitalized version of the same command opens the
line for text input above the cursor line. Note similarities
to the p and P commands. Press u.


Make sure you are approximately in the middle of the line of text (any
line).



A:
Press I (the capitalized version of the insert
command). Start typing text. Press Escape.
V:
Text should have been entered at the beginning of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.
A:
Now press A (the capitalized version of the append
command, type some text and terminate the command.
V:
Text should have been appended to the end of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.

Exiting file


You can exit file with or without saving changes.



A:
To save and exit, type :wq and press Enter.
V:
File has been saved and you should be at the UNIX command prompt.
A:
Open the file using vi vileson.txt and make some
changes (if you are entering text, please remember to terminate
the text input command with Escape). Type :q
and press Enter.
V:
Normally that would allow you to quit file, but since you have
changed the file, vi most likely will ask you to either save or
use bang (! command) to overwrite the protection.
A:
Type :q! and press Enter.
V:
You should be back at the UNIX command prompt.

Note that bang also works in conjunction with :w
and :wq commands.


End Of Practice Lesson #1



/* 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 (24 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

hg-evolve - 11.1.10
Ebuild name:

dev-vcs/hg-evolve-11.1.10

Description

enables the changeset evolution feature of Mercurial

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

mercurial - 7.1.2-r1
Ebuild name:

dev-vcs/mercurial-7.1.2-r1

Description

Scalable distributed SCM

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

opensmtpd - 7.8.0_p0
Ebuild name:

mail-mta/opensmtpd-7.8.0_p0

Description

Lightweight but featured SMTP daemon from OpenBSD

Added to portage

2026-01-18

sbsigntools - 0.9.5
Ebuild name:

app-crypt/sbsigntools-0.9.5

Description

Utilities for signing and verifying files for UEFI Secure Boot

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

untrunc - 0_pre20260112
Ebuild name:

media-video/untrunc-0_pre20260112

Description

Restore truncated mp4/mov files

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

sbsigntools - 0.9.5
Ebuild name:

app-crypt/sbsigntools-0.9.5

Description

Utilities for signing and verifying files for UEFI Secure Boot

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.8 ms