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:

77638

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-06-26
B-Keywords - 1.280.0
Ebuild name:

dev-perl/B-Keywords-1.280.0

Description

Lists of reserved barewords and symbol names

Added to portage

2025-06-26

CPAN-Perl-Releases - 5.202.506.250
Ebuild name:

dev-perl/CPAN-Perl-Releases-5.202.506.250

Description

Mapping Perl releases on CPAN to the location of the tarb

Added to portage

2025-06-26

Crypt-Simple - 0.60.0-r3
Ebuild name:

dev-perl/Crypt-Simple-0.60.0-r3

Description

Encrypt stuff simply

Added to portage

2025-06-26

Module-Signature - 0.920.0
Ebuild name:

dev-perl/Module-Signature-0.920.0

Description

Module signature file manipulation

Added to portage

2025-06-26

aiostream - 0.7.0
Ebuild name:

dev-python/aiostream-0.7.0

Description

Generator-based operators for asynchronous iteration

Added to portage

2025-06-26

amarok - 3.2.82
Ebuild name:

media-sound/amarok-3.2.82

Description

Advanced audio player based on KDE Frameworks

Added to portage

2025-06-26

awscli - 1.40.43
Ebuild name:

app-admin/awscli-1.40.43

Description

Universal Command Line Environment for AWS

Added to portage

2025-06-26

boto3 - 1.38.44
Ebuild name:

dev-python/boto3-1.38.44

Description

The AWS SDK for Python

Added to portage

2025-06-26

botocore - 1.38.44
Ebuild name:

dev-python/botocore-1.38.44

Description

Low-level, data-driven core of boto 3

Added to portage

2025-06-26

cctz - 2.5
Ebuild name:

dev-cpp/cctz-2.5

Description

C++ library for dealing with time zones and time conversion

Added to portage

2025-06-26

django-prometheus - 2.4.1
Ebuild name:

dev-python/django-prometheus-2.4.1

Description

Library to export Django metrics for Prometheus

Added to portage

2025-06-26

ethtool - 6.15
Ebuild name:

sys-apps/ethtool-6.15

Description

Utility for examining and tuning ethernet-based network interfaces

Added to portage

2025-06-26

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

dev-python/google-api-python-client-2.174.0

Description

Google API Client for Python

Added to portage

2025-06-26

grpcio - 1.73.1
Ebuild name:

dev-python/grpcio-1.73.1

Description

HTTP/2-based RPC framework

Added to portage

2025-06-26

grpcio-status - 1.73.1
Ebuild name:

dev-python/grpcio-status-1.73.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2025-06-26

hypothesis - 6.135.15
Ebuild name:

dev-python/hypothesis-6.135.15

Description

A library for property based testing

Added to portage

2025-06-26

libssh - 0.11.1-r2
Ebuild name:

net-libs/libssh-0.11.1-r2

Description

Access a working SSH implementation by means of a library

Added to portage

2025-06-26

libssh - 0.11.2
Ebuild name:

net-libs/libssh-0.11.2

Description

Access a working SSH implementation by means of a library

Added to portage

2025-06-26

license-expression - 30.4.3
Ebuild name:

dev-python/license-expression-30.4.3

Description

Parse, compare, simplify and normalize license expressions

Added to portage

2025-06-26

lincity-ng - 2.13.1
Ebuild name:

games-simulation/lincity-ng-2.13.1

Description

City simulation game

Added to portage

2025-06-26

lincity-ng - 9999
Ebuild name:

games-simulation/lincity-ng-9999

Description

City simulation game

Added to portage

2025-06-26

perl-Sys-Syslog - 0.360.0-r5
Ebuild name:

virtual/perl-Sys-Syslog-0.360.0-r5

Description

Virtual for

Added to portage

2025-06-26

perl-Term-ANSIColor - 5.10.0-r5
Ebuild name:

virtual/perl-Term-ANSIColor-5.10.0-r5

Description

Virtual for

Added to portage

2025-06-26

perl-Term-ReadLine - 1.170.0-r9
Ebuild name:

virtual/perl-Term-ReadLine-1.170.0-r9

Description

Virtual for

Added to portage

2025-06-26

perl-Term-Table - 0.24.0-r1
Ebuild name:

virtual/perl-Term-Table-0.24.0-r1

Description

Virtual for

Added to portage

2025-06-26

perl-Test - 1.310.0-r8
Ebuild name:

virtual/perl-Test-1.310.0-r8

Description

Virtual for

Added to portage

2025-06-26

perl-Test-Harness - 3.500.0-r1
Ebuild name:

virtual/perl-Test-Harness-3.500.0-r1

Description

Virtual for

