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:

67190

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
2024-04-16
amsynth - 1.13.3
Ebuild name:

media-sound/amsynth-1.13.3

Description

Virtual analogue synthesizer

Added to portage

2024-04-16

ant-contrib - 1.0_beta6_pre20201123-r2
Ebuild name:

dev-java/ant-contrib-1.0_beta6_pre20201123-r2

Description

Ant-contrib tasks for Apache Ant

Added to portage

2024-04-16

asyncstdlib - 3.12.3
Ebuild name:

dev-python/asyncstdlib-3.12.3

Description

The missing async toolbox

Added to portage

2024-04-16

atuin - 18.2.0
Ebuild name:

app-shells/atuin-18.2.0

Description

Shell history manager supporting encrypted synchronisation

Added to portage

2024-04-16

barman - 3.10.0
Ebuild name:

dev-db/barman-3.10.0

Description

Administration tool for disaster recovery of PostgreSQL servers

Added to portage

2024-04-16

bitwarden-desktop-bin - 2024.4.1
Ebuild name:

app-admin/bitwarden-desktop-bin-2024.4.1

Description

Bitwarden password manager desktop client

Added to portage

2024-04-16

cfn-lint - 0.86.3
Ebuild name:

dev-python/cfn-lint-0.86.3

Description

CloudFormation Linter

Added to portage

2024-04-16

cgit - 1.2.3-r203
Ebuild name:

www-apps/cgit-1.2.3-r203

Description

a fast web-interface for git repositories

Added to portage

2024-04-16

chromium - 124.0.6367.60
Ebuild name:

www-client/chromium-124.0.6367.60

Description

Open-source version of Google Chrome web browser

Added to portage

2024-04-16

erlang - 26.2.4
Ebuild name:

dev-lang/erlang-26.2.4

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2024-04-16

esptool - 4.7.0-r2
Ebuild name:

dev-embedded/esptool-4.7.0-r2

Description

Utility to communicate with the ROM bootloader in Espressif ESP8266 a

Added to portage

2024-04-16

fastfetch - 2.9.2
Ebuild name:

app-misc/fastfetch-2.9.2

Description

Fast neofetch-like system information tool

Added to portage

2024-04-16

filezilla - 3.67.0
Ebuild name:

net-ftp/filezilla-3.67.0

Description

FTP client with lots of useful features and an intuitive interface

Added to portage

2024-04-16

greenbone-feed-sync - 24.3.0
Ebuild name:

net-analyzer/greenbone-feed-sync-24.3.0

Description

New script for syncing the Greenbone Community Feed

Added to portage

2024-04-16

griffe - 0.42.2
Ebuild name:

dev-python/griffe-0.42.2

Description

Signature generator for Python programs

Added to portage

2024-04-16

hdf5 - 1.14.4_p2
Ebuild name:

sci-libs/hdf5-1.14.4_p2

Description

General purpose library and file format for storing scientific data

Added to portage

2024-04-16

hyprcursor - 0.1.7
Ebuild name:

gui-libs/hyprcursor-0.1.7

Description

The hyprland cursor format, library and utilities

Added to portage

2024-04-16

hyprland - 0.39.0
Ebuild name:

gui-wm/hyprland-0.39.0

Description

A dynamic tiling Wayland compositor that doesn't sacrifice on its looks

Added to portage

2024-04-16

hyprlang - 0.5.1
Ebuild name:

dev-libs/hyprlang-0.5.1

Description

Official implementation library for the hypr config language

Added to portage

2024-04-16

icu4j - 75.1
Ebuild name:

dev-java/icu4j-75.1

Description

A set of Java libraries providing Unicode and Globalization support

Added to portage

2024-04-16

libfilezilla - 0.47.0
Ebuild name:

dev-libs/libfilezilla-0.47.0

Description

C++ library offering some basic functionality for platform-independent

Added to portage

2024-04-16

libreswan - 4.15
Ebuild name:

net-vpn/libreswan-4.15

Description

IPsec implementation for Linux, fork of Openswan

Added to portage

2024-04-16

markdown-exec - 1.8.1
Ebuild name:

dev-python/markdown-exec-1.8.1

Description

Utilities to execute code blocks in Markdown files

Added to portage

2024-04-16

matplotlib-inline - 0.1.7
Ebuild name:

dev-python/matplotlib-inline-0.1.7

Description

Inline Matplotlib backend for Jupyter

Added to portage

2024-04-16

method_source - 1.1.0
Ebuild name:

dev-ruby/method_source-1.1.0

Description

Retrieve the source code for a method

Added to portage

2024-04-16

mkdocs-htmlproofer-plugin - 1.2.1
Ebuild name:

dev-python/mkdocs-htmlproofer-plugin-1.2.1

Description

