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:

72956

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-03-10
antlr-cpp - 4.13.2-r1
Ebuild name:

dev-cpp/antlr-cpp-4.13.2-r1

Description

The ANTLR 4 C++ Runtime

Added to portage

2025-03-10

astyle - 3.6.7
Ebuild name:

dev-util/astyle-3.6.7

Description

Artistic Style is a re-indenter and reformatter for C, C++ and Java source co

Added to portage

2025-03-10

cega-jg - 0.6.1
Ebuild name:

games-emulation/cega-jg-0.6.1

Description

Jolly Good SG-1000, SMS, and Game Gear Emulator

Added to portage

2025-03-10

checkpolicy - 3.8.1
Ebuild name:

sys-apps/checkpolicy-3.8.1

Description

SELinux policy compiler

Added to portage

2025-03-10

eb - 4.4.3-r1
Ebuild name:

dev-libs/eb-4.4.3-r1

Description

EB is a C library and utilities for accessing CD-ROM books

Added to portage

2025-03-10

foot - 1.20.2-r1
Ebuild name:

gui-apps/foot-1.20.2-r1

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2025-03-10

freetds - 1.4.26
Ebuild name:

dev-db/freetds-1.4.26

Description

Tabular Datastream Library

Added to portage

2025-03-10

frotz - 2.55
Ebuild name:

games-engines/frotz-2.55

Description

Interpreter for Z-code based text games

Added to portage

2025-03-10

gnatcoll-bindings - 24.0.0-r3
Ebuild name:

dev-ada/gnatcoll-bindings-24.0.0-r3

Description

GNAT Component Collection

Added to portage

2025-03-10

hello - 2.12
Ebuild name:

app-misc/hello-2.12

Description

GNU

Added to portage

2025-03-10

jgrf - 1.2.1
Ebuild name:

games-emulation/jgrf-1.2.1

Description

The Jolly Good Reference Frontend

Added to portage

2025-03-10

jollycv-jg - 1.1.0
Ebuild name:

games-emulation/jollycv-jg-1.1.0

Description

Jolly Good ColecoVision Emulator

Added to portage

2025-03-10

kgeotag - 1.8.0
Ebuild name:

media-gfx/kgeotag-1.8.0

Description

Photo geotagging program

Added to portage

2025-03-10

kmymoney - 5.1.92_p20250306
Ebuild name:

app-office/kmymoney-5.1.92_p20250306

Description

Personal finance manager based on KDE Frameworks

Added to portage

2025-03-10

kwin - 6.3.2.1-r2
Ebuild name:

kde-plasma/kwin-6.3.2.1-r2

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-03-10

libdnsres - 0.1a-r4
Ebuild name:

dev-libs/libdnsres-0.1a-r4

Description

A non-blocking DNS resolver library

Added to portage

2025-03-10

libimobiledevice-glue - 1.3.1
Ebuild name:

app-pda/libimobiledevice-glue-1.3.1

Description

Support library for libimobiledevice projects

Added to portage

2025-03-10

libselinux - 3.8.1
Ebuild name:

sys-libs/libselinux-3.8.1

Description

SELinux userland library

Added to portage

2025-03-10

libsemanage - 3.8.1
Ebuild name:

sys-libs/libsemanage-3.8.1

Description

SELinux kernel and policy management library

Added to portage

2025-03-10

libsepol - 3.8.1
Ebuild name:

sys-libs/libsepol-3.8.1

Description

SELinux binary policy representation library

Added to portage

2025-03-10

libspt - 1.1-r5
Ebuild name:

dev-libs/libspt-1.1-r5

Description

Library for handling root privilege

Added to portage

2025-03-10

libvirt - 11.1.0
Ebuild name:

app-emulation/libvirt-11.1.0

Description

C toolkit to manipulate virtual machines

Added to portage

2025-03-10

libvirt-python - 11.1.0
Ebuild name:

dev-python/libvirt-python-11.1.0

Description

libvirt Python bindings

Added to portage

2025-03-10

mcstrans - 3.8.1
Ebuild name:

sys-apps/mcstrans-3.8.1

Description

SELinux context translation to human readable names

Added to portage

2025-03-10

mednafen-jg - 1.32.1.1
Ebuild name:

games-emulation/mednafen-jg-1.32.1.1

Description

Jolly Good Port of Mednafen

Added to portage

2025-03-10

mydumper - 0.18.1.1
Ebuild name:

dev-db/mydumper-0.18.1.1

Description

A high-performance multi-threaded backup (and restore) toolset for MySQL

Added to portage

2025-03-10

mysql - 8.0.41
Ebuild name:

dev-db/mysql-8.0.41

Description

A fast, multi-threaded, multi-user SQL database server

Added to portage

2025-03-10

mysql-connector-c++ - 9.2.0
Ebuild name:

dev-db/mysql-connector-c++-9.2.0

Description

MySQL database connector for C++ (mimics JDBC 4.0 API)

Added to portage

2025-03-10

mysql-connector-c - 8.0.41
Ebuild name:

dev-db/mysql-connector-c-8.0.41

Description

C client library for MariaDB/MySQL

Added to portage

2025-03-10

mysql-workbench - 8.0.41
Ebuild name:

dev-db/mysql-workbench-8.0.41

Description

MySQL Workbench

Added to portage

2025-03-10

nx - 3.5.99.27-r1
Ebuild name:

net-misc/nx-3.5.99.27-r1

Description

NX compression technology core libraries

Added to portage

2025-03-10

openpgp-keys-dnkl - 20190530
Ebuild name:

sec-keys/openpgp-keys-dnkl-20190530

Description

OpenPGP keys used by dnkl to sign releases & commits

Added to portage

2025-03-10

policycoreutils - 3.8.1
Ebuild name:

sys-apps/policycoreutils-3.8.1

Description

SELinux core utilities

Added to portage

2025-03-10

pypy - 3.11.7.3.19_p4-r1
Ebuild name:

dev-lang/pypy-3.11.7.3.19_p4-r1

Description

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

Added to portage

2025-03-10

qca - 2.3.10
Ebuild name:

app-crypt/qca-2.3.10

Description

Qt Cryptographic Architecture (QCA)

Added to portage

2025-03-10

restorecond - 3.8.1
Ebuild name:

sys-apps/restorecond-3.8.1

Description

Daemon to watch for creation and set default SELinux fcontexts

Added to portage

2025-03-10

rpm - 4.20.1
Ebuild name:

app-arch/rpm-4.20.1

Description

The RPM Package Manager

Added to portage

2025-03-10

rpm-spec-mode - 0.16
Ebuild name:

app-emacs/rpm-spec-mode-0.16

Description

Emacs mode to ease editing of RPM spec files

Added to portage

2025-03-10

rudel - 0.3.1
Ebuild name:

app-emacs/rudel-0.3.1

Description

Collaborative editing environment for GNU Emacs

Added to portage

2025-03-10

rudel - 0.3.2
Ebuild name:

app-emacs/rudel-0.3.2

Description

Collaborative editing environment for GNU Emacs

Added to portage

2025-03-10

rust-mode - 1.0.5
Ebuild name:

app-emacs/rust-mode-1.0.5

Description

A major emacs mode for editing Rust source code

Added to portage

2025-03-10

secilc - 3.8.1
Ebuild name:

sys-apps/secilc-3.8.1

Description

SELinux Common Intermediate Language (CIL) Compiler

Added to portage

2025-03-10

selinux-python - 3.8.1
Ebuild name:

sys-apps/selinux-python-3.8.1

Description

SELinux core utilities

Added to portage

2025-03-10

semodule-utils - 3.8.1
Ebuild name:

sys-apps/semodule-utils-3.8.1

Description

SELinux policy module utilities

Added to portage

2025-03-10

skim - 0.16.1
Ebuild name:

app-misc/skim-0.16.1

Description

Command-line fuzzy finder

Added to portage

2025-03-10

speech-dispatcher - 0.12.0
Ebuild name:

app-accessibility/speech-dispatcher-0.12.0

Description

Speech synthesis interface

Added to portage

2025-03-10

talkfilters - 2.3.8-r2
Ebuild name:

app-text/talkfilters-2.3.8-r2

Description

