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:

77943

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-07-05
CPAN-Perl-Releases - 5.202.507.30
Ebuild name:

dev-perl/CPAN-Perl-Releases-5.202.507.30

Description

Mapping Perl releases on CPAN to the location of the tarba

Added to portage

2025-07-05

DBD-MariaDB - 1.230.0-r1
Ebuild name:

dev-perl/DBD-MariaDB-1.230.0-r1

Description

MariaDB and MySQL driver for the Perl5 Database Interface (DBI)

Added to portage

2025-07-05

DBI-Shell - 11.980.0-r2
Ebuild name:

dev-perl/DBI-Shell-11.980.0-r2

Description

Interactive command shell for the DBI

Added to portage

2025-07-05

DateTime-Format-Natural - 1.180.0-r1
Ebuild name:

dev-perl/DateTime-Format-Natural-1.180.0-r1

Description

Parse informal natural language date/time strings

Added to portage

2025-07-05

Debug-Client - 0.310.0-r2
Ebuild name:

dev-perl/Debug-Client-0.310.0-r2

Description

Client side code for perl debugger

Added to portage

2025-07-05

Dist-Zilla - 6.32.0-r2
Ebuild name:

dev-perl/Dist-Zilla-6.32.0-r2

Description

Distribution builder; installer not included

Added to portage

2025-07-05

File-Pid - 1.10
Ebuild name:

dev-perl/File-Pid-1.10

Description

Pid File Manipulation

Added to portage

2025-07-05

File-ReadBackwards - 1.60.0-r1
Ebuild name:

dev-perl/File-ReadBackwards-1.60.0-r1

Description

Read a file backwards by lines

Added to portage

2025-07-05

File-RsyncP - 0.760.0-r3
Ebuild name:

dev-perl/File-RsyncP-0.760.0-r3

Description

An rsync perl module

Added to portage

2025-07-05

File-SearchPath - 0.70.0-r2
Ebuild name:

dev-perl/File-SearchPath-0.70.0-r2

Description

Search for a file in an environment variable path

Added to portage

2025-07-05

File-ShareDir - 1.118.0-r1
Ebuild name:

dev-perl/File-ShareDir-1.118.0-r1

Description

Locate per-dist and per-module shared files

Added to portage

2025-07-05

File-Slurp - 9999.320.0-r1
Ebuild name:

dev-perl/File-Slurp-9999.320.0-r1

Description

Simple and Efficient Reading/Writing/Modifying of Complete Files

Added to portage

2025-07-05

File-Slurp-Tiny - 0.4.0-r2
Ebuild name:

dev-perl/File-Slurp-Tiny-0.4.0-r2

Description

Simple, sane and efficient file slurper

Added to portage

2025-07-05

File-Sort - 1.10.0-r3
Ebuild name:

dev-perl/File-Sort-1.10.0-r3

Description

Sort a file or merge sort multiple files

Added to portage

2025-07-05

File-Stat-Bits - 1.10.0-r3
Ebuild name:

dev-perl/File-Stat-Bits-1.10.0-r3

Description

File stat bit mask constants

Added to portage

2025-07-05

File-pushd - 1.16.0-r1
Ebuild name:

dev-perl/File-pushd-1.16.0-r1

Description

Change directory temporarily for a limited scope

Added to portage

2025-07-05

Math-BigInt-Lite - 0.270.0-r1
Ebuild name:

dev-perl/Math-BigInt-Lite-0.270.0-r1

Description

What BigInts are before they become big

Added to portage

2025-07-05

Math-ModInt - 0.13.0-r1
Ebuild name:

dev-perl/Math-ModInt-0.13.0-r1

Description

modular integer arithmetic

Added to portage

2025-07-05

Module-Build - 0.423.400-r5
Ebuild name:

dev-perl/Module-Build-0.423.400-r5

Description

Build and install Perl modules

Added to portage

2025-07-05

Module-Install - 1.190.0-r2
Ebuild name:

dev-perl/Module-Install-1.190.0-r2

Description

Standalone, extensible Perl module installer

Added to portage

2025-07-05

Module-Install - 1.210.0-r2
Ebuild name:

dev-perl/Module-Install-1.210.0-r2

Description

Standalone, extensible Perl module installer

Added to portage

2025-07-05