Added to portage

2025-06-26

perl-Test-Simple - 1.302.210
Ebuild name:

virtual/perl-Test-Simple-1.302.210

Description

Virtual for

Added to portage

2025-06-26

perl-Test2-Suite - 1.302.210
Ebuild name:

virtual/perl-Test2-Suite-1.302.210

Description

Virtual for

Added to portage

2025-06-26

perl-Text-Balanced - 2.60.0-r2
Ebuild name:

virtual/perl-Text-Balanced-2.60.0-r2

Description

Virtual for

Added to portage

2025-06-26

perl-Text-ParseWords - 3.310.0-r4
Ebuild name:

virtual/perl-Text-ParseWords-3.310.0-r4

Description

Virtual for

Added to portage

2025-06-26

perl-Text-Tabs+Wrap - 2024.1.0-r1
Ebuild name:

virtual/perl-Text-Tabs+Wrap-2024.1.0-r1

Description

Virtual for Text and Text also distributed as Text

Added to portage

2025-06-26

perl-Time-HiRes - 1.977.800
Ebuild name:

virtual/perl-Time-HiRes-1.977.800

Description

Virtual for

Added to portage

2025-06-26

perl-Time-Local - 1.350.0-r1
Ebuild name:

virtual/perl-Time-Local-1.350.0-r1

Description

Virtual for

Added to portage

2025-06-26

perl-Unicode-Collate - 1.310.0-r3
Ebuild name:

virtual/perl-Unicode-Collate-1.310.0-r3

Description

Virtual for

Added to portage

2025-06-26

perl-Unicode-Normalize - 1.320.0-r2
Ebuild name:

virtual/perl-Unicode-Normalize-1.320.0-r2

Description

Virtual for

Added to portage

2025-06-26

perl-XSLoader - 0.320.0-r2
Ebuild name:

virtual/perl-XSLoader-0.320.0-r2

Description

Virtual for

Added to portage

2025-06-26

perl-threads - 2.430.0
Ebuild name:

virtual/perl-threads-2.430.0

Description

Virtual for

Added to portage

2025-06-26

perl-version - 0.993.300
Ebuild name:

virtual/perl-version-0.993.300

Description

Virtual for

Added to portage

2025-06-26

phonenumbers - 9.0.8
Ebuild name:

dev-python/phonenumbers-9.0.8

Description

Python port of Google's libphonenumber

Added to portage

2025-06-26

posframe - 1.4.4
Ebuild name:

app-emacs/posframe-1.4.4

Description

Pop up a frame at point

Added to portage

2025-06-26

qmplay2 - 25.06.11-r1
Ebuild name:

media-video/qmplay2-25.06.11-r1

Description

A Qt-based video player, which can play most formats and codecs

Added to portage

2025-06-26

resolvelib - 1.2.0
Ebuild name:

dev-python/resolvelib-1.2.0

Description

Resolve abstract dependencies into concrete ones

Added to portage

2025-06-26

systemd - 256.17
Ebuild name:

sys-apps/systemd-256.17

Description

System and service manager for Linux

Added to portage

2025-06-26

systemd - 257.7
Ebuild name:

sys-apps/systemd-257.7

Description

System and service manager for Linux

Added to portage

2025-06-26

systemd-utils - 256.17
Ebuild name:

sys-apps/systemd-utils-256.17

Description

Utilities split out from systemd for OpenRC users

Added to portage

2025-06-26

txaio - 23.6.1
Ebuild name:

dev-python/txaio-23.6.1

Description

Compatibility API between asyncio/Twisted/Trollius

Added to portage

2025-06-26

util-linux - 2.41.1
Ebuild name:

sys-apps/util-linux-2.41.1

Description

Various useful Linux utilities

Added to portage

2025-06-26

xfsprogs - 6.15.0
Ebuild name:

sys-fs/xfsprogs-6.15.0

Description

XFS filesystem utilities

Added to portage

2025-06-26

yt-dlp - 2025.06.25
Ebuild name:

net-misc/yt-dlp-2025.06.25

Description

youtube-dl fork with additional features and fixes

Added to portage

2025-06-26

2025-06-25
Archive-Extract - 0.880.0-r3
Ebuild name:

dev-perl/Archive-Extract-0.880.0-r3

Description

Generic archive extracting mechanism

Added to portage

2025-06-25

Log-Message - 0.80.0-r3
Ebuild name:

dev-perl/Log-Message-0.80.0-r3

Description

Powerful and flexible message logging mechanism

Added to portage

2025-06-25

Term-UI - 0.500.0-r2
Ebuild name:

dev-perl/Term-UI-0.500.0-r2

Description

