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:

74288

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->dev-util->cvs

Gentoo Linux CVS Tutorial


1. Introduction


Tutorial layout


This tutorial has two parts. The first shows you how to use CVS as a non-developer, i.e. how to get sources from CVS and keep them updated. The second part introduces you to using CVS as a developer, showing you how to modify, add and remove files on CVS and perform other developer-related tasks. If you are new to CVS, it's recommended that you begin in the first section and proceed to the second section; if you have some basic CVS experience but are going to be using CVS as a full-fledged developer for the first time, you should find everything you need in the second section, but you may want to go through the first section as a review.

What is CVS and what does it do?


CVS is a client/server system allowing developers to store their projects in a central location, called a repository. Using the cvs client tools, developers can make changes to the contents of the repository. In turn, the cvs repository tracks every change made to every file, creating a complete history of the evolution of the development project. Developers can request older versions of a particular source file, view a log of changes, and perform other useful tasks as needed.

The role of CVS


A lot of open software projects have their own CVS servers, which are used by the project developers as a central repository for all their work. Developers often make improvements to the sources in the CVS repository on a daily basis; and often, these developers are scattered around the world, yet CVS provides the necessary mechanism to unite their project into a centralized, cohesive whole. CVS creates the "organizational glue" that allows these developers to make improvements to the code without stepping on each other's toes, losing important data or missing each other's critical updates to particular source files.

CVS -- the latest developer sources


When the developers are ready, they'll roll some their current work on CVS into a .tar.gz file and release it as a new official version of their software package. However, the latest official release sometimes isn't recent enough, for a variety of possible reasons. In the first section of this tutorial, I'll show you how to use CVS for this purpose -- acquiring the latest and greatest developer version of the sources for your own personal use.

CVS -- do you have it?


Before you can actually use CVS, you need to get it installed on your system. The easiest way to test to see if it's installed is to type:
Code Listing 1.1: Starting CVS
# cvs

If a cvs command is found, then you've got it! Otherwise, you'll need to either track down a binary package for your particular distribution, or install it from sources. Installing CVS from sources is actually quite simple, and I'll show you how in the next panel.

Installing CVS from sources


Installing CVS from sources is easy. First, grab the cvs-1.11.tar.gz tarball from ftp://ftp.cvshome.org/pub/cvs-1.11/cvs-1.11.tar.gz (if there's a newer version listed
here, you might as well grab the new one instead.) Then perform the following steps (command output has been omitted for brevity):

Code Listing 1.2: Installing CVS using a tarball
# tar xzvf cvs-1.11.tar.gz      
# cd cvs-1.11
# ./configure
# make
# make install

Now you should be ready to go.

Installing CVS using a package management system


Many distributions provide an easy method to install software. For instance, the Gentoo distribution provides the emerge command. To install cvs, just type in emerge cvs:

Code Listing 1.3: Installing CVS using emerge
# emerge cvs

The CVSROOT


Before we begin, there are a few CVS fundamentals that you need to know. The first is that in order to connect to a CVS repository, you first need to know a path called the "CVSROOT". The CVSROOT is a string, like a URL, that tells the cvs command where the remote repository is and how we'd like to connect to it. Just to make things interesting, CVS has a number of CVSROOT formats, depending on whether the CVS repository is local or remote and what method you're going to use to connect to it. Here are some example CVSROOTs, along with explanations...

A local CVSROOT


Code Listing 1.4: Setting CVSROOT
CVSROOT=/var/cvsroot

This is an example of a local CVSROOT path; you'd use a CVSROOT like this if you wanted to connect to a local repository that exists at /var/cvsroot; or maybe you have a repository mounted via NFS at /var/cvsroot.

A remote password server CVSROOT


Code Listing 1.5: Setting CVSROOT with authentification
CVSROOT=:pserver:cvs@foo.bar.com:/var/cvsroot

Here's an example of a CVSROOT for a remote repository that exists on the foo.bar.com host and lives in the /var/cvsroot directory on that machine. The leading ":pserver:" part tells our client to connect to this remote machine using the CVS password server protocol, a protocol that's built-in to CVS. Typically, public CVS repositories use the password server protocol to allow access to anonymous users.

A remote rsh/ssh CVSROOT


Code Listing 1.6: RSH/SSH CVSROOT
CVSROOT=drobbins@foo.bar.com:/data/cvs

Here's an example of a CVSROOT that uses the RSH or SSH protocol; in this example, the CVS server will attempt to access the repository on foo.bar.com using the drobbins account. If the CVS_RSH environment variable is set to "ssh", then our cvs client will attempt to use ssh to connect; otherwise rsh will be used. The ssh access method is popular with those who are concerned about security; however, neither the RSH or SSH method provides a way for anonymous users to get the sources. In order to use this method, you must have a login account at foo.bar.com.

A few more things...


In addition to the CVSROOT, you'll also need to know the name of the module (collection of sources) that you'd like to check out, as well as an anonymous password that you'll need to log in to the CVS password server. Unlike anonymous ftp, there is no "standard" format for the anonymous password, so you'll need to get the specific password from the developer web site or the developers themselves. Once you have all this info, you're ready to begin.

Interacting with CVS, part 1


Grabbing the sources is a two-stage process. First, we log in to the password server. Then, we grab the sources with a checkout command. Here's an example set of commands that can be used to check out the latest Samba sources, a popular UNIX/Windows integration project:
Code Listing 1.7: Setting up CVSROOT
# export CVSROOT=:pserver:cvs@pserver.samba.org:/cvsroot

This first command sets the CVSROOT environment variable. If you don't set this variable, the following two commands will require an additional -d :pserver:cvs@pserver.samba.org:/cvsroot following the cvs command. Exporting the CVSROOT saves a us bit of typing.

Interacting with CVS, part 2


Here are the commands needed to get a current copy of the developer sources. You may want to jump forward to the next panel to read the explanation of these commands, and then jump back here:
Code Listing 1.8: Checking out sources
# cvs login      
(Logging in to cvs@pserver.samba.org)
CVS password: (enter password here)

# cvs -z5 co samba
U samba/COPYING
U samba/Manifest
U samba/README
U samba/Read-Manifest-Now
U samba/Roadmap
U samba/WHATSNEW.txt
(this is just a snippet of the complete cvs co output)

Interacting with CVS -- the explanation


The first cvs command above logs us in to the pserver, and the second tells our CVS client to check out ("co") the samba module using a gzip compression level of 5 ("-z5") to speed up the transfer over a slow link. For every new file that is created locally, cvs prints out a "U [path]" indicating that this particular file has been updated on disk.

Checkout complete


Once the checkout command completes, you'll see a "samba" directory in your current working directory that contains the latest sources. You'll also notice that all the directories have a "CVS" directory inside them -- CVS stores accounting information inside these directories, and they can safely be ignored. From this point forward, we don't need to worry about having the CVSROOT environment variable set nor do we need to specify it on the command line because it's now cached inside all those extra "CVS" directories. Remember -- you only need to have the CVSROOT set for the initial login and checkout.

Updating the sources


Well, there you are -- fresh sources! Now that you have the sources, you can go ahead and compile and install them, inspect them, or do whatever you like with them.

Every now and then, you may want to bring your checked-out source directory in-sync with the current version on CVS. To do this, you don't need to log in to the pserver again; your authentication info is also cached by cvs inside those "CVS" accounting directories. First, enter the main checked-out directory (in this case "samba"), and type:
Code Listing 1.9: Updating your sources
# cvs update -dP

Looking at "cvs update", part 1


If there are any new files, cvs will output "U [path]" lines for each one as it updates them. Also, if you compiled the sources, you will probably see a lot of "? [path]" lines; these are object files that cvs notices are not from the remote repository.

Looking at "cvs update", part 2