Convert ordinary English text into text that mimics a stereotyped dia

Added to portage

2025-03-10

thrift - 0.21.0
Ebuild name:

dev-libs/thrift-0.21.0

Description

C++ bindings for Apache Thrift

Added to portage

2025-03-10

u2ps - 1.2-r1
Ebuild name:

app-text/u2ps-1.2-r1

Description

A text to PostScript converter like a2ps, but supports UTF-8

Added to portage

2025-03-10

unicorn - 2.1.3
Ebuild name:

dev-util/unicorn-2.1.3

Description

A lightweight multi-platform, multi-architecture CPU emulator framework

Added to portage

2025-03-10

2025-03-09
AusweisApp - 2.3.0
Ebuild name:

sys-auth/AusweisApp-2.3.0

Description

Official authentication app for German ID cards and residence permits

Added to portage

2025-03-09

aqualung - 2.0
Ebuild name:

media-sound/aqualung-2.0

Description

Music player for a wide range of formats designed for gapless playback

Added to portage

2025-03-09

aspell-af - 0.50.0-r1
Ebuild name:

app-dicts/aspell-af-0.50.0-r1

Description

Aspell () language dictionary

Added to portage

2025-03-09

aspell-am - 0.03.1-r1
Ebuild name:

app-dicts/aspell-am-0.03.1-r1

Description

Aspell () language dictionary

Added to portage

2025-03-09

aspell-ar - 1.2.0-r1
Ebuild name:

app-dicts/aspell-ar-1.2.0-r1

Description

Aspell () language dictionary

Added to portage

2025-03-09

aspell-ast - 0.01-r1
Ebuild name:

app-dicts/aspell-ast-0.01-r1

Description

Aspell () language dictionary

Added to portage

2025-03-09

dist-kernel - 6.6.82
Ebuild name:

virtual/dist-kernel-6.6.82

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-03-09

dropbox - 219.4.4463
Ebuild name:

net-misc/dropbox-219.4.4463

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2025-03-09

ensurepip-setuptools - 75.9.0
Ebuild name:

dev-python/ensurepip-setuptools-75.9.0

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2025-03-09

ensurepip-setuptools - 75.9.1
Ebuild name:

dev-python/ensurepip-setuptools-75.9.1

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2025-03-09

ensurepip-setuptools - 76.0.0
Ebuild name:

dev-python/ensurepip-setuptools-76.0.0

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2025-03-09

evolvotron - 0.8.2
Ebuild name:

x11-misc/evolvotron-0.8.2

Description

Generative art image evolver

Added to portage

2025-03-09

faudio - 25.03
Ebuild name:

app-emulation/faudio-25.03

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2025-03-09

gcc - 14.2.1_p20250308
Ebuild name:

sys-devel/gcc-14.2.1_p20250308

Description

The GNU Compiler Collection

Added to portage

2025-03-09

gentoo-kernel - 6.6.82
Ebuild name:

sys-kernel/gentoo-kernel-6.6.82

Description

Linux kernel built with Gentoo patches

Added to portage

2025-03-09

gentoo-kernel-bin - 6.6.82
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.82

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-03-09

gentoo-sources - 6.6.82
Ebuild name:

sys-kernel/gentoo-sources-6.6.82

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-03-09

ghdl - 5.0.1
Ebuild name:

sci-electronics/ghdl-5.0.1

Description

Open-source analyzer, compiler, and simulator for VHDL 2008/93/87

Added to portage

2025-03-09

intel-compute-runtime - 25.05.32567.18
Ebuild name:

dev-libs/intel-compute-runtime-25.05.32567.18

Description

Intel Graphics Compute Runtime for oneAPI Level Zero

Added to portage

2025-03-09

intel-graphics-compiler - 2.9.0
Ebuild name:

dev-util/intel-graphics-compiler-2.9.0

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen g

Added to portage

2025-03-09

intel-metrics-discovery - 1.14.180
Ebuild name:

dev-libs/intel-metrics-discovery-1.14.180

Description

A user mode library that provides access to GPU performan

Added to portage

2025-03-09

intel-metrics-library - 1.0.196
Ebuild name:

dev-libs/intel-metrics-library-1.0.196

Description

User mode driver helper library that provides access to GPU

Added to portage

2025-03-09

intel-vc-intrinsics - 0.22.1
Ebuild name:

dev-libs/intel-vc-intrinsics-0.22.1

Description

A set of new intrinsics on top of core LLVM IR instructions

Added to portage

2025-03-09

ipython - 8.34.0
Ebuild name:

dev-python/ipython-8.34.0

Description

Advanced interactive shell for Python

Added to portage

2025-03-09

ipython - 9.0.2
Ebuild name:

dev-python/ipython-9.0.2

Description

Advanced interactive shell for Python

Added to portage

2025-03-09

ksmbd-tools - 3.5.3
Ebuild name:

net-fs/ksmbd-tools-3.5.3

Description

cifsd/ksmbd kernel server userspace utilities

Added to portage

2025-03-09

kuickshow - 0.11.0
Ebuild name:

media-gfx/kuickshow-0.11.0

Description

Image viewer based on KDE Frameworks

Added to portage

2025-03-09

level-zero - 1.21.1
Ebuild name:

dev-libs/level-zero-1.21.1

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-03-09

libogg - 1.3.5-r2
Ebuild name:

media-libs/libogg-1.3.5-r2

Description

The Ogg media file format library

Added to portage

2025-03-09

libreoffice-bin - 25.2.0-r3
Ebuild name:

app-office/libreoffice-bin-25.2.0-r3

Description

A full office productivity suite. Binary package

Added to portage

2025-03-09

libvorbis - 1.3.7-r2
Ebuild name:

media-libs/libvorbis-1.3.7-r2

Description

The Ogg Vorbis sound file format library

Added to portage

2025-03-09

luasystem - 0.5.0
Ebuild name:

dev-lua/luasystem-0.5.0

Description

Platform independent system calls for Lua

Added to portage

2025-03-09

mac - 10.96
Ebuild name:

media-sound/mac-10.96

Description

Monkey's Audio Codecs

Added to portage

2025-03-09

md6sum - 1.0-r3
Ebuild name:

app-crypt/md6sum-1.0-r3

Description

A C implementation of MD6

Added to portage

2025-03-09

mdbook - 0.4.46
Ebuild name:

app-text/mdbook-0.4.46

Description

Create a book from markdown files

Added to portage

2025-03-09

mkdocs-autorefs - 1.4.1
Ebuild name:

dev-python/mkdocs-autorefs-1.4.1

Description

Automatically link across pages in MkDoc

Added to portage

2025-03-09

mkdocstrings - 0.28.3
Ebuild name:

dev-python/mkdocstrings-0.28.3

Description

Automatic documentation from sources, for MkDocs

Added to portage

2025-03-09

mkdocstrings-python - 1.16.3
Ebuild name:

dev-python/mkdocstrings-python-1.16.3

Description

Python handler for dev-python/mkdocstrings

Added to portage

2025-03-09

networkmanager-strongswan - 1.6.1
Ebuild name:

net-vpn/networkmanager-strongswan-1.6.1

Description

NetworkManager StrongSwan plugin

Added to portage

2025-03-09

nvc - 1.15.2
Ebuild name:

sci-electronics/nvc-1.15.2

Description

NVC is a VHDL compiler and simulator

Added to portage

2025-03-09

oorexx - 5.1.0_beta12932
Ebuild name:

dev-lang/oorexx-5.1.0_beta12932

Description

Open source implementation of Object Rexx

Added to portage

2025-03-09

recurring-ical-events - 3.6.0
Ebuild name:

dev-python/recurring-ical-events-3.6.0

Description

Repeat ICalendar events by RRULE, RDATE and EXDATE

Added to portage

2025-03-09

rr - 5.8.0
Ebuild name:

dev-debug/rr-5.8.0

Description

Record and Replay Framework

Added to portage

2025-03-09

rr - 5.9.0-r1
Ebuild name:

dev-debug/rr-5.9.0-r1

Description

Record and Replay Framework

Added to portage

2025-03-09

rr - 9999
Ebuild name:

dev-debug/rr-9999

Description

Record and Replay Framework