User interfaces via Term made easy

Added to portage

2025-06-25

atkmm - 2.28.4
Ebuild name:

dev-cpp/atkmm-2.28.4

Description

C++ interface for the ATK library

Added to portage

2025-06-25

aurorae - 6.4.1
Ebuild name:

kde-plasma/aurorae-6.4.1

Description

Themeable window decoration for KWin

Added to portage

2025-06-25

awscli - 1.40.42
Ebuild name:

app-admin/awscli-1.40.42

Description

Universal Command Line Environment for AWS

Added to portage

2025-06-25

bluedevil - 6.4.1
Ebuild name:

kde-plasma/bluedevil-6.4.1

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-06-25

bolt - 0.9.10
Ebuild name:

sys-apps/bolt-0.9.10

Description

Userspace system daemon to enable security levels for Thunderbolt 3

Added to portage

2025-06-25

boto3 - 1.38.43
Ebuild name:

dev-python/boto3-1.38.43

Description

The AWS SDK for Python

Added to portage

2025-06-25

botocore - 1.38.43
Ebuild name:

dev-python/botocore-1.38.43

Description

Low-level, data-driven core of boto 3

Added to portage

2025-06-25

breeze - 6.4.1
Ebuild name:

kde-plasma/breeze-6.4.1

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-06-25

breeze-grub - 6.4.1
Ebuild name:

kde-plasma/breeze-grub-6.4.1

Description

Breeze theme for GRUB

Added to portage

2025-06-25

breeze-gtk - 6.4.1
Ebuild name:

kde-plasma/breeze-gtk-6.4.1

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-06-25

breeze-plymouth - 6.4.1
Ebuild name:

kde-plasma/breeze-plymouth-6.4.1

Description

Breeze theme for Plymouth

Added to portage

2025-06-25

c-blosc2 - 2.19.0
Ebuild name:

dev-libs/c-blosc2-2.19.0

Description

Blocking, shuffling and lossless compression library

Added to portage

2025-06-25

cairomm - 1.14.5
Ebuild name:

dev-cpp/cairomm-1.14.5

Description

C++ bindings for the Cairo vector graphics library

Added to portage

2025-06-25

cpuminer-opt - 25.4
Ebuild name:

net-p2p/cpuminer-opt-25.4

Description

Optimized multi algo CPU miner

Added to portage

2025-06-25

discord - 0.0.99
Ebuild name:

net-im/discord-0.0.99

Description

All-in-one voice and text chat for gamers

Added to portage

2025-06-25

discover - 6.4.1
Ebuild name:

kde-plasma/discover-6.4.1

Description

KDE Plasma resources management GUI

Added to portage

2025-06-25

docutils - 0.22_rc5
Ebuild name:

dev-python/docutils-0.22_rc5

Description

Python Documentation Utilities (reference reStructuredText impl.)

Added to portage

2025-06-25

drkonqi - 6.4.1
Ebuild name:

kde-plasma/drkonqi-6.4.1

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-06-25

dropbox - 227.4.4774
Ebuild name:

net-misc/dropbox-227.4.4774

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2025-06-25

dry-monads - 1.9.0
Ebuild name:

dev-ruby/dry-monads-1.9.0

Description

Common monads for Ruby

Added to portage

2025-06-25

flatpak-kcm - 6.4.1
Ebuild name:

kde-plasma/flatpak-kcm-6.4.1

Description

Flatpak Permissions Management KCM

Added to portage

2025-06-25

fotema - 2.0.2
Ebuild name:

media-gfx/fotema-2.0.2

Description

Photo gallery for Linux

Added to portage

2025-06-25

gcc - 16.0.0_p20250622-r1
Ebuild name:

sys-devel/gcc-16.0.0_p20250622-r1

Description

The GNU Compiler Collection

Added to portage

2025-06-25

glibmm - 2.66.8
Ebuild name:

dev-cpp/glibmm-2.66.8

Description

C++ interface for glib2

Added to portage

2025-06-25

gtkmm - 3.24.10
Ebuild name:

dev-cpp/gtkmm-3.24.10

Description

C++ interface for GTK+

Added to portage

2025-06-25

josm-bin - 19412
Ebuild name:

sci-geosciences/josm-bin-19412

Description

Java-based editor for the OpenStreetMap project

Added to portage

2025-06-25

julia-bin - 1.11.5-r1
Ebuild name:

dev-lang/julia-bin-1.11.5-r1

Description

High-performance programming language for technical computing

Added to portage

2025-06-25

jwt - 3.1.1
Ebuild name:

dev-ruby/jwt-3.1.1

Description

A Ruby implementation of JSON Web Token draft 06