Mojolicious - 9.410.0
Ebuild name:

dev-perl/Mojolicious-9.410.0

Description

Real-time web framework

Added to portage

2025-07-05

Net-DNS - 1.510.0
Ebuild name:

dev-perl/Net-DNS-1.510.0

Description

Perl Interface to the Domain Name System

Added to portage

2025-07-05

Net-Google-SafeBrowsing-Blocklist - 1.40.0-r4
Ebuild name:

dev-perl/Net-Google-SafeBrowsing-Blocklist-1.40.0-r4

Description

Query a Google SafeBrowsing table

Added to portage

2025-07-05

Search-Sitemap - 2.130.0-r1
Ebuild name:

dev-perl/Search-Sitemap-2.130.0-r1

Description

Perl extension for managing Search Engine Sitemaps

Added to portage

2025-07-05

Term-Shell - 0.130.0-r1
Ebuild name:

dev-perl/Term-Shell-0.130.0-r1

Description

A simple command-line shell framework

Added to portage

2025-07-05

Test-CPAN-Meta - 0.250.0-r2
Ebuild name:

dev-perl/Test-CPAN-Meta-0.250.0-r2

Description

Validate your CPAN META.yml file

Added to portage

2025-07-05

ansible - 11.7.0
Ebuild name:

app-admin/ansible-11.7.0

Description

Model-driven deployment, config management, and command execution framewor

Added to portage

2025-07-05

ansible - 12.0.0_alpha7
Ebuild name:

app-admin/ansible-12.0.0_alpha7

Description

Model-driven deployment, config management, and command execution f

Added to portage

2025-07-05

ansible-core - 2.19.0_beta7
Ebuild name:

app-admin/ansible-core-2.19.0_beta7

Description

Model-driven deployment, config management, and command executi

Added to portage

2025-07-05

ansible-lint - 25.6.1
Ebuild name:

app-admin/ansible-lint-25.6.1

Description

Checks ansible playbooks for practices and behaviour that can be impr

Added to portage

2025-07-05

ansible-molecule - 25.6.0
Ebuild name:

app-admin/ansible-molecule-25.6.0

Description

A toolkit designed to aid in the development and testing of Ansib

Added to portage

2025-07-05

bash - 5.3
Ebuild name:

app-shells/bash-5.3

Description

The standard GNU Bourne again shell

Added to portage

2025-07-05

broot - 1.47.0
Ebuild name:

app-misc/broot-1.47.0

Description

A new way to see and navigate directory trees

Added to portage

2025-07-05

gnucash - 5.12
Ebuild name:

app-office/gnucash-5.12

Description

Personal finance manager

Added to portage

2025-07-05

icmake - 9.03.01-r1
Ebuild name:

dev-build/icmake-9.03.01-r1

Description

Hybrid between a make utility and a shell scripting language

Added to portage

2025-07-05

libintl - 0.23.2
Ebuild name:

dev-libs/libintl-0.23.2

Description

the GNU international library (split out of gettext)

Added to portage

2025-07-05

libintl - 0.25.1
Ebuild name:

dev-libs/libintl-0.25.1

Description

the GNU international library (split out of gettext)

Added to portage

2025-07-05

posframe - 1.4.4
Ebuild name:

app-emacs/posframe-1.4.4

Description

Pop up a frame at point

Added to portage

2025-07-05

pov-mode - 3.3-r1
Ebuild name:

app-emacs/pov-mode-3.3-r1

Description

Major mode for Povray scene files

Added to portage

2025-07-05

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-07-05

powershell - 0.3_pre20220402
Ebuild name:

app-emacs/powershell-0.3_pre20220402

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-07-05

pypy3-exe - 3.11.7.3.20
Ebuild name:

dev-lang/pypy3-exe-3.11.7.3.20

Description

PyPy3.11 executable (build from source)

Added to portage

2025-07-05

pypy3-exe-bin - 3.11.7.3.20
Ebuild name:

dev-lang/pypy3-exe-bin-3.11.7.3.20

Description

PyPy3.11 executable (pre-built version)

Added to portage

2025-07-05

qlcplus - 4.14.3
Ebuild name:

app-misc/qlcplus-4.14.3

Description

A software to control DMX or analog lighting systems

Added to portage

2025-07-05

skim - 0.20.2
Ebuild name:

app-misc/skim-0.20.2

Description

Command-line fuzzy finder

Added to portage

2025-07-05

tarsync - 0.2.3-r1
Ebuild name:

app-arch/tarsync-0.2.3-r1

Description

Synchronize tarball content with file system content

Added to portage

2025-07-05

yara-x - 1.3.0
Ebuild name:

app-forensics/yara-x-1.3.0

Description

A malware identification and classification tool

Added to portage

2025-07-05

yaz - 5.35.1
Ebuild name:

dev-libs/yaz-5.35.1

Description

C/C++ toolkit for Z39.50v3 clients and servers

Added to portage

2025-07-05

yodl - 4.05.00
Ebuild name:

app-text/yodl-4.05.00

Description

Your Own Document Language a pre-document language and tools to process it

Added to portage

2025-07-05

2025-07-04
absl-py - 2.3.1
Ebuild name:

dev-python/absl-py-2.3.1

Description

Abseil Python Common Libraries

Added to portage

2025-07-04

aiosignal - 1.4.0
Ebuild name:

dev-python/aiosignal-1.4.0

Description

A list of registered asynchronous callbacks

Added to portage

2025-07-04

asgiref - 3.9.0
Ebuild name:

dev-python/asgiref-3.9.0

Description

ASGI utilities (successor to WSGI)

Added to portage

2025-07-04

awkward - 2.8.5
Ebuild name:

dev-python/awkward-2.8.5

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2025-07-04

awkward-cpp - 47
Ebuild name:

dev-python/awkward-cpp-47

Description

CPU kernels and compiled extensions for Awkward Array

Added to portage

2025-07-04

awscli - 1.41.3
Ebuild name:

app-admin/awscli-1.41.3

Description

Universal Command Line Environment for AWS

Added to portage

2025-07-04

barman - 3.14.1
Ebuild name:

dev-db/barman-3.14.1

Description

Administration tool for disaster recovery of PostgreSQL servers

Added to portage

2025-07-04

boinc - 1
Ebuild name:

acct-user/boinc-1

Description

User for sci-misc/boinc

Added to portage

2025-07-04

boinc - 8.0.2
Ebuild name:

sci-misc/boinc-8.0.2

Description

The Berkeley Open Infrastructure for Network Computing

Added to portage

2025-07-04

boinc - 8.2.4
Ebuild name:

sci-misc/boinc-8.2.4

Description

The Berkeley Open Infrastructure for Network Computing

Added to portage

2025-07-04

boto3 - 1.39.3
Ebuild name:

dev-python/boto3-1.39.3

Description

The AWS SDK for Python

Added to portage

2025-07-04

botocore - 1.39.3
Ebuild name:

dev-python/botocore-1.39.3

Description

Low-level, data-driven core of boto 3

Added to portage

2025-07-04

coverage - 7.9.2
Ebuild name:

dev-python/coverage-7.9.2

Description

Code coverage measurement for Python

Added to portage

2025-07-04

croc - 10.2.2
Ebuild name:

net-misc/croc-10.2.2

Description

Easily and securely send things from one computer to another

Added to portage

2025-07-04

fonttools - 4.58.5
Ebuild name:

dev-python/fonttools-4.58.5

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-07-04

fzf - 0.63.0
Ebuild name:

app-shells/fzf-0.63.0

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2025-07-04

gcc - 12.4.1_p20250702
Ebuild name:

sys-devel/gcc-12.4.1_p20250702

Description

The GNU Compiler Collection

Added to portage

2025-07-04

gcc - 13.4.1_p20250703
Ebuild name:

sys-devel/gcc-13.4.1_p20250703

Description

The GNU Compiler Collection

Added to portage

2025-07-04

gnuplot - 6.0.3
Ebuild name:

sci-visualization/gnuplot-6.0.3

Description

Command-line driven interactive plotting program

Added to portage

2025-07-04

google-api-python-client - 2.175.0
Ebuild name:

dev-python/google-api-python-client-2.175.0

Description

Google API Client for Python

Added to portage

2025-07-04

installkernel - 60
Ebuild name:

sys-kernel/installkernel-60

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-07-04

lfe - 2.2.0
Ebuild name:

dev-lang/lfe-2.2.0

Description

Lisp-flavoured Erlang, a lisp syntax front-end to the Erlang compiler