Added to portage

2025-03-09

rspamd - 3.11.1
Ebuild name:

mail-filter/rspamd-3.11.1

Description

Rapid spam filtering system

Added to portage

2025-03-09

scripttest - 2.0
Ebuild name:

dev-python/scripttest-2.0

Description

Helper to test command-line scripts

Added to portage

2025-03-09

selinux-accountsd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-accountsd-2.20250213-r1

Description

SELinux policy for accountsd

Added to portage

2025-03-09

selinux-acct - 2.20250213-r1
Ebuild name:

sec-policy/selinux-acct-2.20250213-r1

Description

SELinux policy for acct

Added to portage

2025-03-09

selinux-afs - 2.20250213-r1
Ebuild name:

sec-policy/selinux-afs-2.20250213-r1

Description

SELinux policy for afs

Added to portage

2025-03-09

selinux-aide - 2.20250213-r1
Ebuild name:

sec-policy/selinux-aide-2.20250213-r1

Description

SELinux policy for aide

Added to portage

2025-03-09

selinux-alsa - 2.20250213-r1
Ebuild name:

sec-policy/selinux-alsa-2.20250213-r1

Description

SELinux policy for alsa

Added to portage

2025-03-09

selinux-amanda - 2.20250213-r1
Ebuild name:

sec-policy/selinux-amanda-2.20250213-r1

Description

SELinux policy for amanda

Added to portage

2025-03-09

selinux-amavis - 2.20250213-r1
Ebuild name:

sec-policy/selinux-amavis-2.20250213-r1

Description

SELinux policy for amavis

Added to portage

2025-03-09

selinux-android - 2.20250213-r1
Ebuild name:

sec-policy/selinux-android-2.20250213-r1

Description

SELinux policy for android

Added to portage

2025-03-09

selinux-apache - 2.20250213-r1
Ebuild name:

sec-policy/selinux-apache-2.20250213-r1

Description

SELinux policy for apache

Added to portage

2025-03-09

selinux-apcupsd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-apcupsd-2.20250213-r1

Description

SELinux policy for apcupsd

Added to portage

2025-03-09

selinux-apm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-apm-2.20250213-r1

Description

SELinux policy for acpi

Added to portage

2025-03-09

selinux-arpwatch - 2.20250213-r1
Ebuild name:

sec-policy/selinux-arpwatch-2.20250213-r1

Description

SELinux policy for arpwatch

Added to portage

2025-03-09

selinux-asterisk - 2.20250213-r1
Ebuild name:

sec-policy/selinux-asterisk-2.20250213-r1

Description

SELinux policy for asterisk

Added to portage

2025-03-09

selinux-at - 2.20250213-r1
Ebuild name:

sec-policy/selinux-at-2.20250213-r1

Description

SELinux policy for at

Added to portage

2025-03-09

selinux-automount - 2.20250213-r1
Ebuild name:

sec-policy/selinux-automount-2.20250213-r1

Description

SELinux policy for automount

Added to portage

2025-03-09

selinux-avahi - 2.20250213-r1
Ebuild name:

sec-policy/selinux-avahi-2.20250213-r1

Description

SELinux policy for avahi

Added to portage

2025-03-09

selinux-awstats - 2.20250213-r1
Ebuild name:

sec-policy/selinux-awstats-2.20250213-r1

Description

SELinux policy for awstats

Added to portage

2025-03-09

selinux-backup - 2.20250213-r1
Ebuild name:

sec-policy/selinux-backup-2.20250213-r1

Description

SELinux policy for generic backup apps

Added to portage

2025-03-09

selinux-bacula - 2.20250213-r1
Ebuild name:

sec-policy/selinux-bacula-2.20250213-r1

Description

SELinux policy for bacula

Added to portage

2025-03-09

selinux-base - 2.20250213-r1
Ebuild name:

sec-policy/selinux-base-2.20250213-r1

Description

Gentoo base policy for SELinux

Added to portage

2025-03-09

selinux-base-policy - 2.20250213-r1
Ebuild name:

sec-policy/selinux-base-policy-2.20250213-r1

Description

SELinux policy for core modules

Added to portage

2025-03-09

selinux-bind - 2.20250213-r1
Ebuild name:

sec-policy/selinux-bind-2.20250213-r1

Description

SELinux policy for bind

Added to portage

2025-03-09

selinux-bitcoin - 2.20250213-r1
Ebuild name:

sec-policy/selinux-bitcoin-2.20250213-r1

Description

SELinux policy for bitcoin

Added to portage

2025-03-09

selinux-bitlbee - 2.20250213-r1
Ebuild name:

sec-policy/selinux-bitlbee-2.20250213-r1

Description

SELinux policy for bitlbee

Added to portage

2025-03-09

selinux-bluetooth - 2.20250213-r1
Ebuild name:

sec-policy/selinux-bluetooth-2.20250213-r1

Description

SELinux policy for bluetooth

Added to portage

2025-03-09

selinux-brctl - 2.20250213-r1
Ebuild name:

sec-policy/selinux-brctl-2.20250213-r1

Description

SELinux policy for brctl

Added to portage

2025-03-09

selinux-cachefilesd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cachefilesd-2.20250213-r1

Description

SELinux policy for cachefilesd

Added to portage

2025-03-09

selinux-calamaris - 2.20250213-r1
Ebuild name:

sec-policy/selinux-calamaris-2.20250213-r1

Description

SELinux policy for calamaris

Added to portage

2025-03-09

selinux-canna - 2.20250213-r1
Ebuild name:

sec-policy/selinux-canna-2.20250213-r1

Description

SELinux policy for canna

Added to portage

2025-03-09

selinux-cdrecord - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cdrecord-2.20250213-r1

Description

SELinux policy for cdrecord

Added to portage

2025-03-09

selinux-ceph - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ceph-2.20250213-r1

Description

SELinux policy for ceph

Added to portage

2025-03-09

selinux-certbot - 2.20250213-r1
Ebuild name:

sec-policy/selinux-certbot-2.20250213-r1

Description

SELinux policy for certbot

Added to portage

2025-03-09

selinux-cgmanager - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cgmanager-2.20250213-r1

Description

SELinux policy for cgmanager

Added to portage

2025-03-09

selinux-cgroup - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cgroup-2.20250213-r1

Description

SELinux policy for cgroup

Added to portage

2025-03-09

selinux-chromium - 2.20250213-r1
Ebuild name:

sec-policy/selinux-chromium-2.20250213-r1

Description

SELinux policy for chromium

Added to portage

2025-03-09

selinux-chronyd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-chronyd-2.20250213-r1

Description

SELinux policy for chronyd

Added to portage

2025-03-09

selinux-clamav - 2.20250213-r1
Ebuild name:

sec-policy/selinux-clamav-2.20250213-r1

Description

SELinux policy for clamav

Added to portage

2025-03-09

selinux-cloudinit - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cloudinit-2.20250213-r1

Description

SELinux policy for cloudinit

Added to portage

2025-03-09

selinux-collectd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-collectd-2.20250213-r1

Description

SELinux policy for collectd

Added to portage

2025-03-09

selinux-colord - 2.20250213-r1
Ebuild name:

sec-policy/selinux-colord-2.20250213-r1

Description

SELinux policy for colord

Added to portage

2025-03-09

selinux-container - 2.20250213-r1
Ebuild name:

sec-policy/selinux-container-2.20250213-r1

Description

SELinux policy for container

Added to portage

2025-03-09

selinux-corosync - 2.20250213-r1
Ebuild name:

sec-policy/selinux-corosync-2.20250213-r1

Description

SELinux policy for corosync

Added to portage

2025-03-09

selinux-couchdb - 2.20250213-r1
Ebuild name:

sec-policy/selinux-couchdb-2.20250213-r1

Description

SELinux policy for couchdb

Added to portage

2025-03-09

selinux-courier - 2.20250213-r1
Ebuild name:

sec-policy/selinux-courier-2.20250213-r1

Description

SELinux policy for courier

Added to portage

2025-03-09

selinux-cpucontrol - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cpucontrol-2.20250213-r1

Description

SELinux policy for cpucontrol

Added to portage

2025-03-09

selinux-cpufreqselector - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cpufreqselector-2.20250213-r1