A MkDocs plugin that validates URLs in rendered HTML fil

Added to portage

2024-04-16

mkdocs-material - 9.5.18
Ebuild name:

dev-python/mkdocs-material-9.5.18

Description

A Material Design theme for MkDocs

Added to portage

2024-04-16

mockito - 1.9.5-r4
Ebuild name:

dev-java/mockito-1.9.5-r4

Description

A mocking framework for Java

Added to portage

2024-04-16

nagios-check_mysql_health - 2.2.2-r1
Ebuild name:

net-analyzer/nagios-check_mysql_health-2.2.2-r1

Description

Nagios plugin for checking MySQL server health

Added to portage

2024-04-16

ninja - 1.12.0
Ebuild name:

dev-build/ninja-1.12.0

Description

A small build system similar to make

Added to portage

2024-04-16

nodejs - 18.20.1
Ebuild name:

net-libs/nodejs-18.20.1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2024-04-16

nodejs - 20.12.1
Ebuild name:

net-libs/nodejs-20.12.1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2024-04-16

nox - 2024.04.15
Ebuild name:

dev-python/nox-2024.04.15

Description

Flexible test automation for Python

Added to portage

2024-04-16

nushell - 0.92.1
Ebuild name:

app-shells/nushell-0.92.1

Description

A new type of shell, written in Rust

Added to portage

2024-04-16

octave-kernel - 0.35.1
Ebuild name:

dev-python/octave-kernel-0.35.1

Description

Jupyter kernel for octave

Added to portage

2024-04-16

opus - 1.5.2
Ebuild name:

media-libs/opus-1.5.2

Description

Open codec for interactive speech and music transmission over the Internet

Added to portage

2024-04-16

orjson - 3.10.1
Ebuild name:

dev-python/orjson-3.10.1

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, and n

Added to portage

2024-04-16

pipewire - 1.0.5
Ebuild name:

media-video/pipewire-1.0.5

Description

Multimedia processing graphs

Added to portage

2024-04-16

putty - 0.81
Ebuild name:

net-misc/putty-0.81

Description

A Free Telnet/SSH Client

Added to portage

2024-04-16

rabbitmq-server - 3.13.1
Ebuild name:

net-misc/rabbitmq-server-3.13.1

Description

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

Added to portage

2024-04-16

rpm-spec-mode - 0.16
Ebuild name:

app-emacs/rpm-spec-mode-0.16

Description

Emacs mode to ease editing of RPM spec files

Added to portage

2024-04-16

rudel - 0.3.1
Ebuild name:

app-emacs/rudel-0.3.1

Description

Collaborative editing environment for GNU Emacs

Added to portage

2024-04-16

rudel - 0.3.2
Ebuild name:

app-emacs/rudel-0.3.2

Description

Collaborative editing environment for GNU Emacs

Added to portage

2024-04-16

scid - 5.0.2
Ebuild name:

games-board/scid-5.0.2

Description

Shane's Chess Information Database

Added to portage

2024-04-16

sphinx-issues - 4.1.0
Ebuild name:

dev-python/sphinx-issues-4.1.0

Description

Sphinx extension for linking to your project's issue tracker

Added to portage

2024-04-16

spidermonkey - 115.10.0
Ebuild name:

dev-lang/spidermonkey-115.10.0

Description

SpiderMonkey is Mozilla's JavaScript engine written in C and C++

Added to portage

2024-04-16

tree-sitter-cpp - 0.22.0
Ebuild name:

dev-libs/tree-sitter-cpp-0.22.0

Description

C++ grammar for Tree-sitter

Added to portage

2024-04-16

types-setuptools - 69.5.0.20240415
Ebuild name:

dev-python/types-setuptools-69.5.0.20240415

Description

Typing stubs for setuptools

Added to portage

2024-04-16

uv - 0.1.32
Ebuild name:

dev-python/uv-0.1.32

Description

A Python package installer and resolver, written in Rust

Added to portage

2024-04-16

webapp-config - 1.55-r4
Ebuild name:

app-admin/webapp-config-1.55-r4

Description

Gentoo's installer for web-based applications

Added to portage

2024-04-16

2024-04-15
ant-ivy - 2.5.0-r2
Ebuild name:

dev-java/ant-ivy-2.5.0-r2

Description

Ivy is a free java based dependency manager

Added to portage

2024-04-15

antlr - 3.2-r2
Ebuild name:

dev-java/antlr-3.2-r2

Description

A parser generator for many languages

Added to portage

2024-04-15

antlr-tool - 3.5.3-r1
Ebuild name:

dev-java/antlr-tool-3.5.3-r1

Description

The ANTLR 3 tool

Added to portage

2024-04-15

ardour - 8.6
Ebuild name:

media-sound/ardour-8.6

Description

Digital Audio Workstation