Also, notice the two command-line options we used for "cvs update". "-d" tells cvs to create any new directories that may have been added to the repository (this doesn't happen by default), and "-P" tells cvs to remove any empty directories from your locally checked-out copy of the sources. "-P" is a good idea, because cvs has a tendency to collect a lot of empty (once used, but now abandoned) directory trees over time.

When it comes to simply grabbing the latest sources, that's about all you need to know. Now, we take a look at how to interact with CVS as a developer.

2. CVS for developers


Modifying files


As a developer, you'll need to modify files on CVS. To do this, simply make the appropriate changes to your local copy of the repository. The changes you make to the sources are not applied to the remote repository until you explictly tell cvs to "commit" your changes. When you've tested all your modifications to ensure that they work properly and you're ready to apply your changes to the repository, follow this two-step process. First, update your sources by typing the following command in your main source directory:
Code Listing 2.1: Updating sources and directories
# cvs update -dP

CVS merges others' changes


As we've seen earlier, "cvs update" will bring your sources up-to-date with the current version in the repository -- but what happens to the changes you've made? Don't worry, they aren't thrown away. If another developer made changes to a file that you haven't touched, your local file will be updated so that it's in-sync with the version on the repository.
And, if you modified lines 1-10 of a local file, and another developer deleted lines 40-50, added 12 new lines at the end of the file, modified lines 30-40 and then committed their changes to the repository before you, cvs will intelligently merge these changes into your locally modified copy so that none of your changes are lost. This allows two or more developers to work on different parts of the same file at the same time.

Merging isn't perfect


However, if two or more developers have made changes to the same region of the same file, then things get a bit more complicated. If that happens, then cvs will tell you that there's been a conflict. No work will be lost, but a bit of manual intervention will be required, since cvs now requires your input on how to merge the conflicting changes.

The commit


We'll look at exactly how conflicts can be resolved in just a little bit, but for now, let's assume that there are no conflicts after you typed "cvs update -dP" -- there usually aren't. With no conflicts, your local sources are up-to-date, and you're ready to commit your changes to the repository by typing the following command in your main source directory:
Code Listing 2.2: Committing changes
# cvs commit

What commit does


"cvs commit" doesn't just apply your changes to the repository. Before actually committing your changes to the remote repository, cvs will fire up your default editor so that you can type in a description of your modifications. Once you've entered your comments, saved the file and exited the editor, your changes (and comments) will be applied to the remote repository and will be available to the other developers in your team.

Viewing the log


It's really easy to view the complete history of a particular file, along with any comments that the developers (including you) may have made when committing. To view this information, type:
Code Listing 2.3: View log information
# cvs log myfile.c

The "cvs log" command is recursive, so if you want to see the complete log for an entire directory tree, just enter the directory and type:
Code Listing 2.4: View log information with a pager
# cvs log | less

Commit options


You may want to use another editor than the one cvs starts by default when you type "cvs commit". If so, simply set the EDITOR environment variable to the name of the editor you want to use. Putting a setting such as this one in your ~/.bashrc would be a good idea:
Code Listing 2.5: Setting your editor
export EDITOR=jpico

Alternatively, you can also specify a log message as a command line option so that cvs doesn't need to load up an editor in the first place:
Code Listing 2.6: Committing changes with a small log information
# cvs commit -m 'I fixed a few silly bugs in portage.py'

The .cvsrc file


Before we continue looking at more cvs commands, I recommend setting up a ~/.cvsrc file. By creating a .cvsrc file in your home directory, you can tell cvs to use preferred command-line options by default so that you don't have to remember to type them in each time. Here's a recommended default .cvsrc file:
Code Listing 2.7: Recommended defaults
cvs -q        
diff -u -b -B
checkout -P
update -d -P

The .cvsrc file, continued


In addition to setting useful options for a bunch of cvs commands, the first line of the .cvsrc puts cvs into quiet mode, which has the primary benefit of making the cvs update output more consise and readable. Also, once you have this .cvsrc in place, you can type cvs update instead of typing cvs update -dP.

Adding a file to the repository


It's really easy to add a source file to CVS. First, create the file with your favorite text editor. Then, type the following:
Code Listing 2.8: Adding a file
# cvs add myfile.c  
cvs server: use 'cvs commit' to add this file permanently

This will tell cvs to add this file to the repository the next time you do a cvs commit. Until then, other developers won't be able to see it.

Adding a directory to the repository


The process of adding a directory to CVS is similar:
Code Listing 2.9: Adding a directory
# mkdir foo      
# cvs add foo
Directory /var/cvsroot/mycode/foo added to the repository

Unlike adding a file, when you add a directory it appears on the repository immediately; a cvs commit isn't required. Once you add a local directory to cvs, you'll notice that a "CVS" directory will be created inside it to serve as a container for cvs accounting data. Thus, you can easily tell if a particluar directory has been added to cvs by looking inside it for a "CVS" directory.

"cvs add" notes


Oh, and as you might guess, before you add a file or directory to the repository, you must make sure that its parent directory has already been added to CVS. Otherwise, you'll get an error that looks like this:
Code Listing 2.10: Adding a file, but receive a failure
# cvs add myfile.c      
cvs add: cannot open CVS/Entries for reading: No such file or directory
cvs [add aborted]: no repository

Getting familiar with "cvs update", part 1


Before we take a look at how to resolve conflicts, let's get familiar with the output of the "cvs update" command. If you created a ~/.cvsrc file that contains a "cvs -q" line, you'll find "cvs update" output a lot easier to read. "cvs update" informs you of what it does and sees by printing out a single character, a space, and a filename; as an example:
Code Listing 2.11: Updating CVS
# cvs update -dP      
? distfiles
? packages
? profiles

Getting familiar with "cvs update", part 2


"cvs update" uses the "?" character to tell you that it doesn't know anything about these particular files that it finds in the local copy of your repository. They're not officially part of the repository, nor have they been scheduled for addition. Here's a list of all the other single-character informational messages that CVS uses:
Code Listing 2.12: Informational message: U
U [path]

Used when a new file is created in your local repository, or an untouched (by you) file has been updated.
Code Listing 2.13: Informational message: A
A [path]

This file is scheduled for addition and will be officially added to the repository when you do a cvs commit.

Getting familiar with "cvs update", part 3


Code Listing 2.14: Informational message: R
R [path]

Like "A", an "R" lets you know that this file is scheduled for removal. The file will be removed from the repository as soon as you cvs commit.
Code Listing 2.15: Informational message: M
M [path]

This means that this file has been modified by you; additionally, it's possible that new changes from the repository were merged into this file successfully.
Code Listing 2.16: Informational message: C
C [path]

The "C" character indicates that this file has a conflict and requires manual fixing before you can "cvs commit" your changes.

Resolving conflicts intro


Now, let's take a look at how to resolve a conflict. I'm very involved in the Gentoo Linux project, and we have our own cvs server set up at cvs.gentoo.org. We developers spend most of our time hacking away at the sources inside the "gentoo-x86" module. Inside the gentoo-x86 module, we have a file called "ChangeLog" that houses (you guessed it) a description of the major changes we make to the files in the repository.

An example conflict


Because this file is modified nearly every time a developer makes a major change to CVS, it's a primary source of conflicts -- here's an example conflict. Let's say I add the following lines to the top of the ChangeLog:
Code Listing 2.17: ChangeLog entry
date 25 Feb 2001       
This is the thing I added myself

However, let's say that before I'm able to commit these three new lines, another developer adds these lines to the top of the ChangeLog and commits their changes:
Code Listing 2.18: ChangeLog entry 2
date 25 Feb 2001 
This is the part added by another developer

An example conflict, continued


Now, when I run cvs update -dP (as you should before every commit), cvs isn't able to merge the changes into my local copy of ChangeLog because we both have added lines to the exact same part of the file -- how is cvs to know which version to use? So, I get the following error from CVS:
Code Listing 2.19: CVS error
RCS file: /var/cvsroot/gentoo-x86/ChangeLog,v      
retrieving revision 1.362
retrieving revision 1.363
Merging differences between 1.362 and 1.363 into ChangeLog
rcsmerge: warning: conflicts during merge
cvs server: conflicts found in ChangeLog
C ChangeLog

Conflict resolution, part 1


Argh -- a conflict! Fortunately, fixing conflicts is easy. If I fire up my favorite text editor, I see the following text at the top of the ChangeLog file:
Code Listing 2.20: ChangeLog conflict
<<<<<<< ChangeLog 
date 25 Feb 2001
This is the thing I added myself

=======
date 25 Feb 2001
This is the part added by another developer

>>>>>>> 1.363

Conflict resolution, part 2


Instead of choosing one version over the other, cvs has added both versions to the ChangeLog file, and surrounded them with special separators to clearly mark the conflict in question. Now, it's up to me to replace this region with the text that should appear in ChangeLog; in this case, the replacement text is neither one or the other version but a combination of both:
Code Listing 2.21: ChangeLog entry
date 25 Feb 2001      
This is the thing I added myself
This is the part added by another developer

Now that I've replaced the conflicting region of the file with the appropriate text (and removed the "=======", etc markers), I can now commit my changes to cvs without any problems.

Conflict resolution tips


Whenever you need to edit a file for conflicts, make sure that you scan the entire file so that you catch all of them; if you forget to address a particular conflict, cvs won't allow you to commit until it's resolved! It's also obviously very important to remove the special markers that cvs added to the conflicting file. Another tip -- if you make a mistake while fixing the conflict and then ("D'oh!") accidentally save your changes, you can find an original copy of your version in the file ".#filename.version".

Removing a file


Now, it's time to learn our final CVS skill -- removing files from the repository. Removing a file is a two-stage process. First, delete the file from your local copy of the sources, and then execute the appropriate cvs remove command:
Code Listing 2.22: Removing a file
# rm myoldfile.c      
# cvs remove myoldfile.c

Removing a file, continued


The file will then be scheduled for removal from the repository the next time you do a commit. Once committed, the file will be officially deleted from the current version of the repository. However, cvs won't throw this file away, and will still keep a complete record of its contents and its history, just in case you need it back in the future. This is just one of the many ways that cvs protects your valuable source code.
cvs remove is recursive, which means that you can delete a bunch of files, and then run the cvs remove command with no other arguments from a parent directory. Doing this will cause all of the deleted files to be tagged for removal at the next commit.

Removing a directory


If you'd like to remove an entire directory, I recommend the following process. First, physically delete and "cvs remove" all files in the directory:
Code Listing 2.23: Removing a directory
# rm *.c      
# cvs remove

Removing a directory, continued


Then, perform a commit:
Code Listing 2.24: Commit your changes
# cvs commit

Here comes the trick. Perform the following steps to delete the directory:
Code Listing 2.25: Removing a directory      
# cd ..
# cvs remove mydir
# rm -rf mydir

Notice that removing the directory didn't require another commit -- directories are added to and removed from the repository in real-time.

Complete!


Your introduction to CVS is complete -- I hope that this tutorial has been helpful. There's much more to CVS than I've been able to cover in this introductory tutorial, but thankfully there are a bunch of great CVS resources you can use to further expand your CVS knowledge:

http://www.cvshome.org is the home of CVS development, and offers a bunch of documentation on CVS, including the official CVS documentation online
The CVS Version Control for Web Site Projects site has good info on how to use CVS for developing web sites
Karl Fogel has written a book called Open Source Development with CVS. A number of chapters are available for free from the website.
cvsweb is a really great CGI script that provides a web interface to your CVS repository; excellent for browsing.
The CVS Bubbles site has a bunch of good resources including a CVS FAQ-o-matic.

About this document


The original version of this article was first published on IBM developerWorks, and is property of Westtech Information Services. This document is an updated version of the original article, and contains various improvements made by the Gentoo Linux documentation team.

http://www.gentoo.org/doc/en/cvs-tutorial.xml
rate this article:
current rating: average rating: 1.0 (1 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-04-19
b2 - 5.3.2
Ebuild name:

dev-build/b2-5.3.2

Description

A system for large project software construction, simple to use and powerful

Added to portage

2025-04-19

catch - 3.8.1
Ebuild name:

dev-cpp/catch-3.8.1

Description

Modern C++ header-only framework for unit-tests

Added to portage

2025-04-19

cryptokit - 1.20.1
Ebuild name:

dev-ml/cryptokit-1.20.1

Description

Cryptographic primitives library for Objective Caml

Added to portage

2025-04-19

egl-x11 - 1.0.1
Ebuild name:

gui-libs/egl-x11-1.0.1

Description

NVIDIA X11/XCB EGL external platform library

Added to portage

2025-04-19

framework_tool - 0.3.0
Ebuild name:

app-laptop/framework_tool-0.3.0

Description

Swiss army knife for Framework laptops

Added to portage

2025-04-19

gcc - 12.4.1_p20250417
Ebuild name:

sys-devel/gcc-12.4.1_p20250417

Description

The GNU Compiler Collection

Added to portage

2025-04-19

gcc - 15.0.1_pre20250418
Ebuild name:

sys-devel/gcc-15.0.1_pre20250418

Description

The GNU Compiler Collection

Added to portage

2025-04-19

hash-slinger - 3.3-r1
Ebuild name:

net-dns/hash-slinger-3.3-r1

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPS

Added to portage

2025-04-19

hash-slinger - 3.4
Ebuild name:

net-dns/hash-slinger-3.4

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPSECK

Added to portage

2025-04-19

igraph - 0.10.15
Ebuild name:

dev-libs/igraph-0.10.15

Description

Creating and manipulating undirected and directed graphs

Added to portage

2025-04-19

metee - 5.0.0
Ebuild name:

dev-libs/metee-5.0.0

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2025-04-19

transformers - 4.50.3
Ebuild name:

sci-ml/transformers-4.50.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

transformers - 4.51.3
Ebuild name:

sci-ml/transformers-4.51.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

2025-04-18
accelerate - 1.6.0
Ebuild name:

sci-ml/accelerate-1.6.0

Description

Run your *raw* PyTorch training script on any kind of device

Added to portage

2025-04-18

akonadi - 25.04.0
Ebuild name:

kde-apps/akonadi-25.04.0

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-04-18

akonadi-calendar - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-25.04.0

Description

Library for akonadi calendar integration

Added to portage

2025-04-18

akonadi-calendar-tools-common - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.04.0

Description

Added to portage

2025-04-18

akonadi-contacts - 25.04.0
Ebuild name:

kde-apps/akonadi-contacts-25.04.0

Description

Library for akonadi contact integration

Added to portage

2025-04-18

akonadi-import-wizard - 25.04.0
Ebuild name:

kde-apps/akonadi-import-wizard-25.04.0

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2025-04-18

akonadi-mime - 25.04.0
Ebuild name:

kde-apps/akonadi-mime-25.04.0

Description

Library for akonadi mime types

Added to portage

2025-04-18

akonadi-search - 25.04.0
Ebuild name:

kde-apps/akonadi-search-25.04.0

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2025-04-18

akonadiconsole - 25.04.0
Ebuild name:

kde-apps/akonadiconsole-25.04.0

Description

Application for debugging Akonadi Resources

Added to portage

2025-04-18

akregator - 25.04.0
Ebuild name:

kde-apps/akregator-25.04.0

Description

News feed aggregator

Added to portage

2025-04-18

alligator - 25.04.0
Ebuild name:

net-news/alligator-25.04.0

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2025-04-18

analitza - 25.04.0
Ebuild name:

kde-apps/analitza-25.04.0

Description

KDE library for mathematical features

Added to portage

2025-04-18

ark - 25.04.0
Ebuild name:

kde-apps/ark-25.04.0

Description

File archiver by KDE

Added to portage

2025-04-18

artikulate - 25.04.0
Ebuild name:

kde-apps/artikulate-25.04.0

Description

Language learning application that helps improving pronunciation skills

Added to portage

2025-04-18

audex - 25.04.0
Ebuild name:

media-sound/audex-25.04.0

Description

Tool for ripping compact discs

Added to portage

2025-04-18

audiocd-kio - 25.04.0
Ebuild name:

kde-apps/audiocd-kio-25.04.0

Description

KIO worker for accessing audio CDs

Added to portage

2025-04-18

awscli - 1.38.36
Ebuild name:

app-admin/awscli-1.38.36

Description

Universal Command Line Environment for AWS

Added to portage

2025-04-18

baloo-widgets - 25.04.0
Ebuild name:

kde-apps/baloo-widgets-25.04.0

Description

Widget library for baloo

Added to portage

2025-04-18

blinken - 25.04.0
Ebuild name:

kde-apps/blinken-25.04.0

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2025-04-18

bomber - 25.04.0
Ebuild name:

kde-apps/bomber-25.04.0

Description

Single player arcade bombing game

Added to portage

2025-04-18

boto3 - 1.37.36
Ebuild name:

dev-python/boto3-1.37.36

Description

The AWS SDK for Python

Added to portage

2025-04-18

botocore - 1.37.36
Ebuild name:

dev-python/botocore-1.37.36

Description

Low-level, data-driven core of boto 3

Added to portage

2025-04-18

bovo - 25.04.0
Ebuild name:

kde-apps/bovo-25.04.0

Description

Five-in-a-row Board Game

Added to portage

2025-04-18

bundler - 2.6.8
Ebuild name:

dev-ruby/bundler-2.6.8

Description

An easy way to vendor gem dependencies

Added to portage

2025-04-18

calendarjanitor - 25.04.0
Ebuild name:

kde-apps/calendarjanitor-25.04.0

Description

Tool to scan calendar data for buggy instances

Added to portage

2025-04-18

calendarsupport - 25.04.0
Ebuild name:

kde-apps/calendarsupport-25.04.0

Description

Calendar support library

Added to portage

2025-04-18

calver - 2025.4.17
Ebuild name:

dev-python/calver-2025.4.17

Description

Setuptools extension for CalVer package versions

Added to portage

2025-04-18

cantor - 25.04.0
Ebuild name:

kde-apps/cantor-25.04.0

Description

Interface for doing mathematics and scientific computing

Added to portage

2025-04-18

cervisia - 25.04.0
Ebuild name:

kde-apps/cervisia-25.04.0

Description

CVS frontend by KDE

Added to portage

2025-04-18

closure-compiler-bin - 20250407
Ebuild name:

dev-lang/closure-compiler-bin-20250407

Description

JavaScript optimizing compiler

Added to portage

2025-04-18

colord-kde - 25.04.0
Ebuild name:

kde-misc/colord-kde-25.04.0

Description

Provides interfaces and session daemon to colord

Added to portage

2025-04-18

core_unix - 0.17.1
Ebuild name:

dev-ml/core_unix-0.17.1

Description

Unix-specific portions of Core

Added to portage

2025-04-18

crystal - 1.16.1
Ebuild name:

dev-lang/crystal-1.16.1

Description

The Crystal Programming Language

Added to portage

2025-04-18

cython - 3.1.0_beta1-r1
Ebuild name:

dev-python/cython-3.1.0_beta1-r1

Description

A Python to C compiler

Added to portage

2025-04-18

dolphin - 25.04.0
Ebuild name:

kde-apps/dolphin-25.04.0

Description

Plasma filemanager focusing on usability

Added to portage

2025-04-18

dolphin-plugins-common - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-common-25.04.0

Description

Added to portage

2025-04-18

dolphin-plugins-dropbox - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.04.0

Description

Dolphin plugin for Dropbox service integration

Added to portage

2025-04-18

dolphin-plugins-git - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-git-25.04.0

Description

Dolphin plugin for Git integration

Added to portage

2025-04-18

dolphin-plugins-makefileactions - 25.04.0
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.04.0

Description

Dolphin plugin for Makefile targets integration

Added to portage

2025-04-18

dolphin-plugins-mercurial - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.04.0

Description

Dolphin plugin for Mercurial integration

Added to portage

2025-04-18

dolphin-plugins-mountiso - 25.04.0
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.04.0

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2025-04-18

dolphin-plugins-subversion - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.04.0

Description

Dolphin plugin for Subversion integration

Added to portage

2025-04-18

dragon - 25.04.0
Ebuild name:

kde-apps/dragon-25.04.0

Description

Simple video player

Added to portage

2025-04-18

edid-decode - 0_pre20241119
Ebuild name:

sys-apps/edid-decode-0_pre20241119

Description

Decode EDID data in a human-readable format

Added to portage

2025-04-18

elasticsearch - 9.0.0
Ebuild name:

dev-python/elasticsearch-9.0.0

Description

Official Elasticsearch client library for Python

Added to portage

2025-04-18

elisa - 25.04.0
Ebuild name:

media-sound/elisa-25.04.0

Description

Simple music player by KDE

Added to portage

2025-04-18

elogind - 252.9-r3
Ebuild name:

sys-auth/elogind-252.9-r3

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2025-04-18

eventviews - 25.04.0
Ebuild name:

kde-apps/eventviews-25.04.0

Description

Calendar viewer for KDE PIM

Added to portage

2025-04-18

falkon - 25.04.0
Ebuild name:

www-client/falkon-25.04.0

Description

Cross-platform web browser using QtWebEngine

Added to portage

2025-04-18

ffmpegthumbs - 25.04.0
Ebuild name:

kde-apps/ffmpegthumbs-25.04.0

Description

FFmpeg based thumbnail generator for video files

Added to portage

2025-04-18

filelight - 25.04.0
Ebuild name:

kde-apps/filelight-25.04.0

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2025-04-18

fixtures - 4.2.5
Ebuild name:

dev-python/fixtures-4.2.5

Description

Fixtures, reusable state for writing clean tests and more

Added to portage

2025-04-18

foot - 1.22.0
Ebuild name:

gui-apps/foot-1.22.0

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2025-04-18

foot-terminfo - 1.22.0
Ebuild name:

gui-apps/foot-terminfo-1.22.0

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2025-04-18

francis - 25.04.0
Ebuild name:

app-misc/francis-25.04.0

Description

Productivity application using the well-known pomodoro technique

Added to portage

2025-04-18

frozenlist - 1.6.0
Ebuild name:

dev-python/frozenlist-1.6.0

Description

A list-like structure which implements collections.abc.MutableSequence

Added to portage

2025-04-18

gitlab-runner - 17.11.0
Ebuild name:

dev-util/gitlab-runner-17.11.0

Description

The official GitLab Runner, written in Go

Added to portage

2025-04-18

glycin-loaders - 1.2.1
Ebuild name:

media-libs/glycin-loaders-1.2.1

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-04-18

granatier - 25.04.0
Ebuild name:

kde-apps/granatier-25.04.0

Description

KDE Bomberman game

Added to portage

2025-04-18

grantlee-editor - 25.04.0
Ebuild name:

kde-apps/grantlee-editor-25.04.0

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2025-04-18

grantleetheme - 25.04.0
Ebuild name:

kde-apps/grantleetheme-25.04.0

Description

Library for Grantlee plugins

Added to portage

2025-04-18

gwenview - 25.04.0
Ebuild name:

kde-apps/gwenview-25.04.0

Description

Image viewer by KDE

Added to portage

2025-04-18

hypothesis - 6.131.2
Ebuild name:

dev-python/hypothesis-6.131.2

Description

A library for property based testing

Added to portage

2025-04-18

incidenceeditor - 25.04.0
Ebuild name:

kde-apps/incidenceeditor-25.04.0

Description

Incidence editor for KOrganizer

Added to portage

2025-04-18

installkernel - 58
Ebuild name:

sys-kernel/installkernel-58

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-04-18

intel-compute-runtime - 25.13.33276.17
Ebuild name:

dev-libs/intel-compute-runtime-25.13.33276.17

Description

Intel Graphics Compute Runtime for oneAPI Level Zero

Added to portage

2025-04-18

intel-graphics-compiler - 2.10.9
Ebuild name:

dev-util/intel-graphics-compiler-2.10.9

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2025-04-18

ipmicfg - 1.36.0.250225
Ebuild name:

sys-apps/ipmicfg-1.36.0.250225

Description

An in-band utility for configuring Supermicro IPMI devices

Added to portage

2025-04-18

isoimagewriter - 25.04.0
Ebuild name:

app-cdr/isoimagewriter-25.04.0

Description

Write hybrid ISO files onto a USB disk

Added to portage

2025-04-18

juk - 25.04.0
Ebuild name:

kde-apps/juk-25.04.0

Description

Jukebox and music manager by KDE

Added to portage

2025-04-18

k3b - 25.04.0
Ebuild name:

kde-apps/k3b-25.04.0

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2025-04-18

kaccounts-integration - 25.04.0
Ebuild name:

kde-apps/kaccounts-integration-25.04.0

Description

Administer web accounts for the sites and services across th

Added to portage

2025-04-18

kaccounts-providers - 25.04.0
Ebuild name:

kde-apps/kaccounts-providers-25.04.0

Description

KDE accounts providers

Added to portage

2025-04-18

kaddressbook - 25.04.0
Ebuild name:

kde-apps/kaddressbook-25.04.0

Description

Address book application based on KDE Frameworks

Added to portage

2025-04-18

kajongg - 25.04.0
Ebuild name:

kde-apps/kajongg-25.04.0

Description

Classical Mah Jongg for four players

Added to portage

2025-04-18

kalarm - 25.04.0
Ebuild name:

kde-apps/kalarm-25.04.0

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2025-04-18

kalgebra - 25.04.0
Ebuild name:

kde-apps/kalgebra-25.04.0

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2025-04-18

kalzium - 25.04.0
Ebuild name:

kde-apps/kalzium-25.04.0

Description

Periodic table of the elements

Added to portage

2025-04-18

kamera - 25.04.0
Ebuild name:

kde-apps/kamera-25.04.0

Description

Plasma integration for gphoto2 cameras

Added to portage

2025-04-18

kamoso - 25.04.0
Ebuild name:

kde-apps/kamoso-25.04.0

Description

Application to take pictures and videos from your webcam by KDE

Added to portage

2025-04-18

kanagram - 25.04.0
Ebuild name:

kde-apps/kanagram-25.04.0

Description

Game based on anagrams of words

Added to portage

2025-04-18

kapman - 25.04.0
Ebuild name:

kde-apps/kapman-25.04.0

Description

Pac-Man clone by KDE

Added to portage

2025-04-18

kapptemplate - 25.04.0
Ebuild name:

kde-apps/kapptemplate-25.04.0

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2025-04-18

kasts - 25.04.0
Ebuild name:

media-sound/kasts-25.04.0

Description

Convergent podcast application for desktop and mobile

Added to portage

2025-04-18

kate - 25.04.0
Ebuild name:

kde-apps/kate-25.04.0

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2025-04-18

kate-addons - 25.04.0
Ebuild name:

kde-apps/kate-addons-25.04.0

Description

Addons used by Kate

Added to portage

2025-04-18

kate-common - 25.04.0
Ebuild name:

kde-apps/kate-common-25.04.0

Description

Added to portage

2025-04-18

kate-lib - 25.04.0
Ebuild name:

kde-apps/kate-lib-25.04.0

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2025-04-18

katomic - 25.04.0
Ebuild name:

kde-apps/katomic-25.04.0

Description

KDE Atomic Entertainment Game

Added to portage

2025-04-18

kbackup - 25.04.0
Ebuild name:

kde-apps/kbackup-25.04.0

Description

Program that lets you back up any directories or files

Added to portage

2025-04-18

kblackbox - 25.04.0
Ebuild name:

kde-apps/kblackbox-25.04.0

Description

Game of hide and seek played on a grid of boxes

Added to portage

2025-04-18

kblocks - 25.04.0
Ebuild name:

kde-apps/kblocks-25.04.0

Description

Single-player Tetris-like KDE game

Added to portage

2025-04-18

kbounce - 25.04.0
Ebuild name:

kde-apps/kbounce-25.04.0

Description

KDE Bounce Ball Game

Added to portage

2025-04-18

kbreakout - 25.04.0
Ebuild name:

kde-apps/kbreakout-25.04.0

Description

Breakout-like game by KDE

Added to portage

2025-04-18

kbruch - 25.04.0
Ebuild name:

kde-apps/kbruch-25.04.0

Description

Educational application to learn calculating with fractions

Added to portage

2025-04-18

kcachegrind - 25.04.0
Ebuild name:

kde-apps/kcachegrind-25.04.0

Description

Frontend for Cachegrind by KDE

Added to portage

2025-04-18

kcalc - 25.04.0
Ebuild name:

kde-apps/kcalc-25.04.0

Description

KDE calculator

Added to portage

2025-04-18

kcalutils - 25.04.0
Ebuild name:

kde-apps/kcalutils-25.04.0

Description

Library providing utility functions for the handling of calendar data

Added to portage

2025-04-18

kcharselect - 25.04.0
Ebuild name:

kde-apps/kcharselect-25.04.0

Description

KDE character selection utility

Added to portage

2025-04-18

kclock - 25.04.0
Ebuild name:

kde-misc/kclock-25.04.0

Description

Convergent clock application for Plasma

Added to portage

2025-04-18

kcolorchooser - 25.04.0
Ebuild name:

kde-apps/kcolorchooser-25.04.0

Description

KDE color selector/editor

Added to portage

2025-04-18

kcron - 25.04.0
Ebuild name:

kde-apps/kcron-25.04.0

Description

KDE Task Scheduler

Added to portage

2025-04-18

kde-apps-meta - 25.04.0
Ebuild name:

kde-apps/kde-apps-meta-25.04.0

Description

Meta package for the KDE Release Service collection

Added to portage

2025-04-18

kde-dev-scripts - 25.04.0
Ebuild name:

kde-apps/kde-dev-scripts-25.04.0

Description

KDE Development Scripts

Added to portage

2025-04-18

kde-dev-utils - 25.04.0
Ebuild name:

kde-apps/kde-dev-utils-25.04.0

Description

KDE Development Utilities

Added to portage

2025-04-18

kdeaccessibility-meta - 25.04.0
Ebuild name:

kde-apps/kdeaccessibility-meta-25.04.0

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2025-04-18

kdeadmin-meta - 25.04.0
Ebuild name:

kde-apps/kdeadmin-meta-25.04.0

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2025-04-18

kdebugsettings - 25.04.0
Ebuild name:

kde-apps/kdebugsettings-25.04.0

Description

Application to enable/disable qCDebug

Added to portage

2025-04-18

kdeconnect - 25.04.0
Ebuild name:

kde-misc/kdeconnect-25.04.0

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2025-04-18

kdecore-meta - 25.04.0
Ebuild name:

kde-apps/kdecore-meta-25.04.0

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2025-04-18

kdeedu-data - 25.04.0
Ebuild name:

kde-apps/kdeedu-data-25.04.0

Description

Shared icons, artwork and data files for educational applications

Added to portage

2025-04-18

kdeedu-meta - 25.04.0
Ebuild name:

kde-apps/kdeedu-meta-25.04.0

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2025-04-18

kdegames-meta - 25.04.0
Ebuild name:

kde-apps/kdegames-meta-25.04.0

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2025-04-18

kdegraphics-meta - 25.04.0
Ebuild name:

kde-apps/kdegraphics-meta-25.04.0

Description

kdegraphics - merge this to pull in all kdegraphics-derived packa

Added to portage

2025-04-18

kdegraphics-mobipocket - 25.04.0
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.04.0

Description

Library to support mobipocket ebooks

Added to portage

2025-04-18

kdemultimedia-meta - 25.04.0
Ebuild name:

kde-apps/kdemultimedia-meta-25.04.0

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2025-04-18

kdenetwork-filesharing - 25.04.0
Ebuild name:

kde-apps/kdenetwork-filesharing-25.04.0

Description

Samba filesharing plugin for file properties

Added to portage

2025-04-18

kdenetwork-meta - 25.04.0
Ebuild name:

kde-apps/kdenetwork-meta-25.04.0

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2025-04-18

kdenlive - 25.04.0
Ebuild name:

kde-apps/kdenlive-25.04.0

Description

Non-linear video editing suite by KDE

Added to portage

2025-04-18

kdepim-addons - 25.04.0
Ebuild name:

kde-apps/kdepim-addons-25.04.0

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2025-04-18

kdepim-meta - 25.04.0
Ebuild name:

kde-apps/kdepim-meta-25.04.0

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2025-04-18

kdepim-runtime - 25.04.0
Ebuild name:

kde-apps/kdepim-runtime-25.04.0

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-04-18

kdesdk-meta - 25.04.0
Ebuild name:

kde-apps/kdesdk-meta-25.04.0

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2025-04-18

kdesdk-thumbnailers - 25.04.0
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.04.0

Description

Thumbnail generator for PO files

Added to portage

2025-04-18

kdeutils-meta - 25.04.0
Ebuild name:

kde-apps/kdeutils-meta-25.04.0

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2025-04-18

kdevelop - 25.04.0
Ebuild name:

dev-util/kdevelop-25.04.0

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2025-04-18

kdevelop-php - 25.04.0
Ebuild name:

dev-util/kdevelop-php-25.04.0

Description

PHP plugin for KDevelop

Added to portage

2025-04-18

kdevelop-python - 25.04.0
Ebuild name:

dev-util/kdevelop-python-25.04.0

Description

Python plugin for KDevelop

Added to portage

2025-04-18

kdf - 25.04.0
Ebuild name:

kde-apps/kdf-25.04.0

Description

KDE free disk space utility

Added to portage

2025-04-18

kdialog - 25.04.0
Ebuild name:

kde-apps/kdialog-25.04.0

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2025-04-18

kdiamond - 25.04.0
Ebuild name:

kde-apps/kdiamond-25.04.0

Description

Single player three-in-a-row game

Added to portage

2025-04-18

keditbookmarks - 25.04.0
Ebuild name:

kde-apps/keditbookmarks-25.04.0

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2025-04-18

keysmith - 25.04.0
Ebuild name:

app-crypt/keysmith-25.04.0

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2025-04-18

kfind - 25.04.0
Ebuild name:

kde-apps/kfind-25.04.0

Description

File finder utility based on KDE Frameworks

Added to portage

2025-04-18

kfourinline - 25.04.0
Ebuild name:

kde-apps/kfourinline-25.04.0

Description

KDE four-in-a-row game

Added to portage

2025-04-18

kgeography - 25.04.0
Ebuild name:

kde-apps/kgeography-25.04.0

Description

Geography learning tool

Added to portage

2025-04-18

kget - 25.04.0
Ebuild name:

kde-apps/kget-25.04.0

Description

Advanced download manager by KDE

Added to portage

2025-04-18

kgoldrunner - 25.04.0
Ebuild name:

kde-apps/kgoldrunner-25.04.0

Description

Game of action and puzzle solving by KDE

Added to portage

2025-04-18

kgpg - 25.04.0
Ebuild name:

kde-apps/kgpg-25.04.0

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2025-04-18

kgraphviewer - 25.04.0
Ebuild name:

media-gfx/kgraphviewer-25.04.0

Description

Graphviz dot graph file viewer

Added to portage

2025-04-18

khangman - 25.04.0
Ebuild name:

kde-apps/khangman-25.04.0

Description

Classical hangman game by KDE

Added to portage

2025-04-18

khelpcenter - 25.04.0
Ebuild name:

kde-apps/khelpcenter-25.04.0

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2025-04-18

kidentitymanagement - 25.04.0
Ebuild name:

kde-apps/kidentitymanagement-25.04.0

Description

Library for managing identitites

Added to portage

2025-04-18

kig - 25.04.0
Ebuild name:

kde-apps/kig-25.04.0

Description

KDE Interactive Geometry tool

Added to portage

2025-04-18

kigo - 25.04.0
Ebuild name:

kde-apps/kigo-25.04.0

Description

Go game by KDE

Added to portage

2025-04-18

killbots - 25.04.0
Ebuild name:

kde-apps/killbots-25.04.0

Description

Kill the bots or they kill you

Added to portage

2025-04-18

kimagemapeditor - 25.04.0
Ebuild name:

kde-apps/kimagemapeditor-25.04.0

Description

Generator of HTML image maps

Added to portage

2025-04-18

kimap - 25.04.0
Ebuild name:

kde-apps/kimap-25.04.0

Description

Library for interacting with IMAP servers

Added to portage

2025-04-18

kio-admin - 25.04.0
Ebuild name:

app-admin/kio-admin-25.04.0

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2025-04-18

kio-blender-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.04.0

Description

KIO thumbnail generator for Blender files

Added to portage

2025-04-18

kio-extras - 25.04.0
Ebuild name:

kde-apps/kio-extras-25.04.0

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2025-04-18

kio-gdrive - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-25.04.0

Description

KIO worker for Google Drive service

Added to portage

2025-04-18

kio-gdrive-common - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-common-25.04.0

Description

Added to portage

2025-04-18

kio-mobi-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.04.0

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2025-04-18

kio-perldoc - 25.04.0
Ebuild name:

dev-util/kio-perldoc-25.04.0

Description

KIO worker interface to browse Perl documentation

Added to portage

2025-04-18

kio-ps-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.04.0

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2025-04-18

kio-raw-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.04.0

Description

KIO thumbnail generator for RAW files

Added to portage

2025-04-18

kio-zeroconf - 25.04.0
Ebuild name:

net-misc/kio-zeroconf-25.04.0

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2025-04-18

kiriki - 25.04.0
Ebuild name:

kde-apps/kiriki-25.04.0

Description

An addictive and fun dice game

Added to portage

2025-04-18

kiten - 25.04.0
Ebuild name:

kde-apps/kiten-25.04.0

Description

KDE Japanese dictionary and reference

Added to portage

2025-04-18

kitinerary - 25.04.0
Ebuild name:

kde-apps/kitinerary-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kjumpingcube - 25.04.0
Ebuild name:

kde-apps/kjumpingcube-25.04.0

Description

Tactical one or two player game

Added to portage

2025-04-18

kldap - 25.04.0
Ebuild name:

kde-apps/kldap-25.04.0

Description

Library for interacting with LDAP servers

Added to portage

2025-04-18

kleopatra - 25.04.0
Ebuild name:

kde-apps/kleopatra-25.04.0

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2025-04-18

klettres - 25.04.0
Ebuild name:

kde-apps/klettres-25.04.0

Description

Alphabet learning application

Added to portage

2025-04-18

klickety - 25.04.0
Ebuild name:

kde-apps/klickety-25.04.0

Description

An adaptation of the Clickomania game

Added to portage

2025-04-18

klines - 25.04.0
Ebuild name:

kde-apps/klines-25.04.0

Description

A little KDE game about balls and how to get rid of them

Added to portage

2025-04-18

kmag - 25.04.0
Ebuild name:

kde-apps/kmag-25.04.0

Description

KDE screen magnifier

Added to portage

2025-04-18

kmahjongg - 25.04.0
Ebuild name:

kde-apps/kmahjongg-25.04.0

Description

A tile matching game for one or two players

Added to portage

2025-04-18

kmail - 25.04.0
Ebuild name:

kde-apps/kmail-25.04.0

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2025-04-18

kmail-account-wizard - 25.04.0
Ebuild name:

kde-apps/kmail-account-wizard-25.04.0

Description

Assistant for KMail accounts configuration

Added to portage

2025-04-18

kmailtransport - 25.04.0
Ebuild name:

kde-apps/kmailtransport-25.04.0

Description

Mail transport service

Added to portage

2025-04-18

kmbox - 25.04.0
Ebuild name:

kde-apps/kmbox-25.04.0

Description

Library for accessing MBox format mail storages

Added to portage

2025-04-18

kmime - 25.04.0
Ebuild name:

kde-apps/kmime-25.04.0

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2025-04-18

kmines - 25.04.0
Ebuild name:

kde-apps/kmines-25.04.0

Description

Classic mine sweeper game

Added to portage

2025-04-18

kmix - 25.04.0
Ebuild name:

kde-apps/kmix-25.04.0

Description

Volume control gui based on KDE Frameworks

Added to portage

2025-04-18

kmousetool - 25.04.0
Ebuild name:

kde-apps/kmousetool-25.04.0

Description

KDE program that clicks the mouse for you

Added to portage

2025-04-18

kmouth - 25.04.0
Ebuild name:

kde-apps/kmouth-25.04.0

Description

Text-to-speech synthesizer front end

Added to portage

2025-04-18

kmplot - 25.04.0
Ebuild name:

kde-apps/kmplot-25.04.0

Description

Mathematical function plotter

Added to portage

2025-04-18

knavalbattle - 25.04.0
Ebuild name:

kde-apps/knavalbattle-25.04.0

Description

Battleship clone by KDE

Added to portage

2025-04-18

knetwalk - 25.04.0
Ebuild name:

kde-apps/knetwalk-25.04.0

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2025-04-18

knights - 25.04.0
Ebuild name:

kde-apps/knights-25.04.0

Description

Simple chess board based on KDE Frameworks

Added to portage

2025-04-18

kolf - 25.04.0
Ebuild name:

kde-apps/kolf-25.04.0

Description

Minigolf game by KDE

Added to portage

2025-04-18

kollision - 25.04.0
Ebuild name:

kde-apps/kollision-25.04.0

Description

Simple ball dodging game

Added to portage

2025-04-18

kolourpaint - 25.04.0
Ebuild name:

kde-apps/kolourpaint-25.04.0

Description

Paint Program by KDE

Added to portage

2025-04-18

kompare - 25.04.0
Ebuild name:

kde-apps/kompare-25.04.0

Description

Graphical File Differences Tool

Added to portage

2025-04-18

konqueror - 25.04.0
Ebuild name:

kde-apps/konqueror-25.04.0

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2025-04-18

konquest - 25.04.0
Ebuild name:

kde-apps/konquest-25.04.0

Description

Galactic Strategy KDE Game

Added to portage

2025-04-18

konsole - 25.04.0
Ebuild name:

kde-apps/konsole-25.04.0

Description

KDE's terminal emulator

Added to portage

2025-04-18

konsolekalendar - 25.04.0
Ebuild name:

kde-apps/konsolekalendar-25.04.0

Description

Command line interface to KDE calendars

Added to portage

2025-04-18

kontact - 25.04.0
Ebuild name:

kde-apps/kontact-25.04.0

Description

Container application to unify several major PIM applications within one

Added to portage

2025-04-18

kontactinterface - 25.04.0
Ebuild name:

kde-apps/kontactinterface-25.04.0

Description

Library for embedding KParts in a Kontact component

Added to portage

2025-04-18

kontrast - 25.04.0
Ebuild name:

app-accessibility/kontrast-25.04.0

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2025-04-18

konversation - 25.04.0
Ebuild name:

net-irc/konversation-25.04.0

Description

User friendly IRC Client

Added to portage

2025-04-18

kopeninghours - 25.04.0
Ebuild name:

dev-libs/kopeninghours-25.04.0

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2025-04-18

korganizer - 25.04.0
Ebuild name:

kde-apps/korganizer-25.04.0

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2025-04-18

kosmindoormap - 25.04.0
Ebuild name:

dev-libs/kosmindoormap-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kpat - 25.04.0
Ebuild name:

kde-apps/kpat-25.04.0

Description

KDE patience game

Added to portage

2025-04-18

kpimtextedit - 25.04.0
Ebuild name:

kde-apps/kpimtextedit-25.04.0

Description

Extended text editor for PIM applications

Added to portage

2025-04-18

kpkpass - 25.04.0
Ebuild name:

kde-apps/kpkpass-25.04.0

Description

Library to deal with Apple Wallet pass files

Added to portage

2025-04-18

kpmcore - 25.04.0
Ebuild name:

sys-libs/kpmcore-25.04.0

Description

Library for managing partitions

Added to portage

2025-04-18

kpublictransport - 25.04.0
Ebuild name:

dev-libs/kpublictransport-25.04.0

Description

Library for accessing public transport timetables and other infor

Added to portage

2025-04-18

kqtquickcharts - 25.04.0
Ebuild name:

kde-apps/kqtquickcharts-25.04.0

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-04-18

krdc - 25.04.0
Ebuild name:

kde-apps/krdc-25.04.0

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2025-04-18

krecorder - 25.04.0
Ebuild name:

media-sound/krecorder-25.04.0

Description

Convergent audio recording application for Plasma

Added to portage

2025-04-18

kreversi - 25.04.0
Ebuild name:

kde-apps/kreversi-25.04.0

Description

Board game by KDE

Added to portage

2025-04-18

krfb - 25.04.0
Ebuild name:

kde-apps/krfb-25.04.0

Description

VNC-compatible server to share Plasma desktops

Added to portage

2025-04-18

kruler - 25.04.0
Ebuild name:

kde-apps/kruler-25.04.0

Description

Screen ruler for Plasma

Added to portage

2025-04-18

ksanecore - 25.04.0
Ebuild name:

media-libs/ksanecore-25.04.0

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2025-04-18

kshisen - 25.04.0
Ebuild name:

kde-apps/kshisen-25.04.0

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2025-04-18

ksirk - 25.04.0
Ebuild name:

kde-apps/ksirk-25.04.0

Description

Port of the board game Risk

Added to portage

2025-04-18

ksmtp - 25.04.0
Ebuild name:

kde-apps/ksmtp-25.04.0

Description

Job-based library to send email through an SMTP server

Added to portage

2025-04-18

ksnakeduel - 25.04.0
Ebuild name:

kde-apps/ksnakeduel-25.04.0

Description

KDE Tron game

Added to portage

2025-04-18

kspaceduel - 25.04.0
Ebuild name:

kde-apps/kspaceduel-25.04.0

Description

Space Game by KDE

Added to portage

2025-04-18

ksquares - 25.04.0
Ebuild name:

kde-apps/ksquares-25.04.0

Description

KDE clone of the game squares

Added to portage

2025-04-18

ksudoku - 25.04.0
Ebuild name:

kde-apps/ksudoku-25.04.0

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2025-04-18

ksystemlog - 25.04.0
Ebuild name:

kde-apps/ksystemlog-25.04.0

Description

System log viewer by KDE

Added to portage

2025-04-18

kteatime - 25.04.0
Ebuild name:

kde-apps/kteatime-25.04.0

Description

KDE timer for making a fine cup of tea

Added to portage

2025-04-18

ktimer - 25.04.0
Ebuild name:

kde-apps/ktimer-25.04.0

Description

Little tool to execute programs after some time

Added to portage

2025-04-18

ktorrent - 25.04.0
Ebuild name:

net-p2p/ktorrent-25.04.0

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2025-04-18

ktouch - 25.04.0
Ebuild name:

kde-apps/ktouch-25.04.0

Description

Program that helps to learn and practice touch typing

Added to portage

2025-04-18

ktuberling - 25.04.0
Ebuild name:

kde-apps/ktuberling-25.04.0

Description

Potato game for kids by KDE

Added to portage

2025-04-18

kturtle - 25.04.0
Ebuild name:

kde-apps/kturtle-25.04.0

Description

Educational programming environment using the Logo programming language

Added to portage

2025-04-18

kubrick - 25.04.0
Ebuild name:

kde-apps/kubrick-25.04.0

Description

Game based on the

Added to portage

2025-04-18

kwalletmanager - 25.04.0
Ebuild name:

kde-apps/kwalletmanager-25.04.0

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2025-04-18

kwave - 25.04.0
Ebuild name:

kde-apps/kwave-25.04.0

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2025-04-18

kweather - 25.04.0
Ebuild name:

kde-misc/kweather-25.04.0

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2025-04-18

kweathercore - 25.04.0
Ebuild name:

dev-libs/kweathercore-25.04.0

Description

Library for retrieval of weather information including forecasts and

Added to portage

2025-04-18

kwordquiz - 25.04.0
Ebuild name:

kde-apps/kwordquiz-25.04.0

Description

Powerful flashcard and vocabulary learning program

Added to portage

2025-04-18

kwrite - 25.04.0
Ebuild name:

kde-apps/kwrite-25.04.0

Description

Simple text editor based on KDE Frameworks

Added to portage

2025-04-18

lcalc - 2.1.0-r1
Ebuild name:

sci-mathematics/lcalc-2.1.0-r1

Description

Command-line utility and library for L-function computations

Added to portage

2025-04-18

level-zero - 1.21.9
Ebuild name:

dev-libs/level-zero-1.21.9

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-04-18

libgravatar - 25.04.0
Ebuild name:

kde-apps/libgravatar-25.04.0

Description

Library for gravatar integration

Added to portage

2025-04-18

libkcddb - 25.04.0
Ebuild name:

kde-apps/libkcddb-25.04.0

Description

KDE library for CDDB

Added to portage

2025-04-18

libkcddb-common - 25.04.0
Ebuild name:

kde-apps/libkcddb-common-25.04.0

Description

Added to portage

2025-04-18

libkcompactdisc - 25.04.0
Ebuild name:

kde-apps/libkcompactdisc-25.04.0

Description

Library for playing & ripping CDs

Added to portage

2025-04-18

libkdcraw - 25.04.0
Ebuild name:

kde-apps/libkdcraw-25.04.0

Description

Digital camera raw image library wrapper

Added to portage

2025-04-18

libkdegames - 25.04.0
Ebuild name:

kde-apps/libkdegames-25.04.0

Description

Base library common to many KDE games

Added to portage

2025-04-18

libkdepim - 25.04.0
Ebuild name:

kde-apps/libkdepim-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libkeduvocdocument - 25.04.0
Ebuild name:

kde-apps/libkeduvocdocument-25.04.0

Description

Library for reading/writing KVTML

Added to portage

2025-04-18

libkexiv2 - 25.04.0
Ebuild name:

kde-apps/libkexiv2-25.04.0

Description

Wrapper around exiv2 library

Added to portage

2025-04-18

libkgapi - 25.04.0
Ebuild name:

kde-apps/libkgapi-25.04.0

Description

Library for accessing Google calendar and contact resources

Added to portage

2025-04-18

libkleo - 25.04.0
Ebuild name:

kde-apps/libkleo-25.04.0

Description

Library for encryption handling

Added to portage

2025-04-18

libkmahjongg - 25.04.0
Ebuild name:

kde-apps/libkmahjongg-25.04.0

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2025-04-18

libkomparediff2 - 25.04.0
Ebuild name:

kde-apps/libkomparediff2-25.04.0

Description

Library to compare files and strings

Added to portage

2025-04-18

libksane - 25.04.0
Ebuild name:

kde-apps/libksane-25.04.0

Description

SANE Library interface based on KDE Frameworks

Added to portage

2025-04-18

libksane-common - 25.04.0
Ebuild name:

kde-apps/libksane-common-25.04.0

Description

Added to portage

2025-04-18

libksieve - 25.04.0
Ebuild name:

kde-apps/libksieve-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libktnef - 25.04.0
Ebuild name:

kde-apps/libktnef-25.04.0

Description

Library for handling TNEF data

Added to portage

2025-04-18

libktorrent - 25.04.0
Ebuild name:

net-libs/libktorrent-25.04.0

Description

BitTorrent library based on KDE Frameworks

Added to portage

2025-04-18

logswan - 2.1.15
Ebuild name:

www-misc/logswan-2.1.15

Description

Fast Web log analyzer using probabilistic data structures

Added to portage

2025-04-18

lokalize - 25.04.0
Ebuild name:

kde-apps/lokalize-25.04.0

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2025-04-18

lskat - 25.04.0
Ebuild name:

kde-apps/lskat-25.04.0

Description

Skat game by KDE

Added to portage

2025-04-18

luau - 0.669
Ebuild name:

dev-lang/luau-0.669

Description

Gradually typed embeddable scripting language derived from Lua

Added to portage

2025-04-18

mailcommon - 25.04.0
Ebuild name:

kde-apps/mailcommon-25.04.0

Description

Common mail library

Added to portage

2025-04-18

mailimporter - 25.04.0
Ebuild name:

kde-apps/mailimporter-25.04.0

Description

Library to import mail from various sources

Added to portage

2025-04-18

marble - 25.04.0
Ebuild name:

kde-apps/marble-25.04.0

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2025-04-18

markdownpart - 25.04.0
Ebuild name:

kde-misc/markdownpart-25.04.0

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2025-04-18

marksman - 2024.12.18
Ebuild name:

dev-util/marksman-2024.12.18

Description

LSP language server for editing Markdown files

Added to portage

2025-04-18

massif-visualizer - 25.04.0
Ebuild name:

dev-util/massif-visualizer-25.04.0

Description

Tool visualising massif data

Added to portage

2025-04-18

mbox-importer - 25.04.0
Ebuild name:

kde-apps/mbox-importer-25.04.0

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2025-04-18

merkuro - 25.04.0
Ebuild name:

app-office/merkuro-25.04.0

Description

Calendar application using Akonadi

Added to portage

2025-04-18

meson - 1.8.0_rc1
Ebuild name:

dev-build/meson-1.8.0_rc1

Description

Open source build system

Added to portage

2025-04-18

messagelib - 25.04.0
Ebuild name:

kde-apps/messagelib-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

mimetreeparser - 25.04.0
Ebuild name:

kde-apps/mimetreeparser-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

minuet - 25.04.0
Ebuild name:

kde-apps/minuet-25.04.0

Description

Music Education software by KDE

Added to portage

2025-04-18

mkdocs-material - 9.6.12
Ebuild name:

dev-python/mkdocs-material-9.6.12

Description

A Material Design theme for MkDocs

Added to portage

2025-04-18

nagios-plugins - 2.4.12-r2
Ebuild name:

net-analyzer/nagios-plugins-2.4.12-r2

Description

Official plugins for Nagios

Added to portage

2025-04-18

nanobind - 2.7.0
Ebuild name:

dev-python/nanobind-2.7.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2025-04-18

neochat - 25.04.0
Ebuild name:

net-im/neochat-25.04.0

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2025-04-18

nvidia-drivers - 570.144
Ebuild name:

x11-drivers/nvidia-drivers-570.144

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2025-04-18

okular - 25.04.0
Ebuild name:

kde-apps/okular-25.04.0

Description

Universal document viewer based on KDE Frameworks

Added to portage

2025-04-18

palapeli - 25.04.0
Ebuild name:

kde-apps/palapeli-25.04.0

Description

Jigsaw puzzle game by KDE

Added to portage

2025-04-18

parley - 25.04.0
Ebuild name:

kde-apps/parley-25.04.0

Description

Vocabulary trainer to help you memorize things

Added to portage

2025-04-18

partitionmanager - 25.04.0
Ebuild name:

sys-block/partitionmanager-25.04.0

Description

Utility for management of disks, partitions and file systems

Added to portage

2025-04-18

picmi - 25.04.0
Ebuild name:

kde-apps/picmi-25.04.0

Description

Nonogram logic game by KDE

Added to portage

2025-04-18

pim-data-exporter - 25.04.0
Ebuild name:

kde-apps/pim-data-exporter-25.04.0

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2025-04-18

pim-sieve-editor - 25.04.0
Ebuild name:

kde-apps/pim-sieve-editor-25.04.0

Description

Assistant for editing IMAP Sieve filters

Added to portage

2025-04-18

pimcommon - 25.04.0
Ebuild name:

kde-apps/pimcommon-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

poxml - 25.04.0
Ebuild name:

kde-apps/poxml-25.04.0

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2025-04-18

prismlauncher - 9.4
Ebuild name:

games-action/prismlauncher-9.4

Description

Custom, open source Minecraft launcher

Added to portage

2025-04-18

pydantic-core - 2.34.1
Ebuild name:

dev-python/pydantic-core-2.34.1

Description

Core validation logic for pydantic written in Rust

Added to portage

2025-04-18

qrca - 25.04.0
Ebuild name:

media-gfx/qrca-25.04.0

Description

Simple barcode scanner and QR code generator

Added to portage

2025-04-18

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2025-04-18

request - 0.3.3_p20220318
Ebuild name:

app-emacs/request-0.3.3_p20220318

Description

Compatible layer for URL request

Added to portage

2025-04-18

rescript-mode - 0.1.0_p20220613
Ebuild name:

app-emacs/rescript-mode-0.1.0_p20220613

Description

Emacs major mode for ReScript

Added to portage

2025-04-18

restclient - 0_p20220426
Ebuild name:

app-emacs/restclient-0_p20220426

Description

HTTP REST client tool for GNU Emacs

Added to portage

2025-04-18

revive - 2.25
Ebuild name:

app-emacs/revive-2.25

Description

Resume Emacs

Added to portage

2025-04-18

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-04-18

rg - 2.3.0
Ebuild name:

app-emacs/rg-2.3.0

Description

GNU Emacs search tool based on ripgrep

Added to portage

2025-04-18

rocs - 25.04.0
Ebuild name:

kde-apps/rocs-25.04.0

Description

Interface to work with Graph Theory

Added to portage

2025-04-18

rubygems - 3.6.8
Ebuild name:

dev-ruby/rubygems-3.6.8

Description

Centralized Ruby extension management system

Added to portage

2025-04-18

ruff - 0.11.6
Ebuild name:

dev-util/ruff-0.11.6

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-04-18

s3transfer - 0.11.5
Ebuild name:

dev-python/s3transfer-0.11.5

Description

An Amazon S3 Transfer Manager

Added to portage

2025-04-18

signon-kwallet-extension - 25.04.0
Ebuild name:

kde-apps/signon-kwallet-extension-25.04.0

Description

KWallet extension for signond

Added to portage

2025-04-18

skanlite - 25.04.0
Ebuild name:

kde-misc/skanlite-25.04.0

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2025-04-18

skanpage - 25.04.0
Ebuild name:

media-gfx/skanpage-25.04.0

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2025-04-18

skladnik - 25.04.0
Ebuild name:

games-puzzle/skladnik-25.04.0

Description

The Japanese warehouse keeper sokoban game

Added to portage

2025-04-18

smcipmitool - 2.29.0.250214
Ebuild name:

sys-apps/smcipmitool-2.29.0.250214

Description

An out-of-band utility for interfacing with SuperBlade and IPMI

Added to portage

2025-04-18

sourcegit - 2025.13
Ebuild name:

dev-vcs/sourcegit-2025.13

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-04-18

spirv-llvm-translator - 15.0.11
Ebuild name:

dev-util/spirv-llvm-translator-15.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 16.0.11
Ebuild name:

dev-util/spirv-llvm-translator-16.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 17.0.11
Ebuild name:

dev-util/spirv-llvm-translator-17.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 18.1.11
Ebuild name:

dev-util/spirv-llvm-translator-18.1.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 19.1.6
Ebuild name:

dev-util/spirv-llvm-translator-19.1.6

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 20.1.1
Ebuild name:

dev-util/spirv-llvm-translator-20.1.1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

sqlglot - 26.15.0
Ebuild name:

dev-python/sqlglot-26.15.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-04-18

step - 25.04.0
Ebuild name:

kde-apps/step-25.04.0

Description

Interactive physics simulator

Added to portage

2025-04-18

svgpart - 25.04.0
Ebuild name:

kde-apps/svgpart-25.04.0

Description

Kpart for viewing SVGs

Added to portage

2025-04-18

sweeper - 25.04.0
Ebuild name:

kde-apps/sweeper-25.04.0

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2025-04-18

thumbnailers - 25.04.0
Ebuild name:

kde-apps/thumbnailers-25.04.0

Description

Metapackage for KIO thumbnail generators

Added to portage

2025-04-18

tokodon - 25.04.0
Ebuild name:

net-im/tokodon-25.04.0

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2025-04-18

tpm2-pytss - 2.3.0-r1
Ebuild name:

dev-python/tpm2-pytss-2.3.0-r1

Description

Python bindings for TSS

Added to portage

2025-04-18

umbrello - 25.04.0
Ebuild name:

kde-apps/umbrello-25.04.0

Description

KDE UML Modeller

Added to portage

2025-04-18

vivaldi - 7.3.3635.11
Ebuild name:

www-client/vivaldi-7.3.3635.11

Description

A browser for our friends

Added to portage

2025-04-18

vivaldi-snapshot - 7.4.3664.3
Ebuild name:

www-client/vivaldi-snapshot-7.4.3664.3

Description

A browser for our friends

Added to portage

2025-04-18

wireshark - 4.4.6-r1
Ebuild name:

net-analyzer/wireshark-4.4.6-r1

Description

Network protocol analyzer (sniffer)

Added to portage

2025-04-18

xlsxwriter - 3.2.3
Ebuild name:

dev-python/xlsxwriter-3.2.3

Description

Python module for creating Excel XLSX files

Added to portage

2025-04-18

yakuake - 25.04.0
Ebuild name:

kde-apps/yakuake-25.04.0

Description

Quake-style terminal emulator based on konsole

Added to portage

2025-04-18

zanshin - 25.04.0
Ebuild name:

kde-misc/zanshin-25.04.0

Description

Getting things done application by KDE

Added to portage

2025-04-18

zellij - 0.42.2
Ebuild name:

app-misc/zellij-0.42.2

Description

A terminal workspace with batteries included

Added to portage

2025-04-18

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