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:

83223

userrating:

average rating: 1.2 (52 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.2 (25 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
2026-02-12
blackshades - 20070723-r2
Ebuild name:

games-fps/blackshades-20070723-r2

Description

You control a psychic bodyguard, and try to protect the VIP

Added to portage

2026-02-12

blazesym_c - 0.1.7
Ebuild name:

dev-libs/blazesym_c-0.1.7

Description

C bindings for blazesym, a library for address symbolization and related

Added to portage

2026-02-12

calamares - 3.3.14-r6
Ebuild name:

app-admin/calamares-3.3.14-r6

Description

Distribution-independent installer framework

Added to portage

2026-02-12

calamares-gentoo-livecd - 3.3.14_p20260209
Ebuild name:

app-misc/calamares-gentoo-livecd-3.3.14_p20260209

Description

Gentoo Linux Calamares installer configuration fo

Added to portage

2026-02-12

cproc - 0_pre20260113
Ebuild name:

sys-devel/cproc-0_pre20260113

Description

C11 compiler using QBE as backend

Added to portage

2026-02-12

dist-kernel - 5.10.250
Ebuild name:

virtual/dist-kernel-5.10.250

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 5.15.200
Ebuild name:

virtual/dist-kernel-5.15.200

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.1.163
Ebuild name:

virtual/dist-kernel-6.1.163

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.12.70
Ebuild name:

virtual/dist-kernel-6.12.70

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.18.10
Ebuild name:

virtual/dist-kernel-6.18.10

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.6.124
Ebuild name:

virtual/dist-kernel-6.6.124

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

gentoo-kernel - 5.10.250
Ebuild name:

sys-kernel/gentoo-kernel-5.10.250

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 5.15.200
Ebuild name:

sys-kernel/gentoo-kernel-5.15.200

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.1.163
Ebuild name:

sys-kernel/gentoo-kernel-6.1.163

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.12.70
Ebuild name:

sys-kernel/gentoo-kernel-6.12.70

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.18.10
Ebuild name:

sys-kernel/gentoo-kernel-6.18.10

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.6.124
Ebuild name:

sys-kernel/gentoo-kernel-6.6.124

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 5.10.250
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.250

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 5.15.200
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.200

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.1.163
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.163

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.12.70
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.70

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.18.10
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.10

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.6.124
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.124

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

libwebsockets - 4.5.2-r1
Ebuild name:

net-libs/libwebsockets-4.5.2-r1

Description

A flexible pure-C library for implementing network protocols

Added to portage

2026-02-12

man-pages - 6.17
Ebuild name:

sys-apps/man-pages-6.17

Description

A somewhat comprehensive collection of Linux man pages

Added to portage

2026-02-12

marisa - 0.2.7
Ebuild name:

dev-libs/marisa-0.2.7

Description

Matching Algorithm with Recursively Implemented StorAge

Added to portage

2026-02-12

mesa - 25.3.5
Ebuild name:

media-libs/mesa-25.3.5

Description

OpenGL-like graphic library for Linux

Added to portage

2026-02-12

mesa - 26.0.0
Ebuild name:

media-libs/mesa-26.0.0

Description

OpenGL-like graphic library for Linux

Added to portage

2026-02-12

mesa_clc - 25.3.5
Ebuild name:

dev-util/mesa_clc-25.3.5

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-02-12

mesa_clc - 26.0.0
Ebuild name:

dev-util/mesa_clc-26.0.0

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-02-12

moodle - 4.5.10
Ebuild name:

www-apps/moodle-4.5.10

Description

The Moodle Course Management System

Added to portage

2026-02-12

moodle - 5.0.6
Ebuild name:

www-apps/moodle-5.0.6

Description

The Moodle Course Management System

Added to portage

2026-02-12

nginx-mode - 1.1.10
Ebuild name:

app-emacs/nginx-mode-1.1.10

Description

Emacs editing mode for Nginx config files

Added to portage

2026-02-12

nss-docker-ng - 1.1.3
Ebuild name:

sys-auth/nss-docker-ng-1.1.3

Description

NSS plugin for finding Docker containers by their ID or name

Added to portage

2026-02-12

oshu - 2.0.3
Ebuild name:

games-arcade/oshu-2.0.3

Description

Lightweight osu port

Added to portage

2026-02-12

sanlock - 4.2.0
Ebuild name:

sys-cluster/sanlock-4.2.0

Description

shared storage lock manager

Added to portage

2026-02-12

sendmail - 8.18.1.10-r4
Ebuild name:

mail-mta/sendmail-8.18.1.10-r4

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sendmail - 8.18.1.15-r2
Ebuild name:

mail-mta/sendmail-8.18.1.15-r2

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sendmail - 8.18.1.16-r1
Ebuild name:

mail-mta/sendmail-8.18.1.16-r1

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sudo-rs - 0.2.12-r1
Ebuild name:

app-admin/sudo-rs-0.2.12-r1

Description

A memory safe implementation of sudo and su.

Added to portage

2026-02-12

tree - 3.18-r1
Ebuild name:

dev-cpp/tree-3.18-r1

Description

An STL-like tree class

Added to portage

2026-02-12

unbound - 1.24.2-r1
Ebuild name:

net-dns/unbound-1.24.2-r1

Description

A validating, recursive and caching DNS resolver

Added to portage

2026-02-12

vanilla-kernel - 5.10.250
Ebuild name:

sys-kernel/vanilla-kernel-5.10.250

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 5.15.200
Ebuild name:

sys-kernel/vanilla-kernel-5.15.200

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.1.163
Ebuild name:

sys-kernel/vanilla-kernel-6.1.163

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.12.70
Ebuild name:

sys-kernel/vanilla-kernel-6.12.70

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.18.10
Ebuild name:

sys-kernel/vanilla-kernel-6.18.10

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.6.124
Ebuild name:

sys-kernel/vanilla-kernel-6.6.124

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vaultwarden - 1.35.3
Ebuild name:

app-admin/vaultwarden-1.35.3

Description

Unofficial Bitwarden compatible password manager

Added to portage

2026-02-12

vaultwarden-web - 2026.1.1
Ebuild name:

www-apps/vaultwarden-web-2026.1.1

Description

Prebuilt web vault frontend for Vaultwarden

Added to portage

2026-02-12

2026-02-11
GeographicLib - 2.7
Ebuild name:

sci-geosciences/GeographicLib-2.7

Description

C++ library for converting geographic coordinate systems

Added to portage

2026-02-11

abiword - 3.0.6-r3
Ebuild name:

app-office/abiword-3.0.6-r3

Description

Fully featured yet light and fast cross platform word processor

Added to portage

2026-02-11

abiword - 3.0.7-r1
Ebuild name:

app-office/abiword-3.0.7-r1

Description

Fully featured yet light and fast cross platform word processor

Added to portage

2026-02-11

alembic - 1.18.4
Ebuild name:

dev-python/alembic-1.18.4

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-02-11

assertpy - 1.1
Ebuild name:

dev-python/assertpy-1.1

Description

Simple assertion library for unit testing in python with a fluent API

Added to portage

2026-02-11

at-spi2-core - 2.58.2
Ebuild name:

app-accessibility/at-spi2-core-2.58.2

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-02-11

atril - 1.28.3
Ebuild name:

app-text/atril-1.28.3

Description

Atril document viewer for MATE

Added to portage

2026-02-11

awscli - 1.44.36
Ebuild name:

app-admin/awscli-1.44.36

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-11

behave - 1.3.3
Ebuild name:

dev-python/behave-1.3.3

Description

BDD, Python style

Added to portage

2026-02-11

boto3 - 1.42.46
Ebuild name:

dev-python/boto3-1.42.46

Description

The AWS SDK for Python

Added to portage

2026-02-11

botocore - 1.42.46
Ebuild name:

dev-python/botocore-1.42.46

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-11

bottom - 0.12.3
Ebuild name:

sys-process/bottom-0.12.3

Description

A graphical process/system monitor with a customizable interface

Added to portage

2026-02-11

broot - 1.55.0
Ebuild name:

app-misc/broot-1.55.0

Description

A new way to see and navigate directory trees

Added to portage

2026-02-11

cachetools - 7.0.1
Ebuild name:

dev-python/cachetools-7.0.1

Description

Extensible memoizing collections and decorators

Added to portage

2026-02-11

cake - 6.0.0
Ebuild name:

dev-dotnet/cake-6.0.0

Description

Cake (C Make) is a cross platform build automation system with a C DSL

Added to portage

2026-02-11

cdogs-sdl - 2.4.0
Ebuild name:

games-arcade/cdogs-sdl-2.4.0

Description

Classic overhead run-and-gun game

Added to portage

2026-02-11

checkpassword - 0.90-r6
Ebuild name:

net-mail/checkpassword-0.90-r6

Description

A uniform password checking interface for root applications

Added to portage

2026-02-11

chromium - 145.0.7632.45
Ebuild name:

www-client/chromium-145.0.7632.45

Description

Open-source version of Google Chrome web browser

Added to portage

2026-02-11

chrony_exporter - 0.12.3
Ebuild name:

app-metrics/chrony_exporter-0.12.3

Description

Chrony NTP exporter for Prometheus

Added to portage

2026-02-11

claude-code - 2.1.38
Ebuild name:

dev-util/claude-code-2.1.38

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-02-11

clion - 2025.3.1.1
Ebuild name:

dev-util/clion-2025.3.1.1

Description

A complete toolset for C and C++ development

Added to portage

2026-02-11

clion - 2025.3.2
Ebuild name:

dev-util/clion-2025.3.2

Description

A complete toolset for C and C++ development

Added to portage

2026-02-11

collada-dom - 2.5.0-r3
Ebuild name:

dev-libs/collada-dom-2.5.0-r3

Description

COLLADA Document Object Model (DOM) C++ Library

Added to portage

2026-02-11

connman - 2.0
Ebuild name:

net-misc/connman-2.0

Description

Provides a daemon for managing internet connections

Added to portage

2026-02-11

cpp-httplib - 0.31.0
Ebuild name:

dev-cpp/cpp-httplib-0.31.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-02-11

cppcheck - 2.19.1
Ebuild name:

dev-util/cppcheck-2.19.1

Description

Static analyzer of C/C++ code

Added to portage

2026-02-11

cryptography - 46.0.5
Ebuild name:

dev-python/cryptography-46.0.5

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-02-11

cucumber-expressions - 19.0.0
Ebuild name:

dev-python/cucumber-expressions-19.0.0

Description

Human friendly alternative to Regular Expressions

Added to portage

2026-02-11

cucumber-tag-expressions - 9.0.0
Ebuild name:

dev-python/cucumber-tag-expressions-9.0.0

Description

Cucumber tag expression parser

Added to portage

2026-02-11

delve - 1.26.0
Ebuild name:

dev-go/delve-1.26.0

Description

A source-level debugger for the Go programming language

Added to portage

2026-02-11

diffoscope - 312
Ebuild name:

dev-util/diffoscope-312

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-02-11

dot-forward - 0.71-r6
Ebuild name:

net-mail/dot-forward-0.71-r6

Description

Reads sendmail's .forward files under qmail

Added to portage

2026-02-11

dropbox - 241.4.4853
Ebuild name:

net-misc/dropbox-241.4.4853

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-02-11

ebuildtester - 48
Ebuild name:

dev-util/ebuildtester-48

Description

A dockerized approach to test a Gentoo package within a clean stage3 conta

Added to portage

2026-02-11

element-desktop-bin - 1.12.10
Ebuild name:

net-im/element-desktop-bin-1.12.10

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-02-11

elixir - 1.19.5
Ebuild name:

dev-lang/elixir-1.19.5

Description

Elixir programming language

Added to portage

2026-02-11

ell - 0.82
Ebuild name:

dev-libs/ell-0.82

Description

Embedded Linux Library provides core, low-level functionality for system daemons

Added to portage

2026-02-11

erlang - 28.3.1
Ebuild name:

dev-lang/erlang-28.3.1

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-02-11

ettercap - 0.8.4
Ebuild name:

net-analyzer/ettercap-0.8.4

Description

Suite for man in the middle attacks

Added to portage

2026-02-11

firecracker-bin - 1.14.1
Ebuild name:

app-emulation/firecracker-bin-1.14.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-02-11

framework-laptop-kmod - 0_pre20240915
Ebuild name:

app-laptop/framework-laptop-kmod-0_pre20240915

Description

Kernel module to expose more Framework Laptop stuff

Added to portage

2026-02-11

gnome-calendar - 49.1
Ebuild name:

gnome-extra/gnome-calendar-49.1

Description

Manage your calendars with simple and modern interface

Added to portage

2026-02-11

gnome-console - 49.2
Ebuild name:

gui-apps/gnome-console-49.2

Description

A simple user-friendly terminal emulator for the GNOME desktop

Added to portage

2026-02-11

gnome-maps - 49.4
Ebuild name:

sci-geosciences/gnome-maps-49.4

Description

A map application for GNOME

Added to portage

2026-02-11

gnome-software - 49.3
Ebuild name:

gnome-extra/gnome-software-49.3

Description

Gnome install & update software

Added to portage

2026-02-11

gnutls - 3.8.12
Ebuild name:

net-libs/gnutls-3.8.12

Description

Secure communications library implementing the SSL, TLS and DTLS protocols

Added to portage

2026-02-11

goland - 2025.3.1.1
Ebuild name:

dev-util/goland-2025.3.1.1

Description

Golang IDE by JetBrains

Added to portage

2026-02-11

greenbone-feed-sync - 25.2.0
Ebuild name:

net-analyzer/greenbone-feed-sync-25.2.0

Description

New script for syncing the Greenbone Community Feed

Added to portage

2026-02-11

gsa - 26.10.1
Ebuild name:

net-analyzer/gsa-26.10.1

Description

Greenbone Security Assistant

Added to portage

2026-02-11

gvm-tools - 25.4.5
Ebuild name:

net-analyzer/gvm-tools-25.4.5

Description

Remote control for Greenbone Vulnerability Manager, previously named

Added to portage

2026-02-11

hashcat - 7.1.2-r1
Ebuild name:

app-crypt/hashcat-7.1.2-r1

Description

World's fastest and most advanced password recovery utility

Added to portage

2026-02-11

hyfetch - 2.0.5
Ebuild name:

app-misc/hyfetch-2.0.5

Description

Neofetch with LGBTQ+ pride flags

Added to portage

2026-02-11

immutabledict - 4.3.0
Ebuild name:

dev-python/immutabledict-4.3.0

Description

An immutable wrapper around dictionaries

Added to portage

2026-02-11

intel-microcode - 20260210_p20260211
Ebuild name:

sys-firmware/intel-microcode-20260210_p20260211

Description

Intel IA32/IA64 microcode update data

Added to portage

2026-02-11

iwd - 3.11
Ebuild name:

net-wireless/iwd-3.11

Description

Wireless daemon for linux

Added to portage

2026-02-11

josm-bin - 19481
Ebuild name:

sci-geosciences/josm-bin-19481

Description

Java-based editor for the OpenStreetMap project

Added to portage

2026-02-11

jupyterlab - 4.5.4
Ebuild name:

dev-python/jupyterlab-4.5.4

Description

JupyterLab computational environment

Added to portage

2026-02-11

kexec-tools - 2.0.32-r1
Ebuild name:

sys-apps/kexec-tools-2.0.32-r1

Description

Load another kernel from the currently executing Linux kernel

Added to portage

2026-02-11

leiningen-bin - 2.12.0
Ebuild name:

dev-java/leiningen-bin-2.12.0

Description

Automate Clojure projects without setting your hair on fire

Added to portage

2026-02-11

libconfig - 1.8.2
Ebuild name:

dev-libs/libconfig-1.8.2

Description

Libconfig is a simple library for manipulating structured configuration fi

Added to portage

2026-02-11

libdatrie - 0.2.14
Ebuild name:

dev-libs/libdatrie-0.2.14

Description

Double-Array Trie Library

Added to portage

2026-02-11

libdatrie - 0.2.14-r1
Ebuild name:

dev-libs/libdatrie-0.2.14-r1

Description

Double-Array Trie Library

Added to portage

2026-02-11

libftd2xx - 1.4.33
Ebuild name:

dev-embedded/libftd2xx-1.4.33

Description

Library that allows a direct access to a USB device

Added to portage

2026-02-11

libjxl - 0.11.2
Ebuild name:

media-libs/libjxl-0.11.2

Description

JPEG XL image format reference implementation

Added to portage

2026-02-11

libmateweather - 1.28.2
Ebuild name:

dev-libs/libmateweather-1.28.2

Description

MATE library to access weather information from online services

Added to portage

2026-02-11

libopusenc - 0.3
Ebuild name:

media-libs/libopusenc-0.3

Description

High-level API for encoding .opus files

Added to portage

2026-02-11

libp11 - 0.4.17
Ebuild name:

dev-libs/libp11-0.4.17

Description

Abstraction layer to simplify PKCS11 API

Added to portage

2026-02-11

librist - 0.2.11
Ebuild name:

net-libs/librist-0.2.11

Description

Library for Reliable Internet Stream Transport (RIST) protocol

Added to portage

2026-02-11

libsecp256k1 - 0.7.1
Ebuild name:

dev-libs/libsecp256k1-0.7.1

Description

Optimized C library for EC operations on curve secp256k1

Added to portage

2026-02-11

libthai - 0.1.30
Ebuild name:

dev-libs/libthai-0.1.30

Description

Set of Thai language support routines

Added to portage

2026-02-11

libthai - 0.1.30-r1
Ebuild name:

dev-libs/libthai-0.1.30-r1

Description

Set of Thai language support routines

Added to portage

2026-02-11

liburing - 2.14
Ebuild name:

sys-libs/liburing-2.14

Description

Efficient I/O with io_uring

Added to portage

2026-02-11

litecli - 1.17.1
Ebuild name:

dev-db/litecli-1.17.1

Description

CLI for SQLite with auto-completion and syntax highlighting

Added to portage

2026-02-11

lvm2 - 2.03.37
Ebuild name:

sys-fs/lvm2-2.03.37

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2026-02-11

lxdream - 0.9.1-r5
Ebuild name:

games-emulation/lxdream-0.9.1-r5

Description

An emulator for the Sega Dreamcast system

Added to portage

2026-02-11

man-db - 2.13.0-r1
Ebuild name:

sys-apps/man-db-2.13.0-r1

Description

A man replacement that utilizes dbm instead of flat files

Added to portage

2026-02-11

man-db - 2.13.1-r1
Ebuild name:

sys-apps/man-db-2.13.1-r1

Description

A man replacement that utilizes dbm instead of flat files

Added to portage

2026-02-11

mbedtls - 3.6.5
Ebuild name:

net-libs/mbedtls-3.6.5

Description

Cryptographic library for embedded systems

Added to portage

2026-02-11

melonds-jg - 1.1.0
Ebuild name:

games-emulation/melonds-jg-1.1.0

Description

Jolly Good Port of melonDS

Added to portage

2026-02-11

mkdocs-autorefs - 1.4.4
Ebuild name:

dev-python/mkdocs-autorefs-1.4.4

Description

Automatically link across pages in MkDoc

Added to portage

2026-02-11

mod_qos - 11.77
Ebuild name:

www-apache/mod_qos-11.77

Description

A QOS module for the apache webserver

Added to portage

2026-02-11

multipath-tools - 0.14.3
Ebuild name:

sys-fs/multipath-tools-0.14.3

Description

Device mapper target autoconfig

Added to portage

2026-02-11

mycli - 1.51.1
Ebuild name:

dev-db/mycli-1.51.1

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-02-11

mydumper - 0.21.3.1
Ebuild name:

dev-db/mydumper-0.21.3.1

Description

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

Added to portage

2026-02-11

mysqlclient - 2.2.8
Ebuild name:

dev-python/mysqlclient-2.2.8

Description

Python interface to MySQL

Added to portage

2026-02-11

nDPI - 4.8
Ebuild name:

net-libs/nDPI-4.8

Description

Open Source Deep Packet Inspection Software Toolkit

Added to portage

2026-02-11

nbdime - 4.0.4
Ebuild name:

dev-python/nbdime-4.0.4

Description

Diff and merge of Jupyter Notebooks

Added to portage

2026-02-11

nfs-utils - 2.8.5
Ebuild name:

net-fs/nfs-utils-2.8.5

Description

NFS client and server daemons

Added to portage

2026-02-11

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-02-11

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-02-11

no-littering - 1.8.2
Ebuild name:

app-emacs/no-littering-1.8.2

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.3
Ebuild name:

app-emacs/no-littering-1.8.3

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.4
Ebuild name:

app-emacs/no-littering-1.8.4

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

openpgp-keys-aacid - 20260210
Ebuild name:

sec-keys/openpgp-keys-aacid-20260210

Description

OpenPGP keys used by Albert Astals Cid

Added to portage

2026-02-11

openpgp-keys-chrislamb - 20260211
Ebuild name:

sec-keys/openpgp-keys-chrislamb-20260211

Description

OpenPGP key used by Chris Lamb

Added to portage

2026-02-11

openpgp-keys-cjwatson - 20260210
Ebuild name:

sec-keys/openpgp-keys-cjwatson-20260210

Description

OpenPGP key used by Colin Watson

Added to portage

2026-02-11

openpgp-keys-coreutils - 20260210
Ebuild name:

sec-keys/openpgp-keys-coreutils-20260210

Description

OpenPGP keys used by GNU coreutils

Added to portage

2026-02-11

openpgp-keys-gnutls - 20260210
Ebuild name:

sec-keys/openpgp-keys-gnutls-20260210

Description

OpenPGP keys used by GnuTLS

Added to portage

2026-02-11

openpgp-keys-handbrake - 20260208
Ebuild name:

sec-keys/openpgp-keys-handbrake-20260208

Description

OpenPGP keys used to sign HandBrake

Added to portage

2026-02-11

openpgp-keys-hughsie - 20260210
Ebuild name:

sec-keys/openpgp-keys-hughsie-20260210

Description

OpenPGP key used by Richard Hughes (hughsie)

Added to portage

2026-02-11

openpgp-keys-lassecollin - 20260210
Ebuild name:

sec-keys/openpgp-keys-lassecollin-20260210

Description

OpenPGP keys used by Lasse Collin

Added to portage

2026-02-11

openpgp-keys-leiningen - 20260128
Ebuild name:

sec-keys/openpgp-keys-leiningen-20260128

Description

OpenPGP keys used to sign Leiningen packages

Added to portage

2026-02-11

openpgp-keys-libseccomp - 20260210
Ebuild name:

sec-keys/openpgp-keys-libseccomp-20260210

Description

OpenPGP key used for sys-libs/libseccomp

Added to portage

2026-02-11

openpgp-keys-libtasn1 - 20260210
Ebuild name:

sec-keys/openpgp-keys-libtasn1-20260210

Description

OpenPGP keys used by GNU Libtasn1

Added to portage

2026-02-11

openpgp-keys-mpc - 20260210
Ebuild name:

sec-keys/openpgp-keys-mpc-20260210

Description

OpenPGP keys used by Andreas Enge (to sign MPC releases)

Added to portage

2026-02-11

openpgp-keys-p11-kit - 20260210
Ebuild name:

sec-keys/openpgp-keys-p11-kit-20260210

Description

OpenPGP key used to sign p11-kit releases

Added to portage

2026-02-11

openpgp-keys-testssl - 20260210
Ebuild name:

sec-keys/openpgp-keys-testssl-20260210

Description

OpenPGP keys used by testssl.sh

Added to portage

2026-02-11

p11-kit - 0.26.2
Ebuild name:

app-crypt/p11-kit-0.26.2

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-11

paml - 4.10.10
Ebuild name:

sci-biology/paml-4.10.10

Description

Phylogenetic Analysis by Maximum Likelihood

Added to portage

2026-02-11

papers - 49.4
Ebuild name:

app-text/papers-49.4

Description

A document viewer for the GNOME desktop

Added to portage

2026-02-11

pg-gvm - 22.6.14
Ebuild name:

dev-db/pg-gvm-22.6.14

Description

Greenbone Library for helper functions in PostgreSQL

Added to portage

2026-02-11

pontos - 25.8.1
Ebuild name:

net-analyzer/pontos-25.8.1

Description

Common utilities and tools maintained by Greenbone Networks

Added to portage

2026-02-11

pycharm-professional - 2025.3.1.1
Ebuild name:

dev-util/pycharm-professional-2025.3.1.1

Description

Intelligent Python IDE with unique code assistance and ana

Added to portage

2026-02-11

pypiserver - 2.4.1
Ebuild name:

dev-python/pypiserver-2.4.1

Description

Minimal PyPI server

Added to portage

2026-02-11

pyproject-fmt - 2.15.2
Ebuild name:

dev-python/pyproject-fmt-2.15.2

Description

Format your pyproject.toml file

Added to portage

2026-02-11

pytest-regressions - 2.10.0
Ebuild name:

dev-python/pytest-regressions-2.10.0

Description

Easy to use fixtures to write regression tests

Added to portage

2026-02-11

python-gvm - 26.9.1
Ebuild name:

net-analyzer/python-gvm-26.9.1

Description

Greenbone Vulnerability Management Python Library

Added to portage

2026-02-11

python-pskc - 1.4
Ebuild name:

dev-python/python-pskc-1.4

Description

Python module for handling Portable Symmetric Key Container files

Added to portage

2026-02-11

python-pskc - 9999
Ebuild name:

dev-python/python-pskc-9999

Description

Python module for handling Portable Symmetric Key Container files

Added to portage

2026-02-11

python-tlsh - 4.12.1
Ebuild name:

dev-python/python-tlsh-4.12.1

Description

Fuzzy matching library - C++ extension for Python

Added to portage

2026-02-11

qlog - 0.48.0
Ebuild name:

media-radio/qlog-0.48.0

Description

Amateur radio logbook software

Added to portage

2026-02-11

qpwgraph - 0.9.8
Ebuild name:

media-sound/qpwgraph-0.9.8

Description

PipeWire Graph Qt GUI Interface

Added to portage

2026-02-11

qtconsole - 5.7.1
Ebuild name:

dev-python/qtconsole-5.7.1

Description

Qt-based console for Jupyter with support for rich media output

Added to portage

2026-02-11

rabbitmq-server - 4.1.8
Ebuild name:

net-misc/rabbitmq-server-4.1.8

Description

RabbitMQ is a high-performance AMQP-compliant message broker written

Added to portage

2026-02-11

rabbitmq-server - 4.2.3
Ebuild name:

net-misc/rabbitmq-server-4.2.3

Description

RabbitMQ is a high-performance AMQP-compliant message broker written

Added to portage

2026-02-11

radicale - 3.5.10-r1
Ebuild name:

www-apps/radicale-3.5.10-r1

Description

A simple CalDAV calendar server

Added to portage

2026-02-11

recoll - 1.43.10
Ebuild name:

app-misc/recoll-1.43.10

Description

Personal full text search package

Added to portage

2026-02-11

red-blue-quake2 - 0.1-r2
Ebuild name:

games-fps/red-blue-quake2-0.1-r2

Description

Red-blue Quake II Play quake2 with 3D glasses

Added to portage

2026-02-11

redis - 8.2.4
Ebuild name:

dev-db/redis-8.2.4

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-02-11

redis - 8.4.1
Ebuild name:

dev-db/redis-8.4.1

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-02-11

redis - 8.6.0
Ebuild name:

dev-db/redis-8.6.0

Description

A persistent caching system, key-value, and data structures database

Added to portage

2026-02-11

rmg - 0.8.9
Ebuild name:

games-emulation/rmg-0.8.9

Description

Rosalie's Mupen GUI

Added to portage

2026-02-11

roundcube - 1.7_rc3
Ebuild name:

mail-client/roundcube-1.7_rc3

Description

A browser-based multilingual IMAP client with an application-like use

Added to portage

2026-02-11

rsync - 3.4.1-r2
Ebuild name:

net-misc/rsync-3.4.1-r2

Description

File transfer program to keep remote files into sync

Added to portage

2026-02-11

rust - 1.93.0
Ebuild name:

dev-lang/rust-1.93.0

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-02-11

rust - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-1.94.0_beta20260126

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-02-11

rust-bin - 1.93.0
Ebuild name:

dev-lang/rust-bin-1.93.0

Description

Added to portage

2026-02-11

rust-bin - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-bin-1.94.0_beta20260126

Description

Added to portage

2026-02-11

rust-common - 1.93.0
Ebuild name:

dev-lang/rust-common-1.93.0

Description

Common files shared between multiple slots of Rust

Added to portage

2026-02-11

rust-common - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-common-1.94.0_beta20260126

Description

Common files shared between multiple slots of Rust

Added to portage

2026-02-11

rust-std - 1.93.0
Ebuild name:

sys-devel/rust-std-1.93.0

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-02-11

rust-std - 1.94.0_beta20260126
Ebuild name:

sys-devel/rust-std-1.94.0_beta20260126

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-02-11

sccache - 0.14.0
Ebuild name:

dev-util/sccache-0.14.0

Description

ccache/distcc like tool with support for rust and cloud storage

Added to portage

2026-02-11

scx - 1.0.20
Ebuild name:

sys-kernel/scx-1.0.20

Description

sched_ext schedulers and tools

Added to portage

2026-02-11

scx-loader - 1.0.20
Ebuild name:

sys-kernel/scx-loader-1.0.20

Description

DBUS on-demand loader of sched-ext schedulers

Added to portage

2026-02-11

sfeed - 2.3
Ebuild name:

net-news/sfeed-2.3

Description

Simple RSS and Atom parser

Added to portage

2026-02-11

signal-desktop-bin - 7.86.0
Ebuild name:

net-im/signal-desktop-bin-7.86.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2026-02-11

signxml - 4.2.2
Ebuild name:

dev-python/signxml-4.2.2

Description

Python XML Signature and XAdES library

Added to portage

2026-02-11

signxml - 9999
Ebuild name:

dev-python/signxml-9999

Description

Python XML Signature and XAdES library

Added to portage

2026-02-11

skim - 1.9.1
Ebuild name:

app-misc/skim-1.9.1

Description

Command-line fuzzy finder

Added to portage

2026-02-11

skim - 2.0.2
Ebuild name:

app-misc/skim-2.0.2

Description

Command-line fuzzy finder

Added to portage

2026-02-11

socat - 1.8.1.0-r1
Ebuild name:

net-misc/socat-1.8.1.0-r1

Description

Multipurpose relay (SOcket CAT)

Added to portage

2026-02-11

strace - 6.19
Ebuild name:

dev-debug/strace-6.19

Description

Useful diagnostic, instructional, and debugging tool

Added to portage

2026-02-11

supertux - 0.7.0_beta2
Ebuild name:

games-arcade/supertux-0.7.0_beta2

Description

A run 'n jump platforming game featuring Tux the penguin

Added to portage

2026-02-11

syd - 3.49.0
Ebuild name:

sys-apps/syd-3.49.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2026-02-11

systemc - 3.0.2
Ebuild name:

sci-electronics/systemc-3.0.2

Description

A C++ based modeling platform for VLSI and system-level co-design

Added to portage

2026-02-11

talk-desktop-bin - 2.0.6
Ebuild name:

net-im/talk-desktop-bin-2.0.6

Description

Nextcloud Talk Desktop client

Added to portage

2026-02-11

teamviewer - 15.73.5
Ebuild name:

net-misc/teamviewer-15.73.5

Description

All-In-One Solution for Remote Access and Support over the Internet

Added to portage

2026-02-11

testssl - 3.0.10-r1
Ebuild name:

net-analyzer/testssl-3.0.10-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

testssl - 3.2.2-r1
Ebuild name:

net-analyzer/testssl-3.2.2-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

tiled - 1.11.2_p20260205
Ebuild name:

dev-games/tiled-1.11.2_p20260205

Description

A general purpose tile map editor

Added to portage

2026-02-11

tlsh - 4.12.1
Ebuild name:

dev-libs/tlsh-4.12.1

Description

Fuzzy matching library

Added to portage

2026-02-11

tree-sitter-lua - 0.4.1
Ebuild name:

dev-libs/tree-sitter-lua-0.4.1

Description

Lua grammar for Tree-sitter

Added to portage

2026-02-11

tree-sitter-markdown - 0.5.2
Ebuild name:

dev-libs/tree-sitter-markdown-0.5.2

Description

Markdown grammar for Tree-sitter

Added to portage

2026-02-11

tree-sitter-markdown-inline - 0.3.2
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.3.2

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-02-11

treesit-auto - 1.0.9
Ebuild name:

app-emacs/treesit-auto-1.0.9

Description

Automatic installation, usage, fallback for tree-sitter modes in Emacs

Added to portage

2026-02-11

trimesh - 4.11.2
Ebuild name:

dev-python/trimesh-4.11.2

Description

Python library for loading and using triangular meshes

Added to portage

2026-02-11

tuxedo-control-center-bin - 2.1.22
Ebuild name:

app-laptop/tuxedo-control-center-bin-2.1.22

Description

Tool to control performance, energy, fan and comfort se

Added to portage

2026-02-11

tuxedo-drivers - 4.18.2
Ebuild name:

app-laptop/tuxedo-drivers-4.18.2

Description

Kernel modules for TUXEDO laptops

Added to portage

2026-02-11

ucx - 1.19.0
Ebuild name:

sys-cluster/ucx-1.19.0

Description

Unified Communication X

Added to portage

2026-02-11

upx - 5.1.0
Ebuild name:

app-arch/upx-5.1.0

Description

Ultimate Packer for eXecutables (free version using UCL compression and not NRV)

Added to portage

2026-02-11

upx-bin - 5.1.0
Ebuild name:

app-arch/upx-bin-5.1.0

Description

Ultimate Packer for eXecutables, binary version with proprietary NRV compres

Added to portage

2026-02-11

uv - 0.10.2
Ebuild name:

dev-python/uv-0.10.2

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-02-11

uv-build - 0.10.2
Ebuild name:

dev-python/uv-build-0.10.2

Description

PEP517 uv build backend

Added to portage

2026-02-11

vdr - 2.7.9
Ebuild name:

media-video/vdr-2.7.9

Description

Video Disk Recorder - turns a pc into a powerful set top box for DVB

Added to portage

2026-02-11

vdr-live - 3.5.3
Ebuild name:

media-plugins/vdr-live-3.5.3

Description

VDR Plugin Web Access To Settings

Added to portage

2026-02-11

vdr-markad - 4.2.17
Ebuild name:

media-plugins/vdr-markad-4.2.17

Description

VDR Plugin mark advertising in VDR recordings

Added to portage

2026-02-11

vdr-satip - 2.5.1
Ebuild name:

media-plugins/vdr-satip-2.5.1

Description

VDR Plugin integrates SAT>IP network devices seamlessly into VDR

Added to portage

2026-02-11

volatility3 - 2.27.0
Ebuild name:

app-forensics/volatility3-2.27.0

Description

Framework for analyzing volatile memory

Added to portage

2026-02-11

whatsapp-desktop-bin - 0.5.4
Ebuild name:

net-im/whatsapp-desktop-bin-0.5.4

Description

Unofficial electron-based wrapper around WhatsApp Web

Added to portage

2026-02-11

xdebug - 3.5.0
Ebuild name:

dev-php/xdebug-3.5.0

Description

A PHP debugging and profiling extension

Added to portage

2026-02-11

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 52.0 ms