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:

72280

userrating:

average rating: 1.2 (8 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: no votes yet
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
2025-02-22
bcm2835 - 1.75
Ebuild name:

dev-libs/bcm2835-1.75

Description

Provides access to GPIO and other IO functions on the Broadcom BCM2835

Added to portage

2025-02-22

bedrock-server - 1.21.61.01
Ebuild name:

games-server/bedrock-server-1.21.61.01

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2025-02-22

cava - 0.10.4
Ebuild name:

media-sound/cava-0.10.4

Description

Console-based Audio Visualizer for Alsa

Added to portage

2025-02-22

cheetah3 - 3.4.0
Ebuild name:

dev-python/cheetah3-3.4.0

Description

Python-powered template engine and code generator

Added to portage

2025-02-22

devilutionx - 1.5.4
Ebuild name:

games-engines/devilutionx-1.5.4

Description

Diablo engine for modern operating systems

Added to portage

2025-02-22

dist-kernel - 6.1.129
Ebuild name:

virtual/dist-kernel-6.1.129

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-02-22

dist-kernel - 6.6.79
Ebuild name:

virtual/dist-kernel-6.6.79

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-02-22

freedroid - 1.2.3
Ebuild name:

games-rpg/freedroid-1.2.3

Description

The original Freedroid, a clone of the C64 classic Paradroid

Added to portage

2025-02-22

freeorion - 0.5.1
Ebuild name:

games-strategy/freeorion-0.5.1

Description

Free turn-based space empire and galactic conquest game

Added to portage

2025-02-22

gcc - 12.4.1_p20250220
Ebuild name:

sys-devel/gcc-12.4.1_p20250220

Description

The GNU Compiler Collection

Added to portage

2025-02-22

gcc - 13.3.1_p20250221
Ebuild name:

sys-devel/gcc-13.3.1_p20250221

Description

The GNU Compiler Collection

Added to portage

2025-02-22

gentoo-kernel - 6.1.129
Ebuild name:

sys-kernel/gentoo-kernel-6.1.129

Description

Linux kernel built with Gentoo patches

Added to portage

2025-02-22

gentoo-kernel - 6.6.79
Ebuild name:

sys-kernel/gentoo-kernel-6.6.79

Description

Linux kernel built with Gentoo patches

Added to portage

2025-02-22

gentoo-kernel-bin - 6.1.129
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.129

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-02-22

gentoo-kernel-bin - 6.6.79
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.79

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-02-22

haruna - 1.3.2
Ebuild name:

media-video/haruna-1.3.2

Description

Video player built with Qt/QML and libmpv

Added to portage

2025-02-22

ibus-typing-booster - 2.27.28
Ebuild name:

app-i18n/ibus-typing-booster-2.27.28

Description

Completion input method for IBus

Added to portage

2025-02-22

installkernel - 54
Ebuild name:

sys-kernel/installkernel-54

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-02-22

jaq - 2.1.1
Ebuild name:

app-misc/jaq-2.1.1

Description

Just another JSON query tool

Added to portage

2025-02-22

libspf2 - 1.2.11-r1
Ebuild name:

mail-filter/libspf2-1.2.11-r1

Description

implementation of Sender Policy Framework (SPF)

Added to portage

2025-02-22

libtlsrpt - 0.5.0
Ebuild name:

net-libs/libtlsrpt-0.5.0

Description

library to implement TLSRPT

Added to portage

2025-02-22

metee - 4.3.1
Ebuild name:

dev-libs/metee-4.3.1

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2025-02-22

naev - 0.12.3
Ebuild name:

games-strategy/naev-0.12.3

Description

2D space trading and combat game, in a similar vein to Escape Velocity

Added to portage

2025-02-22

ncnn - 20241226
Ebuild name:

dev-libs/ncnn-20241226

Description

High-performance neural network inference framework

Added to portage

2025-02-22

onnx - 1.17.0
Ebuild name:

sci-libs/onnx-1.17.0

Description

Open Neural Network Exchange (ONNX)

Added to portage

2025-02-22

parmasan - 0_pre20250221-r1
Ebuild name:

dev-build/parmasan-0_pre20250221-r1

Description

Parallel make sanitizer

Added to portage

2025-02-22

parmasan-remake - 4.3_p20240220
Ebuild name:

dev-build/parmasan-remake-4.3_p20240220

Description

Patched dev-build/remake for dev-build/parmasan, a parallel

Added to portage

2025-02-22

pysolfc - 3.2.0
Ebuild name:

games-board/pysolfc-3.2.0

Description

Exciting collection of more than 1000 solitaire card games

Added to portage

2025-02-22

qbs - 2.5.1
Ebuild name:

dev-util/qbs-2.5.1

Description

Modern build tool for software projects

Added to portage

2025-02-22

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-02-22

unrar - 7.1.4
Ebuild name:

app-arch/unrar-7.1.4

Description

Uncompress rar files

Added to portage

2025-02-22

vanilla-kernel - 6.1.129
Ebuild name:

sys-kernel/vanilla-kernel-6.1.129

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-02-22

vanilla-kernel - 6.6.79
Ebuild name:

sys-kernel/vanilla-kernel-6.6.79

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-02-22

vice - 3.9
Ebuild name:

app-emulation/vice-3.9

Description

Versatile Commodore Emulator

Added to portage

2025-02-22

wine-vanilla - 10.2
Ebuild name:

app-emulation/wine-vanilla-10.2

Description

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

Added to portage

2025-02-22

zstandard - 0.23.0-r1
Ebuild name:

dev-python/zstandard-0.23.0-r1

Description

Zstandard Bindings for Python

Added to portage

2025-02-22

2025-02-21
awscli - 1.37.25
Ebuild name:

app-admin/awscli-1.37.25

Description

Universal Command Line Environment for AWS

Added to portage

2025-02-21

boto3 - 1.36.25
Ebuild name:

dev-python/boto3-1.36.25

Description

The AWS SDK for Python

Added to portage

2025-02-21

botocore - 1.36.25
Ebuild name:

dev-python/botocore-1.36.25

Description

Low-level, data-driven core of boto 3

Added to portage

2025-02-21

bpftop - 0.6.0
Ebuild name:

dev-util/bpftop-0.6.0

Description

Process monitor for BPF programs

Added to portage

2025-02-21

cachetools - 5.5.2
Ebuild name:

dev-python/cachetools-5.5.2

Description

Extensible memoizing collections and decorators

Added to portage

2025-02-21

certbot - 3.2.0-r100
Ebuild name:

app-crypt/certbot-3.2.0-r100

Description

Let’s Encrypt client to automate deployment of X.509 certificates

Added to portage

2025-02-21

cudnn-frontend - 1.8.0
Ebuild name:

dev-libs/cudnn-frontend-1.8.0

Description

A c++ wrapper for the cudnn backend API

Added to portage

2025-02-21

dist-kernel - 6.12.16
Ebuild name:

virtual/dist-kernel-6.12.16

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-02-21

dist-kernel - 6.13.4
Ebuild name:

virtual/dist-kernel-6.13.4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-02-21

firefox-bin - 128.7.0-r1
Ebuild name:

www-client/firefox-bin-128.7.0-r1

Description

Firefox Web Browser

Added to portage

2025-02-21

firefox-bin - 135.0.1-r1
Ebuild name:

www-client/firefox-bin-135.0.1-r1

Description

Firefox Web Browser

Added to portage

2025-02-21

gentoo-kernel - 6.12.16
Ebuild name:

sys-kernel/gentoo-kernel-6.12.16

Description

Linux kernel built with Gentoo patches

Added to portage

2025-02-21

gentoo-kernel - 6.13.4
Ebuild name:

sys-kernel/gentoo-kernel-6.13.4

Description

Linux kernel built with Gentoo patches

Added to portage

2025-02-21

gentoo-kernel-bin - 6.12.16
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.16

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-02-21

gentoo-kernel-bin - 6.13.4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.13.4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-02-21

gentoo-sources - 6.1.129
Ebuild name:

sys-kernel/gentoo-sources-6.1.129

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-02-21

gentoo-sources - 6.12.16
Ebuild name:

sys-kernel/gentoo-sources-6.12.16

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-02-21

gentoo-sources - 6.13.4
Ebuild name:

sys-kernel/gentoo-sources-6.13.4

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-02-21

gentoo-sources - 6.6.79
Ebuild name:

sys-kernel/gentoo-sources-6.6.79

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-02-21

gimp - 3.0.0_rc2-r1
Ebuild name:

media-gfx/gimp-3.0.0_rc2-r1

Description

GNU Image Manipulation Program

Added to portage

2025-02-21

go - 1.24.0
Ebuild name:

dev-lang/go-1.24.0

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2025-02-21

googleapis-common-protos - 1.68.0
Ebuild name:

dev-python/googleapis-common-protos-1.68.0

Description

Python classes generated from the common protos in the g

Added to portage

2025-02-21

haproxy - 3.1.5
Ebuild name:

net-proxy/haproxy-3.1.5

Description

A TCP/HTTP reverse proxy for high availability environments

Added to portage

2025-02-21

kineto - 0.4.0_p20241109
Ebuild name:

sci-libs/kineto-0.4.0_p20241109

Description

part of the PyTorch Profiler

Added to portage

2025-02-21

kodi - 21.2
Ebuild name:

media-tv/kodi-21.2

Description

A free and open source media-player and entertainment hub

Added to portage

2025-02-21

libgeotiff - 1.7.4
Ebuild name:

sci-libs/libgeotiff-1.7.4

Description

Library for reading TIFF files with embedded tags for geographic informat

Added to portage

2025-02-21

live - 2024.10.31
Ebuild name:

media-plugins/live-2024.10.31

Description

Libraries for standards-based RTP/RTCP/RTSP multimedia streaming

Added to portage

2025-02-21

live - 2025.01.17
Ebuild name:

media-plugins/live-2025.01.17

Description

Libraries for standards-based RTP/RTCP/RTSP multimedia streaming

Added to portage

2025-02-21

lowdown - 2.0.2
Ebuild name:

app-text/lowdown-2.0.2

Description

Markdown translator producing HTML5, roff documents in the ms and man format

Added to portage

2025-02-21

mkvtoolnix - 90.0
Ebuild name:

media-video/mkvtoolnix-90.0

Description

Tools to create, alter, and inspect Matroska files

Added to portage

2025-02-21

nghttp3 - 1.8.0
Ebuild name:

net-libs/nghttp3-1.8.0

Description

HTTP/3 library written in C

Added to portage

2025-02-21

ngtcp2 - 1.11.0
Ebuild name:

net-libs/ngtcp2-1.11.0

Description

Implementation of the IETF QUIC Protocol

Added to portage

2025-02-21

onnx - 1.16.1-r2
Ebuild name:

sci-libs/onnx-1.16.1-r2

Description

Open Neural Network Exchange (ONNX)

Added to portage

2025-02-21

onnx - 1.16.2-r1
Ebuild name:

sci-libs/onnx-1.16.2-r1

Description

Open Neural Network Exchange (ONNX)

Added to portage

2025-02-21

passenger - 6.0.26
Ebuild name:

www-apache/passenger-6.0.26

Description

Passenger makes deployment of Ruby on Rails applications a breeze

Added to portage

2025-02-21

propcache - 0.3.0
Ebuild name:

dev-python/propcache-0.3.0

Description

Yet another URL library

Added to portage

2025-02-21

pwndbg - 20250219
Ebuild name:

dev-debug/pwndbg-20250219

Description

A GDB plug-in that makes debugging with GDB suck less

Added to portage

2025-02-21

pypy - 3.11.7.3.18_p20250221
Ebuild name:

dev-lang/pypy-3.11.7.3.18_p20250221

Description

A fast, compliant alternative implementation of the Python () l

Added to portage

2025-02-21

pypy3-exe - 3.11.7.3.18_p20250221
Ebuild name:

dev-lang/pypy3-exe-3.11.7.3.18_p20250221

Description

PyPy3.11 executable (build from source, snapshot)

Added to portage

2025-02-21

qiskit - 1.3.3
Ebuild name:

dev-python/qiskit-1.3.3

Description

An open-source SDK for working with quantum computers

Added to portage

2025-02-21

remake - 4.4_pre20250217
Ebuild name:

dev-build/remake-4.4_pre20250217

Description

Patched version of GNU Make with improved error reporting, tracing

Added to portage

2025-02-21

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-02-21

rg - 2.3.0
Ebuild name:

app-emacs/rg-2.3.0

Description

GNU Emacs search tool based on ripgrep

Added to portage

2025-02-21

rpds-py - 0.23.0
Ebuild name:

dev-python/rpds-py-0.23.0

Description

Python bindings to Rust's persistent data structures (rpds)

Added to portage

2025-02-21

rust - 1.85.0
Ebuild name:

dev-lang/rust-1.85.0

Description

Systems programming language originally developed by Mozilla

Added to portage

2025-02-21

rust - 1.86.0_beta20250218
Ebuild name:

dev-lang/rust-1.86.0_beta20250218

Description

Systems programming language originally developed by Mozilla

Added to portage

2025-02-21

rust - 9999
Ebuild name:

dev-lang/rust-9999

Description

Systems programming language originally developed by Mozilla

Added to portage

2025-02-21

rust-bin - 1.78.0-r102
Ebuild name:

dev-lang/rust-bin-1.78.0-r102

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.79.0-r103
Ebuild name:

dev-lang/rust-bin-1.79.0-r103

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.80.1-r103
Ebuild name:

dev-lang/rust-bin-1.80.1-r103

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.81.0-r103
Ebuild name:

dev-lang/rust-bin-1.81.0-r103

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.82.0-r103
Ebuild name:

dev-lang/rust-bin-1.82.0-r103

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.83.0-r2
Ebuild name:

dev-lang/rust-bin-1.83.0-r2

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.84.1-r2
Ebuild name:

dev-lang/rust-bin-1.84.1-r2

Description

Systems programming language from Mozilla

Added to portage

2025-02-21

rust-bin - 1.85.0
Ebuild name:

dev-lang/rust-bin-1.85.0

Description

Added to portage

2025-02-21

rust-bin - 1.86.0_beta20250218
Ebuild name:

dev-lang/rust-bin-1.86.0_beta20250218

Description

Added to portage

2025-02-21

rust-bin - 9999
Ebuild name:

dev-lang/rust-bin-9999

Description

Added to portage

2025-02-21

rust-common - 1.85.0
Ebuild name:

dev-lang/rust-common-1.85.0

Description

Common files shared between multiple slots of Rust

Added to portage

2025-02-21

rust-common - 1.86.0_beta20250218
Ebuild name:

dev-lang/rust-common-1.86.0_beta20250218

Description

Common files shared between multiple slots of Rust

Added to portage

2025-02-21

rust-common - 9999
Ebuild name:

dev-lang/rust-common-9999

Description

Common files shared between multiple slots of Rust

Added to portage

2025-02-21

rust-std - 1.85.0
Ebuild name:

sys-devel/rust-std-1.85.0

Description

Rust standard library, standalone (for crossdev)

Added to portage

2025-02-21

selenium - 4.29.0
Ebuild name:

dev-python/selenium-4.29.0

Description

Python language binding for Selenium Remote Control

Added to portage

2025-02-21

selenium-manager - 4.29.0
Ebuild name:

dev-util/selenium-manager-4.29.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2025-02-21

spacenavd - 1.3.1
Ebuild name:

app-misc/spacenavd-1.3.1

Description

The spacenavd daemon provides free alternative to the 3dxserv daemon

Added to portage

2025-02-21

spotify - 1.2.56
Ebuild name:

media-sound/spotify-1.2.56

Description

Spotify is a social music platform

Added to portage

2025-02-21

stevedore - 5.4.1
Ebuild name:

dev-python/stevedore-5.4.1

Description

Manage dynamic plugins for Python applications

Added to portage

2025-02-21

tmuxp - 1.53.0
Ebuild name:

app-misc/tmuxp-1.53.0

Description

tmux session manager. built on libtmux

Added to portage

2025-02-21

tpm2-openssl - 1.3.0
Ebuild name:

app-crypt/tpm2-openssl-1.3.0

Description

OpenSSL Provider for TPM2 integration

Added to portage

2025-02-21

translate-toolkit - 3.15.0
Ebuild name:

dev-python/translate-toolkit-3.15.0

Description

Toolkit to convert between many translation formats

Added to portage

2025-02-21

trimesh - 4.6.3
Ebuild name:

dev-python/trimesh-4.6.3

Description

Python library for loading and using triangular meshes

Added to portage

2025-02-21

vanilla-kernel - 6.12.16
Ebuild name:

sys-kernel/vanilla-kernel-6.12.16

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-02-21

vanilla-kernel - 6.13.4
Ebuild name:

sys-kernel/vanilla-kernel-6.13.4

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-02-21

vanilla-sources - 6.1.129
Ebuild name:

sys-kernel/vanilla-sources-6.1.129

Description

Full sources for the Linux kernel

Added to portage

2025-02-21

vanilla-sources - 6.12.16
Ebuild name:

sys-kernel/vanilla-sources-6.12.16

Description

Full sources for the Linux kernel

Added to portage

2025-02-21

vanilla-sources - 6.13.4
Ebuild name:

sys-kernel/vanilla-sources-6.13.4

Description

Full sources for the Linux kernel

Added to portage

2025-02-21

vanilla-sources - 6.6.79
Ebuild name:

sys-kernel/vanilla-sources-6.6.79

Description

Full sources for the Linux kernel

Added to portage

2025-02-21

vivaldi - 7.1.3570.54
Ebuild name:

www-client/vivaldi-7.1.3570.54

Description

A browser for our friends

Added to portage

2025-02-21

weasyprint - 64.1
Ebuild name:

dev-python/weasyprint-64.1

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2025-02-21

zeitwerk - 2.7.2
Ebuild name:

dev-ruby/zeitwerk-2.7.2

Description

Efficient and thread-safe code loader for Ruby

Added to portage

2025-02-21

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 42.3 ms