Added to portage

2025-07-04

libthreadar - 1.6.0
Ebuild name:

dev-libs/libthreadar-1.6.0

Description

Threading library used by dar archiver

Added to portage

2025-07-04

linbox - 1.7.1_pre20250703
Ebuild name:

sci-libs/linbox-1.7.1_pre20250703

Description

C++ template library for integer and finite-field linear algebra

Added to portage

2025-07-04

man-pages-l10n - 4.27.0
Ebuild name:

app-i18n/man-pages-l10n-4.27.0

Description

A somewhat comprehensive collection of man page translations

Added to portage

2025-07-04

micropolis - 1.0_p20250628
Ebuild name:

games-simulation/micropolis-1.0_p20250628

Description

Free version of the well-known city building simulation

Added to portage

2025-07-04

mpmath - 1.4.0_alpha6
Ebuild name:

dev-python/mpmath-1.4.0_alpha6

Description

Python library for arbitrary-precision floating-point arithmetic

Added to portage

2025-07-04

naps2 - 8.2.0
Ebuild name:

app-office/naps2-8.2.0

Description

Document scanning application with a focus on simplicity and ease of use

Added to portage

2025-07-04

pdm - 2.25.4-r1
Ebuild name:

dev-python/pdm-2.25.4-r1

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2025-07-04

pdm-backend - 2.4.5
Ebuild name:

dev-python/pdm-backend-2.4.5

Description

A PEP 517 backend for PDM that supports PEP 621 metadata

Added to portage

2025-07-04

php - 8.2.29
Ebuild name:

dev-lang/php-8.2.29

Description

The PHP language runtime engine

Added to portage

2025-07-04

php - 8.3.23
Ebuild name:

dev-lang/php-8.3.23

Description

The PHP language runtime engine

Added to portage

2025-07-04

php - 8.4.10
Ebuild name:

dev-lang/php-8.4.10

Description

The PHP language runtime engine

Added to portage

2025-07-04

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-07-04

pypy - 2.7.7.3.20
Ebuild name:

dev-lang/pypy-2.7.7.3.20

Description

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

Added to portage

2025-07-04

pypy-exe - 7.3.20
Ebuild name:

dev-python/pypy-exe-7.3.20

Description

PyPy executable (build from source)

Added to portage

2025-07-04

pypy-exe-bin - 7.3.20
Ebuild name:

dev-python/pypy-exe-bin-7.3.20

Description

PyPy executable (pre-built version)

Added to portage

2025-07-04

pytest-qt - 4.5.0
Ebuild name:

dev-python/pytest-qt-4.5.0

Description

Pytest plugin for PyQt6 and PySide6 applications

Added to portage

2025-07-04

pytools - 2025.2.1
Ebuild name:

dev-python/pytools-2025.2.1

Description

Collection of tools missing from the Python standard library

Added to portage

2025-07-04

qmapshack - 1.17.1_p20250630
Ebuild name:

sci-geosciences/qmapshack-1.17.1_p20250630

Description

GPS mapping utility

Added to portage

2025-07-04

sourcegit - 2025.24
Ebuild name:

dev-vcs/sourcegit-2025.24

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-07-04

systemctl-tui - 0.4.0
Ebuild name:

sys-apps/systemctl-tui-0.4.0

Description

A simple TUI for interacting with systemd services and their logs

Added to portage

2025-07-04

testfixtures - 9.0.0
Ebuild name:

dev-python/testfixtures-9.0.0

Description

A collection of helpers and mock objects for unit tests and doc tests

Added to portage

2025-07-04

translate-toolkit - 3.15.6
Ebuild name:

dev-python/translate-toolkit-3.15.6

Description

Toolkit to convert between many translation formats

Added to portage

2025-07-04

xarray - 2025.7.0
Ebuild name:

dev-python/xarray-2025.7.0

Description

N-D labeled arrays and datasets in Python

Added to portage

2025-07-04

znc - 1.10.1
Ebuild name:

net-irc/znc-1.10.1

Description

An advanced IRC Bouncer

Added to portage

2025-07-04

zoom - 6.5.3.2773
Ebuild name:

net-im/zoom-6.5.3.2773

Description

Video conferencing and web conferencing service

Added to portage

2025-07-04

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: 61.6 ms