Added to portage

2025-06-25

kactivitymanagerd - 6.4.1
Ebuild name:

kde-plasma/kactivitymanagerd-6.4.1

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-06-25

kde-cli-tools - 6.4.1
Ebuild name:

kde-plasma/kde-cli-tools-6.4.1

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-06-25

kde-cli-tools-common - 6.4.1
Ebuild name:

kde-plasma/kde-cli-tools-common-6.4.1

Description

Added to portage

2025-06-25

kde-gtk-config - 6.4.1
Ebuild name:

kde-plasma/kde-gtk-config-6.4.1

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-06-25

kdecoration - 6.4.1
Ebuild name:

kde-plasma/kdecoration-6.4.1

Description

Plugin based library to create window decorations

Added to portage

2025-06-25

kdeplasma-addons - 6.4.1
Ebuild name:

kde-plasma/kdeplasma-addons-6.4.1

Description

Extra Plasma applets and engines

Added to portage

2025-06-25

kdesu-gui - 6.4.1
Ebuild name:

kde-plasma/kdesu-gui-6.4.1

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-06-25

keditfiletype - 6.4.1
Ebuild name:

kde-plasma/keditfiletype-6.4.1

Description

File Type Editor

Added to portage

2025-06-25

kgamma - 6.4.1
Ebuild name:

kde-plasma/kgamma-6.4.1

Description

Screen gamma values kcontrol module

Added to portage

2025-06-25

kglobalacceld - 6.4.1
Ebuild name:

kde-plasma/kglobalacceld-6.4.1

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-06-25

kinfocenter - 6.4.1
Ebuild name:

kde-plasma/kinfocenter-6.4.1

Description

Utility providing information about the computer hardware

Added to portage

2025-06-25

kmenuedit - 6.4.1
Ebuild name:

kde-plasma/kmenuedit-6.4.1

Description

KDE Plasma menu editor

Added to portage

2025-06-25

kpipewire - 6.4.1
Ebuild name:

kde-plasma/kpipewire-6.4.1

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-06-25

krdp - 6.4.1
Ebuild name:

kde-plasma/krdp-6.4.1

Description

Library and examples for creating an RDP server

Added to portage

2025-06-25

kscreen - 6.4.1
Ebuild name:

kde-plasma/kscreen-6.4.1

Description

KDE Plasma screen management

Added to portage

2025-06-25

kscreenlocker - 6.4.1
Ebuild name:

kde-plasma/kscreenlocker-6.4.1

Description

Library and components for secure lock screen architecture

Added to portage

2025-06-25

ksshaskpass - 6.4.1
Ebuild name:

kde-plasma/ksshaskpass-6.4.1

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-06-25

ksystemstats - 6.4.1
Ebuild name:

kde-plasma/ksystemstats-6.4.1

Description

Plugin-based system monitoring daemon

Added to portage

2025-06-25

kwallet-pam - 6.4.1
Ebuild name:

kde-plasma/kwallet-pam-6.4.1

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-06-25

kwayland - 6.4.1
Ebuild name:

kde-plasma/kwayland-6.4.1

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-06-25

kwayland-integration - 6.4.1
Ebuild name:

kde-plasma/kwayland-integration-6.4.1

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-06-25

kwin - 6.4.1
Ebuild name:

kde-plasma/kwin-6.4.1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-06-25

kwin-x11 - 6.4.1
Ebuild name:

kde-plasma/kwin-x11-6.4.1

Description

Flexible, composited X window manager

Added to portage

2025-06-25

kwrited - 6.4.1
Ebuild name:

kde-plasma/kwrited-6.4.1

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-06-25

layer-shell-qt - 6.4.1
Ebuild name:

kde-plasma/layer-shell-qt-6.4.1

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2025-06-25

libayatana-appindicator - 0.5.94
Ebuild name:

dev-libs/libayatana-appindicator-0.5.94

Description

Ayatana Application Indicators (Shared Library)

Added to portage

2025-06-25

libkscreen - 6.4.1
Ebuild name:

kde-plasma/libkscreen-6.4.1

Description

Plasma screen management library

Added to portage

2025-06-25

libksysguard - 6.4.1
Ebuild name:

kde-plasma/libksysguard-6.4.1

Description

Task management and system monitoring library

Added to portage

2025-06-25

libp11 - 0.4.16
Ebuild name:

dev-libs/libp11-0.4.16

Description

Abstraction layer to simplify PKCS11 API

Added to portage

2025-06-25

libplasma - 6.4.1
Ebuild name:

kde-plasma/libplasma-6.4.1

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-06-25

libsigc++ - 2.12.1
Ebuild name:

dev-libs/libsigc++-2.12.1

Description

Typesafe callback system for standard C++

Added to portage

2025-06-25

libxmlpp - 2.42.3
Ebuild name:

dev-cpp/libxmlpp-2.42.3

Description

C++ wrapper for the libxml2 XML parser library

Added to portage

2025-06-25

libxmlpp - 5.0.4
Ebuild name:

dev-cpp/libxmlpp-5.0.4

Description

C++ wrapper for the libxml2 XML parser library

Added to portage

2025-06-25

license-expression - 30.4.2
Ebuild name:

dev-python/license-expression-30.4.2

Description

Parse, compare, simplify and normalize license expressions

Added to portage

2025-06-25

linux-firmware - 20250613_p20250624
Ebuild name:

sys-kernel/linux-firmware-20250613_p20250624

Description

Linux firmware files

Added to portage

2025-06-25

mariadb - 11.4.7-r1
Ebuild name:

dev-db/mariadb-11.4.7-r1

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-06-25

mariadb-connector-c - 3.3.15
Ebuild name:

dev-db/mariadb-connector-c-3.3.15

Description

C client library for MariaDB/MySQL

Added to portage

2025-06-25

mariadb-connector-c - 3.4.5
Ebuild name:

dev-db/mariadb-connector-c-3.4.5

Description

C client library for MariaDB/MySQL

Added to portage

2025-06-25

memcached - 1.6.38
Ebuild name:

net-misc/memcached-1.6.38

Description

High-performance, distributed memory object caching system

Added to portage

2025-06-25

milou - 6.4.1
Ebuild name:

kde-plasma/milou-6.4.1

Description

Dedicated search application built on top of Baloo

Added to portage

2025-06-25

minikanren - 1.0.5
Ebuild name:

dev-python/minikanren-1.0.5

Description

Relational programming in Python

Added to portage

2025-06-25

mpv - 0.40.0-r3
Ebuild name:

media-video/mpv-0.40.0-r3

Description

Media player for the command line

Added to portage

2025-06-25

multidict - 6.5.1
Ebuild name:

dev-python/multidict-6.5.1

Description

multidict implementation

Added to portage

2025-06-25

noto-emoji - 20250618
Ebuild name:

media-fonts/noto-emoji-20250618

Description

Google Noto Emoji fonts

Added to portage

2025-06-25

numpydoc - 1.9.0
Ebuild name:

dev-python/numpydoc-1.9.0

Description

Sphinx extension to support docstrings in Numpy format

Added to portage

2025-06-25

ocean-sound-theme - 6.4.1
Ebuild name:

kde-plasma/ocean-sound-theme-6.4.1

Description

Ocean Sound Theme for Plasma

Added to portage

2025-06-25

oxygen - 6.4.1
Ebuild name:

kde-plasma/oxygen-6.4.1

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-06-25

oxygen-sounds - 6.4.1
Ebuild name:

kde-plasma/oxygen-sounds-6.4.1

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-06-25

pangomm - 2.46.4
Ebuild name:

dev-cpp/pangomm-2.46.4

Description

C++ interface for pango

Added to portage

2025-06-25

pangomm - 2.50.2
Ebuild name:

dev-cpp/pangomm-2.50.2

Description

C++ interface for pango

Added to portage

2025-06-25

parallel - 20250622
Ebuild name:

sys-process/parallel-20250622

Description

Shell tool for executing jobs in parallel locally or on remote machin

Added to portage

2025-06-25

perl - 5.42.0_rc1
Ebuild name:

dev-lang/perl-5.42.0_rc1

Description

Larry Wall's Practical Extraction and Report Language

Added to portage

2025-06-25

perl-Archive-Tar - 3.40.0
Ebuild name:

virtual/perl-Archive-Tar-3.40.0

Description

Virtual for

Added to portage

2025-06-25

perl-CPAN - 2.380.0
Ebuild name:

virtual/perl-CPAN-2.380.0

Description

Virtual for

Added to portage

2025-06-25

perl-CPAN-Meta - 2.150.10-r10
Ebuild name:

virtual/perl-CPAN-Meta-2.150.10-r10

Description

Virtual for

Added to portage

2025-06-25

perl-CPAN-Meta-Requirements - 2.143.0-r1
Ebuild name:

virtual/perl-CPAN-Meta-Requirements-2.143.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-Carp - 1.540.0-r2
Ebuild name:

virtual/perl-Carp-1.540.0-r2

Description

Virtual for

Added to portage

2025-06-25

perl-Compress-Raw-Bzip2 - 2.213.0
Ebuild name:

virtual/perl-Compress-Raw-Bzip2-2.213.0