Description

SELinux policy for cpufreqselector

Added to portage

2025-03-09

selinux-crio - 2.20250213-r1
Ebuild name:

sec-policy/selinux-crio-2.20250213-r1

Description

SELinux policy for cri-o

Added to portage

2025-03-09

selinux-cups - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cups-2.20250213-r1

Description

SELinux policy for cups

Added to portage

2025-03-09

selinux-cvs - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cvs-2.20250213-r1

Description

SELinux policy for cvs

Added to portage

2025-03-09

selinux-cyphesis - 2.20250213-r1
Ebuild name:

sec-policy/selinux-cyphesis-2.20250213-r1

Description

SELinux policy for cyphesis

Added to portage

2025-03-09

selinux-daemontools - 2.20250213-r1
Ebuild name:

sec-policy/selinux-daemontools-2.20250213-r1

Description

SELinux policy for daemontools

Added to portage

2025-03-09

selinux-dante - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dante-2.20250213-r1

Description

SELinux policy for dante

Added to portage

2025-03-09

selinux-dbadm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dbadm-2.20250213-r1

Description

SELinux policy for dbadm

Added to portage

2025-03-09

selinux-dbskk - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dbskk-2.20250213-r1

Description

SELinux policy for dbskk

Added to portage

2025-03-09

selinux-dbus - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dbus-2.20250213-r1

Description

SELinux policy for dbus

Added to portage

2025-03-09

selinux-ddclient - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ddclient-2.20250213-r1

Description

SELinux policy for ddclient

Added to portage

2025-03-09

selinux-devicekit - 2.20250213-r1
Ebuild name:

sec-policy/selinux-devicekit-2.20250213-r1

Description

SELinux policy for devicekit

Added to portage

2025-03-09

selinux-dhcp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dhcp-2.20250213-r1

Description

SELinux policy for dhcp

Added to portage

2025-03-09

selinux-dictd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dictd-2.20250213-r1

Description

SELinux policy for dictd

Added to portage

2025-03-09

selinux-dirmngr - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dirmngr-2.20250213-r1

Description

SELinux policy for dirmngr

Added to portage

2025-03-09

selinux-dirsrv - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dirsrv-2.20250213-r1

Description

SELinux policy for dirsrv

Added to portage

2025-03-09

selinux-distcc - 2.20250213-r1
Ebuild name:

sec-policy/selinux-distcc-2.20250213-r1

Description

SELinux policy for distcc

Added to portage

2025-03-09

selinux-djbdns - 2.20250213-r1
Ebuild name:

sec-policy/selinux-djbdns-2.20250213-r1

Description

SELinux policy for djbdns

Added to portage

2025-03-09

selinux-dkim - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dkim-2.20250213-r1

Description

SELinux policy for dkim

Added to portage

2025-03-09

selinux-dmidecode - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dmidecode-2.20250213-r1

Description

SELinux policy for dmidecode

Added to portage

2025-03-09

selinux-dnsmasq - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dnsmasq-2.20250213-r1

Description

SELinux policy for dnsmasq

Added to portage

2025-03-09

selinux-docker - 2.20250213-r1
Ebuild name:

sec-policy/selinux-docker-2.20250213-r1

Description

SELinux policy for docker

Added to portage

2025-03-09

selinux-dovecot - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dovecot-2.20250213-r1

Description

SELinux policy for dovecot

Added to portage

2025-03-09

selinux-dpkg - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dpkg-2.20250213-r1

Description

SELinux policy for dpkg

Added to portage

2025-03-09

selinux-dracut - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dracut-2.20250213-r1

Description

SELinux policy for dracut

Added to portage

2025-03-09

selinux-dropbox - 2.20250213-r1
Ebuild name:

sec-policy/selinux-dropbox-2.20250213-r1

Description

SELinux policy for dropbox

Added to portage

2025-03-09

selinux-entropyd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-entropyd-2.20250213-r1

Description

SELinux policy for entropyd

Added to portage

2025-03-09

selinux-evolution - 2.20250213-r1
Ebuild name:

sec-policy/selinux-evolution-2.20250213-r1

Description

SELinux policy for evolution

Added to portage

2025-03-09

selinux-exim - 2.20250213-r1
Ebuild name:

sec-policy/selinux-exim-2.20250213-r1

Description

SELinux policy for exim

Added to portage

2025-03-09

selinux-fail2ban - 2.20250213-r1
Ebuild name:

sec-policy/selinux-fail2ban-2.20250213-r1

Description

SELinux policy for fail2ban

Added to portage

2025-03-09

selinux-fetchmail - 2.20250213-r1
Ebuild name:

sec-policy/selinux-fetchmail-2.20250213-r1

Description

SELinux policy for fetchmail

Added to portage

2025-03-09

selinux-finger - 2.20250213-r1
Ebuild name:

sec-policy/selinux-finger-2.20250213-r1

Description

SELinux policy for finger

Added to portage

2025-03-09

selinux-firewalld - 2.20250213-r1
Ebuild name:

sec-policy/selinux-firewalld-2.20250213-r1

Description

SELinux policy for firewalld

Added to portage

2025-03-09

selinux-flash - 2.20250213-r1
Ebuild name:

sec-policy/selinux-flash-2.20250213-r1

Description

SELinux policy for flash

Added to portage

2025-03-09

selinux-fprintd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-fprintd-2.20250213-r1

Description

SELinux policy for fprintd

Added to portage

2025-03-09

selinux-ftp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ftp-2.20250213-r1

Description

SELinux policy for ftp

Added to portage

2025-03-09

selinux-games - 2.20250213-r1
Ebuild name:

sec-policy/selinux-games-2.20250213-r1

Description

SELinux policy for games

Added to portage

2025-03-09

selinux-gatekeeper - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gatekeeper-2.20250213-r1

Description

SELinux policy for gatekeeper

Added to portage

2025-03-09

selinux-git - 2.20250213-r1
Ebuild name:

sec-policy/selinux-git-2.20250213-r1

Description

SELinux policy for git

Added to portage

2025-03-09

selinux-gitosis - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gitosis-2.20250213-r1

Description

SELinux policy for gitosis

Added to portage

2025-03-09

selinux-glusterfs - 2.20250213-r1
Ebuild name:

sec-policy/selinux-glusterfs-2.20250213-r1

Description

SELinux policy for glusterfs

Added to portage

2025-03-09

selinux-gnome - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gnome-2.20250213-r1

Description

SELinux policy for gnome

Added to portage

2025-03-09

selinux-googletalk - 2.20250213-r1
Ebuild name:

sec-policy/selinux-googletalk-2.20250213-r1

Description

SELinux policy for googletalk

Added to portage

2025-03-09

selinux-gorg - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gorg-2.20250213-r1

Description

SELinux policy for gorg

Added to portage

2025-03-09

selinux-gpg - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gpg-2.20250213-r1

Description

SELinux policy for gpg

Added to portage

2025-03-09

selinux-gpm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gpm-2.20250213-r1

Description

SELinux policy for gpm

Added to portage

2025-03-09

selinux-gpsd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gpsd-2.20250213-r1

Description

SELinux policy for gpsd

Added to portage

2025-03-09

selinux-gssproxy - 2.20250213-r1
Ebuild name:

sec-policy/selinux-gssproxy-2.20250213-r1

Description

SELinux policy for gssproxy

Added to portage

2025-03-09

selinux-hddtemp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-hddtemp-2.20250213-r1

Description

SELinux policy for hddtemp

Added to portage

2025-03-09

selinux-hostapd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-hostapd-2.20250213-r1

Description

SELinux policy for hostapd

Added to portage

2025-03-09

selinux-icecast - 2.20250213-r1
Ebuild name:

sec-policy/selinux-icecast-2.20250213-r1

Description

SELinux policy for icecast

Added to portage

2025-03-09

selinux-ifplugd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ifplugd-2.20250213-r1

Description

SELinux policy for ifplugd

Added to portage

2025-03-09

selinux-inetd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-inetd-2.20250213-r1

Description

SELinux policy for inetd

Added to portage

2025-03-09

selinux-inn - 2.20250213-r1
Ebuild name:

sec-policy/selinux-inn-2.20250213-r1

Description

SELinux policy for inn

Added to portage

2025-03-09

selinux-ipsec - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ipsec-2.20250213-r1

Description

SELinux policy for ipsec

Added to portage

2025-03-09

selinux-irc - 2.20250213-r1
Ebuild name:

sec-policy/selinux-irc-2.20250213-r1

Description

SELinux policy for irc

Added to portage

2025-03-09

selinux-ircd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ircd-2.20250213-r1

Description

SELinux policy for ircd

Added to portage

2025-03-09

selinux-irqbalance - 2.20250213-r1
Ebuild name:

sec-policy/selinux-irqbalance-2.20250213-r1

Description

SELinux policy for irqbalance

Added to portage

2025-03-09

selinux-jabber - 2.20250213-r1
Ebuild name:

sec-policy/selinux-jabber-2.20250213-r1

Description

SELinux policy for jabber

Added to portage

2025-03-09

selinux-java - 2.20250213-r1
Ebuild name:

sec-policy/selinux-java-2.20250213-r1

Description

SELinux policy for java

Added to portage

2025-03-09

selinux-kdeconnect - 2.20250213-r1
Ebuild name:

sec-policy/selinux-kdeconnect-2.20250213-r1

Description

SELinux policy for kdeconnect

Added to portage

2025-03-09

selinux-kdump - 2.20250213-r1
Ebuild name:

sec-policy/selinux-kdump-2.20250213-r1

Description

SELinux policy for kdump

Added to portage

2025-03-09

selinux-kerberos - 2.20250213-r1
Ebuild name:

sec-policy/selinux-kerberos-2.20250213-r1

Description

SELinux policy for kerberos

Added to portage

2025-03-09

selinux-kerneloops - 2.20250213-r1
Ebuild name:

sec-policy/selinux-kerneloops-2.20250213-r1

Description

SELinux policy for kerneloops

Added to portage

2025-03-09

selinux-kismet - 2.20250213-r1
Ebuild name:

sec-policy/selinux-kismet-2.20250213-r1

Description

SELinux policy for kismet

Added to portage

2025-03-09

selinux-ksmtuned - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ksmtuned-2.20250213-r1

Description

SELinux policy for ksmtuned

Added to portage

2025-03-09

selinux-kubernetes - 2.20250213-r1
Ebuild name:

sec-policy/selinux-kubernetes-2.20250213-r1

Description

SELinux policy for kubernetes

Added to portage

2025-03-09

selinux-ldap - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ldap-2.20250213-r1

Description

SELinux policy for ldap

Added to portage

2025-03-09

selinux-links - 2.20250213-r1
Ebuild name:

sec-policy/selinux-links-2.20250213-r1

Description

SELinux policy for links

Added to portage

2025-03-09

selinux-lircd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-lircd-2.20250213-r1

Description

SELinux policy for lircd

Added to portage

2025-03-09

selinux-loadkeys - 2.20250213-r1
Ebuild name:

sec-policy/selinux-loadkeys-2.20250213-r1

Description

SELinux policy for loadkeys

Added to portage

2025-03-09

selinux-logrotate - 2.20250213-r1
Ebuild name:

sec-policy/selinux-logrotate-2.20250213-r1

Description

SELinux policy for logrotate

Added to portage

2025-03-09

selinux-logsentry - 2.20250213-r1
Ebuild name:

sec-policy/selinux-logsentry-2.20250213-r1

Description

SELinux policy for logsentry

Added to portage

2025-03-09

selinux-logwatch - 2.20250213-r1
Ebuild name:

sec-policy/selinux-logwatch-2.20250213-r1

Description

SELinux policy for logwatch

Added to portage

2025-03-09

selinux-lpd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-lpd-2.20250213-r1

Description

SELinux policy for lpd

Added to portage

2025-03-09

selinux-makewhatis - 2.20250213-r1
Ebuild name:

sec-policy/selinux-makewhatis-2.20250213-r1

Description

SELinux policy for makewhatis

Added to portage

2025-03-09

selinux-mandb - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mandb-2.20250213-r1

Description

SELinux policy for mandb

Added to portage

2025-03-09

selinux-matrixd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-matrixd-2.20250213-r1

Description

SELinux policy for matrixd

Added to portage

2025-03-09

selinux-mcelog - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mcelog-2.20250213-r1

Description

SELinux policy for mcelog

Added to portage

2025-03-09

selinux-memcached - 2.20250213-r1
Ebuild name:

sec-policy/selinux-memcached-2.20250213-r1

Description

SELinux policy for memcached

Added to portage

2025-03-09

selinux-milter - 2.20250213-r1
Ebuild name:

sec-policy/selinux-milter-2.20250213-r1

Description

SELinux policy for milter

Added to portage

2025-03-09

selinux-modemmanager - 2.20250213-r1
Ebuild name:

sec-policy/selinux-modemmanager-2.20250213-r1

Description

SELinux policy for modemmanager

Added to portage

2025-03-09

selinux-mono - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mono-2.20250213-r1

Description

SELinux policy for mono

Added to portage

2025-03-09

selinux-mozilla - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mozilla-2.20250213-r1

Description

SELinux policy for mozilla

Added to portage

2025-03-09

selinux-mpd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mpd-2.20250213-r1

Description

SELinux policy for mpd

Added to portage

2025-03-09

selinux-mplayer - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mplayer-2.20250213-r1

Description

SELinux policy for mplayer

Added to portage

2025-03-09

selinux-mrtg - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mrtg-2.20250213-r1

Description

SELinux policy for mrtg

Added to portage

2025-03-09

selinux-munin - 2.20250213-r1
Ebuild name:

sec-policy/selinux-munin-2.20250213-r1

Description

SELinux policy for munin

Added to portage

2025-03-09

selinux-mutt - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mutt-2.20250213-r1

Description

SELinux policy for mutt

Added to portage

2025-03-09

selinux-mysql - 2.20250213-r1
Ebuild name:

sec-policy/selinux-mysql-2.20250213-r1

Description

SELinux policy for mysql

Added to portage

2025-03-09

selinux-nagios - 2.20250213-r1
Ebuild name:

sec-policy/selinux-nagios-2.20250213-r1

Description

SELinux policy for nagios

Added to portage

2025-03-09

selinux-ncftool - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ncftool-2.20250213-r1

Description

SELinux policy for ncftool

Added to portage

2025-03-09

selinux-networkmanager - 2.20250213-r1
Ebuild name:

sec-policy/selinux-networkmanager-2.20250213-r1

Description

SELinux policy for networkmanager

Added to portage

2025-03-09

selinux-nginx - 2.20250213-r1
Ebuild name:

sec-policy/selinux-nginx-2.20250213-r1

Description

SELinux policy for nginx

Added to portage

2025-03-09

selinux-node_exporter - 2.20250213-r1
Ebuild name:

sec-policy/selinux-node_exporter-2.20250213-r1

Description

SELinux policy for node_exporter

Added to portage

2025-03-09

selinux-nslcd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-nslcd-2.20250213-r1

Description

SELinux policy for nslcd

Added to portage

2025-03-09

selinux-ntop - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ntop-2.20250213-r1

Description

SELinux policy for ntop

Added to portage

2025-03-09

selinux-ntp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ntp-2.20250213-r1

Description

SELinux policy for ntp

Added to portage

2025-03-09

selinux-nut - 2.20250213-r1
Ebuild name:

sec-policy/selinux-nut-2.20250213-r1

Description

SELinux policy for nut

Added to portage

2025-03-09

selinux-nx - 2.20250213-r1
Ebuild name:

sec-policy/selinux-nx-2.20250213-r1

Description

SELinux policy for nx

Added to portage

2025-03-09

selinux-obfs4proxy - 2.20250213-r1
Ebuild name:

sec-policy/selinux-obfs4proxy-2.20250213-r1

Description

SELinux policy for obfs4proxy

Added to portage

2025-03-09

selinux-oddjob - 2.20250213-r1
Ebuild name:

sec-policy/selinux-oddjob-2.20250213-r1

Description

SELinux policy for oddjob

Added to portage

2025-03-09

selinux-oident - 2.20250213-r1
Ebuild name:

sec-policy/selinux-oident-2.20250213-r1

Description

SELinux policy for oident

Added to portage

2025-03-09

selinux-openct - 2.20250213-r1
Ebuild name:

sec-policy/selinux-openct-2.20250213-r1

Description

SELinux policy for openct

Added to portage

2025-03-09

selinux-openrc - 2.20250213-r1
Ebuild name:

sec-policy/selinux-openrc-2.20250213-r1

Description

SELinux policy for openrc

Added to portage

2025-03-09

selinux-opensm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-opensm-2.20250213-r1

Description

SELinux policy for opensm

Added to portage

2025-03-09

selinux-openvpn - 2.20250213-r1
Ebuild name:

sec-policy/selinux-openvpn-2.20250213-r1

Description

SELinux policy for openvpn

Added to portage

2025-03-09

selinux-pan - 2.20250213-r1
Ebuild name:

sec-policy/selinux-pan-2.20250213-r1

Description

SELinux policy for pan

Added to portage

2025-03-09

selinux-pcscd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-pcscd-2.20250213-r1

Description

SELinux policy for pcscd

Added to portage

2025-03-09

selinux-phpfpm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-phpfpm-2.20250213-r1

Description

SELinux policy for phpfpm

Added to portage

2025-03-09

selinux-plymouthd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-plymouthd-2.20250213-r1

Description

SELinux policy for plymouthd

Added to portage

2025-03-09

selinux-podman - 2.20250213-r1
Ebuild name:

sec-policy/selinux-podman-2.20250213-r1

Description

SELinux policy for podman

Added to portage

2025-03-09

selinux-policykit - 2.20250213-r1
Ebuild name:

sec-policy/selinux-policykit-2.20250213-r1

Description

SELinux policy for policykit

Added to portage

2025-03-09

selinux-portmap - 2.20250213-r1
Ebuild name:

sec-policy/selinux-portmap-2.20250213-r1

Description

SELinux policy for portmap

Added to portage

2025-03-09

selinux-postfix - 2.20250213-r1
Ebuild name:

sec-policy/selinux-postfix-2.20250213-r1

Description

SELinux policy for postfix

Added to portage

2025-03-09

selinux-postgresql - 2.20250213-r1
Ebuild name:

sec-policy/selinux-postgresql-2.20250213-r1

Description

SELinux policy for postgresql

Added to portage

2025-03-09

selinux-postgrey - 2.20250213-r1
Ebuild name:

sec-policy/selinux-postgrey-2.20250213-r1

Description

SELinux policy for postgrey

Added to portage

2025-03-09

selinux-powerprofiles - 2.20250213-r1
Ebuild name:

sec-policy/selinux-powerprofiles-2.20250213-r1

Description

SELinux policy for powerprofiles

Added to portage

2025-03-09

selinux-ppp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ppp-2.20250213-r1

Description

SELinux policy for ppp

Added to portage

2025-03-09

selinux-privoxy - 2.20250213-r1
Ebuild name:

sec-policy/selinux-privoxy-2.20250213-r1

Description

SELinux policy for privoxy

Added to portage

2025-03-09

selinux-procmail - 2.20250213-r1
Ebuild name:

sec-policy/selinux-procmail-2.20250213-r1

Description

SELinux policy for procmail

Added to portage

2025-03-09

selinux-psad - 2.20250213-r1
Ebuild name:

sec-policy/selinux-psad-2.20250213-r1

Description

SELinux policy for psad

Added to portage

2025-03-09

selinux-publicfile - 2.20250213-r1
Ebuild name:

sec-policy/selinux-publicfile-2.20250213-r1

Description

SELinux policy for publicfile

Added to portage

2025-03-09

selinux-pulseaudio - 2.20250213-r1
Ebuild name:

sec-policy/selinux-pulseaudio-2.20250213-r1

Description

SELinux policy for pulseaudio

Added to portage

2025-03-09

selinux-puppet - 2.20250213-r1
Ebuild name:

sec-policy/selinux-puppet-2.20250213-r1

Description

SELinux policy for puppet

Added to portage

2025-03-09

selinux-pyzor - 2.20250213-r1
Ebuild name:

sec-policy/selinux-pyzor-2.20250213-r1

Description

SELinux policy for pyzor

Added to portage

2025-03-09

selinux-qemu - 2.20250213-r1
Ebuild name:

sec-policy/selinux-qemu-2.20250213-r1

Description

SELinux policy for qemu

Added to portage

2025-03-09

selinux-qmail - 2.20250213-r1
Ebuild name:

sec-policy/selinux-qmail-2.20250213-r1

Description

SELinux policy for qmail

Added to portage

2025-03-09

selinux-quota - 2.20250213-r1
Ebuild name:

sec-policy/selinux-quota-2.20250213-r1

Description

SELinux policy for quota

Added to portage

2025-03-09

selinux-radius - 2.20250213-r1
Ebuild name:

sec-policy/selinux-radius-2.20250213-r1

Description

SELinux policy for radius

Added to portage

2025-03-09

selinux-radvd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-radvd-2.20250213-r1

Description

SELinux policy for radvd

Added to portage

2025-03-09

selinux-rasdaemon - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rasdaemon-2.20250213-r1

Description

SELinux policy for rasdaemon

Added to portage

2025-03-09

selinux-razor - 2.20250213-r1
Ebuild name:

sec-policy/selinux-razor-2.20250213-r1

Description

SELinux policy for razor

Added to portage

2025-03-09

selinux-redis - 2.20250213-r1
Ebuild name:

sec-policy/selinux-redis-2.20250213-r1

Description

SELinux policy for redis

Added to portage

2025-03-09

selinux-remotelogin - 2.20250213-r1
Ebuild name:

sec-policy/selinux-remotelogin-2.20250213-r1

Description

SELinux policy for remotelogin

Added to portage

2025-03-09

selinux-resolvconf - 2.20250213-r1
Ebuild name:

sec-policy/selinux-resolvconf-2.20250213-r1

Description

SELinux policy for resolvconf

Added to portage

2025-03-09

selinux-rngd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rngd-2.20250213-r1

Description

SELinux policy for rngd

Added to portage

2025-03-09

selinux-rootlesskit - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rootlesskit-2.20250213-r1

Description

SELinux policy for rootlesskit

Added to portage

2025-03-09

selinux-rpc - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rpc-2.20250213-r1

Description

SELinux policy for rpc

Added to portage

2025-03-09

selinux-rpcbind - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rpcbind-2.20250213-r1

Description

SELinux policy for rpcbind

Added to portage

2025-03-09

selinux-rpm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rpm-2.20250213-r1

Description

SELinux policy for rpm

Added to portage

2025-03-09

selinux-rssh - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rssh-2.20250213-r1

Description

SELinux policy for rssh

Added to portage

2025-03-09

selinux-rtkit - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rtkit-2.20250213-r1

Description

SELinux policy for rtkit

Added to portage

2025-03-09

selinux-rtorrent - 2.20250213-r1
Ebuild name:

sec-policy/selinux-rtorrent-2.20250213-r1

Description

SELinux policy for rtorrent

Added to portage

2025-03-09

selinux-salt - 2.20250213-r1
Ebuild name:

sec-policy/selinux-salt-2.20250213-r1

Description

SELinux policy for salt

Added to portage

2025-03-09

selinux-samba - 2.20250213-r1
Ebuild name:

sec-policy/selinux-samba-2.20250213-r1

Description

SELinux policy for samba

Added to portage

2025-03-09

selinux-sasl - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sasl-2.20250213-r1

Description

SELinux policy for sasl

Added to portage

2025-03-09

selinux-screen - 2.20250213-r1
Ebuild name:

sec-policy/selinux-screen-2.20250213-r1

Description

SELinux policy for screen

Added to portage

2025-03-09

selinux-secadm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-secadm-2.20250213-r1

Description

SELinux policy for secadm

Added to portage

2025-03-09

selinux-sendmail - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sendmail-2.20250213-r1

Description

SELinux policy for sendmail

Added to portage

2025-03-09

selinux-sensord - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sensord-2.20250213-r1

Description

SELinux policy for sensord

Added to portage

2025-03-09

selinux-shorewall - 2.20250213-r1
Ebuild name:

sec-policy/selinux-shorewall-2.20250213-r1

Description

SELinux policy for shorewall

Added to portage

2025-03-09

selinux-shutdown - 2.20250213-r1
Ebuild name:

sec-policy/selinux-shutdown-2.20250213-r1

Description

SELinux policy for shutdown

Added to portage

2025-03-09

selinux-skype - 2.20250213-r1
Ebuild name:

sec-policy/selinux-skype-2.20250213-r1

Description

SELinux policy for skype

Added to portage

2025-03-09

selinux-slocate - 2.20250213-r1
Ebuild name:

sec-policy/selinux-slocate-2.20250213-r1

Description

SELinux policy for slocate

Added to portage

2025-03-09

selinux-slrnpull - 2.20250213-r1
Ebuild name:

sec-policy/selinux-slrnpull-2.20250213-r1

Description

SELinux policy for slrnpull

Added to portage

2025-03-09

selinux-smartmon - 2.20250213-r1
Ebuild name:

sec-policy/selinux-smartmon-2.20250213-r1

Description

SELinux policy for smartmon

Added to portage

2025-03-09

selinux-smokeping - 2.20250213-r1
Ebuild name:

sec-policy/selinux-smokeping-2.20250213-r1

Description

SELinux policy for smokeping

Added to portage

2025-03-09

selinux-snmp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-snmp-2.20250213-r1

Description

SELinux policy for snmp

Added to portage

2025-03-09

selinux-snort - 2.20250213-r1
Ebuild name:

sec-policy/selinux-snort-2.20250213-r1

Description

SELinux policy for snort

Added to portage

2025-03-09

selinux-soundserver - 2.20250213-r1
Ebuild name:

sec-policy/selinux-soundserver-2.20250213-r1

Description

SELinux policy for soundserver

Added to portage

2025-03-09

selinux-spamassassin - 2.20250213-r1
Ebuild name:

sec-policy/selinux-spamassassin-2.20250213-r1

Description

SELinux policy for spamassassin

Added to portage

2025-03-09

selinux-squid - 2.20250213-r1
Ebuild name:

sec-policy/selinux-squid-2.20250213-r1

Description

SELinux policy for squid

Added to portage

2025-03-09

selinux-sssd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sssd-2.20250213-r1

Description

SELinux policy for sssd

Added to portage

2025-03-09

selinux-stunnel - 2.20250213-r1
Ebuild name:

sec-policy/selinux-stunnel-2.20250213-r1

Description

SELinux policy for stunnel

Added to portage

2025-03-09

selinux-subsonic - 2.20250213-r1
Ebuild name:

sec-policy/selinux-subsonic-2.20250213-r1

Description

SELinux policy for subsonic

Added to portage

2025-03-09

selinux-sudo - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sudo-2.20250213-r1

Description

SELinux policy for sudo

Added to portage

2025-03-09

selinux-switcheroo - 2.20250213-r1
Ebuild name:

sec-policy/selinux-switcheroo-2.20250213-r1

Description

SELinux policy for switcheroo

Added to portage

2025-03-09

selinux-sxid - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sxid-2.20250213-r1

Description

SELinux policy for sxid

Added to portage

2025-03-09

selinux-syncthing - 2.20250213-r1
Ebuild name:

sec-policy/selinux-syncthing-2.20250213-r1

Description

SELinux policy for syncthing

Added to portage

2025-03-09

selinux-sysstat - 2.20250213-r1
Ebuild name:

sec-policy/selinux-sysstat-2.20250213-r1

Description

SELinux policy for sysstat

Added to portage

2025-03-09

selinux-tboot - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tboot-2.20250213-r1

Description

SELinux policy for tboot

Added to portage

2025-03-09

selinux-tcpd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tcpd-2.20250213-r1

Description

SELinux policy for tcpd

Added to portage

2025-03-09

selinux-tcsd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tcsd-2.20250213-r1

Description

SELinux policy for tcsd

Added to portage

2025-03-09

selinux-telnet - 2.20250213-r1
Ebuild name:

sec-policy/selinux-telnet-2.20250213-r1

Description

SELinux policy for telnet

Added to portage

2025-03-09

selinux-tftp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tftp-2.20250213-r1

Description

SELinux policy for tftp

Added to portage

2025-03-09

selinux-tgtd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tgtd-2.20250213-r1

Description

SELinux policy for tgtd

Added to portage

2025-03-09

selinux-thunderbird - 2.20250213-r1
Ebuild name:

sec-policy/selinux-thunderbird-2.20250213-r1

Description

SELinux policy for thunderbird

Added to portage

2025-03-09

selinux-thunderbolt - 2.20250213-r1
Ebuild name:

sec-policy/selinux-thunderbolt-2.20250213-r1

Description

SELinux policy for thunderbolt

Added to portage

2025-03-09

selinux-timidity - 2.20250213-r1
Ebuild name:

sec-policy/selinux-timidity-2.20250213-r1

Description

SELinux policy for timidity

Added to portage

2025-03-09

selinux-tmpreaper - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tmpreaper-2.20250213-r1

Description

SELinux policy for tmpreaper

Added to portage

2025-03-09

selinux-tor - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tor-2.20250213-r1

Description

SELinux policy for tor

Added to portage

2025-03-09

selinux-tripwire - 2.20250213-r1
Ebuild name:

sec-policy/selinux-tripwire-2.20250213-r1

Description

SELinux policy for tripwire

Added to portage

2025-03-09

selinux-ucspitcp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ucspitcp-2.20250213-r1

Description

SELinux policy for ucspitcp

Added to portage

2025-03-09

selinux-ulogd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-ulogd-2.20250213-r1

Description

SELinux policy for ulogd

Added to portage

2025-03-09

selinux-uml - 2.20250213-r1
Ebuild name:

sec-policy/selinux-uml-2.20250213-r1

Description

SELinux policy for uml

Added to portage

2025-03-09

selinux-unconfined - 2.20250213-r1
Ebuild name:

sec-policy/selinux-unconfined-2.20250213-r1

Description

SELinux policy for unconfined

Added to portage

2025-03-09

selinux-uptime - 2.20250213-r1
Ebuild name:

sec-policy/selinux-uptime-2.20250213-r1

Description

SELinux policy for uptime

Added to portage

2025-03-09

selinux-usbguard - 2.20250213-r1
Ebuild name:

sec-policy/selinux-usbguard-2.20250213-r1

Description

SELinux policy for usbguard

Added to portage

2025-03-09

selinux-usbmuxd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-usbmuxd-2.20250213-r1

Description

SELinux policy for usbmuxd

Added to portage

2025-03-09

selinux-uucp - 2.20250213-r1
Ebuild name:

sec-policy/selinux-uucp-2.20250213-r1

Description

SELinux policy for uucp

Added to portage

2025-03-09

selinux-uwimap - 2.20250213-r1
Ebuild name:

sec-policy/selinux-uwimap-2.20250213-r1

Description

SELinux policy for uwimap

Added to portage

2025-03-09

selinux-uwsgi - 2.20250213-r1
Ebuild name:

sec-policy/selinux-uwsgi-2.20250213-r1

Description

SELinux policy for uWSGI

Added to portage

2025-03-09

selinux-varnishd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-varnishd-2.20250213-r1

Description

SELinux policy for varnishd

Added to portage

2025-03-09

selinux-vbetool - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vbetool-2.20250213-r1

Description

SELinux policy for vbetool

Added to portage

2025-03-09

selinux-vdagent - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vdagent-2.20250213-r1

Description

SELinux policy for vdagent

Added to portage

2025-03-09

selinux-vde - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vde-2.20250213-r1

Description

SELinux policy for vde

Added to portage

2025-03-09

selinux-virt - 2.20250213-r1
Ebuild name:

sec-policy/selinux-virt-2.20250213-r1

Description

SELinux policy for virt

Added to portage

2025-03-09

selinux-vlock - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vlock-2.20250213-r1

Description

SELinux policy for vlock

Added to portage

2025-03-09

selinux-vmware - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vmware-2.20250213-r1

Description

SELinux policy for vmware

Added to portage

2025-03-09

selinux-vnstatd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vnstatd-2.20250213-r1