Added to portage

2024-04-15

argcomplete - 3.3.0
Ebuild name:

dev-python/argcomplete-3.3.0

Description

Bash tab completion for argparse

Added to portage

2024-04-15

attica - 6.1.0
Ebuild name:

kde-frameworks/attica-6.1.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2024-04-15

autogen - 5.18.16-r4
Ebuild name:

sys-devel/autogen-5.18.16-r4

Description

Program and text file generation

Added to portage

2024-04-15

baloo - 6.1.0
Ebuild name:

kde-frameworks/baloo-6.1.0

Description

Framework for searching and managing metadata

Added to portage

2024-04-15

bluez-qt - 6.1.0
Ebuild name:

kde-frameworks/bluez-qt-6.1.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2024-04-15

breeze-icons - 6.1.0
Ebuild name:

kde-frameworks/breeze-icons-6.1.0

Description

Breeze SVG icon theme

Added to portage

2024-04-15

browser-cookie3 - 0.19.1
Ebuild name:

dev-python/browser-cookie3-0.19.1

Description

Loads cookies from your browser into a cookiejar object

Added to portage

2024-04-15

c-ares - 1.28.1
Ebuild name:

net-dns/c-ares-1.28.1

Description

C library that resolves names asynchronously

Added to portage

2024-04-15

c2ffi - 17.0.0.20240314
Ebuild name:

dev-lisp/c2ffi-17.0.0.20240314

Description

Clang-based FFI wrapper generator for Common Lisp

Added to portage

2024-04-15

castxml - 0.6.5
Ebuild name:

dev-libs/castxml-0.6.5

Description

C-family abstract syntax tree XML output tool

Added to portage

2024-04-15

cglib - 3.3.0-r2
Ebuild name:

dev-java/cglib-3.3.0-r2

Description

cglib is a powerful, high performance and quality Code Generation Library

Added to portage

2024-04-15

clrngd - 1.0.3-r2
Ebuild name:

sys-apps/clrngd-1.0.3-r2

Description

Clock randomness gathering daemon

Added to portage

2024-04-15

cmst - 2023.03.14-r1
Ebuild name:

net-misc/cmst-2023.03.14-r1

Description

Qt GUI for Connman with system tray icon

Added to portage

2024-04-15

containers-common - 0.57.0-r1
Ebuild name:

app-containers/containers-common-0.57.0-r1

Description

Common config files and docs for Containers stack

Added to portage

2024-04-15

diffoscope - 264
Ebuild name:

dev-util/diffoscope-264

Description

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

Added to portage

2024-04-15

dkimpy - 1.1.6
Ebuild name:

dev-python/dkimpy-1.1.6

Description

DKIM and ARC email signing and verification library

Added to portage

2024-04-15

element - 1.11.64
Ebuild name:

www-apps/element-1.11.64

Description

A glossy Matrix collaboration client for the web

Added to portage

2024-04-15

elixir - 1.16.2
Ebuild name:

dev-lang/elixir-1.16.2

Description

Elixir programming language

Added to portage

2024-04-15

elt-patches - 20240415
Ebuild name:

app-portage/elt-patches-20240415

Description

Collection of patches for libtool.eclass

Added to portage

2024-04-15

etcd - 3.5.13
Ebuild name:

dev-db/etcd-3.5.13

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2024-04-15

extra-cmake-modules - 6.1.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.1.0

Description

Extra modules and scripts for CMake

Added to portage

2024-04-15

fq - 0.11.0
Ebuild name:

dev-util/fq-0.11.0

Description

Tool for working with binary data (app-misc/jq for binary formats)

Added to portage

2024-04-15

frameworkintegration - 6.1.0
Ebuild name:

kde-frameworks/frameworkintegration-6.1.0

Description

Framework for integrating Qt applications with KDE Plasma

Added to portage

2024-04-15

gcc - 14.0.1_pre20240414
Ebuild name:

sys-devel/gcc-14.0.1_pre20240414

Description

The GNU Compiler Collection

Added to portage

2024-04-15

gi-docgen - 2023.3
Ebuild name:

dev-util/gi-docgen-2023.3

Description

A documentation generator for GObject-based libraries

Added to portage

2024-04-15

git-machete - 3.25.0
Ebuild name:

dev-vcs/git-machete-3.25.0

Description

Probably the sharpest git repo organizer & rebase/merge workflow automat

Added to portage

2024-04-15

git-sources - 6.9_rc4
Ebuild name:

sys-kernel/git-sources-6.9_rc4

Description

The very latest -git version of the Linux kernel

Added to portage

2024-04-15

gnutls - 3.8.5
Ebuild name:

net-libs/gnutls-3.8.5

Description

A secure communications library implementing the SSL, TLS and DTLS protocols

Added to portage