Description

Virtual for

Added to portage

2025-06-25

perl-Compress-Raw-Zlib - 2.213.0-r1
Ebuild name:

virtual/perl-Compress-Raw-Zlib-2.213.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-DB_File - 1.859.0-r1
Ebuild name:

virtual/perl-DB_File-1.859.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-Data-Dumper - 2.192.0
Ebuild name:

virtual/perl-Data-Dumper-2.192.0

Description

Virtual for

Added to portage

2025-06-25

perl-Devel-PPPort - 3.730.0
Ebuild name:

virtual/perl-Devel-PPPort-3.730.0

Description

Virtual for

Added to portage

2025-06-25

perl-Digest - 1.200.0-r3
Ebuild name:

virtual/perl-Digest-1.200.0-r3

Description

Virtual for

Added to portage

2025-06-25

perl-Digest-MD5 - 2.590.0
Ebuild name:

virtual/perl-Digest-MD5-2.590.0

Description

Virtual for

Added to portage

2025-06-25

perl-Digest-SHA - 6.40.0-r2
Ebuild name:

virtual/perl-Digest-SHA-6.40.0-r2

Description

Virtual for

Added to portage

2025-06-25

perl-Encode - 3.210.0-r2
Ebuild name:

virtual/perl-Encode-3.210.0-r2

Description

Virtual for

Added to portage

2025-06-25

perl-Exporter - 5.790.0
Ebuild name:

virtual/perl-Exporter-5.790.0

Description

Virtual for

Added to portage

2025-06-25

perl-ExtUtils-CBuilder - 0.280.241
Ebuild name:

virtual/perl-ExtUtils-CBuilder-0.280.241

Description

Virtual for

Added to portage

2025-06-25

perl-ExtUtils-MakeMaker - 7.760.0
Ebuild name:

virtual/perl-ExtUtils-MakeMaker-7.760.0

Description

Virtual for

Added to portage

2025-06-25

perl-ExtUtils-ParseXS - 3.570.0
Ebuild name:

virtual/perl-ExtUtils-ParseXS-3.570.0

Description

Virtual for

Added to portage

2025-06-25

perl-File-Path - 2.180.0-r4
Ebuild name:

virtual/perl-File-Path-2.180.0-r4

Description

Virtual for

Added to portage

2025-06-25

perl-File-Spec - 3.940.0
Ebuild name:

virtual/perl-File-Spec-3.940.0

Description

Virtual for

Added to portage

2025-06-25

perl-Getopt-Long - 2.580.0-r1
Ebuild name:

virtual/perl-Getopt-Long-2.580.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-HTTP-Tiny - 0.90.0
Ebuild name:

virtual/perl-HTTP-Tiny-0.90.0

Description

Virtual for

Added to portage

2025-06-25

perl-IO - 1.550.0-r1
Ebuild name:

virtual/perl-IO-1.550.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-IO-Compress - 2.213.0
Ebuild name:

virtual/perl-IO-Compress-2.213.0

Description

Virtual for

Added to portage

2025-06-25

perl-IO-Socket-IP - 0.430.0
Ebuild name:

virtual/perl-IO-Socket-IP-0.430.0

Description

Virtual for

Added to portage

2025-06-25

perl-IO-Zlib - 1.150.0-r1
Ebuild name:

virtual/perl-IO-Zlib-1.150.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-JSON-PP - 4.160.0-r3
Ebuild name:

virtual/perl-JSON-PP-4.160.0-r3

Description

Virtual for

Added to portage

2025-06-25

perl-Locale-Maketext - 1.330.0-r2
Ebuild name:

virtual/perl-Locale-Maketext-1.330.0-r2

Description

Virtual for

Added to portage

2025-06-25

perl-MIME-Base64 - 3.160.100_rc-r2
Ebuild name:

virtual/perl-MIME-Base64-3.160.100_rc-r2

Description

Virtual for

Added to portage

2025-06-25

perl-Math-BigInt - 2.5.2
Ebuild name:

virtual/perl-Math-BigInt-2.5.2

Description

Virtual for

Added to portage

2025-06-25

perl-Math-BigInt-FastCalc - 0.502.0
Ebuild name:

virtual/perl-Math-BigInt-FastCalc-0.502.0

Description

Virtual for

Added to portage

2025-06-25

perl-Math-BigRat - 2.5.2
Ebuild name:

virtual/perl-Math-BigRat-2.5.2

Description

Virtual for

Added to portage

2025-06-25

perl-Math-Complex - 1.630.0
Ebuild name:

virtual/perl-Math-Complex-1.630.0

Description

Virtual for

Added to portage

2025-06-25