Description

SELinux policy for vnstatd

Added to portage

2025-03-09

selinux-vpn - 2.20250213-r1
Ebuild name:

sec-policy/selinux-vpn-2.20250213-r1

Description

SELinux policy for vpn

Added to portage

2025-03-09

selinux-watchdog - 2.20250213-r1
Ebuild name:

sec-policy/selinux-watchdog-2.20250213-r1

Description

SELinux policy for watchdog

Added to portage

2025-03-09

selinux-webalizer - 2.20250213-r1
Ebuild name:

sec-policy/selinux-webalizer-2.20250213-r1

Description

SELinux policy for webalizer

Added to portage

2025-03-09

selinux-wine - 2.20250213-r1
Ebuild name:

sec-policy/selinux-wine-2.20250213-r1

Description

SELinux policy for wine

Added to portage

2025-03-09

selinux-wireguard - 2.20250213-r1
Ebuild name:

sec-policy/selinux-wireguard-2.20250213-r1

Description

SELinux policy for wireguard

Added to portage

2025-03-09

selinux-wireshark - 2.20250213-r1
Ebuild name:

sec-policy/selinux-wireshark-2.20250213-r1

Description

SELinux policy for wireshark

Added to portage

2025-03-09

selinux-wm - 2.20250213-r1
Ebuild name:

sec-policy/selinux-wm-2.20250213-r1

Description

SELinux policy for wm

Added to portage

2025-03-09

selinux-xen - 2.20250213-r1
Ebuild name:

sec-policy/selinux-xen-2.20250213-r1

Description

SELinux policy for xen

Added to portage

2025-03-09

selinux-xfs - 2.20250213-r1
Ebuild name:

sec-policy/selinux-xfs-2.20250213-r1

Description

SELinux policy for xfs

Added to portage

2025-03-09

selinux-xscreensaver - 2.20250213-r1
Ebuild name:

sec-policy/selinux-xscreensaver-2.20250213-r1

Description

SELinux policy for xscreensaver

Added to portage

2025-03-09

selinux-xserver - 2.20250213-r1
Ebuild name:

sec-policy/selinux-xserver-2.20250213-r1

Description

SELinux policy for xserver

Added to portage

2025-03-09

selinux-zabbix - 2.20250213-r1
Ebuild name:

sec-policy/selinux-zabbix-2.20250213-r1

Description

SELinux policy for zabbix

Added to portage

2025-03-09

selinux-zfs - 2.20250213-r1
Ebuild name:

sec-policy/selinux-zfs-2.20250213-r1

Description

SELinux policy for zfs

Added to portage

2025-03-09

setuptools - 75.9.0
Ebuild name:

dev-python/setuptools-75.9.0

Description

Collection of extensions to Distutils

Added to portage

2025-03-09

setuptools - 75.9.1
Ebuild name:

dev-python/setuptools-75.9.1

Description

Collection of extensions to Distutils

Added to portage

2025-03-09

setuptools - 76.0.0
Ebuild name:

dev-python/setuptools-76.0.0

Description

Collection of extensions to Distutils

Added to portage

2025-03-09

spirv-headers - 1.4.304.0-r1
Ebuild name:

dev-util/spirv-headers-1.4.304.0-r1

Description

Machine-readable files for the SPIR-V Registry

Added to portage

2025-03-09

spirv-llvm-translator - 15.0.10-r1
Ebuild name:

dev-util/spirv-llvm-translator-15.0.10-r1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-03-09

spirv-llvm-translator - 16.0.10-r1
Ebuild name:

dev-util/spirv-llvm-translator-16.0.10-r1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-03-09

spirv-llvm-translator - 17.0.10-r1
Ebuild name:

dev-util/spirv-llvm-translator-17.0.10-r1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-03-09

spirv-llvm-translator - 18.1.10-r1
Ebuild name:

dev-util/spirv-llvm-translator-18.1.10-r1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-03-09

spirv-llvm-translator - 19.1.5-r1
Ebuild name:

dev-util/spirv-llvm-translator-19.1.5-r1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-03-09

sqlite3 - 2.6.0
Ebuild name:

dev-ruby/sqlite3-2.6.0

Description

An extension library to access a SQLite database from Ruby

Added to portage

2025-03-09

starlette - 0.46.1
Ebuild name:

dev-python/starlette-0.46.1

Description

The little ASGI framework that shines

Added to portage

2025-03-09

stress-ng - 0.18.11
Ebuild name:

app-benchmarks/stress-ng-0.18.11

Description

Stress test for a computer system with various selectable ways

Added to portage

2025-03-09

syd - 3.32.4
Ebuild name:

sys-apps/syd-3.32.4

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-03-09

tavern - 2.13.0
Ebuild name:

dev-python/tavern-2.13.0

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2025-03-09

tavern - 2.14.0
Ebuild name:

dev-python/tavern-2.14.0

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2025-03-09

telegram-desktop-bin - 5.12.2
Ebuild name:

net-im/telegram-desktop-bin-5.12.2

Description

Official desktop client for Telegram (binary package)

Added to portage

2025-03-09

tetzle - 3.0.3
Ebuild name:

games-board/tetzle-3.0.3

Description

Jigsaw puzzle game that uses tetrominoes for the pieces

Added to portage

2025-03-09

ubuntu-keyring - 2021.03.26
Ebuild name:

app-crypt/ubuntu-keyring-2021.03.26

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-03-09

ubuntu-keyring - 2023.11.28.1
Ebuild name:

app-crypt/ubuntu-keyring-2023.11.28.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-03-09

vanilla-kernel - 6.6.82
Ebuild name:

sys-kernel/vanilla-kernel-6.6.82

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-03-09

veracrypt - 1.25.9-r1
Ebuild name:

app-crypt/veracrypt-1.25.9-r1

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-03-09

veracrypt - 1.26.15
Ebuild name:

app-crypt/veracrypt-1.26.15

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-03-09

veracrypt - 1.26.7
Ebuild name:

app-crypt/veracrypt-1.26.7

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-03-09

vivaldi-snapshot - 7.2.3621.41
Ebuild name:

www-client/vivaldi-snapshot-7.2.3621.41

Description

A browser for our friends

Added to portage

2025-03-09

webmock - 3.25.1
Ebuild name:

dev-ruby/webmock-3.25.1

Description

Allows stubbing HTTP requests and setting expectations on HTTP requests

Added to portage

2025-03-09

wine-staging - 10.3
Ebuild name:

app-emulation/wine-staging-10.3

Description

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

Added to portage

2025-03-09

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-03-09

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2025-03-09

yubihsm-connector - 3.0.4
Ebuild name:

app-crypt/yubihsm-connector-3.0.4

Description

Server to expose YubiHSM 2 to network

Added to portage

2025-03-09

yubihsm-shell - 2.4.0
Ebuild name:

app-crypt/yubihsm-shell-2.4.0

Description

Components used to interact with the YubiHSM 2

Added to portage

2025-03-09

yubikey-manager - 5.5.1
Ebuild name:

app-crypt/yubikey-manager-5.5.1

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-03-09

yubikey-manager-qt - 1.2.5
Ebuild name:

app-crypt/yubikey-manager-qt-1.2.5

Description

Cross-platform application for configuring any YubiKey over all

Added to portage

2025-03-09

yubioath-flutter-bin - 6.1.0-r3
Ebuild name:

app-crypt/yubioath-flutter-bin-6.1.0-r3

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 6.4.0-r1
Ebuild name:

app-crypt/yubioath-flutter-bin-6.4.0-r1

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 7.0.0
Ebuild name:

app-crypt/yubioath-flutter-bin-7.0.0

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 7.1.0
Ebuild name:

app-crypt/yubioath-flutter-bin-7.1.0

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 7.1.1
Ebuild name:

app-crypt/yubioath-flutter-bin-7.1.1

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

zellij - 0.41.2-r1
Ebuild name:

app-misc/zellij-0.41.2-r1

Description

A terminal workspace with batteries included

Added to portage

2025-03-09

zulucrypt - 7.0.0
Ebuild name:

app-crypt/zulucrypt-7.0.0

Description

Front end to cryptsetup

Added to portage

2025-03-09

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