2024-04-15

hatchling - 1.23.0
Ebuild name:

dev-python/hatchling-1.23.0

Description

Modern, extensible Python build backend

Added to portage

2024-04-15

iso-relax - 20050331-r6
Ebuild name:

dev-java/iso-relax-20050331-r6

Description

Interfaces useful for applications which support RELAX Core

Added to portage

2024-04-15

jakarta-xml-soap-api - 1.4.2-r2
Ebuild name:

dev-java/jakarta-xml-soap-api-1.4.2-r2

Description

SOAP with Attachments API for Java (SAAJ) API (Eclipse Proje

Added to portage

2024-04-15

jtidy - 1.0-r2
Ebuild name:

dev-java/jtidy-1.0-r2

Description

a Java port of HTML Tidy, a HTML syntax checker and pretty printer

Added to portage

2024-04-15

karchive - 6.1.0
Ebuild name:

kde-frameworks/karchive-6.1.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2024-04-15

kauth - 6.1.0
Ebuild name:

kde-frameworks/kauth-6.1.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2024-04-15

kbookmarks - 6.1.0
Ebuild name:

kde-frameworks/kbookmarks-6.1.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2024-04-15

kcalendarcore - 6.1.0
Ebuild name:

kde-frameworks/kcalendarcore-6.1.0

Description

Library for interfacing with calendars

Added to portage

2024-04-15

kcmutils - 6.1.0
Ebuild name:

kde-frameworks/kcmutils-6.1.0

Description

Framework to work with KDE System Settings modules

Added to portage

2024-04-15

kcodecs - 6.1.0
Ebuild name:

kde-frameworks/kcodecs-6.1.0

Description

Framework for manipulating strings using various encodings

Added to portage

2024-04-15

kcolorscheme - 6.1.0
Ebuild name:

kde-frameworks/kcolorscheme-6.1.0

Description

Framework for downloading and sharing additional application data

Added to portage

2024-04-15

kcompletion - 6.1.0
Ebuild name:

kde-frameworks/kcompletion-6.1.0

Description

Framework for common completion tasks such as filename or URL comp

Added to portage

2024-04-15

kconfig - 6.1.0
Ebuild name:

kde-frameworks/kconfig-6.1.0

Description

Framework for reading and writing configuration

Added to portage

2024-04-15

kconfigwidgets - 6.1.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.1.0

Description

Framework providing an assortment of configuration-related widg

Added to portage

2024-04-15

kcontacts - 6.1.0
Ebuild name:

kde-frameworks/kcontacts-6.1.0

Description

Address book API based on KDE Frameworks

Added to portage

2024-04-15

kcoreaddons - 6.1.0
Ebuild name:

kde-frameworks/kcoreaddons-6.1.0

Description

Framework for solving common problems such as caching, randomisati

Added to portage

2024-04-15

kcrash - 6.1.0
Ebuild name:

kde-frameworks/kcrash-6.1.0

Description

Framework for intercepting and handling application crashes

Added to portage

2024-04-15

kdav - 6.1.0
Ebuild name:

kde-frameworks/kdav-6.1.0

Description

DAV protocol implemention with KJobs

Added to portage

2024-04-15

kdbusaddons - 6.1.0
Ebuild name:

kde-frameworks/kdbusaddons-6.1.0

Description

Framework for registering services and applications per freedeskto

Added to portage

2024-04-15

kdeclarative - 6.1.0
Ebuild name:

kde-frameworks/kdeclarative-6.1.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2024-04-15

kded - 6.1.0
Ebuild name:

kde-frameworks/kded-6.1.0

Description

Central daemon of KDE workspaces

Added to portage

2024-04-15

kdesu - 6.1.0
Ebuild name:

kde-frameworks/kdesu-6.1.0

Description

Framework to handle super user actions

Added to portage

2024-04-15

kdnssd - 6.1.0
Ebuild name:

kde-frameworks/kdnssd-6.1.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2024-04-15

kdoctools - 6.1.0
Ebuild name:

kde-frameworks/kdoctools-6.1.0

Description

Tools to generate documentation in various formats from DocBook file

Added to portage

2024-04-15

kfilemetadata - 6.1.0
Ebuild name:

kde-frameworks/kfilemetadata-6.1.0

Description

Library for extracting file metadata

Added to portage

2024-04-15

kglobalaccel - 6.1.0
Ebuild name:

kde-frameworks/kglobalaccel-6.1.0

Description

Framework to handle global shortcuts

Added to portage

2024-04-15

kguiaddons - 6.1.0
Ebuild name:

kde-frameworks/kguiaddons-6.1.0

Description

Framework providing assorted high-level user interface components

Added to portage

2024-04-15

kholidays - 6.1.0
Ebuild name:

kde-frameworks/kholidays-6.1.0

Description

Library to determine holidays and other special events for a geograp

Added to portage

2024-04-15

ki18n - 6.1.0
Ebuild name:

kde-frameworks/ki18n-6.1.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2024-04-15

kiconthemes - 6.1.0
Ebuild name:

kde-frameworks/kiconthemes-6.1.0

Description

Framework for icon theming and configuration

Added to portage

2024-04-15

kidletime - 6.1.0
Ebuild name:

kde-frameworks/kidletime-6.1.0

Description

Framework for detection and notification of device idle time

Added to portage

2024-04-15

kimageformats - 6.1.0
Ebuild name:

kde-frameworks/kimageformats-6.1.0

Description

Framework providing additional format plugins for Qt's image I/O

Added to portage

2024-04-15

kio - 6.1.0
Ebuild name:

kde-frameworks/kio-6.1.0

Description

Framework providing transparent file and data management

Added to portage

2024-04-15

kirigami - 6.1.0
Ebuild name:

kde-frameworks/kirigami-6.1.0

Description

Lightweight user interface framework for mobile and convergent applic

Added to portage

2024-04-15

kitemmodels - 6.1.0
Ebuild name:

kde-frameworks/kitemmodels-6.1.0

Description

Framework providing data models to help with tasks such as sorting

Added to portage

2024-04-15

kitemviews - 6.1.0
Ebuild name:

kde-frameworks/kitemviews-6.1.0

Description

Framework providing additional widgets for item models

Added to portage

2024-04-15

kitty - 0.34.0
Ebuild name:

x11-terms/kitty-0.34.0

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2024-04-15

kitty-shell-integration - 0.34.0
Ebuild name:

x11-terms/kitty-shell-integration-0.34.0

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2024-04-15

kitty-terminfo - 0.34.0
Ebuild name:

x11-terms/kitty-terminfo-0.34.0

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2024-04-15

kjobwidgets - 6.1.0
Ebuild name:

kde-frameworks/kjobwidgets-6.1.0

Description

Framework providing assorted widgets for showing the progress of j

Added to portage

2024-04-15

knewstuff - 6.1.0
Ebuild name:

kde-frameworks/knewstuff-6.1.0

Description

Framework for downloading and sharing additional application data

Added to portage

2024-04-15

knotifications - 6.1.0
Ebuild name:

kde-frameworks/knotifications-6.1.0

Description

Framework for notifying the user of an event

Added to portage

2024-04-15

knotifyconfig - 6.1.0
Ebuild name:

kde-frameworks/knotifyconfig-6.1.0

Description

Framework for configuring desktop notifications

Added to portage

2024-04-15

kpackage - 6.1.0
Ebuild name:

kde-frameworks/kpackage-6.1.0

Description

Framework to install and load packages of non binary content

Added to portage

2024-04-15

kparts - 6.1.0
Ebuild name:

kde-frameworks/kparts-6.1.0

Description

Framework providing elaborate user-interface components

Added to portage

2024-04-15

kpeople - 6.1.0
Ebuild name:

kde-frameworks/kpeople-6.1.0

Description

KDE contact person abstraction library

Added to portage

2024-04-15

kplotting - 6.1.0
Ebuild name:

kde-frameworks/kplotting-6.1.0

Description

Framework providing easy data-plotting functions

Added to portage

2024-04-15

kpty - 6.1.0
Ebuild name:

kde-frameworks/kpty-6.1.0

Description

Framework for pseudo terminal devices and running child processes

Added to portage

2024-04-15

kquickcharts - 6.1.0
Ebuild name:

kde-frameworks/kquickcharts-6.1.0

Description

QtQuick plugin providing high-performance charts

Added to portage

2024-04-15

krunner - 6.1.0
Ebuild name:

kde-frameworks/krunner-6.1.0

Description

Framework for providing different actions given a string query

Added to portage

2024-04-15

kservice - 6.1.0
Ebuild name:

kde-frameworks/kservice-6.1.0

Description

Advanced plugin and service introspection

Added to portage

2024-04-15

kstatusnotifieritem - 6.1.0
Ebuild name:

kde-frameworks/kstatusnotifieritem-6.1.0

Description

Implementation of Status Notifier Items

Added to portage

2024-04-15

ksvg - 6.1.0
Ebuild name:

kde-frameworks/ksvg-6.1.0

Description

Components for handling SVGs

Added to portage

2024-04-15

ktexteditor - 6.1.0
Ebuild name:

kde-frameworks/ktexteditor-6.1.0

Description

Framework providing a full text editor component

Added to portage

2024-04-15

ktexttemplate - 6.1.0
Ebuild name:

kde-frameworks/ktexttemplate-6.1.0

Description

Library to allow separating the structure of documents from data

Added to portage

2024-04-15

ktextwidgets - 6.1.0
Ebuild name:

kde-frameworks/ktextwidgets-6.1.0

Description

Framework providing an assortment of widgets for displaying and e

Added to portage

2024-04-15

kunitconversion - 6.1.0
Ebuild name:

kde-frameworks/kunitconversion-6.1.0

Description

Framework for converting units

Added to portage

2024-04-15

kuserfeedback - 6.1.0
Ebuild name:

kde-frameworks/kuserfeedback-6.1.0

Description

Framework to collect user feedback for applications via telemetr

Added to portage

2024-04-15

kwallet - 6.1.0
Ebuild name:

kde-frameworks/kwallet-6.1.0

Description

Framework providing desktop-wide storage for passwords

Added to portage

2024-04-15

kwidgetsaddons - 6.1.0
Ebuild name:

kde-frameworks/kwidgetsaddons-6.1.0

Description

An assortment of high-level widgets for common tasks

Added to portage

2024-04-15

kwindowsystem - 6.1.0
Ebuild name:

kde-frameworks/kwindowsystem-6.1.0

Description

Framework providing access to properties and features of the win

Added to portage

2024-04-15

kxmlgui - 6.1.0
Ebuild name:

kde-frameworks/kxmlgui-6.1.0

Description

Framework for managing menu and toolbar actions in an abstract way

Added to portage

2024-04-15

ldns - 1.8.3-r3
Ebuild name:

net-libs/ldns-1.8.3-r3

Description

A library with the aim to simplify DNS programming in C

Added to portage

2024-04-15

lesspipe - 2.12
Ebuild name:

app-text/lesspipe-2.12

Description

Preprocessor for less

Added to portage

2024-04-15

lib_users - 0.15-r1
Ebuild name:

app-admin/lib_users-0.15-r1

Description

Check for mapped libs and open files that are marked as deleted

Added to portage

2024-04-15

libp11 - 0.4.12-r7
Ebuild name:

dev-libs/libp11-0.4.12-r7

Description

Abstraction layer to simplify PKCS11 API

Added to portage

2024-04-15

librnp - 0.17.0-r3
Ebuild name:

dev-util/librnp-0.17.0-r3

Description

High performance C++ OpenPGP library

Added to portage

2024-04-15

libxcb - 1.17.0
Ebuild name:

x11-libs/libxcb-1.17.0

Description

X C-language Bindings library

Added to portage

2024-04-15

lidarr-bin - 2.2.5.4141
Ebuild name:

www-apps/lidarr-bin-2.2.5.4141

Description

Looks and smells like Sonarr but made for music

Added to portage

2024-04-15

mednaffe - 0.9.3
Ebuild name:

games-emulation/mednaffe-0.9.3

Description

Front-end (GUI) for mednafen emulator

Added to portage

2024-04-15

moar - 1.23.10
Ebuild name:

sys-apps/moar-1.23.10

Description

Pager designed to do the right thing without any configuration

Added to portage

2024-04-15

modemmanager-qt - 6.1.0
Ebuild name:

kde-frameworks/modemmanager-qt-6.1.0

Description

ModemManager bindings for Qt

Added to portage

2024-04-15

mu - 1.12.4
Ebuild name:

net-mail/mu-1.12.4

Description

Set of tools to deal with Maildirs, in particular, searching and indexing

Added to portage

2024-04-15

ncurses - 6.4_p20240414
Ebuild name:

sys-libs/ncurses-6.4_p20240414

Description

Console display library

Added to portage

2024-04-15

netdata - 1.45.3
Ebuild name:

net-analyzer/netdata-1.45.3

Description

Linux real time system monitoring, done right

Added to portage

2024-04-15

networkmanager-qt - 6.1.0
Ebuild name:

kde-frameworks/networkmanager-qt-6.1.0

Description

NetworkManager bindings for Qt

Added to portage

2024-04-15

nss - 3.90.2-r1
Ebuild name:

dev-libs/nss-3.90.2-r1

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2024-04-15

openpgp-keys-gnutls - 20240415
Ebuild name:

sec-keys/openpgp-keys-gnutls-20240415

Description

OpenPGP keys used by GnuTLS

Added to portage

2024-04-15

openpgp-keys-wget - 20240415
Ebuild name:

sec-keys/openpgp-keys-wget-20240415

Description

OpenPGP keys used by GNU wget

Added to portage

2024-04-15

openssl - 3.0.13-r1
Ebuild name:

dev-libs/openssl-3.0.13-r1

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Securi

Added to portage

2024-04-15

openssl - 3.0.13-r2
Ebuild name:

dev-libs/openssl-3.0.13-r2

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Securi

Added to portage

2024-04-15

openssl - 3.1.5-r2
Ebuild name:

dev-libs/openssl-3.1.5-r2

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Securit

Added to portage

2024-04-15

openssl - 3.2.1-r2
Ebuild name:

dev-libs/openssl-3.2.1-r2

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Securit

Added to portage

2024-04-15

overlint - 0.5.3-r5
Ebuild name:

app-portage/overlint-0.5.3-r5

Description

Simple tool for static analysis of overlays

Added to portage

2024-04-15

pdm-backend - 2.2.0
Ebuild name:

dev-python/pdm-backend-2.2.0

Description

A PEP 517 backend for PDM that supports PEP 621 metadata

Added to portage

2024-04-15

pf-sources - 6.8_p5
Ebuild name:

sys-kernel/pf-sources-6.8_p5

Description

Added to portage

2024-04-15

pgpdump - 0.36
Ebuild name:

app-crypt/pgpdump-0.36

Description

A PGP packet visualizer

Added to portage

2024-04-15

pkgcheck - 0.10.27-r2
Ebuild name:

dev-util/pkgcheck-0.10.27-r2

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2024-04-15

pkgcheck - 0.10.28-r1
Ebuild name:

dev-util/pkgcheck-0.10.28-r1

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2024-04-15

plexus-classworlds - 2.7.0-r1
Ebuild name:

dev-java/plexus-classworlds-2.7.0-r1

Description

The class loader framework of the Plexus project

Added to portage

2024-04-15

prison - 6.1.0
Ebuild name:

kde-frameworks/prison-6.1.0

Description

QRCode and data matrix barcode library

Added to portage

2024-04-15

prowlarr-bin - 1.16.1.4420
Ebuild name:

www-apps/prowlarr-bin-1.16.1.4420

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2024-04-15

purpose - 6.1.0
Ebuild name:

kde-frameworks/purpose-6.1.0

Description

Library for providing abstractions to get the developer's purposes ful

Added to portage

2024-04-15

pycxx - 7.1.7-r1
Ebuild name:

dev-python/pycxx-7.1.7-r1

Description

Set of facilities to extend Python with C++

Added to portage

2024-04-15

pycxx - 7.1.8
Ebuild name:

dev-python/pycxx-7.1.8

Description

Set of facilities to extend Python with C++

Added to portage

2024-04-15

pygccxml - 2.5.0
Ebuild name:

dev-python/pygccxml-2.5.0

Description

A specialized XML reader to navigate C++ declarations

Added to portage

2024-04-15

pyproject-metadata - 0.8.0_rc1
Ebuild name:

dev-python/pyproject-metadata-0.8.0_rc1

Description

PEP 621 metadata parsing

Added to portage

2024-04-15

pysvn - 1.9.22
Ebuild name:

dev-python/pysvn-1.9.22

Description

Object-oriented python bindings for subversion

Added to portage

2024-04-15

qqc2-desktop-style - 6.1.0
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.1.0

Description

Style for QtQuickControls 2 that uses QWidget's QStyle for

Added to portage

2024-04-15

quiche - 0.21.0
Ebuild name:

net-libs/quiche-0.21.0

Description

Implementation of the QUIC transport protocol and HTTP/3

Added to portage

2024-04-15

qutebrowser - 3.1.0-r1
Ebuild name:

www-client/qutebrowser-3.1.0-r1

Description

Keyboard-driven, vim-like browser based on Python and Qt

Added to portage

2024-04-15

radarr-bin - 5.4.6.8723
Ebuild name:

www-apps/radarr-bin-5.4.6.8723

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2024-04-15

readarr-bin - 0.3.23.2506
Ebuild name:

www-apps/readarr-bin-0.3.23.2506

Description

An ebook and audiobook collection manager for Usenet and BitTorren

Added to portage

2024-04-15

rhino - 1.7.14-r1
Ebuild name:

dev-java/rhino-1.7.14-r1

Description

An open-source implementation of JavaScript written in Java

Added to portage

2024-04-15

rizin - 0.6.3-r1
Ebuild name:

dev-util/rizin-0.6.3-r1

Description

reverse engineering framework for binary analysis

Added to portage

2024-04-15

rizin - 0.7.1-r1
Ebuild name:

dev-util/rizin-0.7.1-r1

Description

reverse engineering framework for binary analysis

Added to portage

2024-04-15

rust-mode - 1.0.5
Ebuild name:

app-emacs/rust-mode-1.0.5

Description

A major emacs mode for editing Rust source code

Added to portage

2024-04-15

s - 1.12.0-r1
Ebuild name:

app-emacs/s-1.12.0-r1

Description

The long lost Emacs string manipulation library

Added to portage

2024-04-15

s - 1.13.0
Ebuild name:

app-emacs/s-1.13.0

Description

The long lost Emacs string manipulation library

Added to portage

2024-04-15

scad-mode - 93.2-r1
Ebuild name:

app-emacs/scad-mode-93.2-r1

Description

Emacs mode to edit OpenSCAD files

Added to portage

2024-04-15

screenkey - 1.5_p20230109-r1
Ebuild name:

x11-misc/screenkey-1.5_p20230109-r1

Description

A screencast tool to display your keys inspired by Screenflick

Added to portage

2024-04-15

seamonkey - 2.53.18.2
Ebuild name:

www-client/seamonkey-2.53.18.2

Description

Seamonkey Web Browser

Added to portage

2024-04-15

serf - 0.10.1-r1
Ebuild name:

app-admin/serf-0.10.1-r1

Description

Service orchestration and management tool

Added to portage

2024-04-15

softhsm - 2.6.1-r3
Ebuild name:

dev-libs/softhsm-2.6.1-r3

Description

A software PKCS11 implementation

Added to portage

2024-04-15

solid - 6.1.0
Ebuild name:

kde-frameworks/solid-6.1.0

Description

Provider for platform independent hardware discovery, abstraction and ma

Added to portage

2024-04-15

sonnet - 6.1.0
Ebuild name:

kde-frameworks/sonnet-6.1.0

Description

Framework for providing spell-checking through abstraction of popular b

Added to portage

2024-04-15

spr - 3.3.2-r2
Ebuild name:

sci-libs/spr-3.3.2-r2

Description

Statistical analysis and machine learning library

Added to portage

2024-04-15

streamlink - 6.7.3
Ebuild name:

net-misc/streamlink-6.7.3

Description

CLI for extracting streams from websites to a video player of your choice

Added to portage

2024-04-15

syndication - 6.1.0
Ebuild name:

kde-frameworks/syndication-6.1.0

Description

Library for parsing RSS and Atom feeds

Added to portage

2024-04-15

syntax-highlighting - 6.1.0
Ebuild name:

kde-frameworks/syntax-highlighting-6.1.0

Description

Framework for syntax highlighting

Added to portage

2024-04-15

threadweaver - 6.1.0
Ebuild name:

kde-frameworks/threadweaver-6.1.0

Description

Framework for managing threads using job and queue-based interfac

Added to portage

2024-04-15

tor - 0.4.8.11
Ebuild name:

net-vpn/tor-0.4.8.11

Description

Anonymizing overlay network for TCP

Added to portage

2024-04-15

tree-sitter - 0.21.0-r1
Ebuild name:

dev-python/tree-sitter-0.21.0-r1

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2024-04-15

tree-sitter - 0.22.4-r1
Ebuild name:

dev-libs/tree-sitter-0.22.4-r1

Description

Tree-sitter is a parser generator tool and an incremental parsing li

Added to portage

2024-04-15

tree-sitter-cli - 0.20.9-r1
Ebuild name:

dev-util/tree-sitter-cli-0.20.9-r1

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2024-04-15

tree-sitter-cli - 0.22.1-r1
Ebuild name:

dev-util/tree-sitter-cli-0.22.1-r1

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2024-04-15

tree-sitter-cli - 0.22.2-r1
Ebuild name:

dev-util/tree-sitter-cli-0.22.2-r1

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2024-04-15

tree-sitter-cli - 0.22.4-r1
Ebuild name:

dev-util/tree-sitter-cli-0.22.4-r1

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2024-04-15

unbound - 1.19.3
Ebuild name:

net-dns/unbound-1.19.3

Description

A validating, recursive and caching DNS resolver

Added to portage

2024-04-15

vault - 1.16.1
Ebuild name:

app-admin/vault-1.16.1

Description

A tool for managing secrets

Added to portage

2024-04-15

wapiti - 3.1.7
Ebuild name:

net-analyzer/wapiti-3.1.7

Description

Web-application vulnerability scanner

Added to portage

2024-04-15

wget - 1.24.5
Ebuild name:

net-misc/wget-1.24.5

Description

Network utility to retrieve files from the WWW

Added to portage

2024-04-15

wiki2beamer - 0.10.0-r3
Ebuild name:

app-text/wiki2beamer-0.10.0-r3

Description

Tool to produce LaTeX Beamer code from wiki-like input

Added to portage

2024-04-15

xcb-proto - 1.17.0
Ebuild name:

x11-base/xcb-proto-1.17.0

Description

X C-language Bindings protocol headers

Added to portage

2024-04-15

xf86-input-wacom - 1.2.2
Ebuild name:

x11-drivers/xf86-input-wacom-1.2.2

Description

Driver for Wacom tablets and drawing devices

Added to portage

2024-04-15

ytmdl - 2024.04.14
Ebuild name:

net-misc/ytmdl-2024.04.14

Description

Simple app to get songs from youtube in mp3 format

Added to portage

2024-04-15

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