perl-Module-CoreList - 5.202.506.240
Ebuild name:

virtual/perl-Module-CoreList-5.202.506.240

Description

Virtual for

Added to portage

2025-06-25

perl-Module-Load - 0.360.0-r5
Ebuild name:

virtual/perl-Module-Load-0.360.0-r5

Description

Virtual for

Added to portage

2025-06-25

perl-Module-Load-Conditional - 0.740.0-r4
Ebuild name:

virtual/perl-Module-Load-Conditional-0.740.0-r4

Description

Virtual for

Added to portage

2025-06-25

perl-Module-Metadata - 1.0.38-r1
Ebuild name:

virtual/perl-Module-Metadata-1.0.38-r1

Description

Virtual for

Added to portage

2025-06-25

perl-Params-Check - 0.380.0-r15
Ebuild name:

virtual/perl-Params-Check-0.380.0-r15

Description

Virtual for

Added to portage

2025-06-25

perl-Parse-CPAN-Meta - 2.150.10-r9
Ebuild name:

virtual/perl-Parse-CPAN-Meta-2.150.10-r9

Description

Virtual for

Added to portage

2025-06-25

perl-Pod-Simple - 3.450.0-r1
Ebuild name:

virtual/perl-Pod-Simple-3.450.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-Scalar-List-Utils - 1.680.100_rc
Ebuild name:

virtual/perl-Scalar-List-Utils-1.680.100_rc

Description

Virtual for Scalar and List also distributed as Scalar

Added to portage

2025-06-25

perl-Socket - 2.38.0-r1
Ebuild name:

virtual/perl-Socket-2.38.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-Storable - 3.370.0
Ebuild name:

virtual/perl-Storable-3.370.0

Description

Virtual for

Added to portage

2025-06-25

perl-autodie - 2.370.0-r1
Ebuild name:

virtual/perl-autodie-2.370.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-bignum - 0.670.0-r1
Ebuild name:

virtual/perl-bignum-0.670.0-r1

Description

Virtual for

Added to portage

2025-06-25

perl-if - 0.61.0-r3
Ebuild name:

virtual/perl-if-0.61.0-r3

Description

Virtual for

Added to portage

2025-06-25

perl-libnet - 3.150.0-r2
Ebuild name:

virtual/perl-libnet-3.150.0-r2

Description

Virtual for

Added to portage

2025-06-25

perl-parent - 0.244.0
Ebuild name:

virtual/perl-parent-0.244.0

Description

Virtual for

Added to portage

2025-06-25

perl-podlators - 6.0.2
Ebuild name:

virtual/perl-podlators-6.0.2

Description

Virtual for

Added to portage

2025-06-25

plasma-activities - 6.4.1
Ebuild name:

kde-plasma/plasma-activities-6.4.1

Description

Core components for KDE's Activities System

Added to portage

2025-06-25

plasma-activities-stats - 6.4.1
Ebuild name:

kde-plasma/plasma-activities-stats-6.4.1

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-06-25

plasma-browser-integration - 6.4.1
Ebuild name:

kde-plasma/plasma-browser-integration-6.4.1

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-06-25

plasma-desktop - 6.4.1
Ebuild name:

kde-plasma/plasma-desktop-6.4.1

Description

KDE Plasma desktop

Added to portage

2025-06-25

plasma-disks - 6.4.1
Ebuild name:

kde-plasma/plasma-disks-6.4.1

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2025-06-25

plasma-firewall - 6.4.1
Ebuild name:

kde-plasma/plasma-firewall-6.4.1

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-06-25

plasma-integration - 6.4.1
Ebuild name:

kde-plasma/plasma-integration-6.4.1

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-06-25

plasma-login-sessions - 6.4.1
Ebuild name:

kde-plasma/plasma-login-sessions-6.4.1

Description

KDE Plasma login sessions

Added to portage

2025-06-25

plasma-meta - 6.4.1
Ebuild name:

kde-plasma/plasma-meta-6.4.1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-06-25

plasma-nm - 6.4.1
Ebuild name:

kde-plasma/plasma-nm-6.4.1

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-06-25

plasma-pa - 6.4.1
Ebuild name:

kde-plasma/plasma-pa-6.4.1

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2025-06-25

plasma-sdk - 6.4.1
Ebuild name:

kde-plasma/plasma-sdk-6.4.1

Description

Useful applications for Plasma development

Added to portage

2025-06-25

plasma-systemmonitor - 6.4.1
Ebuild name:

kde-plasma/plasma-systemmonitor-6.4.1

Description

Monitor system sensors, process information and other system

Added to portage

2025-06-25

plasma-thunderbolt - 6.4.1
Ebuild name:

kde-plasma/plasma-thunderbolt-6.4.1

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2025-06-25

plasma-vault - 6.4.1
Ebuild name:

kde-plasma/plasma-vault-6.4.1

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2025-06-25

plasma-welcome - 6.4.1
Ebuild name:

kde-plasma/plasma-welcome-6.4.1

Description

Friendly onboarding wizard for Plasma

Added to portage

2025-06-25

plasma-workspace - 6.4.1
Ebuild name:

kde-plasma/plasma-workspace-6.4.1

Description

KDE Plasma workspace

Added to portage

2025-06-25

plasma-workspace-wallpapers - 6.4.1
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.4.1

Description

Wallpapers for the Plasma workspace

Added to portage

2025-06-25

plasma5support - 6.4.1
Ebuild name:

kde-plasma/plasma5support-6.4.1

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2025-06-25

plymouth-kcm - 6.4.1
Ebuild name:

kde-plasma/plymouth-kcm-6.4.1

Description

KDE Plasma control module for Plymouth

Added to portage

2025-06-25

polkit-kde-agent - 6.4.1
Ebuild name:

kde-plasma/polkit-kde-agent-6.4.1

Description

PolKit agent module for KDE Plasma

Added to portage

2025-06-25

posframe - 1.4.4
Ebuild name:

app-emacs/posframe-1.4.4

Description

Pop up a frame at point

Added to portage

2025-06-25

postfix - 3.11_pre20250624
Ebuild name:

mail-mta/postfix-3.11_pre20250624

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-06-25

powerdevil - 6.4.1
Ebuild name:

kde-plasma/powerdevil-6.4.1

Description

Power management for KDE Plasma Shell

Added to portage

2025-06-25

print-manager - 6.4.1
Ebuild name:

kde-plasma/print-manager-6.4.1

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2025-06-25

python-dotenv - 1.1.1
Ebuild name:

dev-python/python-dotenv-1.1.1

Description

Manage .env files

Added to portage

2025-06-25

qqc2-breeze-style - 6.4.1
Ebuild name:

kde-plasma/qqc2-breeze-style-6.4.1

Description

Breeze inspired QQC2 Style

Added to portage

2025-06-25

rdoc - 6.14.1-r1
Ebuild name:

dev-ruby/rdoc-6.14.1-r1

Description

An extended version of the RDoc library from Ruby 1.8

Added to portage

2025-06-25

retrying - 1.3.6
Ebuild name:

dev-python/retrying-1.3.6

Description

General-purpose retrying library

Added to portage

2025-06-25

retrying - 1.4.0
Ebuild name:

dev-python/retrying-1.4.0

Description

General-purpose retrying library

Added to portage

2025-06-25

ruff - 0.12.0
Ebuild name:

dev-util/ruff-0.12.0

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-06-25

sass - 3.7.4-r3
Ebuild name:

dev-ruby/sass-3.7.4-r3

Description

An extension of CSS3, adding nested rules, variables, mixins, and more

Added to portage

2025-06-25

sddm-kcm - 6.4.1
Ebuild name:

kde-plasma/sddm-kcm-6.4.1

Description

KDE Plasma control module for SDDM

Added to portage

2025-06-25

sonarr-bin - 4.0.15.2941
Ebuild name:

www-apps/sonarr-bin-4.0.15.2941

Description

Sonarr is a Smart PVR for newsgroup and bittorrent users

Added to portage

2025-06-25

spectacle - 6.4.1
Ebuild name:

kde-plasma/spectacle-6.4.1

Description

Screenshot capture utility

Added to portage

2025-06-25

sphinx-prompt - 1.10.0
Ebuild name:

dev-python/sphinx-prompt-1.10.0

Description

Sphinx directive to add unselectable prompt

Added to portage

2025-06-25

systemsettings - 6.4.1
Ebuild name:

kde-plasma/systemsettings-6.4.1

Description

Control Center to configure KDE Plasma desktop

Added to portage

2025-06-25

ubuntu-wallpapers - 25.04.2
Ebuild name:

x11-themes/ubuntu-wallpapers-25.04.2

Description

Ubuntu wallpapers

Added to portage

2025-06-25

wacomtablet - 6.4.1
Ebuild name:

kde-plasma/wacomtablet-6.4.1

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2025-06-25

xdg-desktop-portal-kde - 6.4.1
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.4.1

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2025-06-25

xmrig - 6.24.0
Ebuild name:

net-misc/xmrig-6.24.0

Description

RandomX, CryptoNight, KawPow, AstroBWT, and Argon2 CPU/GPU miner

Added to portage

2025-06-25

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